forked from M-Labs/artiq
1
0
Fork 0

protocols/remote_exec: give access to controller_initial_namespace

This commit is contained in:
Sebastien Bourdeauducq 2016-04-04 19:09:03 +08:00
parent 69516136c4
commit 059836c591
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,8 @@ __all__ = ["RemoteExecServer", "RemoteExecClient", "simple_rexec_server_loop"]
class RemoteExecServer:
def __init__(self, initial_namespace):
self.namespace = dict(initial_namespace)
# The module actually has to exist, otherwise it breaks e.g. Numba
self.namespace["__name__"] = "artiq.protocols.remote_exec"
def add_code(self, code):
exec(code, self.namespace)
@ -21,6 +23,7 @@ class RemoteExecServer:
def simple_rexec_server_loop(target_name, target, host, port,
description=None):
initial_namespace = {"controller_driver": target}
initial_namespace["controller_initial_namespace"] = initial_namespace
targets = {
target_name: target,
target_name + "_rexec": lambda: RemoteExecServer(initial_namespace)