omlish 0.0.0.dev268__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/dataclasses/__init__.py +7 -0
- omlish/dataclasses/impl/metaclass.py +1 -0
- omlish/dataclasses/impl/simple.py +1 -1
- omlish/formats/toml/parser.py +593 -594
- omlish/lang/classes/abstract.py +3 -0
- omlish/lang/comparison.py +3 -0
- omlish/lang/datetimes.py +3 -0
- omlish/lang/generators.py +2 -2
- omlish/lang/maybes.py +3 -0
- omlish/lang/resolving.py +3 -0
- omlish/lang/sys.py +3 -0
- 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 +5 -5
- 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/metadata.py +9 -3
- 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/alchemy/__init__.py +31 -0
- omlish/sql/alchemy/apiadapter.py +121 -0
- omlish/sql/api/__init__.py +39 -0
- omlish/sql/api/base.py +1 -0
- omlish/sql/parsing/parsing.py +1 -1
- omlish/sql/queries/__init__.py +4 -0
- omlish/sql/queries/base.py +113 -2
- omlish/sql/queries/exprs.py +15 -2
- omlish/sql/queries/inserts.py +2 -1
- omlish/sql/queries/marshal.py +23 -9
- omlish/sql/queries/params.py +3 -2
- omlish/sql/queries/rendering.py +16 -4
- omlish/sql/queries/selects.py +17 -2
- omlish/sql/tabledefs/marshal.py +4 -2
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/RECORD +62 -61
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev268.dist-info → omlish-0.0.0.dev270.dist-info}/top_level.txt +0 -0
omlish/lang/classes/abstract.py
CHANGED
omlish/lang/comparison.py
CHANGED
omlish/lang/datetimes.py
CHANGED
omlish/lang/generators.py
CHANGED
@@ -203,8 +203,8 @@ class GeneratorMappedIterator(ta.Generic[O, I, R]):
|
|
203
203
|
Like a `map` iterator but takes a generator instead of a function. Provided generator *must* yield outputs 1:1 with
|
204
204
|
inputs.
|
205
205
|
|
206
|
-
Generator return value will be captured on `value` property - if
|
207
|
-
stopped.
|
206
|
+
Generator return value will be captured on `value` property - present if the generator stopped, absent if the
|
207
|
+
iterator stopped.
|
208
208
|
"""
|
209
209
|
|
210
210
|
def __init__(self, g: ta.Generator[O, I, R], it: ta.Iterator[I]) -> None:
|
omlish/lang/maybes.py
CHANGED
omlish/lang/resolving.py
CHANGED
omlish/lang/sys.py
CHANGED
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
|
@@ -66,7 +66,7 @@ def get_dataclass_field_infos(
|
|
66
66
|
type_hints = ta.get_type_hints(ty)
|
67
67
|
|
68
68
|
ret: list[FieldInfo] = []
|
69
|
-
for field in dc_rf.
|
69
|
+
for field in dc_rf.instance_fields:
|
70
70
|
if (f_naming := field.metadata.get(Naming, dc_naming)) is not None:
|
71
71
|
um_name = translate_name(field.name, f_naming)
|
72
72
|
else:
|
@@ -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
|