forked from avadhpatel/marss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_helper.py
209 lines (175 loc) · 6.7 KB
/
config_helper.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
# config_helper.py
#
# Provide support to SCons to parse/setup Marss configuration via config files
# First check if system has yaml installed then use that
try:
import yaml
except (ImportError, NotImplementedError):
import sys
sys.path.append("ptlsim/lib/python")
import yaml
try:
from yaml import CLoader as Loader
except:
from yaml import Loader
import os
import sys
import copy
# Module local variables and functions
_required_cache_params = [
'SIZE', 'LINE_SIZE', 'ASSOC', 'LATENCY', 'READ_PORTS', 'WRITE_PORTS']
_required_mem_params = ['LATENCY']
_required_keys = {
'config': ['core', 'cache', 'machine', 'memory'],
'core': ['base'],
'cache': ['base', { 'params' : _required_cache_params } ],
'memory': ['base'],
'machine': ['description', 'min_contexts',
'cores', 'caches', 'interconnects'],
}
_debug_t = False
_top_conf_file = ""
_files_parsed = []
def parse_config(config_file="config", debug=False):
'''Parse provided configuration file and return a dict with all
configuration parameters read from the file.
'''
global _debug_t,_top_conf_file
_debug_t = debug
_top_conf_file = config_file
if os.path.isfile(config_file):
config = _parse_file(config_file)
elif os.path.isdir(config_file):
config = _parse_dir(config_file)
_check_required_key(_required_keys, 'config', config, config_file)
_merge_params(config)
_debug(yaml.dump(config))
return config
def save_config(config_filename, config):
'''Save given configuration into dump_file as yaml format'''
if not os.path.exists(os.path.dirname(config_filename)):
os.mkdir(os.path.dirname(config_filename))
with open(config_filename, 'w') as config_file:
config_file.write(yaml.dump(config))
_debug("Written configuration in : %s" % config_filename)
def _error(string, flname=None):
if not flname: flname = _top_conf_file
string = "[ERROR] [CONFIG_PARSER] [File:%s] %s" % (flname, string)
print(string)
sys.exit(-1)
def _debug(string):
if _debug_t:
string = "[CONFIG_PARSER] %s" % string
print(string)
def _check_config(config):
'''Check config if it has all required parameters like
core, cache and machine configuration'''
for key in _required_keys['config']:
if not config[key]:
_error("Unable to find any '%s' configuration. Aborting.." %
key)
def _check_required_key(req_objs, obj_key, obj, filename, objName=None):
req_obj = req_objs[obj_key]
for key in req_obj:
if type(key) == dict:
for key1,val1 in key.items():
_check_required_key(key, key1, obj[key1], filename, objName)
elif not obj.has_key(key):
errmsg = "\nERROR:\n"
errmsg += "\tFile: %s\n" % filename
errmsg += "\tConfiguration: %s\n" % obj_key
if objName:
errmsg += "\tObject: %s\n" % objName
errmsg += "\tis Missing required key: %s" % key
_error(errmsg)
elif not obj[key]:
errmsg = "\nERROR:\n"
errmsg += "\tFile: %s\n" % filename
errmsg += "\tConfiguration: %s\n" % obj_key
if objName:
errmsg += "\tObject: %s\n" % objName
errmsg += "\tis Missing required value for key: %s" % key
_error(errmsg)
def _parse_file(filename,
config={'core': {}, 'cache': {}, 'machine': {}, 'memory': {}}):
'''Parse given YAML file.'''
if filename in _files_parsed:
return config
else:
_files_parsed.append(filename)
_debug("Reading config file %s" % filename)
try:
with open(filename, 'r') as fl:
for doc in yaml.load_all(fl):
if doc.has_key('import'):
[_parse_file(_full_filename(filename, import_file), config)
for import_file in doc['import']]
_merge_docs(config, doc, filename)
except IOError, e:
_error("Unable to read config file: %s, Exception %s" % (
str(filename), str(e)))
return config
def _parse_dir(dirname,
config={'core': {}, 'cache': {}, 'machine': {}, 'memory': {}}):
_debug("Traversing config directory %s" % dirname)
dirList=os.listdir(dirname)
for fname in dirList:
ext = os.path.splitext(fname)
if len(ext) > 1 and ext[1] == ".conf" and \
fname not in _files_parsed:
config = _parse_file("%s/%s" % (dirname, fname), config)
return config
def _full_filename(basefile, filename):
if os.path.isabs(filename):
return filename
return os.path.join(os.path.dirname(basefile), filename)
def _merge_docs(base, new, filename):
'''Merge contents of new into base'''
for key in _required_keys['config']:
_debug("Key : %s" % key)
if new.has_key(key):
for name,obj in new[key].items():
if base[key].has_key(name):
err_st = "Found 2nd defination of module %s type %s" % (
name, key)
err_st += "\nFirst Defination in file: %s" % (
base[key][name]['_file'])
err_st += "\nSecond Definatio in file: %s" % (
os.path.abspath(filename))
_error(err_st)
if obj.has_key('base'):
_merge_obj_parms(new[key], obj)
_check_required_key(_required_keys, key, obj, filename, name)
obj['_file'] = os.path.abspath(filename)
base[key][name] = obj
def _merge_params(conf):
'''Merge all the params of 'core' and 'caches'.'''
for key in ['core', 'cache', 'memory']:
for objName, obj in conf[key].items():
_merge_obj_parms(conf[key], obj)
def _merge_obj_parms(keyObj, obj):
'''Merge params of given object under 'key'.'''
if obj.has_key('_params_merged'):
_debug("Found Obj with params merged: %s" % str(obj))
return
base_name = obj['base']
base = _get_base_obj(keyObj, base_name)
if base and base != obj:
if not base.has_key('_params_merged'):
_merge_obj_parms(keyObj, base)
params = copy.copy(base['params'])
params.update(obj['params'])
obj['params'] = params
obj['base'] = base['base']
obj['_params_merged'] = True
def _get_base_obj(store, base_name):
'''Return a base object from the list if present'''
try:
return store[base_name]
except:
return None
if __name__ == "__main__":
if len(sys.argv) == 2:
config = parse_config(sys.argv[1], debug=True)
else:
config = parse_config(debug=True)