summaryrefslogtreecommitdiff
path: root/portato/plugin.py
diff options
context:
space:
mode:
authornecoro <>2007-03-31 19:29:26 +0000
committernecoro <>2007-03-31 19:29:26 +0000
commit2d2f6823f5360a5287b4b19d035cad4a5611fa3a (patch)
treec108aee3dd9a34c1c7dbc68ed87ff4cc65078593 /portato/plugin.py
parent5138b1e23d34e0a72e0c2f4ae52256e14d825320 (diff)
downloadportato-2d2f6823f5360a5287b4b19d035cad4a5611fa3a.tar.gz
portato-2d2f6823f5360a5287b4b19d035cad4a5611fa3a.tar.bz2
portato-2d2f6823f5360a5287b4b19d035cad4a5611fa3a.zip
Allowed Plugins to have a menu
Diffstat (limited to '')
-rw-r--r--portato/plugin.py69
1 files changed, 66 insertions, 3 deletions
diff --git a/portato/plugin.py b/portato/plugin.py
index 4ce4099..c6e3288 100644
--- a/portato/plugin.py
+++ b/portato/plugin.py
@@ -14,7 +14,7 @@ import os, os.path
from xml.dom.minidom import parse
from constants import PLUGIN_DIR
-from helper import debug
+from helper import debug, flatten
class ParseException (Exception):
pass
@@ -23,6 +23,46 @@ def error (reason, p):
reason = "("+reason+")"
debug("Malformed plugin:", p, reason, minus=1, error = 1)
+class Menu:
+ """A single <menu>-element."""
+ def __init__ (self, plugin, label, call):
+ """Constructor.
+
+ @param plugin: the plugin this menu belongs to
+ @type plugin: Plugin
+ @param label: the label to show
+ @type label: string
+ @param call: the function to call relative to the import statement
+ @type call: string
+
+ @raises ParseException: on parsing errors"""
+
+ if not label:
+ raise ParseException, "label attribute missing"
+
+ if not call:
+ raise ParseException, "call attribute missing"
+
+ self.label = label
+ self.plugin = plugin
+
+ if self.plugin.needs_import(): # get import
+ imp = self.plugin.get_import()
+ try:
+ mod = __import__(imp, globals(), locals(), [call])
+ except ImportError:
+ raise ParseException, imp+" cannot be imported"
+
+ try:
+ self.call = eval("mod."+call) # build function
+ except AttributeError:
+ raise ParseException, call+" cannot be imported"
+ else:
+ try:
+ self.call = eval(call)
+ except AttributeError:
+ raise ParseException, call+" cannot be imported"
+
class Connect:
"""A single <connect>-element."""
@@ -129,6 +169,7 @@ class Plugin:
self.author = author
self._import = None
self.hooks = []
+ self.menus = []
def parse_hooks (self, hooks):
"""Gets a list of <hook>-elements and parses them.
@@ -143,6 +184,18 @@ class Plugin:
hook.parse_connects(h.getElementsByTagName("connect"))
self.hooks.append(hook)
+ def parse_menus (self, menus):
+ """Gets a list of <menu>-elements and parses them.
+
+ @param menus: the list of elements
+ @type menus: NodeList
+
+ @raises ParseException: on parsing errors"""
+
+ for m in menus:
+ menu = Menu(self, m.getAttribute("label"), m.getAttribute("call"))
+ self.menus.append(menu)
+
def set_import (self, imports):
"""This gets a list of imports and parses them - setting the import needed to call the plugin.
@@ -200,6 +253,9 @@ class PluginQueue:
def get_plugin_data (self):
return [(x.name, x.author) for x in self.list]
+ def get_plugin_menus (self):
+ return flatten([x.menus for x in self.list])
+
def hook (self, hook, *hargs, **hkwargs):
"""This is a method taking care of calling the plugins.
@@ -230,9 +286,15 @@ class PluginQueue:
debug(imp,"cannot be imported", error = 1)
return
- f = eval("mod."+cmd.hook.call) # build function
+ try:
+ f = eval("mod."+cmd.hook.call) # build function
+ except AttributeError:
+ debug(cmd.hook.call,"cannot be imported", error = 1)
else:
- f = eval(cmd.hook.call)
+ try:
+ f = eval(cmd.hook.call)
+ except AttributeError:
+ debug(cmd.hook.call,"cannot be imported", error = 1)
f(*hargs, **hkwargs) # call function
@@ -284,6 +346,7 @@ class PluginQueue:
plugin = Plugin(p, elem.getAttribute("name"), elem.getAttribute("author"))
plugin.parse_hooks(elem.getElementsByTagName("hook"))
plugin.set_import(elem.getElementsByTagName("import"))
+ plugin.parse_menus(elem.getElementsByTagName("menu"))
self.list.append(plugin)