Added modules/libvirtvms.py but no way to unit test.
This commit is contained in:
parent
7414f9fa01
commit
fcf8d648d8
1 changed files with 37 additions and 0 deletions
37
bumblebee/modules/libvirtvms.py
Normal file
37
bumblebee/modules/libvirtvms.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
"""Displays count of running libvirt VMs.
|
||||
|
||||
Required the following python packages:
|
||||
* libvirt
|
||||
* sys
|
||||
|
||||
"""
|
||||
import sys
|
||||
import libvirt
|
||||
import bumblebee.input
|
||||
import bumblebee.output
|
||||
import bumblebee.engine
|
||||
|
||||
class Module(bumblebee.engine.Module):
|
||||
def __init__(self, engine, config):
|
||||
super(Module, self).__init__(engine, config,
|
||||
bumblebee.output.Widget(full_text=self.status)
|
||||
)
|
||||
self._status = self.status
|
||||
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
|
||||
cmd="virt-manager")
|
||||
|
||||
def status(self, _):
|
||||
"""Get number of currently running libvirt VMs"""
|
||||
conn = None
|
||||
try:
|
||||
conn = libvirt.openReadOnly(None)
|
||||
except:
|
||||
return None
|
||||
if conn == None:
|
||||
return None
|
||||
return "VMs: %d" % conn.numOfDomains()
|
||||
|
||||
def update(self, widgets):
|
||||
self._status = self.status
|
||||
|
Loading…
Reference in a new issue