2016-11-05 15:28:33 +01:00
|
|
|
import os
|
|
|
|
import shlex
|
|
|
|
import inspect
|
2016-11-04 21:10:21 +01:00
|
|
|
import threading
|
2016-11-05 15:28:33 +01:00
|
|
|
import subprocess
|
2016-10-30 17:56:04 +01:00
|
|
|
|
2016-11-04 21:41:22 +01:00
|
|
|
def output(args):
|
|
|
|
import bumblebee.outputs.i3
|
|
|
|
return bumblebee.outputs.i3.Output(args)
|
|
|
|
|
2016-11-05 08:59:43 +01:00
|
|
|
class Widget(object):
|
2016-11-12 12:11:42 +01:00
|
|
|
def __init__(self, obj, text, instance=None):
|
2016-11-05 12:14:33 +01:00
|
|
|
self._obj = obj
|
2016-11-05 08:59:43 +01:00
|
|
|
self._text = text
|
2016-11-05 13:42:26 +01:00
|
|
|
self._store = {}
|
2016-11-12 12:11:42 +01:00
|
|
|
self._instance = instance
|
2016-11-05 13:42:26 +01:00
|
|
|
|
|
|
|
def set(self, key, value):
|
|
|
|
self._store[key] = value
|
|
|
|
|
|
|
|
def get(self, key, default=None):
|
|
|
|
return self._store.get(key, default)
|
2016-11-05 08:59:43 +01:00
|
|
|
|
|
|
|
def state(self):
|
2016-11-05 13:42:26 +01:00
|
|
|
return self._obj.state(self)
|
2016-11-05 08:59:43 +01:00
|
|
|
|
|
|
|
def warning(self):
|
2016-11-05 13:42:26 +01:00
|
|
|
return self._obj.warning(self)
|
2016-11-05 08:59:43 +01:00
|
|
|
|
|
|
|
def critical(self):
|
2016-11-05 13:42:26 +01:00
|
|
|
return self._obj.critical(self)
|
2016-11-05 08:59:43 +01:00
|
|
|
|
|
|
|
def module(self):
|
2016-11-05 12:14:33 +01:00
|
|
|
return self._obj.__module__.split(".")[-1]
|
2016-11-05 08:59:43 +01:00
|
|
|
|
2016-11-05 13:23:46 +01:00
|
|
|
def instance(self):
|
2016-11-12 12:11:42 +01:00
|
|
|
return self._instance if self._instance else getattr(self._obj, "instance")(self)
|
2016-11-05 13:23:46 +01:00
|
|
|
|
2016-11-05 08:59:43 +01:00
|
|
|
def text(self):
|
|
|
|
return self._text
|
|
|
|
|
2016-11-05 15:28:33 +01:00
|
|
|
class Command(object):
|
|
|
|
def __init__(self, command):
|
|
|
|
self._command = command
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
cmd = self._command.format(*args, **kwargs)
|
|
|
|
DEVNULL = open(os.devnull, 'wb')
|
|
|
|
subprocess.Popen(shlex.split(cmd), stdout=DEVNULL, stderr=DEVNULL)
|
|
|
|
|
2016-10-30 17:56:04 +01:00
|
|
|
class Output(object):
|
2016-11-05 08:59:43 +01:00
|
|
|
def __init__(self, config):
|
|
|
|
self._config = config
|
2016-11-01 07:46:26 +01:00
|
|
|
self._callbacks = {}
|
2016-11-04 21:10:21 +01:00
|
|
|
self._wait = threading.Condition()
|
|
|
|
self._wait.acquire()
|
2016-11-01 07:46:26 +01:00
|
|
|
|
2016-11-04 19:11:10 +01:00
|
|
|
def redraw(self):
|
2016-11-04 21:10:21 +01:00
|
|
|
self._wait.acquire()
|
|
|
|
self._wait.notify()
|
|
|
|
self._wait.release()
|
2016-11-04 19:11:10 +01:00
|
|
|
|
2016-11-01 07:58:50 +01:00
|
|
|
def add_callback(self, cmd, button, module=None):
|
2016-11-01 08:09:10 +01:00
|
|
|
if module:
|
|
|
|
module = module.replace("bumblebee.modules.", "")
|
2016-11-05 15:28:33 +01:00
|
|
|
|
2016-11-05 15:39:21 +01:00
|
|
|
if self._callbacks.get((button, module)): return
|
|
|
|
|
2016-11-01 07:46:26 +01:00
|
|
|
self._callbacks[(
|
|
|
|
button,
|
|
|
|
module,
|
|
|
|
)] = cmd
|
|
|
|
|
|
|
|
def callback(self, event):
|
|
|
|
cb = self._callbacks.get((
|
|
|
|
event.get("button", -1),
|
2016-11-05 16:39:46 +01:00
|
|
|
None,
|
2016-11-01 07:46:26 +01:00
|
|
|
), None)
|
2016-11-05 16:39:46 +01:00
|
|
|
cb = self._callbacks.get((
|
|
|
|
event.get("button", -1),
|
|
|
|
event.get("instance", event.get("name", None)),
|
|
|
|
), cb)
|
2016-11-05 15:28:33 +01:00
|
|
|
if inspect.isfunction(cb) or cb is None: return cb
|
|
|
|
|
|
|
|
return Command(cb)
|
2016-10-31 10:45:15 +01:00
|
|
|
|
2016-11-05 08:59:43 +01:00
|
|
|
def wait(self):
|
|
|
|
self._wait.wait(self._config.parameter("interval", 1))
|
2016-11-04 21:10:21 +01:00
|
|
|
|
2016-10-30 17:56:04 +01:00
|
|
|
def start(self):
|
|
|
|
pass
|
|
|
|
|
2016-11-05 08:59:43 +01:00
|
|
|
def draw(self, widgets, theme):
|
2016-11-05 13:12:30 +01:00
|
|
|
if not type(widgets) is list:
|
|
|
|
widgets = [ widgets ]
|
|
|
|
self._draw(widgets, theme)
|
|
|
|
|
|
|
|
def _draw(self, widgets, theme):
|
2016-10-30 17:56:04 +01:00
|
|
|
pass
|
|
|
|
|
2016-11-05 08:59:43 +01:00
|
|
|
def flush(self):
|
2016-10-30 17:56:04 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|