forked from M-Labs/artiq
1
0
Fork 0
artiq/frontend/artiqd

38 lines
959 B
Plaintext
Raw Normal View History

#!/usr/bin/env python3
import asyncio
2014-10-25 11:34:09 +08:00
from artiq.management.pc_rpc import Server, WaitQuit
from artiq.management.scheduler import Scheduler
2014-10-25 11:34:09 +08:00
class Master(WaitQuit):
2014-10-23 18:48:03 +08:00
def __init__(self, scheduler):
2014-10-25 11:34:09 +08:00
WaitQuit.__init__(self)
self.scheduler = scheduler
2014-10-23 18:48:03 +08:00
def run_once(self, run_params, timeout):
self.scheduler.run_once(run_params, timeout)
def main():
loop = asyncio.get_event_loop()
try:
2014-10-23 18:48:03 +08:00
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()