2014-10-05 16:25:31 +08:00
|
|
|
import sys
|
2015-02-22 04:42:26 +08:00
|
|
|
import time
|
2014-10-05 16:25:31 +08:00
|
|
|
|
2015-01-17 19:38:20 +08:00
|
|
|
from artiq.protocols import pyon
|
|
|
|
from artiq.tools import file_import
|
2015-07-14 04:08:20 +08:00
|
|
|
from artiq.master.worker_db import DeviceManager, ResultDB, get_hdf5_output
|
|
|
|
from artiq.language.environment import is_experiment
|
2015-04-28 23:23:59 +08:00
|
|
|
from artiq.language.core import set_watchdog_factory
|
2014-12-08 19:22:02 +08:00
|
|
|
|
|
|
|
|
2014-12-31 17:41:22 +08:00
|
|
|
def get_object():
|
|
|
|
line = sys.__stdin__.readline()
|
|
|
|
return pyon.decode(line)
|
|
|
|
|
|
|
|
|
2014-10-05 16:25:31 +08:00
|
|
|
def put_object(obj):
|
2014-10-25 16:31:34 +08:00
|
|
|
ds = pyon.encode(obj)
|
2014-10-05 16:25:31 +08:00
|
|
|
sys.__stdout__.write(ds)
|
|
|
|
sys.__stdout__.write("\n")
|
|
|
|
sys.__stdout__.flush()
|
|
|
|
|
|
|
|
|
2015-01-07 17:50:05 +08:00
|
|
|
class ParentActionError(Exception):
|
|
|
|
pass
|
2014-12-31 17:41:22 +08:00
|
|
|
|
|
|
|
|
2015-01-07 17:50:05 +08:00
|
|
|
def make_parent_action(action, argnames, exception=ParentActionError):
|
|
|
|
argnames = argnames.split()
|
|
|
|
def parent_action(*args):
|
|
|
|
request = {"action": action}
|
|
|
|
for argname, arg in zip(argnames, args):
|
|
|
|
request[argname] = arg
|
|
|
|
put_object(request)
|
|
|
|
reply = get_object()
|
2015-05-17 16:11:00 +08:00
|
|
|
if "action" in reply:
|
|
|
|
if reply["action"] == "terminate":
|
|
|
|
sys.exit()
|
|
|
|
else:
|
|
|
|
raise ValueError
|
2015-01-07 17:50:05 +08:00
|
|
|
if reply["status"] == "ok":
|
|
|
|
return reply["data"]
|
|
|
|
else:
|
2015-01-13 17:27:36 +08:00
|
|
|
raise exception(reply["message"])
|
2015-01-07 17:50:05 +08:00
|
|
|
return parent_action
|
|
|
|
|
|
|
|
|
2015-07-22 05:13:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
class LogForwarder:
|
|
|
|
def __init__(self):
|
|
|
|
self.buffer = ""
|
|
|
|
|
|
|
|
to_parent = staticmethod(make_parent_action("log", "message"))
|
|
|
|
|
|
|
|
def write(self, data):
|
|
|
|
self.buffer += data
|
|
|
|
while "\n" in self.buffer:
|
|
|
|
i = self.buffer.index("\n")
|
|
|
|
self.to_parent(self.buffer[:i])
|
|
|
|
self.buffer = self.buffer[i+1:]
|
|
|
|
|
|
|
|
def flush(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-01-12 18:51:23 +08:00
|
|
|
class ParentDDB:
|
2015-07-14 04:08:20 +08:00
|
|
|
get = make_parent_action("get_device", "name", KeyError)
|
2015-01-12 18:51:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ParentPDB:
|
2015-07-14 04:08:20 +08:00
|
|
|
get = make_parent_action("get_parameter", "name", KeyError)
|
2015-01-12 18:51:23 +08:00
|
|
|
set = make_parent_action("set_parameter", "name value")
|
2014-12-31 17:41:22 +08:00
|
|
|
|
|
|
|
|
2015-01-14 11:37:08 +08:00
|
|
|
update_rt_results = make_parent_action("update_rt_results", "mod")
|
2015-01-13 19:12:19 +08:00
|
|
|
|
|
|
|
|
2015-03-11 23:43:07 +08:00
|
|
|
class Watchdog:
|
|
|
|
_create = make_parent_action("create_watchdog", "t")
|
|
|
|
_delete = make_parent_action("delete_watchdog", "wid")
|
|
|
|
|
|
|
|
def __init__(self, t):
|
|
|
|
self.t = t
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
self.wid = Watchdog._create(self.t)
|
|
|
|
|
|
|
|
def __exit__(self, type, value, traceback):
|
|
|
|
Watchdog._delete(self.wid)
|
|
|
|
|
|
|
|
|
2015-04-28 23:23:59 +08:00
|
|
|
set_watchdog_factory(Watchdog)
|
|
|
|
|
|
|
|
|
2015-02-20 03:09:11 +08:00
|
|
|
class Scheduler:
|
2015-05-17 16:11:00 +08:00
|
|
|
pause = staticmethod(make_parent_action("pause", ""))
|
|
|
|
|
|
|
|
submit = staticmethod(make_parent_action("scheduler_submit",
|
2015-05-28 17:20:58 +08:00
|
|
|
"pipeline_name expid priority due_date flush"))
|
2015-05-17 16:11:00 +08:00
|
|
|
cancel = staticmethod(make_parent_action("scheduler_cancel", "rid"))
|
|
|
|
|
2015-07-14 04:08:20 +08:00
|
|
|
def set_run_info(self, pipeline_name, expid, priority):
|
2015-05-17 16:11:00 +08:00
|
|
|
self.pipeline_name = pipeline_name
|
|
|
|
self.expid = expid
|
2015-05-24 20:37:47 +08:00
|
|
|
self.priority = priority
|
2015-02-20 03:09:11 +08:00
|
|
|
|
|
|
|
|
2015-07-15 17:08:12 +08:00
|
|
|
def get_exp(file, class_name):
|
2015-01-13 19:12:19 +08:00
|
|
|
module = file_import(file)
|
2015-07-15 17:08:12 +08:00
|
|
|
if class_name is None:
|
2015-03-08 22:43:04 +08:00
|
|
|
exps = [v for k, v in module.__dict__.items()
|
|
|
|
if is_experiment(v)]
|
|
|
|
if len(exps) != 1:
|
|
|
|
raise ValueError("Found {} experiments in module"
|
|
|
|
.format(len(exps)))
|
|
|
|
return exps[0]
|
2015-01-13 19:12:19 +08:00
|
|
|
else:
|
2015-07-15 17:08:12 +08:00
|
|
|
return getattr(module, class_name)
|
2015-01-13 19:12:19 +08:00
|
|
|
|
|
|
|
|
2015-07-15 16:54:44 +08:00
|
|
|
register_experiment = make_parent_action("register_experiment",
|
|
|
|
"class_name name arguments")
|
|
|
|
|
|
|
|
|
|
|
|
class DummyDMGR:
|
|
|
|
def get(self, name):
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
class DummyPDB:
|
|
|
|
def get(self, name):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def set(self, name, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def examine(dmgr, pdb, rdb, file):
|
|
|
|
module = file_import(file)
|
|
|
|
for class_name, exp_class in module.__dict__.items():
|
2015-07-29 23:29:07 +08:00
|
|
|
if class_name[0] == "_":
|
|
|
|
continue
|
2015-07-15 16:54:44 +08:00
|
|
|
if is_experiment(exp_class):
|
|
|
|
if exp_class.__doc__ is None:
|
|
|
|
name = class_name
|
|
|
|
else:
|
|
|
|
name = exp_class.__doc__.splitlines()[0].strip()
|
|
|
|
if name[-1] == ".":
|
|
|
|
name = name[:-1]
|
2015-07-15 16:59:48 +08:00
|
|
|
exp_inst = exp_class(dmgr, pdb, rdb, default_arg_none=True)
|
2015-07-18 01:32:38 +08:00
|
|
|
arguments = [(k, v.describe())
|
|
|
|
for k, v in exp_inst.requested_args.items()]
|
2015-07-15 16:54:44 +08:00
|
|
|
register_experiment(class_name, name, arguments)
|
|
|
|
|
|
|
|
|
2015-03-10 06:34:09 +08:00
|
|
|
def main():
|
2015-07-22 05:13:50 +08:00
|
|
|
sys.stdout = sys.stderr = LogForwarder()
|
2015-03-10 06:34:09 +08:00
|
|
|
|
|
|
|
start_time = None
|
|
|
|
rid = None
|
2015-05-17 16:11:00 +08:00
|
|
|
expid = None
|
2015-03-10 06:34:09 +08:00
|
|
|
exp = None
|
|
|
|
exp_inst = None
|
2015-01-13 19:12:19 +08:00
|
|
|
|
2015-07-14 04:08:20 +08:00
|
|
|
dmgr = DeviceManager(ParentDDB,
|
|
|
|
virtual_devices={"scheduler": Scheduler()})
|
|
|
|
rdb = ResultDB()
|
|
|
|
rdb.rt.publish = update_rt_results
|
2015-01-13 19:12:19 +08:00
|
|
|
|
2015-04-05 17:49:41 +08:00
|
|
|
try:
|
2015-03-10 06:34:09 +08:00
|
|
|
while True:
|
|
|
|
obj = get_object()
|
|
|
|
action = obj["action"]
|
2015-07-09 19:18:12 +08:00
|
|
|
if action == "build":
|
2015-03-10 06:34:09 +08:00
|
|
|
start_time = time.localtime()
|
|
|
|
rid = obj["rid"]
|
2015-05-17 16:11:00 +08:00
|
|
|
expid = obj["expid"]
|
2015-07-15 17:08:12 +08:00
|
|
|
exp = get_exp(expid["file"], expid["class_name"])
|
2015-07-14 04:08:20 +08:00
|
|
|
dmgr.virtual_devices["scheduler"].set_run_info(
|
|
|
|
obj["pipeline_name"], expid, obj["priority"])
|
|
|
|
exp_inst = exp(dmgr, ParentPDB, rdb,
|
|
|
|
**expid["arguments"])
|
2015-03-10 06:34:09 +08:00
|
|
|
put_object({"action": "completed"})
|
2015-07-09 19:18:12 +08:00
|
|
|
elif action == "prepare":
|
|
|
|
exp_inst.prepare()
|
|
|
|
put_object({"action": "completed"})
|
2015-03-10 06:34:09 +08:00
|
|
|
elif action == "run":
|
|
|
|
exp_inst.run()
|
|
|
|
put_object({"action": "completed"})
|
|
|
|
elif action == "analyze":
|
|
|
|
exp_inst.analyze()
|
2015-03-12 02:06:46 +08:00
|
|
|
put_object({"action": "completed"})
|
|
|
|
elif action == "write_results":
|
2015-03-10 06:34:09 +08:00
|
|
|
f = get_hdf5_output(start_time, rid, exp.__name__)
|
|
|
|
try:
|
|
|
|
rdb.write_hdf5(f)
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
put_object({"action": "completed"})
|
2015-07-15 16:54:44 +08:00
|
|
|
elif action == "examine":
|
|
|
|
examine(DummyDMGR(), DummyPDB(), ResultDB(), obj["file"])
|
|
|
|
put_object({"action": "completed"})
|
2015-03-10 06:34:09 +08:00
|
|
|
elif action == "terminate":
|
|
|
|
break
|
2015-04-05 17:49:41 +08:00
|
|
|
finally:
|
2015-07-14 04:08:20 +08:00
|
|
|
dmgr.close_devices()
|
2014-10-05 16:25:31 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|