diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-09-25 20:12:43 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-09-25 20:12:43 +0200 |
commit | c80022e816e96580d48286011337528a929f4ec8 (patch) | |
tree | 6ede4e9d16e4fc2916a99dff6e0fbf3c065fae39 /plugins/screen_detach.py | |
parent | fa5044f423e30db386d6d24d39f60d0735a44355 (diff) | |
parent | 00ed9b4842169111238b86d0bfc1465176b7d2d8 (diff) | |
download | poezio-c80022e816e96580d48286011337528a929f4ec8.tar.gz poezio-c80022e816e96580d48286011337528a929f4ec8.tar.bz2 poezio-c80022e816e96580d48286011337528a929f4ec8.tar.xz poezio-c80022e816e96580d48286011337528a929f4ec8.zip |
merge default into plugins branch. So that branch is still up to date too
Diffstat (limited to 'plugins/screen_detach.py')
-rw-r--r-- | plugins/screen_detach.py | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/screen_detach.py b/plugins/screen_detach.py new file mode 100644 index 00000000..6ee96896 --- /dev/null +++ b/plugins/screen_detach.py @@ -0,0 +1,46 @@ +from plugin import BasePlugin +import os +import stat +import pyinotify + +SCREEN_DIR = '/var/run/screen/S-%s' % (os.getlogin(),) + +class Plugin(BasePlugin): + def init(self): + self.timed_event = None + sock_path = None + self.thread = None + for f in os.listdir(SCREEN_DIR): + path = os.path.join(SCREEN_DIR, f) + if screen_attached(path): + sock_path = path + self.attached = True + break + + # Only actually do something if we found an attached screen (assuming only one) + if sock_path: + wm = pyinotify.WatchManager() + wm.add_watch(sock_path, pyinotify.EventsCodes.ALL_FLAGS['IN_ATTRIB']) + self.thread = pyinotify.ThreadedNotifier(wm, default_proc_fun=HandleScreen(plugin=self)) + self.thread.start() + + def cleanup(self): + if self.thread: + self.thread.stop() + + def update_screen_state(self, socket): + attached = screen_attached(socket) + if attached != self.attached: + self.attached = attached + status = 'available' if self.attached else 'away' + self.core.command_status(status) + +def screen_attached(socket): + return (os.stat(socket).st_mode & stat.S_IXUSR) != 0 + +class HandleScreen(pyinotify.ProcessEvent): + def my_init(self, **kwargs): + self.plugin = kwargs['plugin'] + + def process_IN_ATTRIB(self, event): + self.plugin.update_screen_state(event.path) |