forked from gemelo-ai/vocos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomegaconf.py
1160 lines (1020 loc) · 38.3 KB
/
omegaconf.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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""OmegaConf module"""
from dataclasses import _MISSING_TYPE
import copy
import inspect
import io
import os
import pathlib
import sys
import warnings
from collections import defaultdict
from contextlib import contextmanager
from enum import Enum
from textwrap import dedent
from typing import (
IO,
Any,
Callable,
Dict,
Generator,
Iterable,
List,
Optional,
Set,
Tuple,
Type,
Union,
overload,
)
import yaml
from . import DictConfig, DictKeyType, ListConfig
from ._utils import (
_DEFAULT_MARKER_,
_ensure_container,
_get_value,
format_and_raise,
get_dict_key_value_types,
get_list_element_type,
get_omega_conf_dumper,
get_type_of,
is_attr_class,
is_dataclass,
is_dict_annotation,
is_int,
is_list_annotation,
is_primitive_container,
is_primitive_dict,
is_primitive_list,
is_structured_config,
is_tuple_annotation,
is_union_annotation,
nullcontext,
split_key,
type_str,
)
from .base import Box, Container, Node, SCMode, UnionNode
from .basecontainer import BaseContainer
from .errors import (
MissingMandatoryValue,
OmegaConfBaseException,
UnsupportedInterpolationType,
ValidationError,
)
from .nodes import (
AnyNode,
BooleanNode,
BytesNode,
EnumNode,
FloatNode,
IntegerNode,
PathNode,
StringNode,
ValueNode,
)
MISSING: Any = "???"
Resolver = Callable[..., Any]
def II(interpolation: str) -> Any:
"""
Equivalent to ``${interpolation}``
:param interpolation:
:return: input ``${node}`` with type Any
"""
return "${" + interpolation + "}"
def SI(interpolation: str) -> Any:
"""
Use this for String interpolation, for example ``"http://${host}:${port}"``
:param interpolation: interpolation string
:return: input interpolation with type ``Any``
"""
return interpolation
def register_default_resolvers() -> None:
from omegaconf.resolvers import oc
OmegaConf.register_new_resolver("oc.create", oc.create)
OmegaConf.register_new_resolver("oc.decode", oc.decode)
OmegaConf.register_new_resolver("oc.deprecated", oc.deprecated)
OmegaConf.register_new_resolver("oc.env", oc.env)
OmegaConf.register_new_resolver("oc.select", oc.select)
OmegaConf.register_new_resolver("oc.dict.keys", oc.dict.keys)
OmegaConf.register_new_resolver("oc.dict.values", oc.dict.values)
class OmegaConf:
"""OmegaConf primary class"""
def __init__(self) -> None:
raise NotImplementedError("Use one of the static construction functions")
@staticmethod
def structured(
obj: Any,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> Any:
return OmegaConf.create(obj, parent, flags)
@staticmethod
@overload
def create(
obj: str,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> Union[DictConfig, ListConfig]:
...
@staticmethod
@overload
def create(
obj: Union[List[Any], Tuple[Any, ...]],
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> ListConfig:
...
@staticmethod
@overload
def create(
obj: DictConfig,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> DictConfig:
...
@staticmethod
@overload
def create(
obj: ListConfig,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> ListConfig:
...
@staticmethod
@overload
def create(
obj: Optional[Dict[Any, Any]] = None,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> DictConfig:
...
@staticmethod
def create( # noqa F811
obj: Any = _DEFAULT_MARKER_,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> Union[DictConfig, ListConfig]:
return OmegaConf._create_impl(
obj=obj,
parent=parent,
flags=flags,
)
@staticmethod
def load(file_: Union[str, pathlib.Path, IO[Any]]) -> Union[DictConfig, ListConfig]:
from ._utils import get_yaml_loader
if isinstance(file_, (str, pathlib.Path)):
with io.open(os.path.abspath(file_), "r", encoding="utf-8") as f:
obj = yaml.load(f, Loader=get_yaml_loader())
elif getattr(file_, "read", None):
obj = yaml.load(file_, Loader=get_yaml_loader())
else:
raise TypeError("Unexpected file type")
if obj is not None and not isinstance(obj, (list, dict, str)):
raise IOError( # pragma: no cover
f"Invalid loaded object type: {type(obj).__name__}"
)
ret: Union[DictConfig, ListConfig]
if obj is None:
ret = OmegaConf.create()
else:
ret = OmegaConf.create(obj)
return ret
@staticmethod
def save(
config: Any, f: Union[str, pathlib.Path, IO[Any]], resolve: bool = False
) -> None:
"""
Save as configuration object to a file
:param config: omegaconf.Config object (DictConfig or ListConfig).
:param f: filename or file object
:param resolve: True to save a resolved config (defaults to False)
"""
if is_dataclass(config) or is_attr_class(config):
config = OmegaConf.create(config)
data = OmegaConf.to_yaml(config, resolve=resolve)
if isinstance(f, (str, pathlib.Path)):
with io.open(os.path.abspath(f), "w", encoding="utf-8") as file:
file.write(data)
elif hasattr(f, "write"):
f.write(data)
f.flush()
else:
raise TypeError("Unexpected file type")
@staticmethod
def from_cli(args_list: Optional[List[str]] = None) -> DictConfig:
if args_list is None:
# Skip program name
args_list = sys.argv[1:]
return OmegaConf.from_dotlist(args_list)
@staticmethod
def from_dotlist(dotlist: List[str]) -> DictConfig:
"""
Creates config from the content sys.argv or from the specified args list of not None
:param dotlist: A list of dotlist-style strings, e.g. ``["foo.bar=1", "baz=qux"]``.
:return: A ``DictConfig`` object created from the dotlist.
"""
conf = OmegaConf.create()
conf.merge_with_dotlist(dotlist)
return conf
@staticmethod
def merge(
*configs: Union[
DictConfig,
ListConfig,
Dict[DictKeyType, Any],
List[Any],
Tuple[Any, ...],
Any,
],
) -> Union[ListConfig, DictConfig]:
"""
Merge a list of previously created configs into a single one
:param configs: Input configs
:return: the merged config object.
"""
assert len(configs) > 0
target = copy.deepcopy(configs[0])
target = _ensure_container(target)
assert isinstance(target, (DictConfig, ListConfig))
with flag_override(target, "readonly", False):
target.merge_with(*configs[1:])
turned_readonly = target._get_flag("readonly") is True
if turned_readonly:
OmegaConf.set_readonly(target, True)
return target
@staticmethod
def unsafe_merge(
*configs: Union[
DictConfig,
ListConfig,
Dict[DictKeyType, Any],
List[Any],
Tuple[Any, ...],
Any,
],
) -> Union[ListConfig, DictConfig]:
"""
Merge a list of previously created configs into a single one
This is much faster than OmegaConf.merge() as the input configs are not copied.
However, the input configs must not be used after this operation as will become inconsistent.
:param configs: Input configs
:return: the merged config object.
"""
assert len(configs) > 0
target = configs[0]
target = _ensure_container(target)
assert isinstance(target, (DictConfig, ListConfig))
with flag_override(
target, ["readonly", "no_deepcopy_set_nodes"], [False, True]
):
target.merge_with(*configs[1:])
turned_readonly = target._get_flag("readonly") is True
if turned_readonly:
OmegaConf.set_readonly(target, True)
return target
@staticmethod
def register_resolver(name: str, resolver: Resolver) -> None:
warnings.warn(
dedent(
"""\
register_resolver() is deprecated.
See https://github.com/omry/omegaconf/issues/426 for migration instructions.
"""
),
stacklevel=2,
)
return OmegaConf.legacy_register_resolver(name, resolver)
# This function will eventually be deprecated and removed.
@staticmethod
def legacy_register_resolver(name: str, resolver: Resolver) -> None:
assert callable(resolver), "resolver must be callable"
# noinspection PyProtectedMember
assert (
name not in BaseContainer._resolvers
), f"resolver '{name}' is already registered"
def resolver_wrapper(
config: BaseContainer,
parent: BaseContainer,
node: Node,
args: Tuple[Any, ...],
args_str: Tuple[str, ...],
) -> Any:
cache = OmegaConf.get_cache(config)[name]
# "Un-escape " spaces and commas.
args_unesc = [x.replace(r"\ ", " ").replace(r"\,", ",") for x in args_str]
# Nested interpolations behave in a potentially surprising way with
# legacy resolvers (they remain as strings, e.g., "${foo}"). If any
# input looks like an interpolation we thus raise an exception.
try:
bad_arg = next(i for i in args_unesc if "${" in i)
except StopIteration:
pass
else:
raise ValueError(
f"Resolver '{name}' was called with argument '{bad_arg}' that appears "
f"to be an interpolation. Nested interpolations are not supported for "
f"resolvers registered with `[legacy_]register_resolver()`, please use "
f"`register_new_resolver()` instead (see "
f"https://github.com/omry/omegaconf/issues/426 for migration instructions)."
)
key = args_str
val = cache[key] if key in cache else resolver(*args_unesc)
cache[key] = val
return val
# noinspection PyProtectedMember
BaseContainer._resolvers[name] = resolver_wrapper
@staticmethod
def register_new_resolver(
name: str,
resolver: Resolver,
*,
replace: bool = False,
use_cache: bool = False,
) -> None:
"""
Register a resolver.
:param name: Name of the resolver.
:param resolver: Callable whose arguments are provided in the interpolation,
e.g., with ${foo:x,0,${y.z}} these arguments are respectively "x" (str),
0 (int) and the value of ``y.z``.
:param replace: If set to ``False`` (default), then a ``ValueError`` is raised if
an existing resolver has already been registered with the same name.
If set to ``True``, then the new resolver replaces the previous one.
NOTE: The cache on existing config objects is not affected, use
``OmegaConf.clear_cache(cfg)`` to clear it.
:param use_cache: Whether the resolver's outputs should be cached. The cache is
based only on the string literals representing the resolver arguments, e.g.,
${foo:${bar}} will always return the same value regardless of the value of
``bar`` if the cache is enabled for ``foo``.
"""
if not callable(resolver):
raise TypeError("resolver must be callable")
if not name:
raise ValueError("cannot use an empty resolver name")
if not replace and OmegaConf.has_resolver(name):
raise ValueError(f"resolver '{name}' is already registered")
try:
sig: Optional[inspect.Signature] = inspect.signature(resolver)
except ValueError:
sig = None
def _should_pass(special: str) -> bool:
ret = sig is not None and special in sig.parameters
if ret and use_cache:
raise ValueError(
f"use_cache=True is incompatible with functions that receive the {special}"
)
return ret
pass_parent = _should_pass("_parent_")
pass_node = _should_pass("_node_")
pass_root = _should_pass("_root_")
def resolver_wrapper(
config: BaseContainer,
parent: Container,
node: Node,
args: Tuple[Any, ...],
args_str: Tuple[str, ...],
) -> Any:
if use_cache:
cache = OmegaConf.get_cache(config)[name]
try:
return cache[args_str]
except KeyError:
pass
# Call resolver.
kwargs: Dict[str, Node] = {}
if pass_parent:
kwargs["_parent_"] = parent
if pass_node:
kwargs["_node_"] = node
if pass_root:
kwargs["_root_"] = config
ret = resolver(*args, **kwargs)
if use_cache:
cache[args_str] = ret
return ret
# noinspection PyProtectedMember
BaseContainer._resolvers[name] = resolver_wrapper
@classmethod
def has_resolver(cls, name: str) -> bool:
return cls._get_resolver(name) is not None
# noinspection PyProtectedMember
@staticmethod
def clear_resolvers() -> None:
"""
Clear(remove) all OmegaConf resolvers, then re-register OmegaConf's default resolvers.
"""
BaseContainer._resolvers = {}
register_default_resolvers()
@classmethod
def clear_resolver(cls, name: str) -> bool:
"""
Clear(remove) any resolver only if it exists.
Returns a bool: True if resolver is removed and False if not removed.
.. warning:
This method can remove deafult resolvers as well.
:param name: Name of the resolver.
:return: A bool (``True`` if resolver is removed, ``False`` if not found before removing).
"""
if cls.has_resolver(name):
BaseContainer._resolvers.pop(name)
return True
else:
# return False if resolver does not exist
return False
@staticmethod
def get_cache(conf: BaseContainer) -> Dict[str, Any]:
return conf._metadata.resolver_cache
@staticmethod
def set_cache(conf: BaseContainer, cache: Dict[str, Any]) -> None:
conf._metadata.resolver_cache = copy.deepcopy(cache)
@staticmethod
def clear_cache(conf: BaseContainer) -> None:
OmegaConf.set_cache(conf, defaultdict(dict, {}))
@staticmethod
def copy_cache(from_config: BaseContainer, to_config: BaseContainer) -> None:
OmegaConf.set_cache(to_config, OmegaConf.get_cache(from_config))
@staticmethod
def set_readonly(conf: Node, value: Optional[bool]) -> None:
# noinspection PyProtectedMember
conf._set_flag("readonly", value)
@staticmethod
def is_readonly(conf: Node) -> Optional[bool]:
# noinspection PyProtectedMember
return conf._get_flag("readonly")
@staticmethod
def set_struct(conf: Container, value: Optional[bool]) -> None:
# noinspection PyProtectedMember
conf._set_flag("struct", value)
@staticmethod
def is_struct(conf: Container) -> Optional[bool]:
# noinspection PyProtectedMember
return conf._get_flag("struct")
@staticmethod
def masked_copy(conf: DictConfig, keys: Union[str, List[str]]) -> DictConfig:
"""
Create a masked copy of of this config that contains a subset of the keys
:param conf: DictConfig object
:param keys: keys to preserve in the copy
:return: The masked ``DictConfig`` object.
"""
from .dictconfig import DictConfig
if not isinstance(conf, DictConfig):
raise ValueError("masked_copy is only supported for DictConfig")
if isinstance(keys, str):
keys = [keys]
content = {key: value for key, value in conf.items_ex(resolve=False, keys=keys)}
return DictConfig(content=content)
@staticmethod
def to_container(
cfg: Any,
*,
resolve: bool = False,
throw_on_missing: bool = False,
enum_to_str: bool = False,
structured_config_mode: SCMode = SCMode.DICT,
) -> Union[Dict[DictKeyType, Any], List[Any], None, str, Any]:
"""
Resursively converts an OmegaConf config to a primitive container (dict or list).
:param cfg: the config to convert
:param resolve: True to resolve all values
:param throw_on_missing: When True, raise MissingMandatoryValue if any missing values are present.
When False (the default), replace missing values with the string "???" in the output container.
:param enum_to_str: True to convert Enum keys and values to strings
:param structured_config_mode: Specify how Structured Configs (DictConfigs backed by a dataclass) are handled.
- By default (``structured_config_mode=SCMode.DICT``) structured configs are converted to plain dicts.
- If ``structured_config_mode=SCMode.DICT_CONFIG``, structured config nodes will remain as DictConfig.
- If ``structured_config_mode=SCMode.INSTANTIATE``, this function will instantiate structured configs
(DictConfigs backed by a dataclass), by creating an instance of the underlying dataclass.
See also OmegaConf.to_object.
:return: A dict or a list representing this config as a primitive container.
"""
if not OmegaConf.is_config(cfg):
raise ValueError(
f"Input cfg is not an OmegaConf config object ({type_str(type(cfg))})"
)
return BaseContainer._to_content(
cfg,
resolve=resolve,
throw_on_missing=throw_on_missing,
enum_to_str=enum_to_str,
structured_config_mode=structured_config_mode,
)
@staticmethod
def to_object(cfg: Any) -> Union[Dict[DictKeyType, Any], List[Any], None, str, Any]:
"""
Resursively converts an OmegaConf config to a primitive container (dict or list).
Any DictConfig objects backed by dataclasses or attrs classes are instantiated
as instances of those backing classes.
This is an alias for OmegaConf.to_container(..., resolve=True, throw_on_missing=True,
structured_config_mode=SCMode.INSTANTIATE)
:param cfg: the config to convert
:return: A dict or a list or dataclass representing this config.
"""
return OmegaConf.to_container(
cfg=cfg,
resolve=True,
throw_on_missing=True,
enum_to_str=False,
structured_config_mode=SCMode.INSTANTIATE,
)
@staticmethod
def is_missing(cfg: Any, key: DictKeyType) -> bool:
assert isinstance(cfg, Container)
try:
node = cfg._get_child(key)
if node is None:
return False
assert isinstance(node, Node)
return node._is_missing()
except (UnsupportedInterpolationType, KeyError, AttributeError):
return False
@staticmethod
def is_interpolation(node: Any, key: Optional[Union[int, str]] = None) -> bool:
if key is not None:
assert isinstance(node, Container)
target = node._get_child(key)
else:
target = node
if target is not None:
assert isinstance(target, Node)
return target._is_interpolation()
return False
@staticmethod
def is_list(obj: Any) -> bool:
from . import ListConfig
return isinstance(obj, ListConfig)
@staticmethod
def is_dict(obj: Any) -> bool:
from . import DictConfig
return isinstance(obj, DictConfig)
@staticmethod
def is_config(obj: Any) -> bool:
from . import Container
return isinstance(obj, Container)
@staticmethod
def get_type(obj: Any, key: Optional[str] = None) -> Optional[Type[Any]]:
if key is not None:
c = obj._get_child(key)
else:
c = obj
return OmegaConf._get_obj_type(c)
@staticmethod
def select(
cfg: Container,
key: str,
*,
default: Any = _DEFAULT_MARKER_,
throw_on_resolution_failure: bool = True,
throw_on_missing: bool = False,
) -> Any:
"""
:param cfg: Config node to select from
:param key: Key to select
:param default: Default value to return if key is not found
:param throw_on_resolution_failure: Raise an exception if an interpolation
resolution error occurs, otherwise return None
:param throw_on_missing: Raise an exception if an attempt to select a missing key (with the value '???')
is made, otherwise return None
:return: selected value or None if not found.
"""
from ._impl import select_value
try:
return select_value(
cfg=cfg,
key=key,
default=default,
throw_on_resolution_failure=throw_on_resolution_failure,
throw_on_missing=throw_on_missing,
)
except Exception as e:
format_and_raise(node=cfg, key=key, value=None, cause=e, msg=str(e))
@staticmethod
def update(
cfg: Container,
key: str,
value: Any = None,
*,
merge: bool = True,
force_add: bool = False,
) -> None:
"""
Updates a dot separated key sequence to a value
:param cfg: input config to update
:param key: key to update (can be a dot separated path)
:param value: value to set, if value if a list or a dict it will be merged or set
depending on merge_config_values
:param merge: If value is a dict or a list, True (default) to merge
into the destination, False to replace the destination.
:param force_add: insert the entire path regardless of Struct flag or Structured Config nodes.
"""
split = split_key(key)
root = cfg
for i in range(len(split) - 1):
k = split[i]
# if next_root is a primitive (string, int etc) replace it with an empty map
next_root, key_ = _select_one(root, k, throw_on_missing=False)
if not isinstance(next_root, Container):
if force_add:
with flag_override(root, "struct", False):
root[key_] = {}
else:
root[key_] = {}
root = root[key_]
last = split[-1]
assert isinstance(
root, Container
), f"Unexpected type for root: {type(root).__name__}"
last_key: Union[str, int] = last
if isinstance(root, ListConfig):
last_key = int(last)
ctx = flag_override(root, "struct", False) if force_add else nullcontext()
with ctx:
if merge and (OmegaConf.is_config(value) or is_primitive_container(value)):
assert isinstance(root, BaseContainer)
node = root._get_child(last_key)
if OmegaConf.is_config(node):
assert isinstance(node, BaseContainer)
node.merge_with(value)
return
if OmegaConf.is_dict(root):
assert isinstance(last_key, str)
root.__setattr__(last_key, value)
elif OmegaConf.is_list(root):
assert isinstance(last_key, int)
root.__setitem__(last_key, value)
else:
assert False
@staticmethod
def to_yaml(cfg: Any, *, resolve: bool = False, sort_keys: bool = False) -> str:
"""
returns a yaml dump of this config object.
:param cfg: Config object, Structured Config type or instance
:param resolve: if True, will return a string with the interpolations resolved, otherwise
interpolations are preserved
:param sort_keys: If True, will print dict keys in sorted order. default False.
:return: A string containing the yaml representation.
"""
cfg = _ensure_container(cfg)
container = OmegaConf.to_container(cfg, resolve=resolve, enum_to_str=True)
return yaml.dump( # type: ignore
container,
default_flow_style=False,
allow_unicode=True,
sort_keys=sort_keys,
Dumper=get_omega_conf_dumper(),
)
@staticmethod
def resolve(cfg: Container) -> None:
"""
Resolves all interpolations in the given config object in-place.
:param cfg: An OmegaConf container (DictConfig, ListConfig)
Raises a ValueError if the input object is not an OmegaConf container.
"""
import omegaconf._impl
if not OmegaConf.is_config(cfg):
# Since this function is mutating the input object in-place, it doesn't make sense to
# auto-convert the input object to an OmegaConf container
raise ValueError(
f"Invalid config type ({type(cfg).__name__}), expected an OmegaConf Container"
)
omegaconf._impl._resolve(cfg)
@staticmethod
def missing_keys(cfg: Any) -> Set[str]:
"""
Returns a set of missing keys in a dotlist style.
:param cfg: An ``OmegaConf.Container``,
or a convertible object via ``OmegaConf.create`` (dict, list, ...).
:return: set of strings of the missing keys.
:raises ValueError: On input not representing a config.
"""
cfg = _ensure_container(cfg)
missings: Set[str] = set()
def gather(_cfg: Container) -> None:
itr: Iterable[Any]
if isinstance(_cfg, ListConfig):
itr = range(len(_cfg))
else:
itr = _cfg
for key in itr:
if OmegaConf.is_missing(_cfg, key):
missings.add(_cfg._get_full_key(key))
elif OmegaConf.is_config(_cfg[key]):
gather(_cfg[key])
gather(cfg)
return missings
# === private === #
@staticmethod
def _create_impl( # noqa F811
obj: Any = _DEFAULT_MARKER_,
parent: Optional[BaseContainer] = None,
flags: Optional[Dict[str, bool]] = None,
) -> Union[DictConfig, ListConfig]:
try:
from ._utils import get_yaml_loader
from .dictconfig import DictConfig
from .listconfig import ListConfig
if obj is _DEFAULT_MARKER_:
obj = {}
if isinstance(obj, str):
obj = yaml.load(obj, Loader=get_yaml_loader())
if obj is None:
return OmegaConf.create({}, parent=parent, flags=flags)
elif isinstance(obj, str):
return OmegaConf.create({obj: None}, parent=parent, flags=flags)
else:
assert isinstance(obj, (list, dict))
return OmegaConf.create(obj, parent=parent, flags=flags)
else:
if (
is_primitive_dict(obj)
or OmegaConf.is_dict(obj)
or is_structured_config(obj)
or obj is None
):
if isinstance(obj, DictConfig):
return DictConfig(
content=obj,
parent=parent,
ref_type=obj._metadata.ref_type,
is_optional=obj._metadata.optional,
key_type=obj._metadata.key_type,
element_type=obj._metadata.element_type,
flags=flags,
)
else:
obj_type = OmegaConf.get_type(obj)
key_type, element_type = get_dict_key_value_types(obj_type)
return DictConfig(
content=obj,
parent=parent,
key_type=key_type,
element_type=element_type,
flags=flags,
)
elif is_primitive_list(obj) or OmegaConf.is_list(obj):
if isinstance(obj, ListConfig):
return ListConfig(
content=obj,
parent=parent,
element_type=obj._metadata.element_type,
ref_type=obj._metadata.ref_type,
is_optional=obj._metadata.optional,
flags=flags,
)
else:
obj_type = OmegaConf.get_type(obj)
element_type = get_list_element_type(obj_type)
return ListConfig(
content=obj,
parent=parent,
element_type=element_type,
ref_type=Any,
is_optional=True,
flags=flags,
)
else:
if isinstance(obj, type):
raise ValidationError(
f"Input class '{obj.__name__}' is not a structured config. "
"did you forget to decorate it as a dataclass?"
)
elif isinstance(obj, _MISSING_TYPE):
return DictConfig(content={}, parent=parent)
else:
raise ValidationError(
f"Object of unsupported type: '{type(obj).__name__}'"
)
except OmegaConfBaseException as e:
format_and_raise(node=None, key=None, value=None, msg=str(e), cause=e)
assert False
@staticmethod
def _get_obj_type(c: Any) -> Optional[Type[Any]]:
if is_structured_config(c):
return get_type_of(c)
elif c is None:
return None
elif isinstance(c, DictConfig):
if c._is_none():
return None
elif c._is_missing():
return None
else:
if is_structured_config(c._metadata.object_type):
return c._metadata.object_type
else:
return dict
elif isinstance(c, ListConfig):
return list
elif isinstance(c, ValueNode):
return type(c._value())
elif isinstance(c, UnionNode):
return type(_get_value(c))
elif isinstance(c, dict):
return dict
elif isinstance(c, (list, tuple)):
return list
else:
return get_type_of(c)
@staticmethod
def _get_resolver(
name: str,
) -> Optional[
Callable[
[Container, Container, Node, Tuple[Any, ...], Tuple[str, ...]],
Any,
]
]:
# noinspection PyProtectedMember
return (
BaseContainer._resolvers[name] if name in BaseContainer._resolvers else None
)
# register all default resolvers
register_default_resolvers()
@contextmanager
def flag_override(
config: Node,
names: Union[List[str], str],
values: Union[List[Optional[bool]], Optional[bool]],
) -> Generator[Node, None, None]:
if isinstance(names, str):
names = [names]
if values is None or isinstance(values, bool):
values = [values]
prev_states = [config._get_node_flag(name) for name in names]
try:
config._set_flag(names, values)
yield config
finally:
config._set_flag(names, prev_states)
@contextmanager
def read_write(config: Node) -> Generator[Node, None, None]:
prev_state = config._get_node_flag("readonly")
try:
OmegaConf.set_readonly(config, False)
yield config
finally:
OmegaConf.set_readonly(config, prev_state)
@contextmanager
def open_dict(config: Container) -> Generator[Container, None, None]:
prev_state = config._get_node_flag("struct")
try:
OmegaConf.set_struct(config, False)
yield config
finally:
OmegaConf.set_struct(config, prev_state)
# === private === #
def _node_wrap(
parent: Optional[Box],
is_optional: bool,
value: Any,