-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManager.py
33 lines (26 loc) · 905 Bytes
/
Manager.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
class MySeq:
"Fakes the config tools Sequencer class"
def __init__(self):
self.params = []
def add_param(self, mgr, name, value, seq=None):
self.params.append((mgr, name, value))
def remove_param(self, x): #mgr, name, value):
# self.params.remove((mgr, name, value))
if x[0] in self.params:
self.params.remove(x[0])
class Manager:
"""
An base class for classes that convert configurations into
parameter key value pairs
"""
def __init__(self, config_table):
self.config = config_table
self.seq = MySeq()
def getParams(self, triplet=False):
if triplet:
return self.seq.params
params = []
# convert 3 tuple to 2 tuple
for mgr, param, value in self.seq.params:
params.append(("%s,%s" % (mgr, param), value))
return params