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
|
__author__ = 'roland'
def find_paths(cls, arg, path=None, seen=None, res=None, lev=0):
if lev == 0 and res is None:
res = []
if path is None:
path = []
if seen is None:
seen = [cls]
else:
if cls in seen:
return None
seen.append(cls)
for cn, c in cls.c_children.values():
_path = path + [cn]
if cn == arg:
if res is not None:
res.append(_path)
else:
if isinstance(c, list):
_c = c[0]
else:
_c = c
find_paths(_c, arg, _path, seen, res)
for an, typ, mult in cls.c_attributes.values():
if an == arg:
if res is not None:
res.append(path + [an])
if lev == 0:
return res
def set_arg(cls, arg, value):
res = []
for path in find_paths(cls, arg):
x = y = {}
for arc in path[:-1]:
y[arc] = {}
y = y[arc]
y[path[-1]] = value
res.append(x)
return res
def add_path(tdict, path):
"""
:param tdict: a dictionary representing a argument tree
:param path: a path list
:return: a dictionary
"""
t = tdict
for step in path[:-2]:
try:
t = t[step]
except KeyError:
t[step] = {}
t = t[step]
t[path[-2]] = path[-1]
return tdict
def is_set(tdict, path):
"""
:param tdict: a dictionary representing a argument tree
:param path: a path list
:return: True/False if the value is set
"""
t = tdict
for step in path:
try:
t = t[step]
except KeyError:
return False
if t is not None:
return True
return False
def get_attr(tdict, path):
t = tdict
for step in path:
t = t[step]
return t
|