2013-12-15 01:43:16 +00:00
|
|
|
import os, traceback, threading
|
|
|
|
import controller
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
class ScriptError(Exception):
|
|
|
|
pass
|
|
|
|
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
class Script:
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2011-08-03 01:20:36 +00:00
|
|
|
The instantiator should do something along this vein:
|
|
|
|
|
2013-06-13 14:04:04 +00:00
|
|
|
s = Script(argv, master)
|
2011-08-03 01:20:36 +00:00
|
|
|
s.load()
|
2011-01-31 00:26:56 +00:00
|
|
|
"""
|
2013-06-13 14:04:04 +00:00
|
|
|
def __init__(self, argv, ctx):
|
|
|
|
self.argv = argv
|
|
|
|
self.ctx = ctx
|
2011-08-03 01:20:36 +00:00
|
|
|
self.ns = None
|
|
|
|
|
|
|
|
def load(self):
|
|
|
|
"""
|
|
|
|
Loads a module.
|
|
|
|
|
|
|
|
Raises ScriptError on failure, with argument equal to an error
|
|
|
|
message that may be a formatted traceback.
|
|
|
|
"""
|
2013-06-13 14:04:04 +00:00
|
|
|
path = os.path.expanduser(self.argv[0])
|
2011-08-03 04:36:20 +00:00
|
|
|
if not os.path.exists(path):
|
2013-06-13 14:04:04 +00:00
|
|
|
raise ScriptError("No such file: %s" % path)
|
2011-08-03 04:36:20 +00:00
|
|
|
if not os.path.isfile(path):
|
2013-06-13 14:04:04 +00:00
|
|
|
raise ScriptError("Not a file: %s" % path)
|
2011-08-03 01:20:36 +00:00
|
|
|
ns = {}
|
|
|
|
try:
|
2011-08-03 22:34:34 +00:00
|
|
|
execfile(path, ns, ns)
|
2011-08-03 01:20:36 +00:00
|
|
|
except Exception, v:
|
|
|
|
raise ScriptError(traceback.format_exc(v))
|
2013-06-17 14:48:06 +00:00
|
|
|
self.ns = ns
|
|
|
|
r = self.run("start", self.argv)
|
|
|
|
if not r[0] and r[1]:
|
|
|
|
raise ScriptError(r[1][1])
|
2013-06-13 14:04:04 +00:00
|
|
|
|
|
|
|
def unload(self):
|
|
|
|
return self.run("done")
|
2011-08-03 01:20:36 +00:00
|
|
|
|
|
|
|
def run(self, name, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Runs a plugin method.
|
|
|
|
|
|
|
|
Returns:
|
2011-01-31 00:26:56 +00:00
|
|
|
|
2011-08-03 01:20:36 +00:00
|
|
|
(True, retval) on success.
|
|
|
|
(False, None) on nonexistent method.
|
2012-06-03 01:41:44 +00:00
|
|
|
(False, (exc, traceback string)) if there was an exception.
|
2011-08-03 01:20:36 +00:00
|
|
|
"""
|
|
|
|
f = self.ns.get(name)
|
|
|
|
if f:
|
|
|
|
try:
|
|
|
|
return (True, f(self.ctx, *args, **kwargs))
|
|
|
|
except Exception, v:
|
|
|
|
return (False, (v, traceback.format_exc(v)))
|
|
|
|
else:
|
|
|
|
return (False, None)
|
2013-12-15 01:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _handle_concurrent_reply(fn, o, args=[], kwargs={}):
|
|
|
|
reply = o.reply
|
|
|
|
o.reply = controller.DummyReply()
|
|
|
|
|
|
|
|
def run():
|
|
|
|
fn(*args, **kwargs)
|
|
|
|
reply(o)
|
|
|
|
threading.Thread(target=run).start()
|
|
|
|
|
|
|
|
|
|
|
|
def concurrent(fn):
|
|
|
|
if fn.func_name in ["request", "response", "error"]:
|
|
|
|
def _concurrent(ctx, flow):
|
|
|
|
r = getattr(flow, fn.func_name)
|
|
|
|
_handle_concurrent_reply(fn, r, [ctx, flow])
|
|
|
|
return _concurrent
|
2013-12-16 21:10:06 +00:00
|
|
|
elif fn.func_name in ["clientconnect", "serverconnect", "clientdisconnect"]:
|
2013-12-15 01:43:16 +00:00
|
|
|
def _concurrent(ctx, conn):
|
|
|
|
_handle_concurrent_reply(fn, conn, [ctx, conn])
|
|
|
|
return _concurrent
|
|
|
|
raise NotImplementedError("Concurrent decorator not supported for this method.")
|