summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/test.py
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-15 17:42:05 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-15 17:42:05 -0500
commit23c9c26d270ff766133e7aeebffc99a35633ef41 (patch)
treed68c5030efd41b5de10dcf7d92b1fa2c0c86b445 /func/minion/modules/test.py
parentc4371ce647118902dd7574394d86c690c9be686e (diff)
downloadthird_party-func-23c9c26d270ff766133e7aeebffc99a35633ef41.tar.gz
third_party-func-23c9c26d270ff766133e7aeebffc99a35633ef41.tar.xz
third_party-func-23c9c26d270ff766133e7aeebffc99a35633ef41.zip
Simplify our modules by auto-detecting them and registering their handlers
- Auto-detect and load all FuncModules. This obsoletes the need to have our modules define a register_rpc method. - Use introspection in our FuncModule to auto-register all method handlers that do not being with an underscore. This obsoletes the need to hardcode methods in our modules. - Remove all __init__ methods from our modules, along with register_rpc - Modify the func-create-module script to reflect these changes. Note that doing 'from modules import func_module' is no longer supported in our modules, do to some interesting path issues with our auto-detection code. Supported methods are now: 'import func_module' or 'from func.minion.modules import func_module'
Diffstat (limited to 'func/minion/modules/test.py')
-rw-r--r--func/minion/modules/test.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/func/minion/modules/test.py b/func/minion/modules/test.py
index 24af03e..6718fed 100644
--- a/func/minion/modules/test.py
+++ b/func/minion/modules/test.py
@@ -1,17 +1,10 @@
-from modules import func_module
+import func_module
import time
class Test(func_module.FuncModule):
version = "11.11.11"
api_version = "0.0.1"
description = "Just a very simple example module"
- def __init__(self):
- self.methods = {
- "add": self.add,
- "ping": self.ping,
- "sleep": self.sleep
- }
- func_module.FuncModule.__init__(self)
def add(self, numb1, numb2):
return numb1 + numb2
@@ -27,6 +20,3 @@ class Test(func_module.FuncModule):
t = int(t)
time.sleep(t)
return time.time()
-
-methods = Test()
-register_rpc = methods.register_rpc