forked from M-Labs/artiq
38 lines
959 B
Python
Executable File
38 lines
959 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import asyncio
|
|
|
|
from artiq.management.pc_rpc import Server, WaitQuit
|
|
from artiq.management.scheduler import Scheduler
|
|
|
|
|
|
class Master(WaitQuit):
|
|
def __init__(self, scheduler):
|
|
WaitQuit.__init__(self)
|
|
self.scheduler = scheduler
|
|
|
|
def run_once(self, run_params, timeout):
|
|
self.scheduler.run_once(run_params, timeout)
|
|
|
|
|
|
def main():
|
|
loop = asyncio.get_event_loop()
|
|
try:
|
|
scheduler = Scheduler()
|
|
loop.run_until_complete(scheduler.start())
|
|
try:
|
|
master = Master(scheduler)
|
|
server = Server(master)
|
|
loop.run_until_complete(server.start("::1", 8888))
|
|
try:
|
|
loop.run_until_complete(master.wait_quit())
|
|
finally:
|
|
loop.run_until_complete(server.stop())
|
|
finally:
|
|
loop.run_until_complete(scheduler.stop())
|
|
finally:
|
|
loop.close()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|