-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharg.py
572 lines (457 loc) · 18.5 KB
/
arg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
import argparse
import dataclasses
from enum import EnumMeta, IntEnum, Enum
from io import IOBase
from typing import Callable, Union, Dict, TypeVar, Type
import inspect
import pytest
__all__ = (
"Arg",
"Int",
"Float",
"Str",
"Choice",
"File",
"Bool",
"List",
"parse_to",
"Arg_Container",
"Force_Annotation",
)
class repr_override:
"""Provides enum-specific repr override for nice looks"""
def __init__(self, v):
self.v = v
def __repr__(self):
return str(self.v.name)
def __str__(self):
return str(self.v.name)
def __eq__(self, other):
return other == self.v
def __hash__(self):
return hash(self.v)
@dataclasses.dataclass
class Force_Annotation:
"""Forces all dataclass fields to be annotated. You can inherit this class to get the behaviour,
make sure to call __post_init__.
This will not check for fields which are functions or start with __"""
def __post_init__(self):
for vn, v in self.__class__.__dict__.items():
if vn.startswith("__"):
continue
if inspect.isfunction(v) or inspect.isdatadescriptor(v) or inspect.ismethod(v):
continue
if vn not in self.__annotations__:
print(vn, v, type(v), v.__dict__)
raise TypeError(f"All variables in {self.__class__} must be annotated, {vn} was not!")
class Arg:
"""Basic argument, type is not inferred, kwargs are passed to argparse"""
def __init__(
self, typ: Union[type, Callable[[str], object]], pos: bool = False, **kwargs
):
"""
:param typ: type of data / function to convert from str to object
:param pos: flag to indicate if positional
:param kwargs: passed to argparse
"""
kwargs = kwargs.copy()
kwargs["type"] = typ
self.kwargs = kwargs
self.pos = pos
def set_default(self, default) -> None:
"""
Called when default value is known. Internal use.
:param default:
"""
if isinstance(default, Enum):
self.kwargs["default"] = repr_override(default)
else:
self.kwargs["default"] = default
def validate(self, val: object) -> object:
try:
self.typ(val)
except ValueError:
raise argparse.ArgumentTypeError(f"{val} is not of expected type {self.typ} and can not be coerced")
return self.typ(val)
@property
def typ(self):
return self.kwargs.get("type", None)
class Int(Arg):
"""Int argument"""
def __init__(self, bounds=(None, None), **kwargs):
self.bounds = bounds
assert len(bounds) == 2
assert (bounds[1] is None) or (bounds[0] is None) or (bounds[1] >= bounds[0])
Arg.__init__(self, typ=int, **kwargs)
def validate(self, val: object) -> int:
v = Arg.validate(self, val)
if self.bounds[0] is not None:
assert (v >= self.bounds[0])
if self.bounds[1] is not None:
assert (v <= self.bounds[1])
return v
class Bool(Arg):
"""Bool argument"""
def __init__(self, flag=False, **kwargs):
"""
:param flag: if true the value will act as a flag (as in store_true)
:param kwargs: passed to argparse
"""
self.flag = flag
Arg.__init__(self, typ=bool, **kwargs)
if "default" in kwargs:
self.set_default(kwargs["default"])
def set_default(self, default):
def strtobool(val):
"""Convert a string representation of truth to true (1) or false (0).
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
'val' is anything else.
"""
val = val.lower()
if val in ("y", "yes", "t", "true", "on", "1"):
return True
elif val in ("n", "no", "f", "false", "off", "0"):
return False
else:
raise ValueError("invalid truth value %r" % (val,))
if self.flag:
try:
# This is ok to ignore since same instance may be used to parse many times,
# in which case this is already done
self.kwargs.pop("type")
except KeyError:
pass
if default is True:
self.kwargs["action"] = "store_false"
elif default is False:
self.kwargs["action"] = "store_true"
else:
raise ValueError("Bool flags must have default set!")
else:
self.kwargs["type"] = strtobool
Arg.set_default(self, default)
class Float(Arg):
"""Float argument"""
def __init__(self, bounds=(None, None), **kwargs):
self.bounds = bounds
assert len(bounds) == 2
assert (bounds[1] is None) or (bounds[0] is None) or (bounds[1] >= bounds[0])
Arg.__init__(self, typ=float, **kwargs)
def validate(self, val: object) -> float:
v = Arg.validate(self, val)
if self.bounds[0] is not None:
assert (v >= self.bounds[0])
if self.bounds[1] is not None:
assert (v <= self.bounds[1])
return v
class Str(Arg):
"""String argument"""
def __init__(self, **kwargs):
Arg.__init__(self, typ=str, **kwargs)
class _MetaList(type):
def __getitem__(self, item):
return self(typ=item, action="extend", nargs="+")
class List(Arg, metaclass=_MetaList):
"""List of certain homogenous type items
Format is
" --arg 1 2 3 4 "
where 1 2 3 4 are the elements to be in the list.
Alternatively, one can specify
" --arg 1 --arg 2 --arg 3 --arg 4 "
"""
def __init__(
self,
**kwargs,
):
Arg.__init__(self, **kwargs)
def __call__(self, **kwargs):
self.kwargs.update(kwargs)
return self
def validate(self, val: object) -> list:
newlist = []
if not isinstance(val, list):
raise argparse.ArgumentTypeError("Expected a list")
for v in val:
try:
v = self.typ(v)
except ValueError:
raise argparse.ArgumentTypeError(f"Expected elements to be {self.typ}, got {v}:{type(v)}")
newlist.append(v)
return v
class _MetaChoice(type):
"""
Implementation details (metaclass) for Choice class.
"""
def __getitem__(self, item):
"""Get a variant of Choice for a given type"""
if isinstance(item, EnumMeta):
choices = [repr_override(f) for f in item]
extra_help = "; ".join(f"{f.name}: {f.value}" for f in item)
if issubclass(item, IntEnum):
def typ(x):
# Try cast directly from int value
try:
return item(int(x))
except ValueError:
raise argparse.ArgumentTypeError(
f"invalid {item.__name__} value: {x}"
)
else:
def typ(x):
try:
return getattr(item, x)
except AttributeError:
raise argparse.ArgumentTypeError(
f"invalid {item.__name__} value: {x}"
)
else:
choices = list(item)
typ = type(item[0])
extra_help = None
return self(choices=choices, typ=typ, extra_help=extra_help)
class Choice(Arg, metaclass=_MetaChoice):
"""Choice out of iterable or Enum subclass.
If enum is given as argument, the names of the fields will be used,
and values will be returned.
"""
def __init__(self, choices, extra_help=None, **kwargs):
self.extra_help = extra_help
self.choices = choices
Arg.__init__(self, choices=choices, **kwargs)
def __call__(self, **kwargs):
assert "choices" not in kwargs
if self.extra_help is not None:
if "help" in kwargs:
kwargs["help"] += " [" + self.extra_help + "]"
else:
kwargs["help"] = "[" + self.extra_help + "]"
self.kwargs.update(kwargs)
return self
def validate(self, val: object) -> object:
# for choice of primitive types (int, float) make sure arg is correct
if self.typ in autocast_types:
if not isinstance(val, self.typ):
raise argparse.ArgumentTypeError(f"{val} is not of expected type {self.typ}")
# for enums etc we just call constructor to validate
x = self.typ(val)
if x not in self.choices:
raise argparse.ArgumentTypeError(f"{x} is not one of {self.choices}")
return x
class File(Arg):
"""File argument"""
def __init__(self, mode="r", bufsize=-1, encoding=None, errors=None, **kwargs):
self.mode = mode
Arg.__init__(
self, typ=argparse.FileType(mode, bufsize, encoding, errors), **kwargs
)
def validate(self, val: object) -> object:
return open(val, self.mode)
autocast_types = {int: Int, float: Float, str: Str, bool: Bool}
@dataclasses.dataclass
class Arg_Container(Force_Annotation):
"""Argument Container class"""
def asdict(self) -> Dict[str, object]:
result = {}
for f in dataclasses.fields(self):
value = getattr(self, f.name)
if isinstance(value, IOBase) and hasattr(value, "name"):
value = value.name
result[f.name] = value
return result
def to_json(self):
result = {}
for f in dataclasses.fields(self):
value = getattr(self, f.name)
if isinstance(value, IOBase):
if hasattr(value, "name"):
value = value.name
else:
raise TypeError(f"Could not convert filed {f.name}={value}")
if isinstance(value, Enum):
value = value.name
result[f.name] = value
return result
@classmethod
def from_dict(cls, data: dict[str, object]):
# raise NotImplementedError("This is too hard")
# print("WAAA")
fill_data = {}
for field in dataclasses.fields(cls):
name = field.name
default = field.default
default_factory = field.default_factory
value_or_class = field.type
try:
if isinstance(value_or_class, type):
# Type is not an instance (e.g. int or float)
if issubclass(value_or_class, Arg):
d = data.get(name, default)
#print(1, value_or_class, d, name, default)
fill_data[name] = value_or_class().validate(d)
elif value_or_class in autocast_types: # this handles primitive types
d = data.get(name, default)
#print(2, value_or_class, d, name, default)
assert isinstance(d, value_or_class)
# downcast to the expected type just in case
fill_data[name] = value_or_class(d)
else:
raise argparse.ArgumentTypeError(
f"Values must be typed as subclasses of Arg or be one of {autocast_types}"
)
else:
value = value_or_class
if default is not None and default_factory == dataclasses.MISSING:
default = default
else:
default = default_factory()
d = data.get(name, default)
#print(3, value_or_class, d, name, default)
fill_data[name] = value.validate(d)
except argparse.ArgumentTypeError as e:
e.add_note(f"Could not parse argument {name}")
raise e
return cls(**fill_data)
def test_from_dict(arg_definitions):
import json
jj = '''{"list_of_int": [1, 2, 3], "req_str":"bla", "opt_str":"foo", "bare_str":"ads",
"int_field":10, "bare_int":20,"no_help_str":"NO HELP",
"float_field":1.2,
"bare_float":35.0, "str_enum_field":"A","int_enum_field":2,"list_choice":7}'''
a = arg_definitions.from_dict(json.loads(jj))
print(a)
#with pytest.raises(argparse.ArgumentTypeError):
jj = '''{"list_of_int": [1.1, 2.3, 3], "req_str":"bla", "opt_str":"foo", "bare_str":"ads",
"int_field":10, "bare_int":20,"no_help_str":"NO HELP",
"float_field":1.2,
"bare_float":35.0, "str_enum_field":"A","int_enum_field":2,"list_choice":7}'''
a = arg_definitions.from_dict(json.loads(jj))
print(a)
with pytest.raises(argparse.ArgumentTypeError):
jj = '''{"list_of_int": [1, 2, 3], "req_str":"bla", "opt_str":"foo", "bare_str":"ads",
"int_field":10, "bare_int":20,"no_help_str":"NO HELP",
"float_field":1.2,
"bare_float":35.0, "str_enum_field":"A","int_enum_field":2,"list_choice":70}'''
a = arg_definitions.from_dict(json.loads(jj))
print(a)
with pytest.raises(argparse.ArgumentTypeError):
jj = '''{"list_of_int": [1, 2, 3], "req_str":"bla", "opt_str":"foo", "bare_str":"ads",
"int_field":10, "bare_int":20,"no_help_str":"NO HELP",
"float_field":1.2,
"bare_float":35.0, "str_enum_field":"A","int_enum_field":2,"list_choice":7.0}'''
a = arg_definitions.from_dict(json.loads(jj))
print(a)
A = TypeVar("A", Arg_Container, Arg_Container)
def parse_to(
container_class: Type[A],
epilog: str = "",
transform_names: Callable[[str], str] = None,
verbose: bool = False,
args=None,
) -> A:
"""
Parse command line using argparse into the provided container class.
:param container_class: a frozen dataclass which will hold the parsed values
:param epilog: epilog message for argparse
:param transform_names: callable to mess with variable names (e.g. to do char translation/capitalization etc)
:param verbose: set if you want the produced argparse code to be dumped
:param args: passed verbatim to ArgumentParser.parse_args
:return: container_class filled in with parsed args.
"""
assert issubclass(
container_class,
Arg_Container,
), "container_class should be a subclass of Arg_Container"
def mangle_name(n: str, positional: bool):
s = "" if positional else "--"
if transform_names is not None:
n = transform_names(n)
return s + n
parser = argparse.ArgumentParser(description=container_class.__doc__, epilog=epilog)
for field in dataclasses.fields(container_class):
name = field.name
default = field.default
default_factory = field.default_factory
value_or_class = field.type
if isinstance(
value_or_class, type
): # Type is not an instance (e.g. int or float)
if issubclass(value_or_class, Arg):
# noinspection PyArgumentList
value = value_or_class(default=default)
elif value_or_class in autocast_types: # this handles primitive types
# noinspection PyTypeChecker
value = autocast_types[value_or_class](default=default) # type: ignore
else:
raise TypeError(
f"Values must be typed as subclasses of Arg or be one of {autocast_types}"
)
else:
value = value_or_class
if default is not None and default_factory == dataclasses.MISSING:
value.set_default(default)
if verbose:
print("add_argument", mangle_name(name, value.pos), value.kwargs)
parser.add_argument(mangle_name(name, value.pos), **value.kwargs)
arg_dict = parser.parse_args(args=args)
corrected_dict = {}
for k, v in vars(arg_dict).items():
if isinstance(v, repr_override):
v = v.v
corrected_dict[k] = v
return container_class(**corrected_dict)
@pytest.fixture
def arg_definitions():
class str_enum(Enum):
"""Enum of strings of things"""
A = "All the things"
B = "Best of things"
class int_enum(IntEnum):
ONE = 1
TWO = 2
@dataclasses.dataclass
class Args(Arg_Container):
"""Example of description for your application"""
no_help_str: Str = "no_help_str_default"
req_str: Str(help="required str field") = "req_str_default"
opt_str: Str(help="str field") = "opt_str_default"
bare_str: str = "bare_str_default"
int_field: Int(help="Int field") = 120
bare_int: int = 150
float_field: Float(help="Float field") = 10.0
bare_float: float = 15.0
str_enum_field: Choice[str_enum](help="choice from string enum") = str_enum.A
int_enum_field: Choice[int_enum](help="choice from int enum") = int_enum.TWO
list_choice: Choice[[3, 4, 7]](help="choice from iterable") = 4
list_of_int: List[int](help="List of integers") = dataclasses.field(
default_factory=list
)
bool_field: bool = False
bool_flag: Bool(flag=True) = False
bool_switch: Bool(flag=False) = False
return Args
def test_parse(arg_definitions):
opt = "--list_of_int 1 2 3 --req_str=bla --opt_str=foo --bare_str=ads --int_field=10 --bare_int=20 --float_field=1.2 \
--bare_float=35.0 --str_enum_field=A --int_enum_field=2 --list_choice=7 ".split()
args = parse_to(arg_definitions, args=opt, verbose=True)
print(args)
def test_fail(arg_definitions):
opt = "--req_str=asd --opt_str=foo --bare_str=ads --int_field=10 --bare_int=20 --float_field=1.2 \
--bare_float=35.0 --str_enum_field=C --int_enum_field=2 --list_choice=7".split()
with pytest.raises(SystemExit):
parse_to(arg_definitions, args=opt)
def test_help(arg_definitions):
with pytest.raises(SystemExit):
parse_to(arg_definitions, args=["--help"])
def test_bool(arg_definitions):
opt = "--bool_field=False --bool_switch=False".split()
args = parse_to(arg_definitions, args=opt, verbose=True)
# print(args.bool_field, args.bool_flag, args.bool_switch)
assert not args.bool_field
assert not args.bool_flag
assert not args.bool_switch
opt = "--bool_field=True --bool_flag --bool_switch=True".split()
args = parse_to(arg_definitions, args=opt, verbose=True)
assert args.bool_field
assert args.bool_flag
assert args.bool_switch