bumblebee-status/bumblebee/modules/dnf.py
Tobias Witek fca3171556 [modules] Allow modules to provide default click actions
Pass the "output" object to the modules' constructor to allow them to
define their own callbacks.
Any user-provided callbacks take precedence and override those of the
module.
2016-11-01 08:09:10 +01:00

89 lines
2.6 KiB
Python

import time
import shlex
import threading
import subprocess
import bumblebee.module
import bumblebee.util
def usage():
return "dnf or dnf::<interval in seconds, defaults to 3600>"
def notes():
return "Spawns a separate thread that invokes 'dnf updateinfo' every <interval> seconds. Critical status is if there is either more than 50 updates pending, or at least one of them is a security update."
def description():
return "Checks DNF for updated packages and displays the number of <security>/<bugfixes>/<enhancements>/<other> pending updates."
def get_dnf_info(obj):
while True:
try:
res = subprocess.check_output(shlex.split("dnf updateinfo"))
except Exception as e:
break
security = 0
bugfixes = 0
enhancements = 0
other = 0
for line in res.split("\n"):
if "expiration" in line: continue
elif "ecurity" in line:
for s in str.split(line):
if s.isdigit(): security += int(s)
elif "ugfix" in line:
for s in str.split(line):
if s.isdigit(): bugfixes += int(s)
elif "hancement" in line:
for s in str.split(line):
if s.isdigit(): enhancements += int(s)
else:
for s in str.split(line):
if s.isdigit(): other += int(s)
obj.set("security", security)
obj.set("bugfixes", bugfixes)
obj.set("enhancements", enhancements)
obj.set("other", other)
time.sleep(obj.interval())
class Module(bumblebee.module.Module):
def __init__(self, output, args):
super(Module, self).__init__(args)
self._interval = args[0] if args else 30*60
self._counter = {}
self._thread = threading.Thread(target=get_dnf_info, args=(self,))
self._thread.start()
def interval(self):
return self._interval
def set(self, what, value):
self._counter[what] = value
def get(self, what):
return self._counter.get(what, 0)
def data(self):
result = []
for t in [ "security", "bugfix", "enhancement", "other" ]:
result.append(str(self.get(t)))
return "/".join(result)
def state(self):
total = sum(self._counter.values())
if total == 0: return "good"
return "default"
def warning(self):
total = sum(self._counter.values())
return total > 0
def critical(self):
total = sum(self._counter.values())
return total > 50 or self._counter.get("security", 0) > 0
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4