python: fix flake8 warnings and format with black
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: If25d550660b82ea8c5f2c9b9140f3e7c5f77e906
diff --git a/control/gen-fan-zone-defs.py b/control/gen-fan-zone-defs.py
index e085570..3f106c2 100755
--- a/control/gen-fan-zone-defs.py
+++ b/control/gen-fan-zone-defs.py
@@ -9,7 +9,6 @@
import sys
import yaml
from argparse import ArgumentParser
-from mako.template import Template
from mako.lookup import TemplateLookup
@@ -52,10 +51,10 @@
# If there is a next element and it is a list, merge it with the
# current element.
- if i < len(typeArray)-1 and type(typeArray[i+1]) is list:
+ if i < len(typeArray) - 1 and type(typeArray[i + 1]) is list:
result.append(
- (typeArray[i],
- preprocess_yaml_type_array(typeArray[i+1])))
+ (typeArray[i], preprocess_yaml_type_array(typeArray[i + 1]))
+ )
else:
result.append((typeArray[i], []))
@@ -70,18 +69,19 @@
"""
propertyMap = {
- 'byte': {'cppName': 'uint8_t', 'params': 0},
- 'boolean': {'cppName': 'bool', 'params': 0},
- 'int16': {'cppName': 'int16_t', 'params': 0},
- 'uint16': {'cppName': 'uint16_t', 'params': 0},
- 'int32': {'cppName': 'int32_t', 'params': 0},
- 'uint32': {'cppName': 'uint32_t', 'params': 0},
- 'int64': {'cppName': 'int64_t', 'params': 0},
- 'uint64': {'cppName': 'uint64_t', 'params': 0},
- 'double': {'cppName': 'double', 'params': 0},
- 'string': {'cppName': 'std::string', 'params': 0},
- 'array': {'cppName': 'std::vector', 'params': 1},
- 'dict': {'cppName': 'std::map', 'params': 2}}
+ "byte": {"cppName": "uint8_t", "params": 0},
+ "boolean": {"cppName": "bool", "params": 0},
+ "int16": {"cppName": "int16_t", "params": 0},
+ "uint16": {"cppName": "uint16_t", "params": 0},
+ "int32": {"cppName": "int32_t", "params": 0},
+ "uint32": {"cppName": "uint32_t", "params": 0},
+ "int64": {"cppName": "int64_t", "params": 0},
+ "uint64": {"cppName": "uint64_t", "params": 0},
+ "double": {"cppName": "double", "params": 0},
+ "string": {"cppName": "std::string", "params": 0},
+ "array": {"cppName": "std::vector", "params": 1},
+ "dict": {"cppName": "std::map", "params": 2},
+ }
if len(typeTuple) != 2:
raise RuntimeError("Invalid typeTuple %s" % typeTuple)
@@ -89,11 +89,11 @@
first = typeTuple[0]
entry = propertyMap[first]
- result = entry['cppName']
+ result = entry["cppName"]
# Handle 0-entry parameter lists.
- if (entry['params'] == 0):
- if (len(typeTuple[1]) != 0):
+ if entry["params"] == 0:
+ if len(typeTuple[1]) != 0:
raise RuntimeError("Invalid typeTuple %s" % typeTuple)
else:
return result
@@ -102,20 +102,19 @@
rest = typeTuple[1]
# Confirm parameter count matches.
- if (entry['params'] != -1) and (entry['params'] != len(rest)):
- raise RuntimeError("Invalid entry count for %s : %s" %
- (first, rest))
+ if (entry["params"] != -1) and (entry["params"] != len(rest)):
+ raise RuntimeError("Invalid entry count for %s : %s" % (first, rest))
# Parse each parameter entry, if appropriate, and create C++ template
# syntax.
- result += '<'
- if entry.get('noparse'):
+ result += "<"
+ if entry.get("noparse"):
# Do not parse the parameter list, just use the first element
# of each tuple and ignore possible parameters
result += ", ".join([e[0] for e in rest])
else:
result += ", ".join([get_cpp_type(e) for e in rest])
- result += '>'
+ result += ">"
return result
@@ -124,10 +123,10 @@
"""
Converts a list of dictionary entries to a std::map initialization list.
"""
- listOfDict = listOfDict.replace('\'', '\"')
- listOfDict = listOfDict.replace('[', '{')
- listOfDict = listOfDict.replace(']', '}')
- listOfDict = listOfDict.replace(':', ',')
+ listOfDict = listOfDict.replace("'", '"')
+ listOfDict = listOfDict.replace("[", "{")
+ listOfDict = listOfDict.replace("]", "}")
+ listOfDict = listOfDict.replace(":", ",")
return listOfDict
@@ -136,36 +135,36 @@
Generates the source code of an event and returns it as a string
"""
e = "SetSpeedEvent{\n"
- e += "\"" + event['name'] + "\",\n"
+ e += '"' + event["name"] + '",\n'
e += "Group{\n"
- for group in event['groups']:
- for member in group['members']:
- e += "{\"" + member['object'] + "\",\n"
- e += "\"" + member['interface'] + "\",\n"
- e += "\"" + member['property'] + "\"},\n"
+ for group in event["groups"]:
+ for member in group["members"]:
+ e += '{"' + member["object"] + '",\n'
+ e += '"' + member["interface"] + '",\n'
+ e += '"' + member["property"] + '"},\n'
e += "},\n"
e += "ActionData{\n"
- for d in event['action']:
+ for d in event["action"]:
e += "{Group{\n"
- for g in d['groups']:
- for m in g['members']:
- e += "{\"" + m['object'] + "\",\n"
- e += "\"" + m['interface'] + "\",\n"
- e += "\"" + m['property'] + "\"},\n"
+ for g in d["groups"]:
+ for m in g["members"]:
+ e += '{"' + m["object"] + '",\n'
+ e += '"' + m["interface"] + '",\n'
+ e += '"' + m["property"] + '"},\n'
e += "},\n"
e += "std::vector<Action>{\n"
- for a in d['actions']:
- if len(a['parameters']) != 0:
- e += "make_action(action::" + a['name'] + "(\n"
+ for a in d["actions"]:
+ if len(a["parameters"]) != 0:
+ e += "make_action(action::" + a["name"] + "(\n"
else:
- e += "make_action(action::" + a['name'] + "\n"
- for i, p in enumerate(a['parameters']):
- if (i+1) != len(a['parameters']):
+ e += "make_action(action::" + a["name"] + "\n"
+ for i, p in enumerate(a["parameters"]):
+ if (i + 1) != len(a["parameters"]):
e += p + ",\n"
else:
e += p + "\n"
- if len(a['parameters']) != 0:
+ if len(a["parameters"]) != 0:
e += ")),\n"
else:
e += "),\n"
@@ -173,68 +172,82 @@
e += "},\n"
e += "std::vector<Trigger>{\n"
- if ('timer' in event['triggers']) and \
- (event['triggers']['timer'] is not None):
- e += "\tmake_trigger(trigger::timer(TimerConf{\n"
- e += "\t" + event['triggers']['timer']['interval'] + ",\n"
- e += "\t" + event['triggers']['timer']['type'] + "\n"
- e += "\t})),\n"
+ if ("timer" in event["triggers"]) and (
+ event["triggers"]["timer"] is not None
+ ):
+ e += "\tmake_trigger(trigger::timer(TimerConf{\n"
+ e += "\t" + event["triggers"]["timer"]["interval"] + ",\n"
+ e += "\t" + event["triggers"]["timer"]["type"] + "\n"
+ e += "\t})),\n"
- if ('signals' in event['triggers']) and \
- (event['triggers']['signals'] is not None):
- for s in event['triggers']['signals']:
+ if ("signals" in event["triggers"]) and (
+ event["triggers"]["signals"] is not None
+ ):
+ for s in event["triggers"]["signals"]:
e += "\tmake_trigger(trigger::signal(\n"
- e += "match::" + s['match'] + "(\n"
- for i, mp in enumerate(s['mparams']['params']):
- if (i+1) != len(s['mparams']['params']):
- e += "\t\t\t" + s['mparams'][mp] + ",\n"
+ e += "match::" + s["match"] + "(\n"
+ for i, mp in enumerate(s["mparams"]["params"]):
+ if (i + 1) != len(s["mparams"]["params"]):
+ e += "\t\t\t" + s["mparams"][mp] + ",\n"
else:
- e += "\t\t\t" + s['mparams'][mp] + "\n"
+ e += "\t\t\t" + s["mparams"][mp] + "\n"
e += "\t\t),\n"
e += "\t\tmake_handler<SignalHandler>(\n"
- if ('type' in s['sparams']) and (s['sparams']['type'] is not None):
- e += s['signal'] + "<" + s['sparams']['type'] + ">(\n"
+ if ("type" in s["sparams"]) and (s["sparams"]["type"] is not None):
+ e += s["signal"] + "<" + s["sparams"]["type"] + ">(\n"
else:
- e += s['signal'] + "(\n"
- for sp in s['sparams']['params']:
- e += s['sparams'][sp] + ",\n"
- if ('type' in s['hparams']) and (s['hparams']['type'] is not None):
- e += ("handler::" + s['handler'] +
- "<" + s['hparams']['type'] + ">(\n")
+ e += s["signal"] + "(\n"
+ for sp in s["sparams"]["params"]:
+ e += s["sparams"][sp] + ",\n"
+ if ("type" in s["hparams"]) and (s["hparams"]["type"] is not None):
+ e += (
+ "handler::"
+ + s["handler"]
+ + "<"
+ + s["hparams"]["type"]
+ + ">(\n"
+ )
else:
- e += "handler::" + s['handler'] + "(\n)"
- for i, hp in enumerate(s['hparams']['params']):
- if (i+1) != len(s['hparams']['params']):
- e += s['hparams'][hp] + ",\n"
+ e += "handler::" + s["handler"] + "(\n)"
+ for i, hp in enumerate(s["hparams"]["params"]):
+ if (i + 1) != len(s["hparams"]["params"]):
+ e += s["hparams"][hp] + ",\n"
else:
- e += s['hparams'][hp] + "\n"
+ e += s["hparams"][hp] + "\n"
e += "))\n"
e += "\t\t)\n"
e += "\t)),\n"
- if ('init' in event['triggers']):
- for i in event['triggers']['init']:
+ if "init" in event["triggers"]:
+ for i in event["triggers"]["init"]:
e += "\tmake_trigger(trigger::init(\n"
- if ('method' in i):
+ if "method" in i:
e += "\t\tmake_handler<MethodHandler>(\n"
- if ('type' in i['mparams']) and \
- (i['mparams']['type'] is not None):
- e += i['method'] + "<" + i['mparams']['type'] + ">(\n"
+ if ("type" in i["mparams"]) and (
+ i["mparams"]["type"] is not None
+ ):
+ e += i["method"] + "<" + i["mparams"]["type"] + ">(\n"
else:
- e += i['method'] + "(\n"
- for ip in i['mparams']['params']:
- e += i['mparams'][ip] + ",\n"
- if ('type' in i['hparams']) and \
- (i['hparams']['type'] is not None):
- e += ("handler::" + i['handler'] +
- "<" + i['hparams']['type'] + ">(\n")
+ e += i["method"] + "(\n"
+ for ip in i["mparams"]["params"]:
+ e += i["mparams"][ip] + ",\n"
+ if ("type" in i["hparams"]) and (
+ i["hparams"]["type"] is not None
+ ):
+ e += (
+ "handler::"
+ + i["handler"]
+ + "<"
+ + i["hparams"]["type"]
+ + ">(\n"
+ )
else:
- e += "handler::" + i['handler'] + "(\n)"
- for i, hp in enumerate(i['hparams']['params']):
- if (i+1) != len(i['hparams']['params']):
- e += i['hparams'][hp] + ",\n"
+ e += "handler::" + i["handler"] + "(\n)"
+ for i, hp in enumerate(i["hparams"]["params"]):
+ if (i + 1) != len(i["hparams"]["params"]):
+ e += i["hparams"][hp] + ",\n"
else:
- e += i['hparams'][hp] + "\n"
+ e += i["hparams"][hp] + "\n"
e += "))\n"
e += "\t\t)\n"
e += "\t)),\n"
@@ -251,51 +264,62 @@
Extract and construct the groups for the given event.
"""
groups = []
- if ('groups' in edata) and (edata['groups'] is not None):
- for eGroups in edata['groups']:
- if ('zone_conditions' in eGroups) and \
- (eGroups['zone_conditions'] is not None):
+ if ("groups" in edata) and (edata["groups"] is not None):
+ for eGroups in edata["groups"]:
+ if ("zone_conditions" in eGroups) and (
+ eGroups["zone_conditions"] is not None
+ ):
# Zone conditions are optional in the events yaml but skip
# if this event's condition is not in this zone's conditions
- if all('name' in z and z['name'] is not None and
- not any(c['name'] == z['name'] for c in zCond)
- for z in eGroups['zone_conditions']):
+ if all(
+ "name" in z
+ and z["name"] is not None
+ and not any(c["name"] == z["name"] for c in zCond)
+ for z in eGroups["zone_conditions"]
+ ):
continue
# Zone numbers are optional in the events yaml but skip if this
# zone's zone number is not in the event's zone numbers
- if all('zones' in z and z['zones'] is not None and
- zNum not in z['zones']
- for z in eGroups['zone_conditions']):
+ if all(
+ "zones" in z
+ and z["zones"] is not None
+ and zNum not in z["zones"]
+ for z in eGroups["zone_conditions"]
+ ):
continue
- eGroup = next(g for g in events['groups']
- if g['name'] == eGroups['name'])
+ eGroup = next(
+ g for g in events["groups"] if g["name"] == eGroups["name"]
+ )
group = {}
members = []
- group['name'] = eGroup['name']
- for m in eGroup['members']:
+ group["name"] = eGroup["name"]
+ for m in eGroup["members"]:
member = {}
- member['path'] = eGroup['type']
- member['object'] = (eGroup['type'] + m)
- member['interface'] = eGroups['interface']
- member['property'] = eGroups['property']['name']
- member['type'] = eGroups['property']['type']
+ member["path"] = eGroup["type"]
+ member["object"] = eGroup["type"] + m
+ member["interface"] = eGroups["interface"]
+ member["property"] = eGroups["property"]["name"]
+ member["type"] = eGroups["property"]["type"]
# Use defined service to note member on zone object
- if ('service' in eGroup) and \
- (eGroup['service'] is not None):
- member['service'] = eGroup['service']
+ if ("service" in eGroup) and (eGroup["service"] is not None):
+ member["service"] = eGroup["service"]
# Add expected group member's property value if given
- if ('value' in eGroups['property']) and \
- (eGroups['property']['value'] is not None):
- if isinstance(eGroups['property']['value'], str) or \
- "string" in str(member['type']).lower():
- member['value'] = (
- "\"" + eGroups['property']['value'] + "\"")
- else:
- member['value'] = eGroups['property']['value']
+ if ("value" in eGroups["property"]) and (
+ eGroups["property"]["value"] is not None
+ ):
+ if (
+ isinstance(eGroups["property"]["value"], str)
+ or "string" in str(member["type"]).lower()
+ ):
+ member["value"] = (
+ '"' + eGroups["property"]["value"] + '"'
+ )
+ else:
+ member["value"] = eGroups["property"]["value"]
members.append(member)
- group['members'] = members
+ group["members"] = members
groups.append(group)
return groups
@@ -305,29 +329,35 @@
Extracts and constructs a section's parameters
"""
params = {}
- if ('parameters' in section) and \
- (section['parameters'] is not None):
+ if ("parameters" in section) and (section["parameters"] is not None):
plist = []
- for sp in section['parameters']:
+ for sp in section["parameters"]:
p = str(sp)
- if (p != 'type'):
+ if p != "type":
plist.append(p)
- if (p != 'group'):
- params[p] = "\"" + member[p] + "\""
+ if p != "group":
+ params[p] = '"' + member[p] + '"'
else:
params[p] = "Group\n{\n"
for g in groups:
- for m in g['members']:
+ for m in g["members"]:
params[p] += (
- "{\"" + str(m['object']) + "\",\n" +
- "\"" + str(m['interface']) + "\",\n" +
- "\"" + str(m['property']) + "\"},\n")
+ '{"'
+ + str(m["object"])
+ + '",\n'
+ + '"'
+ + str(m["interface"])
+ + '",\n'
+ + '"'
+ + str(m["property"])
+ + '"},\n'
+ )
params[p] += "}"
else:
params[p] = member[p]
- params['params'] = plist
+ params["params"] = plist
else:
- params['params'] = []
+ params["params"] = []
return params
@@ -338,24 +368,23 @@
"""
method = {}
methods = []
- if (len(eGrps) > 0):
+ if len(eGrps) > 0:
# Use the first group member for retrieving the type
- member = eGrps[0]['members'][0]
- if ('method' in eTrig) and \
- (eTrig['method'] is not None):
+ member = eGrps[0]["members"][0]
+ if ("method" in eTrig) and (eTrig["method"] is not None):
# Add method parameters
- eMethod = next(m for m in events['methods']
- if m['name'] == eTrig['method'])
- method['method'] = eMethod['name']
- method['mparams'] = getParameters(
- member, eGrps, eMethod, events)
+ eMethod = next(
+ m for m in events["methods"] if m["name"] == eTrig["method"]
+ )
+ method["method"] = eMethod["name"]
+ method["mparams"] = getParameters(member, eGrps, eMethod, events)
# Add handler parameters
- eHandler = next(h for h in events['handlers']
- if h['name'] == eTrig['handler'])
- method['handler'] = eHandler['name']
- method['hparams'] = getParameters(
- member, eGrps, eHandler, events)
+ eHandler = next(
+ h for h in events["handlers"] if h["name"] == eTrig["handler"]
+ )
+ method["handler"] = eHandler["name"]
+ method["hparams"] = getParameters(member, eGrps, eHandler, events)
methods.append(method)
@@ -369,27 +398,34 @@
"""
signals = []
for group in eGrps:
- for member in group['members']:
+ for member in group["members"]:
signal = {}
# Add signal parameters
- eSignal = next(s for s in events['signals']
- if s['name'] == eTrig['signal'])
- signal['signal'] = eSignal['name']
- signal['sparams'] = getParameters(member, eGrps, eSignal, events)
+ eSignal = next(
+ s for s in events["signals"] if s["name"] == eTrig["signal"]
+ )
+ signal["signal"] = eSignal["name"]
+ signal["sparams"] = getParameters(member, eGrps, eSignal, events)
# If service not given, subscribe to signal match
- if ('service' not in member):
+ if "service" not in member:
# Add signal match parameters
- eMatch = next(m for m in events['matches']
- if m['name'] == eSignal['match'])
- signal['match'] = eMatch['name']
- signal['mparams'] = getParameters(member, eGrps, eMatch, events)
+ eMatch = next(
+ m
+ for m in events["matches"]
+ if m["name"] == eSignal["match"]
+ )
+ signal["match"] = eMatch["name"]
+ signal["mparams"] = getParameters(
+ member, eGrps, eMatch, events
+ )
# Add handler parameters
- eHandler = next(h for h in events['handlers']
- if h['name'] == eTrig['handler'])
- signal['handler'] = eHandler['name']
- signal['hparams'] = getParameters(member, eGrps, eHandler, events)
+ eHandler = next(
+ h for h in events["handlers"] if h["name"] == eTrig["handler"]
+ )
+ signal["handler"] = eHandler["name"]
+ signal["hparams"] = getParameters(member, eGrps, eHandler, events)
signals.append(signal)
@@ -402,10 +438,13 @@
event timer.
"""
timer = {}
- timer['interval'] = (
- "static_cast<std::chrono::microseconds>" +
- "(" + str(eTrig['interval']) + ")")
- timer['type'] = "TimerType::" + str(eTrig['type'])
+ timer["interval"] = (
+ "static_cast<std::chrono::microseconds>"
+ + "("
+ + str(eTrig["interval"])
+ + ")"
+ )
+ timer["type"] = "TimerType::" + str(eTrig["type"])
return timer
@@ -415,86 +454,99 @@
all the actions within the given event.
"""
action = []
- for eActions in actions['actions']:
+ for eActions in actions["actions"]:
actions = {}
- eAction = next(a for a in events['actions']
- if a['name'] == eActions['name'])
- actions['name'] = eAction['name']
- actions['groups'] = getGroups(zNum, zCond, eActions, events)
+ eAction = next(
+ a for a in events["actions"] if a["name"] == eActions["name"]
+ )
+ actions["name"] = eAction["name"]
+ actions["groups"] = getGroups(zNum, zCond, eActions, events)
params = []
- if ('parameters' in eAction) and \
- (eAction['parameters'] is not None):
- for p in eAction['parameters']:
+ if ("parameters" in eAction) and (eAction["parameters"] is not None):
+ for p in eAction["parameters"]:
param = "static_cast<"
if type(eActions[p]) is not dict:
- if p == 'actions':
+ if p == "actions":
param = "std::vector<Action>{"
- pActs = getActions(zNum,
- zCond,
- edata,
- eActions,
- events)
+ pActs = getActions(
+ zNum, zCond, edata, eActions, events
+ )
for a in pActs:
- if (len(a['parameters']) != 0):
+ if len(a["parameters"]) != 0:
param += (
- "make_action(action::" +
- a['name'] +
- "(\n")
- for i, ap in enumerate(a['parameters']):
- if (i+1) != len(a['parameters']):
- param += (ap + ",")
+ "make_action(action::" + a["name"] + "(\n"
+ )
+ for i, ap in enumerate(a["parameters"]):
+ if (i + 1) != len(a["parameters"]):
+ param += ap + ","
else:
- param += (ap + ")")
+ param += ap + ")"
else:
- param += ("make_action(action::" + a['name'])
+ param += "make_action(action::" + a["name"]
param += "),"
param += "}"
- elif p == 'defevents' or p == 'altevents' or p == 'events':
+ elif p == "defevents" or p == "altevents" or p == "events":
param = "std::vector<SetSpeedEvent>{\n"
for i, e in enumerate(eActions[p]):
aEvent = getEvent(zNum, zCond, e, events)
if not aEvent:
continue
- if (i+1) != len(eActions[p]):
+ if (i + 1) != len(eActions[p]):
param += genEvent(aEvent) + ",\n"
else:
param += genEvent(aEvent) + "\n"
param += "\t}"
- elif p == 'property':
- if isinstance(eActions[p], str) or \
- "string" in str(eActions[p]['type']).lower():
+ elif p == "property":
+ if (
+ isinstance(eActions[p], str)
+ or "string" in str(eActions[p]["type"]).lower()
+ ):
param += (
- str(eActions[p]['type']).lower() +
- ">(\"" + str(eActions[p]) + "\")")
+ str(eActions[p]["type"]).lower()
+ + '>("'
+ + str(eActions[p])
+ + '")'
+ )
else:
param += (
- str(eActions[p]['type']).lower() +
- ">(" + str(eActions[p]['value']).lower() + ")")
+ str(eActions[p]["type"]).lower()
+ + ">("
+ + str(eActions[p]["value"]).lower()
+ + ")"
+ )
else:
# Default type to 'size_t' when not given
- param += ("size_t>(" + str(eActions[p]).lower() + ")")
+ param += "size_t>(" + str(eActions[p]).lower() + ")"
else:
- if p == 'timer':
+ if p == "timer":
t = getTimer(eActions[p])
param = (
- "TimerConf{" + t['interval'] + "," +
- t['type'] + "}")
+ "TimerConf{"
+ + t["interval"]
+ + ","
+ + t["type"]
+ + "}"
+ )
else:
- param += (str(eActions[p]['type']).lower() + ">(")
- if p != 'map':
- if isinstance(eActions[p]['value'], str) or \
- "string" in str(eActions[p]['type']).lower():
- param += \
- "\"" + str(eActions[p]['value']) + "\")"
+ param += str(eActions[p]["type"]).lower() + ">("
+ if p != "map":
+ if (
+ isinstance(eActions[p]["value"], str)
+ or "string" in str(eActions[p]["type"]).lower()
+ ):
+ param += '"' + str(eActions[p]["value"]) + '")'
else:
- param += \
- str(eActions[p]['value']).lower() + ")"
+ param += (
+ str(eActions[p]["value"]).lower() + ")"
+ )
else:
param += (
- str(eActions[p]['type']).lower() +
- convertToMap(str(eActions[p]['value'])) + ")")
+ str(eActions[p]["type"]).lower()
+ + convertToMap(str(eActions[p]["value"]))
+ + ")"
+ )
params.append(param)
- actions['parameters'] = params
+ actions["parameters"] = params
action.append(actions)
return action
@@ -507,53 +559,52 @@
event = {}
# Add set speed event name
- event['name'] = e['name']
+ event["name"] = e["name"]
# Add set speed event groups
- event['groups'] = getGroups(zone_num, zone_conditions, e, events_data)
+ event["groups"] = getGroups(zone_num, zone_conditions, e, events_data)
# Add optional set speed actions and function parameters
- event['action'] = []
- if ('actions' in e) and \
- (e['actions'] is not None):
+ event["action"] = []
+ if ("actions" in e) and (e["actions"] is not None):
# List of dicts containing the list of groups and list of actions
sseActions = []
eActions = getActions(zone_num, zone_conditions, e, e, events_data)
for eAction in eActions:
# Skip events that have no groups defined for the event or actions
- if not event['groups'] and not eAction['groups']:
+ if not event["groups"] and not eAction["groups"]:
continue
# Find group in sseActions
grpExists = False
for sseDict in sseActions:
- if eAction['groups'] == sseDict['groups']:
+ if eAction["groups"] == sseDict["groups"]:
# Extend 'actions' list
- del eAction['groups']
- sseDict['actions'].append(eAction)
+ del eAction["groups"]
+ sseDict["actions"].append(eAction)
grpExists = True
break
if not grpExists:
- grps = eAction['groups']
- del eAction['groups']
+ grps = eAction["groups"]
+ del eAction["groups"]
actList = []
actList.append(eAction)
- sseActions.append({'groups': grps, 'actions': actList})
- event['action'] = sseActions
+ sseActions.append({"groups": grps, "actions": actList})
+ event["action"] = sseActions
# Add event triggers
- event['triggers'] = {}
- for trig in e['triggers']:
+ event["triggers"] = {}
+ for trig in e["triggers"]:
triggers = []
- if (trig['name'] == "timer"):
- event['triggers']['timer'] = getTimer(trig)
- elif (trig['name'] == "signal"):
- if ('signals' not in event['triggers']):
- event['triggers']['signals'] = []
- triggers = getSignal(event['groups'], trig, events_data)
- event['triggers']['signals'].extend(triggers)
- elif (trig['name'] == "init"):
- triggers = getInit(event['groups'], trig, events_data)
- event['triggers']['init'] = triggers
+ if trig["name"] == "timer":
+ event["triggers"]["timer"] = getTimer(trig)
+ elif trig["name"] == "signal":
+ if "signals" not in event["triggers"]:
+ event["triggers"]["signals"] = []
+ triggers = getSignal(event["groups"], trig, events_data)
+ event["triggers"]["signals"].extend(triggers)
+ elif trig["name"] == "init":
+ triggers = getInit(event["groups"], trig, events_data)
+ event["triggers"]["init"] = triggers
return event
@@ -566,73 +617,83 @@
precond = {}
# Add set speed event precondition name
- precond['pcname'] = event['name']
+ precond["pcname"] = event["name"]
# Add set speed event precondition group
- precond['pcgrps'] = getGroups(zNum,
- zCond,
- event['precondition'],
- events_data)
+ precond["pcgrps"] = getGroups(
+ zNum, zCond, event["precondition"], events_data
+ )
# Add set speed event precondition actions
pc = []
pcs = {}
- pcs['name'] = event['precondition']['name']
- epc = next(p for p in events_data['preconditions']
- if p['name'] == event['precondition']['name'])
+ pcs["name"] = event["precondition"]["name"]
+ epc = next(
+ p
+ for p in events_data["preconditions"]
+ if p["name"] == event["precondition"]["name"]
+ )
params = []
- for p in epc['parameters'] or []:
+ for p in epc["parameters"] or []:
param = {}
- if p == 'groups':
- param['type'] = "std::vector<PrecondGroup>"
- param['open'] = "{"
- param['close'] = "}"
+ if p == "groups":
+ param["type"] = "std::vector<PrecondGroup>"
+ param["open"] = "{"
+ param["close"] = "}"
values = []
- for group in precond['pcgrps']:
- for pcgrp in group['members']:
+ for group in precond["pcgrps"]:
+ for pcgrp in group["members"]:
value = {}
- value['value'] = (
- "PrecondGroup{\"" +
- str(pcgrp['object']) + "\",\"" +
- str(pcgrp['interface']) + "\",\"" +
- str(pcgrp['property']) + "\"," +
- "static_cast<" +
- str(pcgrp['type']).lower() + ">")
- if isinstance(pcgrp['value'], str) or \
- "string" in str(pcgrp['type']).lower():
- value['value'] += ("(" + str(pcgrp['value']) + ")}")
+ value["value"] = (
+ 'PrecondGroup{"'
+ + str(pcgrp["object"])
+ + '","'
+ + str(pcgrp["interface"])
+ + '","'
+ + str(pcgrp["property"])
+ + '",'
+ + "static_cast<"
+ + str(pcgrp["type"]).lower()
+ + ">"
+ )
+ if (
+ isinstance(pcgrp["value"], str)
+ or "string" in str(pcgrp["type"]).lower()
+ ):
+ value["value"] += "(" + str(pcgrp["value"]) + ")}"
else:
- value['value'] += \
- ("(" + str(pcgrp['value']).lower() + ")}")
+ value["value"] += (
+ "(" + str(pcgrp["value"]).lower() + ")}"
+ )
values.append(value)
- param['values'] = values
+ param["values"] = values
params.append(param)
- pcs['params'] = params
+ pcs["params"] = params
pc.append(pcs)
- precond['pcact'] = pc
+ precond["pcact"] = pc
pcevents = []
- for pce in event['precondition']['events']:
+ for pce in event["precondition"]["events"]:
pcevent = getEvent(zNum, zCond, pce, events_data)
if not pcevent:
continue
pcevents.append(pcevent)
- precond['pcevts'] = pcevents
+ precond["pcevts"] = pcevents
# Add precondition event triggers
- precond['triggers'] = {}
- for trig in event['precondition']['triggers']:
+ precond["triggers"] = {}
+ for trig in event["precondition"]["triggers"]:
triggers = []
- if (trig['name'] == "timer"):
- precond['triggers']['pctime'] = getTimer(trig)
- elif (trig['name'] == "signal"):
- if ('pcsigs' not in precond['triggers']):
- precond['triggers']['pcsigs'] = []
- triggers = getSignal(precond['pcgrps'], trig, events_data)
- precond['triggers']['pcsigs'].extend(triggers)
- elif (trig['name'] == "init"):
- triggers = getInit(precond['pcgrps'], trig, events_data)
- precond['triggers']['init'] = triggers
+ if trig["name"] == "timer":
+ precond["triggers"]["pctime"] = getTimer(trig)
+ elif trig["name"] == "signal":
+ if "pcsigs" not in precond["triggers"]:
+ precond["triggers"]["pcsigs"] = []
+ triggers = getSignal(precond["pcgrps"], trig, events_data)
+ precond["triggers"]["pcsigs"].extend(triggers)
+ elif trig["name"] == "init":
+ triggers = getInit(precond["pcgrps"], trig, events_data)
+ precond["triggers"]["init"] = triggers
return precond
@@ -644,24 +705,23 @@
"""
events = []
- if 'events' in events_data:
- for e in events_data['events']:
+ if "events" in events_data:
+ for e in events_data["events"]:
event = {}
# Add precondition if given
- if ('precondition' in e) and \
- (e['precondition'] is not None):
- event['pc'] = addPrecondition(zone_num,
- zone_conditions,
- e,
- events_data)
+ if ("precondition" in e) and (e["precondition"] is not None):
+ event["pc"] = addPrecondition(
+ zone_num, zone_conditions, e, events_data
+ )
else:
event = getEvent(zone_num, zone_conditions, e, events_data)
# Remove empty events and events that have
# no groups defined for the event or any of the actions
- if not event or \
- (not event['groups'] and
- all(not a['groups'] for a in event['action'])):
+ if not event or (
+ not event["groups"]
+ and all(not a["groups"] for a in event["action"])
+ ):
continue
events.append(event)
@@ -677,29 +737,28 @@
fans = []
- for f in fan_data['fans']:
-
- if zone_num != f['cooling_zone']:
+ for f in fan_data["fans"]:
+ if zone_num != f["cooling_zone"]:
continue
# 'cooling_profile' is optional (use 'all' instead)
- if f.get('cooling_profile') is None:
+ if f.get("cooling_profile") is None:
profile = "all"
else:
- profile = f['cooling_profile']
+ profile = f["cooling_profile"]
if profile not in profiles:
continue
fan = {}
- fan['name'] = f['inventory']
- fan['sensors'] = f['sensors']
- fan['target_interface'] = f.get(
- 'target_interface',
- 'xyz.openbmc_project.Control.FanSpeed')
- fan['target_path'] = f.get(
- 'target_path',
- '/xyz/openbmc_project/sensors/fan_tach/')
+ fan["name"] = f["inventory"]
+ fan["sensors"] = f["sensors"]
+ fan["target_interface"] = f.get(
+ "target_interface", "xyz.openbmc_project.Control.FanSpeed"
+ )
+ fan["target_path"] = f.get(
+ "target_path", "/xyz/openbmc_project/sensors/fan_tach/"
+ )
fans.append(fan)
return fans
@@ -717,37 +776,36 @@
iface = {}
# Interface name not needed yet for fan zones but
# may be necessary as more interfaces are extended by the zones
- iface['name'] = i['name']
+ iface["name"] = i["name"]
- if ('properties' in i) and \
- (i['properties'] is not None):
+ if ("properties" in i) and (i["properties"] is not None):
props = []
- for p in i['properties']:
+ for p in i["properties"]:
prop = {}
- prop['name'] = p['name']
- prop['func'] = str(p['name']).lower()
- prop['type'] = parse_cpp_type(p['type'])
- if ('persist' in p):
- persist = p['persist']
- if (persist is not None):
- if (isinstance(persist, bool)):
- prop['persist'] = 'true' if persist else 'false'
+ prop["name"] = p["name"]
+ prop["func"] = str(p["name"]).lower()
+ prop["type"] = parse_cpp_type(p["type"])
+ if "persist" in p:
+ persist = p["persist"]
+ if persist is not None:
+ if isinstance(persist, bool):
+ prop["persist"] = "true" if persist else "false"
else:
- prop['persist'] = 'false'
+ prop["persist"] = "false"
vals = []
- for v in p['values']:
- val = v['value']
- if (val is not None):
- if (isinstance(val, bool)):
+ for v in p["values"]:
+ val = v["value"]
+ if val is not None:
+ if isinstance(val, bool):
# Convert True/False to 'true'/'false'
- val = 'true' if val else 'false'
- elif (isinstance(val, str)):
+ val = "true" if val else "false"
+ elif isinstance(val, str):
# Wrap strings with double-quotes
- val = "\"" + val + "\""
+ val = '"' + val + '"'
vals.append(val)
- prop['values'] = vals
+ prop["values"] = vals
props.append(prop)
- iface['props'] = props
+ iface["props"] = props
ifaces.append(iface)
return ifaces
@@ -761,21 +819,20 @@
condition = {}
- for c in zone_conditions_data['conditions']:
-
- if zone_condition != c['name']:
+ for c in zone_conditions_data["conditions"]:
+ if zone_condition != c["name"]:
continue
- condition['type'] = c['type']
+ condition["type"] = c["type"]
properties = []
- for p in c['properties']:
+ for p in c["properties"]:
property = {}
- property['property'] = p['property']
- property['interface'] = p['interface']
- property['path'] = p['path']
- property['type'] = p['type'].lower()
- property['value'] = str(p['value']).lower()
+ property["property"] = p["property"]
+ property["interface"] = p["interface"]
+ property["path"] = p["path"]
+ property["type"] = p["type"].lower()
+ property["value"] = str(p["value"]).lower()
properties.append(property)
- condition['properties'] = properties
+ condition["properties"] = properties
return condition
@@ -795,139 +852,161 @@
for group in zone_data:
conditions = []
# zone conditions are optional
- if 'zone_conditions' in group and group['zone_conditions'] is not None:
- for c in group['zone_conditions']:
-
+ if "zone_conditions" in group and group["zone_conditions"] is not None:
+ for c in group["zone_conditions"]:
if not zone_conditions_data:
- sys.exit("No zone_conditions YAML file but " +
- "zone_conditions used in zone YAML")
+ sys.exit(
+ "No zone_conditions YAML file but "
+ + "zone_conditions used in zone YAML"
+ )
- condition = getConditionInZoneConditions(c['name'],
- zone_conditions_data)
+ condition = getConditionInZoneConditions(
+ c["name"], zone_conditions_data
+ )
if not condition:
- sys.exit("Missing zone condition " + c['name'])
+ sys.exit("Missing zone condition " + c["name"])
conditions.append(condition)
zone_group = {}
- zone_group['conditions'] = conditions
+ zone_group["conditions"] = conditions
zones = []
- for z in group['zones']:
+ for z in group["zones"]:
zone = {}
# 'zone' is required
- if ('zone' not in z) or (z['zone'] is None):
- sys.exit("Missing fan zone number in " + zone_yaml)
+ if ("zone" not in z) or (z["zone"] is None):
+ sys.exit("Missing fan zone number in " + z)
- zone['num'] = z['zone']
+ zone["num"] = z["zone"]
- zone['full_speed'] = z['full_speed']
+ zone["full_speed"] = z["full_speed"]
- zone['default_floor'] = z['default_floor']
+ zone["default_floor"] = z["default_floor"]
# 'increase_delay' is optional (use 0 by default)
- key = 'increase_delay'
+ key = "increase_delay"
zone[key] = z.setdefault(key, 0)
# 'decrease_interval' is optional (use 0 by default)
- key = 'decrease_interval'
+ key = "decrease_interval"
zone[key] = z.setdefault(key, 0)
# 'cooling_profiles' is optional (use 'all' instead)
- if ('cooling_profiles' not in z) or \
- (z['cooling_profiles'] is None):
+ if ("cooling_profiles" not in z) or (
+ z["cooling_profiles"] is None
+ ):
profiles = ["all"]
else:
- profiles = z['cooling_profiles']
+ profiles = z["cooling_profiles"]
# 'interfaces' is optional (no default)
ifaces = []
- if ('interfaces' in z) and \
- (z['interfaces'] is not None):
- ifaces = getIfacesInZone(z['interfaces'])
+ if ("interfaces" in z) and (z["interfaces"] is not None):
+ ifaces = getIfacesInZone(z["interfaces"])
- fans = getFansInZone(z['zone'], profiles, fan_data)
- events = getEventsInZone(z['zone'],
- group.get('zone_conditions', {}),
- events_data)
+ fans = getFansInZone(z["zone"], profiles, fan_data)
+ events = getEventsInZone(
+ z["zone"], group.get("zone_conditions", {}), events_data
+ )
if len(fans) == 0:
- sys.exit("Didn't find any fans in zone " + str(zone['num']))
+ sys.exit("Didn't find any fans in zone " + str(zone["num"]))
- if (ifaces):
- zone['ifaces'] = ifaces
- zone['fans'] = fans
- zone['events'] = events
+ if ifaces:
+ zone["ifaces"] = ifaces
+ zone["fans"] = fans
+ zone["events"] = events
zones.append(zone)
- zone_group['zones'] = zones
+ zone_group["zones"] = zones
zone_groups.append(zone_group)
return zone_groups
-if __name__ == '__main__':
- parser = ArgumentParser(
- description="Phosphor fan zone definition parser")
+if __name__ == "__main__":
+ parser = ArgumentParser(description="Phosphor fan zone definition parser")
- parser.add_argument('-z', '--zone_yaml', dest='zone_yaml',
- default="example/zones.yaml",
- help='fan zone definitional yaml')
- parser.add_argument('-f', '--fan_yaml', dest='fan_yaml',
- default="example/fans.yaml",
- help='fan definitional yaml')
- parser.add_argument('-e', '--events_yaml', dest='events_yaml',
- help='events to set speeds yaml')
- parser.add_argument('-c', '--zone_conditions_yaml',
- dest='zone_conditions_yaml',
- help='conditions to determine zone yaml')
- parser.add_argument('-o', '--output_dir', dest='output_dir',
- default=".",
- help='output directory')
+ parser.add_argument(
+ "-z",
+ "--zone_yaml",
+ dest="zone_yaml",
+ default="example/zones.yaml",
+ help="fan zone definitional yaml",
+ )
+ parser.add_argument(
+ "-f",
+ "--fan_yaml",
+ dest="fan_yaml",
+ default="example/fans.yaml",
+ help="fan definitional yaml",
+ )
+ parser.add_argument(
+ "-e",
+ "--events_yaml",
+ dest="events_yaml",
+ help="events to set speeds yaml",
+ )
+ parser.add_argument(
+ "-c",
+ "--zone_conditions_yaml",
+ dest="zone_conditions_yaml",
+ help="conditions to determine zone yaml",
+ )
+ parser.add_argument(
+ "-o",
+ "--output_dir",
+ dest="output_dir",
+ default=".",
+ help="output directory",
+ )
args = parser.parse_args()
if not args.zone_yaml or not args.fan_yaml:
parser.print_usage()
sys.exit(1)
- with open(args.zone_yaml, 'r') as zone_input:
+ with open(args.zone_yaml, "r") as zone_input:
zone_data = yaml.safe_load(zone_input) or {}
- with open(args.fan_yaml, 'r') as fan_input:
+ with open(args.fan_yaml, "r") as fan_input:
fan_data = yaml.safe_load(fan_input) or {}
events_data = {}
if args.events_yaml:
- with open(args.events_yaml, 'r') as events_input:
+ with open(args.events_yaml, "r") as events_input:
events_data = yaml.safe_load(events_input) or {}
zone_conditions_data = {}
if args.zone_conditions_yaml:
- with open(args.zone_conditions_yaml, 'r') as zone_conditions_input:
+ with open(args.zone_conditions_yaml, "r") as zone_conditions_input:
zone_conditions_data = yaml.safe_load(zone_conditions_input) or {}
- zone_config = buildZoneData(zone_data.get('zone_configuration', {}),
- fan_data, events_data, zone_conditions_data)
+ zone_config = buildZoneData(
+ zone_data.get("zone_configuration", {}),
+ fan_data,
+ events_data,
+ zone_conditions_data,
+ )
- manager_config = zone_data.get('manager_configuration', {})
+ manager_config = zone_data.get("manager_configuration", {})
- if manager_config.get('power_on_delay') is None:
- manager_config['power_on_delay'] = 0
+ if manager_config.get("power_on_delay") is None:
+ manager_config["power_on_delay"] = 0
tmpls_dir = os.path.join(
- os.path.dirname(os.path.realpath(__file__)),
- "templates")
+ os.path.dirname(os.path.realpath(__file__)), "templates"
+ )
output_file = os.path.join(args.output_dir, "fan_zone_defs.cpp")
if sys.version_info < (3, 0):
lkup = TemplateLookup(
- directories=tmpls_dir.split(),
- disable_unicode=True)
+ directories=tmpls_dir.split(), disable_unicode=True
+ )
else:
- lkup = TemplateLookup(
- directories=tmpls_dir.split())
- tmpl = lkup.get_template('fan_zone_defs.mako.cpp')
- with open(output_file, 'w') as output:
- output.write(tmpl.render(zones=zone_config,
- mgr_data=manager_config))
+ lkup = TemplateLookup(directories=tmpls_dir.split())
+ tmpl = lkup.get_template("fan_zone_defs.mako.cpp")
+ with open(output_file, "w") as output:
+ output.write(tmpl.render(zones=zone_config, mgr_data=manager_config))
diff --git a/monitor/gen-fan-monitor-defs.py b/monitor/gen-fan-monitor-defs.py
index 1118e83..8b255da 100755
--- a/monitor/gen-fan-monitor-defs.py
+++ b/monitor/gen-fan-monitor-defs.py
@@ -2,8 +2,9 @@
import os
import sys
-import yaml
from argparse import ArgumentParser
+
+import yaml
from mako.template import Template
"""
@@ -16,7 +17,7 @@
"""
-tmpl = '''\
+tmpl = """\
<%!
def indent(str, depth):
return ''.join(4*' '*depth+line for line in str.splitlines(True))
@@ -124,33 +125,42 @@
},
%endfor
};
-'''
+"""
-if __name__ == '__main__':
+if __name__ == "__main__":
parser = ArgumentParser(
- description="Phosphor fan monitor definition parser")
+ description="Phosphor fan monitor definition parser"
+ )
- parser.add_argument('-m', '--monitor_yaml', dest='monitor_yaml',
- default="example/monitor.yaml",
- help='fan monitor definitional yaml')
- parser.add_argument('-o', '--output_dir', dest='output_dir',
- default=".",
- help='output directory')
+ parser.add_argument(
+ "-m",
+ "--monitor_yaml",
+ dest="monitor_yaml",
+ default="example/monitor.yaml",
+ help="fan monitor definitional yaml",
+ )
+ parser.add_argument(
+ "-o",
+ "--output_dir",
+ dest="output_dir",
+ default=".",
+ help="output directory",
+ )
args = parser.parse_args()
if not args.monitor_yaml:
parser.print_usage()
sys.exit(1)
- with open(args.monitor_yaml, 'r') as monitor_input:
+ with open(args.monitor_yaml, "r") as monitor_input:
monitor_data = yaml.safe_load(monitor_input) or {}
- #Do some minor input validation
- for fan in monitor_data.get('fans', {}):
- if ((fan['deviation'] < 0) or (fan['deviation'] > 100)):
- sys.exit("Invalid deviation value " + str(fan['deviation']))
+ # Do some minor input validation
+ for fan in monitor_data.get("fans", {}):
+ if (fan["deviation"] < 0) or (fan["deviation"] > 100):
+ sys.exit("Invalid deviation value " + str(fan["deviation"]))
output_file = os.path.join(args.output_dir, "fan_monitor_defs.cpp")
- with open(output_file, 'w') as output:
+ with open(output_file, "w") as output:
output.write(Template(tmpl).render(data=monitor_data))
diff --git a/presence/pfpgen.py b/presence/pfpgen.py
index 1080a22..30832f5 100755
--- a/presence/pfpgen.py
+++ b/presence/pfpgen.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-'''
+"""
Phosphor Fan Presence (PFP) YAML parser and code generator.
Parse the provided PFP configuration file and generate C++ code.
@@ -17,42 +17,44 @@
from the native python type(s) instances(s).
4 - Present the converted YAML to the command processing method
requested by the script user.
-'''
+"""
import os
import sys
-import yaml
from argparse import ArgumentParser
+
import mako.lookup
-from sdbusplus.renderer import Renderer
+import yaml
from sdbusplus.namedelement import NamedElement
+from sdbusplus.renderer import Renderer
-class InvalidConfigError(BaseException):
- '''General purpose config file parsing error.'''
+class InvalidConfigError(Exception):
+ """General purpose config file parsing error."""
def __init__(self, path, msg):
- '''Display configuration file with the syntax
- error and the error message.'''
+ """Display configuration file with the syntax
+ error and the error message."""
self.config = path
self.msg = msg
class NotUniqueError(InvalidConfigError):
- '''Within a config file names must be unique.
- Display the duplicate item.'''
+ """Within a config file names must be unique.
+ Display the duplicate item."""
def __init__(self, path, cls, *names):
fmt = 'Duplicate {0}: "{1}"'
super(NotUniqueError, self).__init__(
- path, fmt.format(cls, ' '.join(names)))
+ path, fmt.format(cls, " ".join(names))
+ )
def get_index(objs, cls, name):
- '''Items are usually rendered as C++ arrays and as
+ """Items are usually rendered as C++ arrays and as
such are stored in python lists. Given an item name
- its class, find the item index.'''
+ its class, find the item index."""
for i, x in enumerate(objs.get(cls, [])):
if x.name != name:
@@ -63,19 +65,19 @@
def exists(objs, cls, name):
- '''Check to see if an item already exists in a list given
- the item name.'''
+ """Check to see if an item already exists in a list given
+ the item name."""
try:
get_index(objs, cls, name)
- except:
+ except Exception:
return False
return True
def add_unique(obj, *a, **kw):
- '''Add an item to one or more lists unless already present.'''
+ """Add an item to one or more lists unless already present."""
for container in a:
if not exists(container, obj.cls, obj.name):
@@ -83,7 +85,7 @@
class Indent(object):
- '''Help templates be depth agnostic.'''
+ """Help templates be depth agnostic."""
def __init__(self, depth=0):
self.depth = depth
@@ -92,168 +94,152 @@
return Indent(self.depth + depth)
def __call__(self, depth):
- '''Render an indent at the current depth plus depth.'''
- return 4*' '*(depth + self.depth)
+ """Render an indent at the current depth plus depth."""
+ return 4 * " " * (depth + self.depth)
class ConfigEntry(NamedElement):
- '''Base interface for rendered items.'''
+ """Base interface for rendered items."""
def __init__(self, *a, **kw):
- '''Pop the class keyword.'''
+ """Pop the class keyword."""
- self.cls = kw.pop('class')
+ self.cls = kw.pop("class")
super(ConfigEntry, self).__init__(**kw)
def factory(self, objs):
- ''' Optional factory interface for subclasses to add
- additional items to be rendered.'''
+ """Optional factory interface for subclasses to add
+ additional items to be rendered."""
pass
def setup(self, objs):
- ''' Optional setup interface for subclasses, invoked
- after all factory methods have been run.'''
+ """Optional setup interface for subclasses, invoked
+ after all factory methods have been run."""
pass
class Sensor(ConfigEntry):
- '''Convenience type for config file method:type handlers.'''
+ """Convenience type for config file method:type handlers."""
def __init__(self, *a, **kw):
- kw['class'] = 'sensor'
- kw.pop('type')
- self.policy = kw.pop('policy')
+ kw["class"] = "sensor"
+ kw.pop("type")
+ self.policy = kw.pop("policy")
super(Sensor, self).__init__(**kw)
def setup(self, objs):
- '''All sensors have an associated policy. Get the policy index.'''
+ """All sensors have an associated policy. Get the policy index."""
- self.policy = get_index(objs, 'policy', self.policy)
+ self.policy = get_index(objs, "policy", self.policy)
class Gpio(Sensor, Renderer):
- '''Handler for method:type:gpio.'''
+ """Handler for method:type:gpio."""
def __init__(self, *a, **kw):
- self.key = kw.pop('key')
- self.physpath = kw.pop('physpath')
- self.devpath = kw.pop('devpath')
- kw['name'] = 'gpio-{}'.format(self.key)
+ self.key = kw.pop("key")
+ self.physpath = kw.pop("physpath")
+ self.devpath = kw.pop("devpath")
+ kw["name"] = "gpio-{}".format(self.key)
super(Gpio, self).__init__(**kw)
def construct(self, loader, indent):
- return self.render(
- loader,
- 'gpio.mako.hpp',
- g=self,
- indent=indent)
+ return self.render(loader, "gpio.mako.hpp", g=self, indent=indent)
def setup(self, objs):
super(Gpio, self).setup(objs)
class Tach(Sensor, Renderer):
- '''Handler for method:type:tach.'''
+ """Handler for method:type:tach."""
def __init__(self, *a, **kw):
- self.sensors = kw.pop('sensors')
- kw['name'] = 'tach-{}'.format('-'.join(self.sensors))
+ self.sensors = kw.pop("sensors")
+ kw["name"] = "tach-{}".format("-".join(self.sensors))
super(Tach, self).__init__(**kw)
def construct(self, loader, indent):
- return self.render(
- loader,
- 'tach.mako.hpp',
- t=self,
- indent=indent)
+ return self.render(loader, "tach.mako.hpp", t=self, indent=indent)
def setup(self, objs):
super(Tach, self).setup(objs)
class Rpolicy(ConfigEntry):
- '''Convenience type for config file rpolicy:type handlers.'''
+ """Convenience type for config file rpolicy:type handlers."""
def __init__(self, *a, **kw):
- kw.pop('type', None)
- self.fan = kw.pop('fan')
+ kw.pop("type", None)
+ self.fan = kw.pop("fan")
self.sensors = []
- kw['class'] = 'policy'
+ kw["class"] = "policy"
super(Rpolicy, self).__init__(**kw)
def setup(self, objs):
- '''All policies have an associated fan and methods.
- Resolve the indices.'''
+ """All policies have an associated fan and methods.
+ Resolve the indices."""
sensors = []
for s in self.sensors:
- sensors.append(get_index(objs, 'sensor', s))
+ sensors.append(get_index(objs, "sensor", s))
self.sensors = sensors
- self.fan = get_index(objs, 'fan', self.fan)
+ self.fan = get_index(objs, "fan", self.fan)
class AnyOf(Rpolicy, Renderer):
- '''Default policy handler (policy:type:anyof).'''
+ """Default policy handler (policy:type:anyof)."""
def __init__(self, *a, **kw):
- kw['name'] = 'anyof-{}'.format(kw['fan'])
+ kw["name"] = "anyof-{}".format(kw["fan"])
super(AnyOf, self).__init__(**kw)
def setup(self, objs):
super(AnyOf, self).setup(objs)
def construct(self, loader, indent):
- return self.render(
- loader,
- 'anyof.mako.hpp',
- f=self,
- indent=indent)
+ return self.render(loader, "anyof.mako.hpp", f=self, indent=indent)
class Fallback(Rpolicy, Renderer):
- '''Fallback policy handler (policy:type:fallback).'''
+ """Fallback policy handler (policy:type:fallback)."""
def __init__(self, *a, **kw):
- kw['name'] = 'fallback-{}'.format(kw['fan'])
+ kw["name"] = "fallback-{}".format(kw["fan"])
super(Fallback, self).__init__(**kw)
def setup(self, objs):
super(Fallback, self).setup(objs)
def construct(self, loader, indent):
- return self.render(
- loader,
- 'fallback.mako.hpp',
- f=self,
- indent=indent)
+ return self.render(loader, "fallback.mako.hpp", f=self, indent=indent)
class Fan(ConfigEntry):
- '''Fan directive handler. Fans entries consist of an inventory path,
- optional redundancy policy and associated sensors.'''
+ """Fan directive handler. Fans entries consist of an inventory path,
+ optional redundancy policy and associated sensors."""
def __init__(self, *a, **kw):
- self.path = kw.pop('path')
- self.methods = kw.pop('methods')
- self.rpolicy = kw.pop('rpolicy', None)
+ self.path = kw.pop("path")
+ self.methods = kw.pop("methods")
+ self.rpolicy = kw.pop("rpolicy", None)
super(Fan, self).__init__(**kw)
def factory(self, objs):
- ''' Create rpolicy and sensor(s) objects.'''
+ """Create rpolicy and sensor(s) objects."""
if self.rpolicy:
- self.rpolicy['fan'] = self.name
- factory = Everything.classmap(self.rpolicy['type'])
+ self.rpolicy["fan"] = self.name
+ factory = Everything.classmap(self.rpolicy["type"])
rpolicy = factory(**self.rpolicy)
else:
rpolicy = AnyOf(fan=self.name)
for m in self.methods:
- m['policy'] = rpolicy.name
- factory = Everything.classmap(m['type'])
+ m["policy"] = rpolicy.name
+ factory = Everything.classmap(m["type"])
sensor = factory(**m)
rpolicy.sensors.append(sensor.name)
add_unique(sensor, objs)
@@ -263,19 +249,19 @@
class Everything(Renderer):
- '''Parse/render entry point.'''
+ """Parse/render entry point."""
@staticmethod
def classmap(cls):
- '''Map render item class entries to the appropriate
- handler methods.'''
+ """Map render item class entries to the appropriate
+ handler methods."""
class_map = {
- 'anyof': AnyOf,
- 'fan': Fan,
- 'fallback': Fallback,
- 'gpio': Gpio,
- 'tach': Tach,
+ "anyof": AnyOf,
+ "fan": Fan,
+ "fallback": Fallback,
+ "gpio": Gpio,
+ "tach": Tach,
}
if cls not in class_map:
@@ -285,33 +271,32 @@
@staticmethod
def load(args):
- '''Load the configuration file. Parsing occurs in three phases.
+ """Load the configuration file. Parsing occurs in three phases.
In the first phase a factory method associated with each
configuration file directive is invoked. These factory
methods generate more factory methods. In the second
phase the factory methods created in the first phase
are invoked. In the last phase a callback is invoked on
each object created in phase two. Typically the callback
- resolves references to other configuration file directives.'''
+ resolves references to other configuration file directives."""
factory_objs = {}
objs = {}
- with open(args.input, 'r') as fd:
+ with open(args.input, "r") as fd:
for x in yaml.safe_load(fd.read()) or {}:
-
# The top level elements all represent fans.
- x['class'] = 'fan'
+ x["class"] = "fan"
# Create factory object for this config file directive.
- factory = Everything.classmap(x['class'])
+ factory = Everything.classmap(x["class"])
obj = factory(**x)
# For a given class of directive, validate the file
# doesn't have any duplicate names.
if exists(factory_objs, obj.cls, obj.name):
- raise NotUniqueError(args.input, 'fan', obj.name)
+ raise NotUniqueError(args.input, "fan", obj.name)
- factory_objs.setdefault('fan', []).append(obj)
- objs.setdefault('fan', []).append(obj)
+ factory_objs.setdefault("fan", []).append(obj)
+ objs.setdefault("fan", []).append(obj)
for cls, items in list(factory_objs.items()):
for obj in items:
@@ -332,13 +317,13 @@
return Everything(**objs)
def __init__(self, *a, **kw):
- self.fans = kw.pop('fan', [])
- self.policies = kw.pop('policy', [])
- self.sensors = kw.pop('sensor', [])
+ self.fans = kw.pop("fan", [])
+ self.policies = kw.pop("policy", [])
+ self.sensors = kw.pop("sensor", [])
super(Everything, self).__init__(**kw)
def generate_cpp(self, loader):
- '''Render the template with the provided data.'''
+ """Render the template with the provided data."""
sys.stdout.write(
self.render(
loader,
@@ -346,49 +331,65 @@
fans=self.fans,
sensors=self.sensors,
policies=self.policies,
- indent=Indent()))
+ indent=Indent(),
+ )
+ )
-if __name__ == '__main__':
+
+if __name__ == "__main__":
script_dir = os.path.dirname(os.path.realpath(__file__))
valid_commands = {
- 'generate-cpp': 'generate_cpp',
+ "generate-cpp": "generate_cpp",
}
parser = ArgumentParser(
- description='Phosphor Fan Presence (PFP) YAML '
- 'scanner and code generator.')
+ description=(
+ "Phosphor Fan Presence (PFP) YAML scanner and code generator."
+ )
+ )
parser.add_argument(
- '-i', '--input', dest='input',
- default=os.path.join(script_dir, 'example', 'example.yaml'),
- help='Location of config file to process.')
+ "-i",
+ "--input",
+ dest="input",
+ default=os.path.join(script_dir, "example", "example.yaml"),
+ help="Location of config file to process.",
+ )
parser.add_argument(
- '-t', '--template', dest='template',
- default='generated.mako.hpp',
- help='The top level template to render.')
+ "-t",
+ "--template",
+ dest="template",
+ default="generated.mako.hpp",
+ help="The top level template to render.",
+ )
parser.add_argument(
- '-p', '--template-path', dest='template_search',
- default=os.path.join(script_dir, 'templates'),
- help='The space delimited mako template search path.')
+ "-p",
+ "--template-path",
+ dest="template_search",
+ default=os.path.join(script_dir, "templates"),
+ help="The space delimited mako template search path.",
+ )
parser.add_argument(
- 'command', metavar='COMMAND', type=str,
+ "command",
+ metavar="COMMAND",
+ type=str,
choices=list(valid_commands.keys()),
- help='%s.' % ' | '.join(list(valid_commands.keys())))
+ help="%s." % " | ".join(list(valid_commands.keys())),
+ )
args = parser.parse_args()
if sys.version_info < (3, 0):
lookup = mako.lookup.TemplateLookup(
- directories=args.template_search.split(),
- disable_unicode=True)
+ directories=args.template_search.split(), disable_unicode=True
+ )
else:
lookup = mako.lookup.TemplateLookup(
- directories=args.template_search.split())
+ directories=args.template_search.split()
+ )
try:
- function = getattr(
- Everything.load(args),
- valid_commands[args.command])
+ function = getattr(Everything.load(args), valid_commands[args.command])
function(lookup)
except InvalidConfigError as e:
- sys.stderr.write('{0}: {1}\n\n'.format(e.config, e.msg))
+ sys.stderr.write("{0}: {1}\n\n".format(e.config, e.msg))
raise