-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration_handler.py
106 lines (78 loc) · 3.31 KB
/
configuration_handler.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
import configargparse
#singleton helper class for storing options
class SingleTone(object):
__instance = None
def __new__(cls, val):
if SingleTone.__instance is None:
SingleTone.__instance = object.__new__(cls)
SingleTone.__instance.val = val
return SingleTone.__instance
@staticmethod
def get_value():
return SingleTone.__instance.val
class ConfigurationHandler(object):
def __init__(self, first_init = False, fill_unkown_args = False, coded_configuration_paths=None):
self._initialized = False
self._options = None
self._parser = None
if first_init is True:
self._initialized = True
parser = configargparse.get_argument_parser(default_config_files=coded_configuration_paths)
options = self.add_all_args(parser, fill_unkown_args)
self._options = options
singleton_options = SingleTone(options)
self._parser = parser
else:
#parser = configargparse.get_argument_parser()
#options, junk = parser.parse_known_args()
self._options = SingleTone.get_value()
def add_all_args(self, parser, fill_unkown_args):
# parse.add for specific type and name description
# parser.add('-ne', '--number_example', type=int) #testing argument
if fill_unkown_args is True:
options, unknown_args = parser.parse_known_args()
key = ""
prev_key = ""
list_keys = [] # keys which classify a list item
for option in unknown_args:
if "--" in option[0:2]:
key = option
if key == prev_key:
list_keys.append(key)
prev_key = key
key = " "
list_appended_keys = [] # notation that this list with that key already was added
boolean_keys = []
for option_index, option in enumerate(unknown_args):
if "--" in option[0:2]:
key = option
elif key not in list_appended_keys:
value = option
if value == "True" or value == "False":
boolean_keys.append(key)
parser.add(key)
elif value.isdigit():
parser.add(key, type=int)
elif key in list_keys:
parser.add(key, nargs='+')
list_keys.remove(key)
list_appended_keys.append(key) # note key this list a
else:
parser.add(key)
options, unknown_args = parser.parse_known_args()
# solves that boolean is always set to 'True', https://github.com/bw2/ConfigArgParse/issues/35
ol = vars(options)
for option in ol:
value = getattr(options, option)
value_bool = None
if not isinstance(value, str):
continue
if value.lower() == "false":
value_bool = False
if value.lower() == "true":
value_bool = True
if value_bool is not None:
setattr(options,option,value_bool)
return options
def get_config(self):
return self._options