omlish 0.0.0.dev269__py3-none-any.whl → 0.0.0.dev270__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- omlish/__about__.py +2 -2
- omlish/bootstrap/marshal.py +4 -3
- omlish/marshal/__init__.py +16 -0
- omlish/marshal/base.py +230 -14
- omlish/marshal/composite/iterables.py +3 -0
- omlish/marshal/composite/literals.py +7 -4
- omlish/marshal/composite/mappings.py +3 -0
- omlish/marshal/composite/maybes.py +3 -0
- omlish/marshal/composite/newtypes.py +7 -4
- omlish/marshal/composite/optionals.py +7 -4
- omlish/marshal/composite/wrapped.py +3 -0
- omlish/marshal/global_.py +16 -0
- omlish/marshal/objects/dataclasses.py +4 -4
- omlish/marshal/objects/marshal.py +2 -2
- omlish/marshal/objects/namedtuples.py +4 -4
- omlish/marshal/objects/unmarshal.py +2 -2
- omlish/marshal/polymorphism/marshal.py +2 -2
- omlish/marshal/polymorphism/unions.py +6 -6
- omlish/marshal/polymorphism/unmarshal.py +2 -2
- omlish/marshal/singular/base64.py +3 -0
- omlish/marshal/singular/enums.py +7 -4
- omlish/marshal/singular/numbers.py +3 -0
- omlish/marshal/singular/uuids.py +3 -0
- omlish/marshal/standard.py +25 -3
- omlish/marshal/trivial/any.py +3 -0
- omlish/marshal/trivial/forbidden.py +13 -2
- omlish/marshal/trivial/nop.py +3 -0
- omlish/secrets/marshal.py +4 -6
- omlish/specs/jsonrpc/marshal.py +4 -5
- omlish/specs/openapi/marshal.py +4 -2
- omlish/sql/queries/marshal.py +16 -8
- omlish/sql/tabledefs/marshal.py +4 -2
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/RECORD +38 -38
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev269.dist-info → omlish-0.0.0.dev270.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/bootstrap/marshal.py
CHANGED
@@ -10,6 +10,7 @@ def _install_standard_marshalling() -> None:
|
|
10
10
|
Bootstrap.Config,
|
11
11
|
[msh.Impl(b.Config, n) for n, b in BOOTSTRAP_TYPES_BY_NAME.items()],
|
12
12
|
)
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
msh.install_standard_factories(
|
14
|
+
msh.PolymorphismMarshalerFactory(cfgs_poly),
|
15
|
+
msh.PolymorphismUnmarshalerFactory(cfgs_poly),
|
16
|
+
)
|
omlish/marshal/__init__.py
CHANGED
@@ -2,12 +2,24 @@ from .base import ( # noqa
|
|
2
2
|
Marshaler,
|
3
3
|
Unmarshaler,
|
4
4
|
|
5
|
+
MarshalerMaker,
|
6
|
+
UnmarshalerMaker,
|
7
|
+
|
5
8
|
MarshalerFactory,
|
6
9
|
UnmarshalerFactory,
|
7
10
|
|
11
|
+
MarshalerFactory_,
|
12
|
+
UnmarshalerFactory_,
|
13
|
+
|
14
|
+
SimpleMarshalerFactory,
|
15
|
+
SimpleUnmarshalerFactory,
|
16
|
+
|
8
17
|
MarshalerFactoryMatchClass,
|
9
18
|
UnmarshalerFactoryMatchClass,
|
10
19
|
|
20
|
+
MultiMarshalerFactory,
|
21
|
+
MultiUnmarshalerFactory,
|
22
|
+
|
11
23
|
TypeMapMarshalerFactory,
|
12
24
|
TypeMapUnmarshalerFactory,
|
13
25
|
|
@@ -52,6 +64,8 @@ from .global_ import ( # noqa
|
|
52
64
|
|
53
65
|
global_unmarshaler_factory,
|
54
66
|
unmarshal,
|
67
|
+
|
68
|
+
register_global,
|
55
69
|
)
|
56
70
|
|
57
71
|
from .naming import ( # noqa
|
@@ -138,6 +152,8 @@ from .standard import ( # noqa
|
|
138
152
|
|
139
153
|
STANDARD_UNMARSHALER_FACTORIES,
|
140
154
|
new_standard_unmarshaler_factory,
|
155
|
+
|
156
|
+
install_standard_factories,
|
141
157
|
)
|
142
158
|
|
143
159
|
from .trivial.forbidden import ( # noqa
|
omlish/marshal/base.py
CHANGED
@@ -117,19 +117,215 @@ class Unmarshaler(lang.Abstract):
|
|
117
117
|
raise NotImplementedError
|
118
118
|
|
119
119
|
|
120
|
-
|
121
|
-
|
120
|
+
##
|
121
|
+
|
122
|
+
|
123
|
+
MarshalerMaker: ta.TypeAlias = mfs.MatchFn[['MarshalContext', rfl.Type], Marshaler]
|
124
|
+
UnmarshalerMaker: ta.TypeAlias = mfs.MatchFn[['UnmarshalContext', rfl.Type], Unmarshaler]
|
125
|
+
|
126
|
+
|
127
|
+
class MarshalerFactory(lang.Abstract):
|
128
|
+
@property
|
129
|
+
@abc.abstractmethod
|
130
|
+
def make_marshaler(self) -> MarshalerMaker:
|
131
|
+
raise NotImplementedError
|
132
|
+
|
133
|
+
|
134
|
+
class UnmarshalerFactory(lang.Abstract):
|
135
|
+
@property
|
136
|
+
@abc.abstractmethod
|
137
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
138
|
+
raise NotImplementedError
|
139
|
+
|
140
|
+
|
141
|
+
##
|
142
|
+
|
143
|
+
|
144
|
+
@dc.dataclass(frozen=True)
|
145
|
+
class MarshalerFactory_(MarshalerFactory): # noqa
|
146
|
+
fn: MarshalerMaker
|
147
|
+
|
148
|
+
@property
|
149
|
+
def make_marshaler(self) -> MarshalerMaker:
|
150
|
+
return self.fn
|
151
|
+
|
152
|
+
|
153
|
+
@dc.dataclass(frozen=True)
|
154
|
+
class UnmarshalerFactory_(UnmarshalerFactory): # noqa
|
155
|
+
fn: UnmarshalerMaker
|
156
|
+
|
157
|
+
@property
|
158
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
159
|
+
return self.fn
|
160
|
+
|
161
|
+
|
162
|
+
##
|
163
|
+
|
164
|
+
|
165
|
+
class SimpleMarshalerFactory(
|
166
|
+
MarshalerFactory,
|
167
|
+
MarshalerMaker,
|
168
|
+
lang.Abstract,
|
169
|
+
):
|
170
|
+
@property
|
171
|
+
def make_marshaler(self) -> MarshalerMaker:
|
172
|
+
return self
|
173
|
+
|
174
|
+
|
175
|
+
class SimpleUnmarshalerFactory(
|
176
|
+
UnmarshalerFactory,
|
177
|
+
UnmarshalerMaker,
|
178
|
+
lang.Abstract,
|
179
|
+
):
|
180
|
+
@property
|
181
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
182
|
+
return self
|
183
|
+
|
184
|
+
|
185
|
+
##
|
186
|
+
|
187
|
+
|
188
|
+
class MarshalerFactoryMatchClass(
|
189
|
+
MarshalerFactory,
|
190
|
+
mfs.MatchFnClass[['MarshalContext', rfl.Type], Marshaler],
|
191
|
+
lang.Abstract,
|
192
|
+
):
|
193
|
+
@property
|
194
|
+
def make_marshaler(self) -> MarshalerMaker:
|
195
|
+
return self
|
196
|
+
|
197
|
+
|
198
|
+
class UnmarshalerFactoryMatchClass(
|
199
|
+
UnmarshalerFactory,
|
200
|
+
mfs.MatchFnClass[['UnmarshalContext', rfl.Type], Unmarshaler],
|
201
|
+
lang.Abstract,
|
202
|
+
):
|
203
|
+
@property
|
204
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
205
|
+
return self
|
206
|
+
|
207
|
+
|
208
|
+
##
|
209
|
+
|
210
|
+
|
211
|
+
class MultiMarshalerFactory(MarshalerFactory):
|
212
|
+
def __init__(
|
213
|
+
self,
|
214
|
+
fs: ta.Iterable[MarshalerFactory],
|
215
|
+
*,
|
216
|
+
strict: bool = False,
|
217
|
+
) -> None:
|
218
|
+
super().__init__()
|
219
|
+
|
220
|
+
self._fs = list(fs)
|
221
|
+
self._mmf: mfs.MultiMatchFn[[MarshalContext, rfl.Type], Marshaler] = mfs.MultiMatchFn(
|
222
|
+
[f.make_marshaler for f in self._fs],
|
223
|
+
strict=strict,
|
224
|
+
)
|
225
|
+
|
226
|
+
@property
|
227
|
+
def make_marshaler(self) -> MarshalerMaker:
|
228
|
+
return self._mmf
|
229
|
+
|
230
|
+
|
231
|
+
class MultiUnmarshalerFactory(UnmarshalerFactory):
|
232
|
+
def __init__(
|
233
|
+
self,
|
234
|
+
fs: ta.Iterable[UnmarshalerFactory],
|
235
|
+
*,
|
236
|
+
strict: bool = False,
|
237
|
+
) -> None:
|
238
|
+
super().__init__()
|
239
|
+
|
240
|
+
self._fs = list(fs)
|
241
|
+
self._mmf: mfs.MultiMatchFn[[UnmarshalContext, rfl.Type], Unmarshaler] = mfs.MultiMatchFn(
|
242
|
+
[f.make_unmarshaler for f in self._fs],
|
243
|
+
strict=strict,
|
244
|
+
)
|
245
|
+
|
246
|
+
@property
|
247
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
248
|
+
return self._mmf
|
122
249
|
|
123
|
-
MarshalerFactoryMatchClass: ta.TypeAlias = mfs.MatchFnClass[['MarshalContext', rfl.Type], Marshaler]
|
124
|
-
UnmarshalerFactoryMatchClass: ta.TypeAlias = mfs.MatchFnClass[['UnmarshalContext', rfl.Type], Unmarshaler]
|
125
250
|
|
251
|
+
##
|
252
|
+
|
253
|
+
|
254
|
+
@dc.dataclass(frozen=True)
|
255
|
+
class TypeMapMarshalerFactory(
|
256
|
+
TypeMapFactory['MarshalContext', Marshaler],
|
257
|
+
MarshalerFactory,
|
258
|
+
):
|
259
|
+
@property
|
260
|
+
def make_marshaler(self) -> MarshalerMaker:
|
261
|
+
return self
|
262
|
+
|
263
|
+
|
264
|
+
@dc.dataclass(frozen=True)
|
265
|
+
class TypeMapUnmarshalerFactory(
|
266
|
+
TypeMapFactory['UnmarshalContext', Unmarshaler],
|
267
|
+
UnmarshalerFactory,
|
268
|
+
):
|
269
|
+
@property
|
270
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
271
|
+
return self
|
272
|
+
|
273
|
+
|
274
|
+
# class TypeMapMarshalerFactory(MarshalerFactory):
|
275
|
+
# def __init__(self, m: ta.Mapping[rfl.Type, MarshalerFactory]) -> None:
|
276
|
+
# super().__init__()
|
126
277
|
#
|
278
|
+
# self._m = m
|
279
|
+
# self._tmf: TypeMapFactory['MarshalContext', Marshaler] = TypeMapFactory({
|
280
|
+
# t: f.make_marshaler
|
281
|
+
# for t, f in m.items()
|
282
|
+
# })
|
283
|
+
#
|
284
|
+
# @property
|
285
|
+
# def make_marshaler(self) -> MarshalerMaker:
|
286
|
+
# return self._tmf
|
127
287
|
|
128
|
-
TypeMapMarshalerFactory: ta.TypeAlias = TypeMapFactory['MarshalContext', Marshaler]
|
129
|
-
TypeMapUnmarshalerFactory: ta.TypeAlias = TypeMapFactory['UnmarshalContext', Unmarshaler]
|
130
288
|
|
131
|
-
|
132
|
-
|
289
|
+
# class TypeMapUnmarshalerFactory(UnmarshalerFactory):
|
290
|
+
# def __init__(self, m: ta.Mapping[rfl.Type, UnmarshalerFactory]) -> None:
|
291
|
+
# super().__init__()
|
292
|
+
#
|
293
|
+
# self._m = m
|
294
|
+
# self._tmf: TypeMapFactory[UnmarshalContext, Unmarshaler] = TypeMapFactory({
|
295
|
+
# t: f.make_unmarshaler
|
296
|
+
# for t, f in m.items()
|
297
|
+
# })
|
298
|
+
#
|
299
|
+
# @property
|
300
|
+
# def make_unmarshaler(self) -> UnmarshalerMaker:
|
301
|
+
# return self._tmf
|
302
|
+
|
303
|
+
|
304
|
+
##
|
305
|
+
|
306
|
+
|
307
|
+
class TypeCacheMarshalerFactory(MarshalerFactory):
|
308
|
+
def __init__(self, f: MarshalerFactory) -> None:
|
309
|
+
super().__init__()
|
310
|
+
|
311
|
+
self._f = f
|
312
|
+
self._tcf: TypeCacheFactory[MarshalContext, Marshaler] = TypeCacheFactory(f.make_marshaler)
|
313
|
+
|
314
|
+
@property
|
315
|
+
def make_marshaler(self) -> MarshalerMaker:
|
316
|
+
return self._tcf
|
317
|
+
|
318
|
+
|
319
|
+
class TypeCacheUnmarshalerFactory(UnmarshalerFactory):
|
320
|
+
def __init__(self, f: UnmarshalerFactory) -> None:
|
321
|
+
super().__init__()
|
322
|
+
|
323
|
+
self._f = f
|
324
|
+
self._tcf: TypeCacheFactory[UnmarshalContext, Unmarshaler] = TypeCacheFactory(f.make_unmarshaler)
|
325
|
+
|
326
|
+
@property
|
327
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
328
|
+
return self._tcf
|
133
329
|
|
134
330
|
|
135
331
|
##
|
@@ -182,7 +378,7 @@ class MarshalContext(BaseContext, lang.Final):
|
|
182
378
|
def make(self, o: ta.Any) -> Marshaler:
|
183
379
|
rty = self._reflect(o)
|
184
380
|
try:
|
185
|
-
return check.not_none(self.factory)(self, rty)
|
381
|
+
return check.not_none(self.factory).make_marshaler(self, rty)
|
186
382
|
except mfs.MatchGuardError:
|
187
383
|
raise UnhandledTypeError(rty) # noqa
|
188
384
|
|
@@ -194,7 +390,7 @@ class UnmarshalContext(BaseContext, lang.Final):
|
|
194
390
|
def make(self, o: ta.Any) -> Unmarshaler:
|
195
391
|
rty = self._reflect(o)
|
196
392
|
try:
|
197
|
-
return check.not_none(self.factory)(self, rty)
|
393
|
+
return check.not_none(self.factory).make_unmarshaler(self, rty)
|
198
394
|
except mfs.MatchGuardError:
|
199
395
|
raise UnhandledTypeError(rty) # noqa
|
200
396
|
|
@@ -207,9 +403,19 @@ class _ProxyMarshaler(_Proxy[Marshaler], Marshaler):
|
|
207
403
|
return self._obj.marshal(ctx, o)
|
208
404
|
|
209
405
|
|
210
|
-
class RecursiveMarshalerFactory(
|
406
|
+
class RecursiveMarshalerFactory(MarshalerFactory, lang.Final):
|
211
407
|
def __init__(self, f: MarshalerFactory) -> None:
|
212
|
-
super().__init__(
|
408
|
+
super().__init__()
|
409
|
+
|
410
|
+
self._f = f
|
411
|
+
self._rtf: RecursiveTypeFactory[MarshalContext, Marshaler] = RecursiveTypeFactory(
|
412
|
+
self._f.make_marshaler, # noqa
|
413
|
+
_ProxyMarshaler._new, # noqa
|
414
|
+
)
|
415
|
+
|
416
|
+
@property
|
417
|
+
def make_marshaler(self) -> MarshalerMaker:
|
418
|
+
return self._rtf
|
213
419
|
|
214
420
|
|
215
421
|
class _ProxyUnmarshaler(_Proxy[Unmarshaler], Unmarshaler):
|
@@ -217,9 +423,19 @@ class _ProxyUnmarshaler(_Proxy[Unmarshaler], Unmarshaler):
|
|
217
423
|
return self._obj.unmarshal(ctx, v)
|
218
424
|
|
219
425
|
|
220
|
-
class RecursiveUnmarshalerFactory(
|
426
|
+
class RecursiveUnmarshalerFactory(UnmarshalerFactory, lang.Final):
|
221
427
|
def __init__(self, f: UnmarshalerFactory) -> None:
|
222
|
-
super().__init__(
|
428
|
+
super().__init__()
|
429
|
+
|
430
|
+
self._f = f
|
431
|
+
self._rtf: RecursiveTypeFactory[UnmarshalContext, Unmarshaler] = RecursiveTypeFactory(
|
432
|
+
self._f.make_unmarshaler, # noqa
|
433
|
+
_ProxyUnmarshaler._new, # noqa
|
434
|
+
)
|
435
|
+
|
436
|
+
@property
|
437
|
+
def make_unmarshaler(self) -> UnmarshalerMaker:
|
438
|
+
return self._rtf
|
223
439
|
|
224
440
|
|
225
441
|
##
|
@@ -19,6 +19,9 @@ from ..base import UnmarshalerFactoryMatchClass
|
|
19
19
|
from ..values import Value
|
20
20
|
|
21
21
|
|
22
|
+
##
|
23
|
+
|
24
|
+
|
22
25
|
DEFAULT_ITERABLE_CONCRETE_TYPES: dict[type[collections.abc.Iterable], type[collections.abc.Iterable]] = {
|
23
26
|
collections.abc.Iterable: tuple, # type: ignore
|
24
27
|
collections.abc.Sequence: tuple, # type: ignore
|
@@ -5,13 +5,16 @@ from ... import check
|
|
5
5
|
from ... import reflect as rfl
|
6
6
|
from ..base import MarshalContext
|
7
7
|
from ..base import Marshaler
|
8
|
-
from ..base import
|
8
|
+
from ..base import SimpleMarshalerFactory
|
9
|
+
from ..base import SimpleUnmarshalerFactory
|
9
10
|
from ..base import UnmarshalContext
|
10
11
|
from ..base import Unmarshaler
|
11
|
-
from ..base import UnmarshalerFactory
|
12
12
|
from ..values import Value
|
13
13
|
|
14
14
|
|
15
|
+
##
|
16
|
+
|
17
|
+
|
15
18
|
@dc.dataclass(frozen=True)
|
16
19
|
class LiteralMarshaler(Marshaler):
|
17
20
|
e: Marshaler
|
@@ -21,7 +24,7 @@ class LiteralMarshaler(Marshaler):
|
|
21
24
|
return self.e.marshal(ctx, check.in_(o, self.vs))
|
22
25
|
|
23
26
|
|
24
|
-
class LiteralMarshalerFactory(
|
27
|
+
class LiteralMarshalerFactory(SimpleMarshalerFactory):
|
25
28
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
26
29
|
return isinstance(rty, rfl.Literal)
|
27
30
|
|
@@ -40,7 +43,7 @@ class LiteralUnmarshaler(Unmarshaler):
|
|
40
43
|
return check.in_(self.e.unmarshal(ctx, v), self.vs)
|
41
44
|
|
42
45
|
|
43
|
-
class LiteralUnmarshalerFactory(
|
46
|
+
class LiteralUnmarshalerFactory(SimpleUnmarshalerFactory):
|
44
47
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
45
48
|
return isinstance(rty, rfl.Literal)
|
46
49
|
|
@@ -14,6 +14,9 @@ from ..base import UnmarshalerFactoryMatchClass
|
|
14
14
|
from ..values import Value
|
15
15
|
|
16
16
|
|
17
|
+
##
|
18
|
+
|
19
|
+
|
17
20
|
DEFAULT_MAPPING_CONCRETE_TYPES: dict[type[collections.abc.Mapping], type[collections.abc.Mapping]] = {
|
18
21
|
collections.abc.Mapping: dict, # type: ignore
|
19
22
|
collections.abc.MutableMapping: dict, # type: ignore
|
@@ -2,13 +2,16 @@ from ... import check
|
|
2
2
|
from ... import reflect as rfl
|
3
3
|
from ..base import MarshalContext
|
4
4
|
from ..base import Marshaler
|
5
|
-
from ..base import
|
5
|
+
from ..base import SimpleMarshalerFactory
|
6
|
+
from ..base import SimpleUnmarshalerFactory
|
6
7
|
from ..base import UnmarshalContext
|
7
8
|
from ..base import Unmarshaler
|
8
|
-
from ..base import UnmarshalerFactory
|
9
9
|
|
10
10
|
|
11
|
-
|
11
|
+
##
|
12
|
+
|
13
|
+
|
14
|
+
class NewtypeMarshalerFactory(SimpleMarshalerFactory):
|
12
15
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
13
16
|
return isinstance(rty, rfl.NewType)
|
14
17
|
|
@@ -16,7 +19,7 @@ class NewtypeMarshalerFactory(MarshalerFactory):
|
|
16
19
|
return ctx.make(check.isinstance(rty, rfl.NewType).ty)
|
17
20
|
|
18
21
|
|
19
|
-
class NewtypeUnmarshalerFactory(
|
22
|
+
class NewtypeUnmarshalerFactory(SimpleUnmarshalerFactory):
|
20
23
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
21
24
|
return isinstance(rty, rfl.NewType)
|
22
25
|
|
@@ -5,13 +5,16 @@ from ... import check
|
|
5
5
|
from ... import reflect as rfl
|
6
6
|
from ..base import MarshalContext
|
7
7
|
from ..base import Marshaler
|
8
|
-
from ..base import
|
8
|
+
from ..base import SimpleMarshalerFactory
|
9
|
+
from ..base import SimpleUnmarshalerFactory
|
9
10
|
from ..base import UnmarshalContext
|
10
11
|
from ..base import Unmarshaler
|
11
|
-
from ..base import UnmarshalerFactory
|
12
12
|
from ..values import Value
|
13
13
|
|
14
14
|
|
15
|
+
##
|
16
|
+
|
17
|
+
|
15
18
|
@dc.dataclass(frozen=True)
|
16
19
|
class OptionalMarshaler(Marshaler):
|
17
20
|
e: Marshaler
|
@@ -22,7 +25,7 @@ class OptionalMarshaler(Marshaler):
|
|
22
25
|
return self.e.marshal(ctx, o)
|
23
26
|
|
24
27
|
|
25
|
-
class OptionalMarshalerFactory(
|
28
|
+
class OptionalMarshalerFactory(SimpleMarshalerFactory):
|
26
29
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
27
30
|
return isinstance(rty, rfl.Union) and rty.is_optional
|
28
31
|
|
@@ -40,7 +43,7 @@ class OptionalUnmarshaler(Unmarshaler):
|
|
40
43
|
return self.e.unmarshal(ctx, v)
|
41
44
|
|
42
45
|
|
43
|
-
class OptionalUnmarshalerFactory(
|
46
|
+
class OptionalUnmarshalerFactory(SimpleUnmarshalerFactory):
|
44
47
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
45
48
|
return isinstance(rty, rfl.Union) and rty.is_optional
|
46
49
|
|
omlish/marshal/global_.py
CHANGED
@@ -6,6 +6,7 @@ from .base import MarshalerFactory
|
|
6
6
|
from .base import UnmarshalContext
|
7
7
|
from .base import UnmarshalerFactory
|
8
8
|
from .registries import Registry
|
9
|
+
from .registries import RegistryItem
|
9
10
|
from .standard import new_standard_marshaler_factory
|
10
11
|
from .standard import new_standard_unmarshaler_factory
|
11
12
|
from .values import Value
|
@@ -44,3 +45,18 @@ def global_unmarshaler_factory() -> UnmarshalerFactory:
|
|
44
45
|
def unmarshal(v: Value, ty: type[T], **kwargs: ta.Any) -> T:
|
45
46
|
uc = UnmarshalContext(GLOBAL_REGISTRY, factory=global_unmarshaler_factory(), **kwargs)
|
46
47
|
return uc.make(ty).unmarshal(uc, v)
|
48
|
+
|
49
|
+
|
50
|
+
##
|
51
|
+
|
52
|
+
|
53
|
+
def register_global(
|
54
|
+
key: ta.Any,
|
55
|
+
*items: RegistryItem,
|
56
|
+
identity: bool = False,
|
57
|
+
) -> None:
|
58
|
+
GLOBAL_REGISTRY.register(
|
59
|
+
key,
|
60
|
+
*items,
|
61
|
+
identity=identity,
|
62
|
+
)
|
@@ -12,11 +12,11 @@ from ... import reflect as rfl
|
|
12
12
|
from ...lite import marshal as lm
|
13
13
|
from ..base import MarshalContext
|
14
14
|
from ..base import Marshaler
|
15
|
-
from ..base import MarshalerFactory
|
16
15
|
from ..base import Option
|
16
|
+
from ..base import SimpleMarshalerFactory
|
17
|
+
from ..base import SimpleUnmarshalerFactory
|
17
18
|
from ..base import UnmarshalContext
|
18
19
|
from ..base import Unmarshaler
|
19
|
-
from ..base import UnmarshalerFactory
|
20
20
|
from ..naming import Naming
|
21
21
|
from ..naming import translate_name
|
22
22
|
from .marshal import ObjectMarshaler
|
@@ -183,7 +183,7 @@ class AbstractDataclassFactory(lang.Abstract):
|
|
183
183
|
##
|
184
184
|
|
185
185
|
|
186
|
-
class DataclassMarshalerFactory(AbstractDataclassFactory,
|
186
|
+
class DataclassMarshalerFactory(AbstractDataclassFactory, SimpleMarshalerFactory):
|
187
187
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
188
188
|
return isinstance(rty, type) and dc.is_dataclass(rty) and not lang.is_abstract_class(rty)
|
189
189
|
|
@@ -210,7 +210,7 @@ class DataclassMarshalerFactory(AbstractDataclassFactory, MarshalerFactory):
|
|
210
210
|
##
|
211
211
|
|
212
212
|
|
213
|
-
class DataclassUnmarshalerFactory(AbstractDataclassFactory,
|
213
|
+
class DataclassUnmarshalerFactory(AbstractDataclassFactory, SimpleUnmarshalerFactory):
|
214
214
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
215
215
|
return isinstance(rty, type) and dc.is_dataclass(rty) and not lang.is_abstract_class(rty)
|
216
216
|
|
@@ -6,7 +6,7 @@ from ... import dataclasses as dc
|
|
6
6
|
from ... import reflect as rfl
|
7
7
|
from ..base import MarshalContext
|
8
8
|
from ..base import Marshaler
|
9
|
-
from ..base import
|
9
|
+
from ..base import SimpleMarshalerFactory
|
10
10
|
from ..values import Value
|
11
11
|
from .metadata import FieldInfo
|
12
12
|
from .metadata import FieldInfos
|
@@ -86,7 +86,7 @@ class ObjectMarshaler(Marshaler):
|
|
86
86
|
|
87
87
|
|
88
88
|
@dc.dataclass(frozen=True)
|
89
|
-
class SimpleObjectMarshalerFactory(
|
89
|
+
class SimpleObjectMarshalerFactory(SimpleMarshalerFactory):
|
90
90
|
dct: ta.Mapping[type, ta.Sequence[FieldInfo]]
|
91
91
|
|
92
92
|
_: dc.KW_ONLY
|
@@ -7,11 +7,11 @@ from ... import lang
|
|
7
7
|
from ... import reflect as rfl
|
8
8
|
from ..base import MarshalContext
|
9
9
|
from ..base import Marshaler
|
10
|
-
from ..base import MarshalerFactory
|
11
10
|
from ..base import Option
|
11
|
+
from ..base import SimpleMarshalerFactory
|
12
|
+
from ..base import SimpleUnmarshalerFactory
|
12
13
|
from ..base import UnmarshalContext
|
13
14
|
from ..base import Unmarshaler
|
14
|
-
from ..base import UnmarshalerFactory
|
15
15
|
from .marshal import ObjectMarshaler
|
16
16
|
from .metadata import FieldInfo
|
17
17
|
from .metadata import FieldInfos
|
@@ -55,7 +55,7 @@ def get_namedtuple_field_infos(
|
|
55
55
|
##
|
56
56
|
|
57
57
|
|
58
|
-
class NamedtupleMarshalerFactory(
|
58
|
+
class NamedtupleMarshalerFactory(SimpleMarshalerFactory):
|
59
59
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
60
60
|
return _is_namedtuple(rty)
|
61
61
|
|
@@ -79,7 +79,7 @@ class NamedtupleMarshalerFactory(MarshalerFactory):
|
|
79
79
|
##
|
80
80
|
|
81
81
|
|
82
|
-
class NamedtupleUnmarshalerFactory(
|
82
|
+
class NamedtupleUnmarshalerFactory(SimpleUnmarshalerFactory):
|
83
83
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
84
84
|
return _is_namedtuple(rty)
|
85
85
|
|
@@ -4,9 +4,9 @@ import typing as ta
|
|
4
4
|
from ... import check
|
5
5
|
from ... import dataclasses as dc
|
6
6
|
from ... import reflect as rfl
|
7
|
+
from ..base import SimpleUnmarshalerFactory
|
7
8
|
from ..base import UnmarshalContext
|
8
9
|
from ..base import Unmarshaler
|
9
|
-
from ..base import UnmarshalerFactory
|
10
10
|
from ..values import Value
|
11
11
|
from .metadata import FieldInfo
|
12
12
|
from .metadata import FieldInfos
|
@@ -118,7 +118,7 @@ class ObjectUnmarshaler(Unmarshaler):
|
|
118
118
|
|
119
119
|
|
120
120
|
@dc.dataclass(frozen=True)
|
121
|
-
class SimpleObjectUnmarshalerFactory(
|
121
|
+
class SimpleObjectUnmarshalerFactory(SimpleUnmarshalerFactory):
|
122
122
|
dct: ta.Mapping[type, ta.Sequence[FieldInfo]]
|
123
123
|
|
124
124
|
_: dc.KW_ONLY
|
@@ -7,7 +7,7 @@ from ... import lang
|
|
7
7
|
from ... import reflect as rfl
|
8
8
|
from ..base import MarshalContext
|
9
9
|
from ..base import Marshaler
|
10
|
-
from ..base import
|
10
|
+
from ..base import SimpleMarshalerFactory
|
11
11
|
from ..values import Value
|
12
12
|
from .metadata import FieldTypeTagging
|
13
13
|
from .metadata import Impls
|
@@ -68,7 +68,7 @@ def make_polymorphism_marshaler(
|
|
68
68
|
|
69
69
|
|
70
70
|
@dc.dataclass(frozen=True)
|
71
|
-
class PolymorphismMarshalerFactory(
|
71
|
+
class PolymorphismMarshalerFactory(SimpleMarshalerFactory):
|
72
72
|
p: Polymorphism
|
73
73
|
tt: TypeTagging = WrapperTypeTagging()
|
74
74
|
|
@@ -8,10 +8,10 @@ from ... import reflect as rfl
|
|
8
8
|
from ...funcs import match as mfs
|
9
9
|
from ..base import MarshalContext
|
10
10
|
from ..base import Marshaler
|
11
|
-
from ..base import
|
11
|
+
from ..base import SimpleMarshalerFactory
|
12
|
+
from ..base import SimpleUnmarshalerFactory
|
12
13
|
from ..base import UnmarshalContext
|
13
14
|
from ..base import Unmarshaler
|
14
|
-
from ..base import UnmarshalerFactory
|
15
15
|
from ..values import Value
|
16
16
|
from .marshal import make_polymorphism_marshaler
|
17
17
|
from .metadata import Impls
|
@@ -69,7 +69,7 @@ class PrimitiveUnionMarshaler(Marshaler):
|
|
69
69
|
|
70
70
|
|
71
71
|
@dc.dataclass(frozen=True)
|
72
|
-
class PrimitiveUnionMarshalerFactory(
|
72
|
+
class PrimitiveUnionMarshalerFactory(SimpleMarshalerFactory):
|
73
73
|
tys: ta.Sequence[type] = PRIMITIVE_UNION_TYPES
|
74
74
|
|
75
75
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
@@ -94,7 +94,7 @@ class PrimitiveUnionUnmarshaler(Unmarshaler):
|
|
94
94
|
|
95
95
|
|
96
96
|
@dc.dataclass(frozen=True)
|
97
|
-
class PrimitiveUnionUnmarshalerFactory(
|
97
|
+
class PrimitiveUnionUnmarshalerFactory(SimpleUnmarshalerFactory):
|
98
98
|
tys: ta.Sequence[type] = PRIMITIVE_UNION_TYPES
|
99
99
|
|
100
100
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
@@ -140,12 +140,12 @@ class _BasePolymorphismUnionFactory(lang.Abstract):
|
|
140
140
|
|
141
141
|
|
142
142
|
@dc.dataclass(frozen=True)
|
143
|
-
class PolymorphismUnionMarshalerFactory(_BasePolymorphismUnionFactory,
|
143
|
+
class PolymorphismUnionMarshalerFactory(_BasePolymorphismUnionFactory, SimpleMarshalerFactory):
|
144
144
|
def fn(self, ctx: MarshalContext, rty: rfl.Type) -> Marshaler:
|
145
145
|
return make_polymorphism_marshaler(self.get_impls(rty), self.tt, ctx)
|
146
146
|
|
147
147
|
|
148
148
|
@dc.dataclass(frozen=True)
|
149
|
-
class PolymorphismUnionUnmarshalerFactory(_BasePolymorphismUnionFactory,
|
149
|
+
class PolymorphismUnionUnmarshalerFactory(_BasePolymorphismUnionFactory, SimpleUnmarshalerFactory):
|
150
150
|
def fn(self, ctx: UnmarshalContext, rty: rfl.Type) -> Unmarshaler:
|
151
151
|
return make_polymorphism_unmarshaler(self.get_impls(rty), self.tt, ctx)
|
@@ -6,9 +6,9 @@ import typing as ta
|
|
6
6
|
from ... import check
|
7
7
|
from ... import lang
|
8
8
|
from ... import reflect as rfl
|
9
|
+
from ..base import SimpleUnmarshalerFactory
|
9
10
|
from ..base import UnmarshalContext
|
10
11
|
from ..base import Unmarshaler
|
11
|
-
from ..base import UnmarshalerFactory
|
12
12
|
from ..values import Value
|
13
13
|
from .metadata import FieldTypeTagging
|
14
14
|
from .metadata import Impls
|
@@ -75,7 +75,7 @@ def make_polymorphism_unmarshaler(
|
|
75
75
|
|
76
76
|
|
77
77
|
@dc.dataclass(frozen=True)
|
78
|
-
class PolymorphismUnmarshalerFactory(
|
78
|
+
class PolymorphismUnmarshalerFactory(SimpleUnmarshalerFactory):
|
79
79
|
p: Polymorphism
|
80
80
|
tt: TypeTagging = WrapperTypeTagging()
|
81
81
|
|
omlish/marshal/singular/enums.py
CHANGED
@@ -6,13 +6,16 @@ from ... import check
|
|
6
6
|
from ... import reflect as rfl
|
7
7
|
from ..base import MarshalContext
|
8
8
|
from ..base import Marshaler
|
9
|
-
from ..base import
|
9
|
+
from ..base import SimpleMarshalerFactory
|
10
|
+
from ..base import SimpleUnmarshalerFactory
|
10
11
|
from ..base import UnmarshalContext
|
11
12
|
from ..base import Unmarshaler
|
12
|
-
from ..base import UnmarshalerFactory
|
13
13
|
from ..values import Value
|
14
14
|
|
15
15
|
|
16
|
+
##
|
17
|
+
|
18
|
+
|
16
19
|
@dc.dataclass(frozen=True)
|
17
20
|
class EnumMarshaler(Marshaler):
|
18
21
|
ty: type[enum.Enum]
|
@@ -21,7 +24,7 @@ class EnumMarshaler(Marshaler):
|
|
21
24
|
return o.name
|
22
25
|
|
23
26
|
|
24
|
-
class EnumMarshalerFactory(
|
27
|
+
class EnumMarshalerFactory(SimpleMarshalerFactory):
|
25
28
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
26
29
|
return isinstance(rty, type) and issubclass(rty, enum.Enum)
|
27
30
|
|
@@ -39,7 +42,7 @@ class EnumUnmarshaler(Unmarshaler):
|
|
39
42
|
return self.ty[check.isinstance(v, str)]
|
40
43
|
|
41
44
|
|
42
|
-
class EnumUnmarshalerFactory(
|
45
|
+
class EnumUnmarshalerFactory(SimpleUnmarshalerFactory):
|
43
46
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
44
47
|
return isinstance(rty, type) and issubclass(rty, enum.Enum)
|
45
48
|
|
omlish/marshal/singular/uuids.py
CHANGED
omlish/marshal/standard.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
from ..funcs import match as mfs
|
2
1
|
from .base import MarshalerFactory
|
2
|
+
from .base import MultiMarshalerFactory
|
3
|
+
from .base import MultiUnmarshalerFactory
|
3
4
|
from .base import RecursiveMarshalerFactory
|
4
5
|
from .base import RecursiveUnmarshalerFactory
|
5
6
|
from .base import TypeCacheMarshalerFactory
|
@@ -65,7 +66,7 @@ STANDARD_MARSHALER_FACTORIES: list[MarshalerFactory] = [
|
|
65
66
|
def new_standard_marshaler_factory() -> MarshalerFactory:
|
66
67
|
return TypeCacheMarshalerFactory(
|
67
68
|
RecursiveMarshalerFactory(
|
68
|
-
|
69
|
+
MultiMarshalerFactory(
|
69
70
|
list(STANDARD_MARSHALER_FACTORIES),
|
70
71
|
),
|
71
72
|
),
|
@@ -98,8 +99,29 @@ STANDARD_UNMARSHALER_FACTORIES: list[UnmarshalerFactory] = [
|
|
98
99
|
def new_standard_unmarshaler_factory() -> UnmarshalerFactory:
|
99
100
|
return TypeCacheUnmarshalerFactory(
|
100
101
|
RecursiveUnmarshalerFactory(
|
101
|
-
|
102
|
+
MultiUnmarshalerFactory(
|
102
103
|
list(STANDARD_UNMARSHALER_FACTORIES),
|
103
104
|
),
|
104
105
|
),
|
105
106
|
)
|
107
|
+
|
108
|
+
|
109
|
+
##
|
110
|
+
|
111
|
+
|
112
|
+
def install_standard_factories(
|
113
|
+
*factories: MarshalerFactory | UnmarshalerFactory,
|
114
|
+
) -> None:
|
115
|
+
for f in factories:
|
116
|
+
k = False
|
117
|
+
|
118
|
+
if isinstance(f, MarshalerFactory):
|
119
|
+
STANDARD_MARSHALER_FACTORIES[0:0] = [f]
|
120
|
+
k = True
|
121
|
+
|
122
|
+
if isinstance(f, UnmarshalerFactory):
|
123
|
+
STANDARD_UNMARSHALER_FACTORIES[0:0] = [f]
|
124
|
+
k = True
|
125
|
+
|
126
|
+
if not k:
|
127
|
+
raise TypeError(f)
|
omlish/marshal/trivial/any.py
CHANGED
@@ -5,6 +5,8 @@ from ... import reflect as rfl
|
|
5
5
|
from ...funcs import match as mfs
|
6
6
|
from ..base import MarshalContext
|
7
7
|
from ..base import Marshaler
|
8
|
+
from ..base import SimpleMarshalerFactory
|
9
|
+
from ..base import SimpleUnmarshalerFactory
|
8
10
|
from ..base import UnmarshalContext
|
9
11
|
from ..base import Unmarshaler
|
10
12
|
from ..exceptions import ForbiddenTypeError
|
@@ -14,6 +16,9 @@ C = ta.TypeVar('C')
|
|
14
16
|
R = ta.TypeVar('R')
|
15
17
|
|
16
18
|
|
19
|
+
##
|
20
|
+
|
21
|
+
|
17
22
|
@dc.dataclass(frozen=True)
|
18
23
|
class ForbiddenTypeFactory(mfs.MatchFn[[C, rfl.Type], R]):
|
19
24
|
rtys: ta.AbstractSet[rfl.Type]
|
@@ -26,10 +31,16 @@ class ForbiddenTypeFactory(mfs.MatchFn[[C, rfl.Type], R]):
|
|
26
31
|
|
27
32
|
|
28
33
|
@dc.dataclass(frozen=True)
|
29
|
-
class ForbiddenTypeMarshalerFactory(
|
34
|
+
class ForbiddenTypeMarshalerFactory(
|
35
|
+
ForbiddenTypeFactory[MarshalContext, Marshaler],
|
36
|
+
SimpleMarshalerFactory,
|
37
|
+
):
|
30
38
|
pass
|
31
39
|
|
32
40
|
|
33
41
|
@dc.dataclass(frozen=True)
|
34
|
-
class ForbiddenTypeUnmarshalerFactory(
|
42
|
+
class ForbiddenTypeUnmarshalerFactory(
|
43
|
+
ForbiddenTypeFactory[UnmarshalContext, Unmarshaler],
|
44
|
+
SimpleUnmarshalerFactory,
|
45
|
+
):
|
35
46
|
pass
|
omlish/marshal/trivial/nop.py
CHANGED
omlish/secrets/marshal.py
CHANGED
@@ -52,16 +52,14 @@ def marshal_secret_field(f: dc.Field) -> dc.Field:
|
|
52
52
|
|
53
53
|
@lang.static_init
|
54
54
|
def _install_standard_marshalling() -> None:
|
55
|
-
msh.
|
55
|
+
msh.install_standard_factories(
|
56
56
|
msh.ForbiddenTypeMarshalerFactory({Secret}),
|
57
|
+
msh.ForbiddenTypeUnmarshalerFactory({Secret}),
|
58
|
+
|
57
59
|
msh.TypeMapMarshalerFactory({
|
58
60
|
rfl.type_(SecretRefOrStr): StrOrSecretRefMarshalerUnmarshaler(),
|
59
61
|
}),
|
60
|
-
]
|
61
|
-
|
62
|
-
msh.STANDARD_UNMARSHALER_FACTORIES[0:0] = [
|
63
|
-
msh.ForbiddenTypeUnmarshalerFactory({Secret}),
|
64
62
|
msh.TypeMapUnmarshalerFactory({
|
65
63
|
rfl.type_(SecretRefOrStr): StrOrSecretRefMarshalerUnmarshaler(),
|
66
64
|
}),
|
67
|
-
|
65
|
+
)
|
omlish/specs/jsonrpc/marshal.py
CHANGED
@@ -49,11 +49,10 @@ class NotSpecifiedUnionUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
|
|
49
49
|
|
50
50
|
@lang.static_init
|
51
51
|
def _install_standard_marshalling() -> None:
|
52
|
-
msh.
|
52
|
+
msh.install_standard_factories(
|
53
53
|
msh.ForbiddenTypeMarshalerFactory({_NOT_SPECIFIED_RTY}),
|
54
|
-
NotSpecifiedUnionMarshalerFactory(),
|
55
|
-
]
|
56
|
-
msh.STANDARD_UNMARSHALER_FACTORIES[0:0] = [
|
57
54
|
msh.ForbiddenTypeUnmarshalerFactory({_NOT_SPECIFIED_RTY}),
|
55
|
+
|
56
|
+
NotSpecifiedUnionMarshalerFactory(),
|
58
57
|
NotSpecifiedUnionUnmarshalerFactory(),
|
59
|
-
|
58
|
+
)
|
omlish/specs/openapi/marshal.py
CHANGED
@@ -59,5 +59,7 @@ class _ReferenceUnionUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
|
|
59
59
|
|
60
60
|
@lang.static_init
|
61
61
|
def _install_standard_marshalling() -> None:
|
62
|
-
msh.
|
63
|
-
|
62
|
+
msh.install_standard_factories(
|
63
|
+
_ReferenceUnionMarshalerFactory(),
|
64
|
+
_ReferenceUnionUnmarshalerFactory(),
|
65
|
+
)
|
omlish/sql/queries/marshal.py
CHANGED
@@ -65,15 +65,19 @@ def _install_standard_marshalling() -> None:
|
|
65
65
|
(BinaryOp, BinaryOps),
|
66
66
|
(UnaryOp, UnaryOps),
|
67
67
|
]:
|
68
|
-
msh.
|
69
|
-
|
68
|
+
msh.install_standard_factories(
|
69
|
+
msh.TypeMapMarshalerFactory({ty: OpMarshalerUnmarshaler(ty, ns)}),
|
70
|
+
msh.TypeMapUnmarshalerFactory({ty: OpMarshalerUnmarshaler(ty, ns)}),
|
71
|
+
)
|
70
72
|
|
71
73
|
ets = [
|
72
74
|
JoinKind,
|
73
75
|
MultiKind,
|
74
76
|
]
|
75
|
-
msh.
|
76
|
-
|
77
|
+
msh.install_standard_factories(
|
78
|
+
msh.TypeMapMarshalerFactory({t: LowerEnumMarshaler(t) for t in ets}),
|
79
|
+
msh.TypeMapUnmarshalerFactory({t: LowerEnumMarshaler(t) for t in ets}),
|
80
|
+
)
|
77
81
|
|
78
82
|
for cls in [
|
79
83
|
Expr,
|
@@ -87,12 +91,16 @@ def _install_standard_marshalling() -> None:
|
|
87
91
|
naming=msh.Naming.SNAKE,
|
88
92
|
strip_suffix='auto',
|
89
93
|
)
|
90
|
-
msh.
|
91
|
-
|
94
|
+
msh.install_standard_factories(
|
95
|
+
msh.PolymorphismMarshalerFactory(p),
|
96
|
+
msh.PolymorphismUnmarshalerFactory(p),
|
97
|
+
)
|
92
98
|
|
93
99
|
insert_data_impls = msh.Impls([
|
94
100
|
msh.Impl(Values, 'values'),
|
95
101
|
msh.Impl(Select, 'select'),
|
96
102
|
])
|
97
|
-
msh.
|
98
|
-
|
103
|
+
msh.install_standard_factories(
|
104
|
+
msh.PolymorphismUnionMarshalerFactory(insert_data_impls),
|
105
|
+
msh.PolymorphismUnionUnmarshalerFactory(insert_data_impls),
|
106
|
+
)
|
omlish/sql/tabledefs/marshal.py
CHANGED
@@ -6,8 +6,10 @@ from .elements import Element
|
|
6
6
|
|
7
7
|
def _install_poly(cls: type) -> None:
|
8
8
|
p = msh.polymorphism_from_subclasses(cls, naming=msh.Naming.SNAKE)
|
9
|
-
msh.
|
10
|
-
|
9
|
+
msh.install_standard_factories(
|
10
|
+
msh.PolymorphismMarshalerFactory(p),
|
11
|
+
msh.PolymorphismUnmarshalerFactory(p),
|
12
|
+
)
|
11
13
|
|
12
14
|
|
13
15
|
@lang.static_init
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=x26AIwDzScUvnX-p4xlq6Zc5QYrAo0Vmgf1qHc1KL_M,8253
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=OR-PRiAN7dudUKnLMzl2lt9Y5bh8Gy1c1V-wJvtHqLA,3380
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
4
|
omlish/c3.py,sha256=rer-TPOFDU6fYq_AWio_AmA-ckZ8JDY5shIzQ_yXfzA,8414
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
@@ -133,7 +133,7 @@ omlish/bootstrap/base.py,sha256=d8hqn4hp1XMMi5PgcJBQXPKmW47epu8CxBlqDZiRZb4,1073
|
|
133
133
|
omlish/bootstrap/diag.py,sha256=iemH0nQEHEDzyZztvd_ygGGVpRpgn5UG6naxeQTvXp0,5347
|
134
134
|
omlish/bootstrap/harness.py,sha256=VW8YP-yENGyXIuJ8GL_xintArF13nafwpz-iAghPt34,1967
|
135
135
|
omlish/bootstrap/main.py,sha256=yZhOHDDlj4xB5a89dRdT8z58FsqqnpoBg1-tvY2CJe4,5903
|
136
|
-
omlish/bootstrap/marshal.py,sha256=
|
136
|
+
omlish/bootstrap/marshal.py,sha256=mH6KVQILEG7Qb_mULNRe8DGDSZb99mQr9jve4mhqUfc,481
|
137
137
|
omlish/bootstrap/sys.py,sha256=0F0uThMsYdjqUtzrYHr4Xsh_MjscxgWl149i_3tDOqo,8787
|
138
138
|
omlish/codecs/__init__.py,sha256=-FDwRJFGagg-fZyQ8wup4GPuR6gHpmaChzthlykn-kY,876
|
139
139
|
omlish/codecs/base.py,sha256=FLWf5jgxuyZk-7jH0oC5RzJ5Ls5FLxP0hAowrBVEvqo,2246
|
@@ -495,47 +495,47 @@ omlish/manifests/base.py,sha256=D1WvJYcBR_njkc0gpALpFCWh1h3agb9qgqphnbbPlm4,935
|
|
495
495
|
omlish/manifests/load.py,sha256=9mdsS3egmSX9pymO-m-y2Fhs4p6ruOdbsYaKT1-1Hwg,6655
|
496
496
|
omlish/manifests/static.py,sha256=7YwOVh_Ek9_aTrWsWNO8kWS10_j4K7yv3TpXZSHsvDY,501
|
497
497
|
omlish/manifests/types.py,sha256=IOt9dOe0r8okCHSL82ryi3sn4VZ6AT80g_QQR6oZtCE,306
|
498
|
-
omlish/marshal/__init__.py,sha256=
|
499
|
-
omlish/marshal/base.py,sha256=
|
498
|
+
omlish/marshal/__init__.py,sha256=qVRsRvFVixKxfTV1cEvEaZ8r_ZgqcMnh2CyOZ6TWBOU,3372
|
499
|
+
omlish/marshal/base.py,sha256=P64Zn8L2GVi32_6AwLxfwreyFygvc4mBsS-s3ld2Eps,11431
|
500
500
|
omlish/marshal/exceptions.py,sha256=jwQWn4LcPnadT2KRI_1JJCOSkwWh0yHnYK9BmSkNN4U,302
|
501
501
|
omlish/marshal/factories.py,sha256=Q926jSVjaQLEmStnHLhm_c_vqEysN1LnDCwAsFLIzXw,2970
|
502
|
-
omlish/marshal/global_.py,sha256=
|
502
|
+
omlish/marshal/global_.py,sha256=sdBC6PbP77iUAYZ9GIYyAFrbmg14bp6iU3f1l5tpOSE,1378
|
503
503
|
omlish/marshal/naming.py,sha256=lIklR_Od4x1ghltAgOzqcKhHs-leeSv2YmFhCHO7GIs,613
|
504
504
|
omlish/marshal/proxy.py,sha256=puKJpwPpuDlMOIrKMcLTRLJyMiL6n_Xs-p59AuDEymA,543
|
505
505
|
omlish/marshal/registries.py,sha256=FvC6qXHCizNB2QmU_N3orxW7iqfGYkiUXYYdTRWS6HA,2353
|
506
|
-
omlish/marshal/standard.py,sha256=
|
506
|
+
omlish/marshal/standard.py,sha256=TADR75Hd9VSUpuN_Tnu74Bzmvby42P2bzwFwUBC0l-Q,4283
|
507
507
|
omlish/marshal/values.py,sha256=ssHiWdg_L6M17kAn8GiGdPW7UeQOm3RDikWkvwblf5I,263
|
508
508
|
omlish/marshal/composite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
509
|
-
omlish/marshal/composite/iterables.py,sha256=
|
510
|
-
omlish/marshal/composite/literals.py,sha256=
|
511
|
-
omlish/marshal/composite/mappings.py,sha256=
|
512
|
-
omlish/marshal/composite/maybes.py,sha256=
|
513
|
-
omlish/marshal/composite/newtypes.py,sha256=
|
514
|
-
omlish/marshal/composite/optionals.py,sha256=
|
515
|
-
omlish/marshal/composite/wrapped.py,sha256=
|
509
|
+
omlish/marshal/composite/iterables.py,sha256=YdkdWNUe_AzdUqiAsr7z3kaDcPeg7Znj3AuQepY_qaA,2647
|
510
|
+
omlish/marshal/composite/literals.py,sha256=4V8wrZxWe4UxQhcyMC-746a4U03qsyJ_yV1KKu2D_ks,1637
|
511
|
+
omlish/marshal/composite/mappings.py,sha256=HoqUKe4kyCYRdMpQMWW0DLPi0-DEsxt-nk4pCQAcLw4,2804
|
512
|
+
omlish/marshal/composite/maybes.py,sha256=NfQ2cIHHIvohTl4iYPYbEvhNVq3L3JCu2GEbt4DM5DA,2216
|
513
|
+
omlish/marshal/composite/newtypes.py,sha256=5-te247TiPYf84oFhf59tqIOOByXj8i9KaHT8gn72fU,878
|
514
|
+
omlish/marshal/composite/optionals.py,sha256=MnecrmrJYjQvYJipIHNCDq78oH09dOjnw5pvaMKqoeU,1537
|
515
|
+
omlish/marshal/composite/wrapped.py,sha256=jOsn3h1vLIqcoSTB-0KObnsdbV8jSVWJYbf7Kg9AUwg,750
|
516
516
|
omlish/marshal/objects/__init__.py,sha256=F4wej8L_tedC8ETYxAnmKfdPR9TjsqIus9Z3nZofYuc,182
|
517
|
-
omlish/marshal/objects/dataclasses.py,sha256=
|
517
|
+
omlish/marshal/objects/dataclasses.py,sha256=JKFrQiWn0YSYhcfz9-6rnk6NDoRhXqHdMER560z0h14,8515
|
518
518
|
omlish/marshal/objects/helpers.py,sha256=85GZp4h3Yo0GYGmnZpKgNxkWnSk8h2R21nfDLU2DtM0,1110
|
519
|
-
omlish/marshal/objects/marshal.py,sha256=
|
519
|
+
omlish/marshal/objects/marshal.py,sha256=JarKGecMgaFYSUHUj-ZUYVP9HK6u2rjpBb3DWX9Uhh0,2648
|
520
520
|
omlish/marshal/objects/metadata.py,sha256=QVD7DRhXbLda_Edgpc3OD1xT9fthmeaaj6l_nTE1PMM,3307
|
521
|
-
omlish/marshal/objects/namedtuples.py,sha256=
|
522
|
-
omlish/marshal/objects/unmarshal.py,sha256
|
521
|
+
omlish/marshal/objects/namedtuples.py,sha256=8de8L7rwmvr_LLBHHfOl2wHObxc_1yZ8fC_J25yZi7Q,2866
|
522
|
+
omlish/marshal/objects/unmarshal.py,sha256=IXIl_iokvVCSWYhkRORrWP_sE1DVklnrUErGWg_3MDc,3632
|
523
523
|
omlish/marshal/polymorphism/__init__.py,sha256=e2UTrSL0qp7w_1vkdxDWd7sXlWhep2KPV49-BB64ma8,130
|
524
|
-
omlish/marshal/polymorphism/marshal.py,sha256=
|
524
|
+
omlish/marshal/polymorphism/marshal.py,sha256=wVaUxiHMJwyEWfQIE3cuEcJFSMVNJhpdJoa1yRgBPUE,2260
|
525
525
|
omlish/marshal/polymorphism/metadata.py,sha256=vINF55KtmdjCmNwu5K8UeYAF99sR_weYoTHCqHe5_eg,3249
|
526
|
-
omlish/marshal/polymorphism/unions.py,sha256=
|
527
|
-
omlish/marshal/polymorphism/unmarshal.py,sha256=
|
526
|
+
omlish/marshal/polymorphism/unions.py,sha256=NDXh2aVCLUFfi10qvIZR39prtHwjndQiVl13XcIKV3k,4386
|
527
|
+
omlish/marshal/polymorphism/unmarshal.py,sha256=5jJnDarY85PuGTeL_9bwoeHjNIZnfVN3zr5rVhmNoQc,2451
|
528
528
|
omlish/marshal/singular/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
529
|
-
omlish/marshal/singular/base64.py,sha256=
|
529
|
+
omlish/marshal/singular/base64.py,sha256=NutiLaqJn73CcCY94Nf4aL1WvN2dIkblaTqJEzWkHVc,1103
|
530
530
|
omlish/marshal/singular/datetimes.py,sha256=1PDVFF6TGkGxGUno8TaFGRof0DQUookYf_X2Nl8T4V0,3723
|
531
|
-
omlish/marshal/singular/enums.py,sha256=
|
532
|
-
omlish/marshal/singular/numbers.py,sha256=
|
531
|
+
omlish/marshal/singular/enums.py,sha256=TpdOUXUNEHZjI1fWwq1CFxhmRWQ_YodfFG7Vcszccv8,1510
|
532
|
+
omlish/marshal/singular/numbers.py,sha256=wA2m-IPKOwlBI-NIS0dEDizmLXK2pgaEL5FQbr5_HIM,1685
|
533
533
|
omlish/marshal/singular/primitives.py,sha256=EZi2AIi_Onw1pekAiL4ujz4w-ASuOGWCu4MUIE_dCnk,1299
|
534
|
-
omlish/marshal/singular/uuids.py,sha256=
|
534
|
+
omlish/marshal/singular/uuids.py,sha256=rBMn2zwbw8tJoObeyg7E-D3l3OymLg-pguNUqLKGRN0,923
|
535
535
|
omlish/marshal/trivial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
536
|
-
omlish/marshal/trivial/any.py,sha256=
|
537
|
-
omlish/marshal/trivial/forbidden.py,sha256=
|
538
|
-
omlish/marshal/trivial/nop.py,sha256=
|
536
|
+
omlish/marshal/trivial/any.py,sha256=YjbHgUtwktXuFfkPCSQIxdwC6tA70CPA3-msAE4slKs,791
|
537
|
+
omlish/marshal/trivial/forbidden.py,sha256=xGHKjcZ-ygJWjt58XoOoSDJXRitXBsKpr8a0dBiLwK4,1037
|
538
|
+
omlish/marshal/trivial/nop.py,sha256=EoxaCbfkLbDfSGdE_xJbH1ghIeYwaptmqq3OGHKgmAg,471
|
539
539
|
omlish/math/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
540
540
|
omlish/math/bits.py,sha256=LC3dTgrvodNbfxy9dvlya61eQuDEy0azzQLCvEbFHj4,3476
|
541
541
|
omlish/math/floats.py,sha256=UimhOT7KRl8LXTzOI5cQWoX_9h6WNWe_3vcOuO7-h_8,327
|
@@ -575,7 +575,7 @@ omlish/reflect/types.py,sha256=lYxK_hlC4kVDMKeDYJp0mymSth21quwuFAMAEFBznyE,9151
|
|
575
575
|
omlish/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
576
576
|
omlish/secrets/all.py,sha256=zRp3bYkcVG4Aez4hBHKBxc07s6u74IrGQVUB8cfrGxY,281
|
577
577
|
omlish/secrets/crypto.py,sha256=9D21lnvPhStwu8arD4ssT0ih0bDG-nlqIRdVgYL40xA,3708
|
578
|
-
omlish/secrets/marshal.py,sha256=
|
578
|
+
omlish/secrets/marshal.py,sha256=HWhim9pqk0ki9gVlDvnX0UVxnx_cGgWroDMKoprQBfo,1984
|
579
579
|
omlish/secrets/openssl.py,sha256=UT_dXJ4zA1s9e-UHoW_NLGHQO7iouUNPnJNkkpuw3JI,6213
|
580
580
|
omlish/secrets/pwgen.py,sha256=v-5ztnOTHTAWXLGR-3H6HkMj2nPIZBMbo5xWR3q0rDY,1707
|
581
581
|
omlish/secrets/pwhash.py,sha256=Goktn-swmC6PXqfRBnDrH_Lr42vjckT712UyErPjzkw,4102
|
@@ -629,7 +629,7 @@ omlish/specs/jmespath/scope.py,sha256=UyDsl9rv_c8DCjJBuVIA2ESu1jrgYvuwEKiaJDQKnT
|
|
629
629
|
omlish/specs/jmespath/visitor.py,sha256=yneRMO4qf3k2Mdcm2cPC0ozRgOaudzlxRVRGatztJzs,16569
|
630
630
|
omlish/specs/jsonrpc/__init__.py,sha256=QQwr-jkgvwr1ZMlNwl5W1TuHcxx8RuzQVFwWwNhp5sM,515
|
631
631
|
omlish/specs/jsonrpc/errors.py,sha256=-Zgmlo6bV6J8w5f8h9axQgLquIFBHDgIwcpufEH5NsE,707
|
632
|
-
omlish/specs/jsonrpc/marshal.py,sha256=
|
632
|
+
omlish/specs/jsonrpc/marshal.py,sha256=HM736piPGnBZrg8CMLDX-L5fZpegyF6l6JUjzLoSDtk,1852
|
633
633
|
omlish/specs/jsonrpc/types.py,sha256=emEiTPWsjsYy0jCC3It1bUEcu9nHp5y7-j73U1D6vl4,2700
|
634
634
|
omlish/specs/jsonschema/__init__.py,sha256=qmlpJJlB9TBwvE2qCjRHeecNhEYonpbncXfX0T2L-do,1060
|
635
635
|
omlish/specs/jsonschema/types.py,sha256=_H7ma99hD3_Xu42BFGHOXRI5p79tY8WBX8QE36k7lbw,472
|
@@ -656,7 +656,7 @@ omlish/specs/jsonschema/schemas/draft202012/vocabularies/meta-data.json,sha256=j
|
|
656
656
|
omlish/specs/jsonschema/schemas/draft202012/vocabularies/unevaluated.json,sha256=Lb-8tzmUtnCwl2SSre4f_7RsIWgnhNL1pMpWH54tDLQ,506
|
657
657
|
omlish/specs/jsonschema/schemas/draft202012/vocabularies/validation.json,sha256=cBCjHlQfMtK-ch4t40jfdcmzaHaj7TBId_wKvaHTelg,2834
|
658
658
|
omlish/specs/openapi/__init__.py,sha256=mIx7Askk3FNxGE1CDLBQUOOrRGYaqW7cPGVW4_nAFF4,187
|
659
|
-
omlish/specs/openapi/marshal.py,sha256=
|
659
|
+
omlish/specs/openapi/marshal.py,sha256=XAKKmyuqVKw5y8RE8WlQFfNpmmX8tYIaKipmOWGmFwc,2101
|
660
660
|
omlish/specs/openapi/openapi.py,sha256=y4h04jeB7ORJSVrcy7apaBdpwLjIyscv1Ub5SderH2c,12682
|
661
661
|
omlish/specs/proto/Protobuf3.g4,sha256=chDrovFsuZaHf5W35WZNts3jOa1ssPwvWiJR4yVIgjw,5552
|
662
662
|
omlish/specs/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -702,7 +702,7 @@ omlish/sql/queries/binary.py,sha256=dcEzeEn104AMPuQ7QrJU2O-YCN3SUdxB5S4jaWKOUqY,
|
|
702
702
|
omlish/sql/queries/exprs.py,sha256=dG9L218QtJM1HtDYIMWqHimK03N6AL1WONk3FvVRcXY,1480
|
703
703
|
omlish/sql/queries/idents.py,sha256=w2RxO6SR3K-u30S259OtnAZaPv7YA70PzY9R7RtuCQ8,891
|
704
704
|
omlish/sql/queries/inserts.py,sha256=pSQXDSR1oDUmxjeIYuSbxpAZXvYQ-EJF6a62ON5Un-k,1299
|
705
|
-
omlish/sql/queries/marshal.py,sha256=
|
705
|
+
omlish/sql/queries/marshal.py,sha256=TA-wFmLqiK6fhIYwew-9oKa_dfFaIXwNMIE05WVwDd0,3011
|
706
706
|
omlish/sql/queries/multi.py,sha256=7x6x-4jnPzxA6ZasBjnjFuhHFpWt5rGCua3UvuTMIJ0,837
|
707
707
|
omlish/sql/queries/names.py,sha256=4sDvgRobMEt_6mDeuYVbCqHzLCOwpXUdEyyB4-QjxKo,1996
|
708
708
|
omlish/sql/queries/ops.py,sha256=B7IDfjr2DW5LJhWoNaY1WW90BJhe5ZtmxIELhWXbW-0,129
|
@@ -718,7 +718,7 @@ omlish/sql/tabledefs/alchemy.py,sha256=MiNfVSgX_Ka6PmVTgAcCmS3ULK5mfVRXD_VC2-9Ti
|
|
718
718
|
omlish/sql/tabledefs/dtypes.py,sha256=egZDi-A17MC-4R_ZKR_3uQf1a6mGm91Gmh0b72O85bQ,362
|
719
719
|
omlish/sql/tabledefs/elements.py,sha256=lP_Ch19hKmiGYPQVeC8HpFaKdTYnXi2FfpfwKMxZOck,1674
|
720
720
|
omlish/sql/tabledefs/lower.py,sha256=YQf8gl1kxD5Fm-vOxV6G0Feh_D9PP1pYwz_vz6XjTPQ,1405
|
721
|
-
omlish/sql/tabledefs/marshal.py,sha256=
|
721
|
+
omlish/sql/tabledefs/marshal.py,sha256=x8XG0fJLQ6hlwyu957xqnUhr71ouKiRGBWVueZUEMZU,470
|
722
722
|
omlish/sql/tabledefs/tabledefs.py,sha256=lIhvlt0pk6G7RZAtDFsFXm5j0l9BvRfnP7vNGeydHtE,816
|
723
723
|
omlish/subprocesses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
724
724
|
omlish/subprocesses/async_.py,sha256=hPQTWFa3k5CE_s9p1JTY4KdTPOsqLJtq3lGMRznrVpY,2373
|
@@ -776,9 +776,9 @@ omlish/text/parts.py,sha256=Q9NvoyEGQKIWgiPD4D_Qc66cWAuyEKE033dT9m7c3Wk,6662
|
|
776
776
|
omlish/text/random.py,sha256=8feS5JE_tSjYlMl-lp0j93kCfzBae9AM2cXlRLebXMA,199
|
777
777
|
omlish/text/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
778
778
|
omlish/text/go/quoting.py,sha256=N9EYdnFdEX_A8fOviH-1w4jwV3XOQ7VU2WsoUNubYVY,9137
|
779
|
-
omlish-0.0.0.
|
780
|
-
omlish-0.0.0.
|
781
|
-
omlish-0.0.0.
|
782
|
-
omlish-0.0.0.
|
783
|
-
omlish-0.0.0.
|
784
|
-
omlish-0.0.0.
|
779
|
+
omlish-0.0.0.dev270.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
780
|
+
omlish-0.0.0.dev270.dist-info/METADATA,sha256=yrRv07ARNclD2q_004yblEKJRqGAi5VuRPhmU21-rhU,4198
|
781
|
+
omlish-0.0.0.dev270.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
782
|
+
omlish-0.0.0.dev270.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
783
|
+
omlish-0.0.0.dev270.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
784
|
+
omlish-0.0.0.dev270.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|