Added format parameter to control the widget output

This commit is contained in:
Kunal Shetye 2018-04-11 07:30:16 +02:00
parent 1b4d5281dc
commit b23b97625e

View file

@ -5,6 +5,7 @@
Parameters: Parameters:
* nic.exclude: Comma-separated list of interface prefixes to exclude (defaults to "lo,virbr,docker,vboxnet,veth") * nic.exclude: Comma-separated list of interface prefixes to exclude (defaults to "lo,virbr,docker,vboxnet,veth")
* nic.states: Comma-separated list of states to show (prefix with "^" to invert - i.e. ^down -> show all devices that are not in state down) * nic.states: Comma-separated list of states to show (prefix with "^" to invert - i.e. ^down -> show all devices that are not in state down)
* nic.format: Format string (defaults to "{intf} {state} {ip}")
""" """
try: try:
@ -31,7 +32,7 @@ class Module(bumblebee.engine.Module):
self._states["exclude"].append(state[1:]) self._states["exclude"].append(state[1:])
else: else:
self._states["include"].append(state) self._states["include"].append(state)
self._format = self.parameter("format","{intf} {state} {ip}");
self._update_widgets(widgets) self._update_widgets(widgets)
def update(self, widgets): def update(self, widgets):
@ -91,7 +92,12 @@ class Module(bumblebee.engine.Module):
if not widget: if not widget:
widget = bumblebee.output.Widget(name=intf) widget = bumblebee.output.Widget(name=intf)
widgets.append(widget) widgets.append(widget)
widget.full_text("{} {} {}".format(intf, state, ", ".join(addr))) widget.full_text(self._format.format(
**{
"intf": intf,
"state": state,
"ip": ", ".join(addr)
}))
widget.set("intf", intf) widget.set("intf", intf)
widget.set("state", state) widget.set("state", state)
widget.set("visited", True) widget.set("visited", True)