2014-12-29 12:48:14 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import asyncio
|
2014-12-29 18:44:50 +08:00
|
|
|
import time
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
import gbulb
|
|
|
|
from gi.repository import Gtk
|
|
|
|
|
|
|
|
from artiq.management.sync_struct import Subscriber
|
|
|
|
|
|
|
|
|
|
|
|
class QueueStoreSyncer:
|
|
|
|
def __init__(self, queue_store, init):
|
|
|
|
self.queue_store = queue_store
|
|
|
|
self.queue_store.clear()
|
|
|
|
for x in init:
|
|
|
|
self.append(x)
|
|
|
|
|
|
|
|
def _convert(self, x):
|
|
|
|
rid, run_params, timeout = x
|
|
|
|
row = [rid, run_params["file"]]
|
2014-12-29 18:44:50 +08:00
|
|
|
for e in run_params["unit"], run_params["function"], timeout:
|
|
|
|
row.append("-" if e is None else str(e))
|
2014-12-29 12:48:14 +08:00
|
|
|
return row
|
|
|
|
|
|
|
|
def append(self, x):
|
|
|
|
self.queue_store.append(self._convert(x))
|
|
|
|
|
|
|
|
def insert(self, i, x):
|
|
|
|
self.queue_store.insert(i, self._convert(x))
|
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
del self.queue_store[key]
|
|
|
|
|
|
|
|
|
2014-12-29 18:44:50 +08:00
|
|
|
class PeriodicStoreSyncer:
|
|
|
|
def __init__(self, periodic_store, init):
|
|
|
|
self.periodic_store = periodic_store
|
|
|
|
self.periodic_store.clear()
|
|
|
|
self.order = []
|
|
|
|
for prid, x in sorted(init.items(), key=lambda e: (e[1][0], e[0])):
|
|
|
|
self.periodic_store.append(self._convert(prid, x))
|
|
|
|
self.order.append((x[0], prid))
|
|
|
|
|
|
|
|
def _convert(self, prid, x):
|
|
|
|
next_run, run_params, timeout, period = x
|
|
|
|
row = [time.strftime("%m/%d %H:%M:%S", time.localtime(next_run)),
|
|
|
|
prid, run_params["file"]]
|
|
|
|
for e in run_params["unit"], run_params["function"], timeout:
|
|
|
|
row.append("-" if e is None else str(e))
|
|
|
|
row.append(str(period))
|
|
|
|
return row
|
|
|
|
|
|
|
|
def _find_index(self, prid):
|
|
|
|
for i, e in enumerate(self.periodic_store):
|
|
|
|
if e[1] == prid:
|
|
|
|
return i
|
|
|
|
raise KeyError
|
|
|
|
|
|
|
|
def __setitem__(self, prid, x):
|
|
|
|
try:
|
|
|
|
i = self._find_index(prid)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
del self.periodic_store[i]
|
|
|
|
del self.order[i]
|
2014-12-29 21:37:12 +08:00
|
|
|
ord_el = (x[0], prid)
|
|
|
|
j = len(self.order)
|
2014-12-29 18:44:50 +08:00
|
|
|
for i, o in enumerate(self.order):
|
2014-12-29 21:37:12 +08:00
|
|
|
if o > ord_el:
|
|
|
|
j = i
|
2014-12-29 18:44:50 +08:00
|
|
|
break
|
2014-12-29 21:37:12 +08:00
|
|
|
self.periodic_store.insert(j, self._convert(prid, x))
|
|
|
|
self.order.insert(j, ord_el)
|
2014-12-29 18:44:50 +08:00
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
i = self._find_index(key)
|
|
|
|
del self.periodic_store[i]
|
|
|
|
del self.order[i]
|
|
|
|
|
|
|
|
|
2014-12-29 12:48:14 +08:00
|
|
|
class SchedulerWindow(Gtk.Window):
|
|
|
|
def __init__(self):
|
|
|
|
Gtk.Window.__init__(self, title="Scheduler")
|
2014-12-29 23:22:52 +08:00
|
|
|
self.set_border_width(6)
|
|
|
|
self.set_default_size(720, 570)
|
2014-12-29 18:44:50 +08:00
|
|
|
|
|
|
|
vpane = Gtk.VPaned()
|
2014-12-29 23:22:52 +08:00
|
|
|
vpane.set_position(270)
|
2014-12-29 18:44:50 +08:00
|
|
|
self.add(vpane)
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
self.queue_store = Gtk.ListStore(int, str, str, str, str)
|
|
|
|
tree = Gtk.TreeView(self.queue_store)
|
|
|
|
for i, title in enumerate(["RID", "File", "Unit",
|
|
|
|
"Function", "Timeout"]):
|
|
|
|
renderer = Gtk.CellRendererText()
|
|
|
|
column = Gtk.TreeViewColumn(title, renderer, text=i)
|
|
|
|
tree.append_column(column)
|
2014-12-29 18:44:50 +08:00
|
|
|
scroll = Gtk.ScrolledWindow()
|
|
|
|
scroll.add(tree)
|
2014-12-29 23:22:52 +08:00
|
|
|
vbox = Gtk.VBox(spacing=6)
|
|
|
|
label = Gtk.Label("Queue")
|
|
|
|
vbox.pack_start(label, False, False, 0)
|
|
|
|
vbox.pack_start(scroll, True, True, 0)
|
|
|
|
|
|
|
|
hbox = Gtk.HBox(spacing=6)
|
|
|
|
button = Gtk.Button("Find")
|
|
|
|
hbox.pack_start(button, True, True, 0)
|
|
|
|
button = Gtk.Button("Move up")
|
|
|
|
hbox.pack_start(button, True, True, 0)
|
|
|
|
button = Gtk.Button("Move down")
|
|
|
|
hbox.pack_start(button, True, True, 0)
|
|
|
|
button = Gtk.Button("Remove")
|
|
|
|
hbox.pack_start(button, True, True, 0)
|
|
|
|
vbox.pack_start(hbox, False, False, 0)
|
|
|
|
vbox.set_border_width(6)
|
|
|
|
vpane.add1(vbox)
|
2014-12-29 18:44:50 +08:00
|
|
|
|
|
|
|
self.periodic_store = Gtk.ListStore(str, int, str, str, str, str, str)
|
|
|
|
tree = Gtk.TreeView(self.periodic_store)
|
|
|
|
for i, title in enumerate(["Next run", "PRID", "File", "Unit",
|
|
|
|
"Function", "Timeout", "Period"]):
|
|
|
|
renderer = Gtk.CellRendererText()
|
|
|
|
column = Gtk.TreeViewColumn(title, renderer, text=i)
|
|
|
|
tree.append_column(column)
|
|
|
|
scroll = Gtk.ScrolledWindow()
|
|
|
|
scroll.add(tree)
|
2014-12-29 23:22:52 +08:00
|
|
|
vbox = Gtk.VBox(spacing=6)
|
|
|
|
label = Gtk.Label("Periodic schedule")
|
|
|
|
vbox.pack_start(label, False, False, 0)
|
|
|
|
vbox.pack_start(scroll, True, True, 0)
|
|
|
|
vbox.set_border_width(6)
|
|
|
|
vpane.add2(vbox)
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def sub_connect(self, host, port):
|
2014-12-29 18:44:50 +08:00
|
|
|
self.queue_subscriber = Subscriber("queue", self.init_queue_store)
|
|
|
|
yield from self.queue_subscriber.connect(host, port)
|
|
|
|
try:
|
|
|
|
self.periodic_subscriber = Subscriber(
|
|
|
|
"periodic", self.init_periodic_store)
|
|
|
|
yield from self.periodic_subscriber.connect(host, port)
|
|
|
|
except:
|
|
|
|
yield from self.queue_subscriber.close()
|
|
|
|
raise
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def sub_close(self):
|
2014-12-29 18:44:50 +08:00
|
|
|
yield from self.periodic_subscriber.close()
|
|
|
|
yield from self.queue_subscriber.close()
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
def init_queue_store(self, init):
|
|
|
|
return QueueStoreSyncer(self.queue_store, init)
|
|
|
|
|
2014-12-29 18:44:50 +08:00
|
|
|
def init_periodic_store(self, init):
|
|
|
|
return PeriodicStoreSyncer(self.periodic_store, init)
|
|
|
|
|
2014-12-29 12:48:14 +08:00
|
|
|
|
|
|
|
def _get_args():
|
|
|
|
parser = argparse.ArgumentParser(description="ARTIQ GUI client")
|
|
|
|
parser.add_argument(
|
|
|
|
"-s", "--server", default="::1",
|
|
|
|
help="hostname or IP of the master to connect to")
|
|
|
|
parser.add_argument(
|
|
|
|
"--port-schedule-control", default=8888, type=int,
|
|
|
|
help="TCP port to connect to for schedule control")
|
|
|
|
parser.add_argument(
|
|
|
|
"--port-schedule-notify", default=8887, type=int,
|
|
|
|
help="TCP port to connect to for schedule notifications")
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = _get_args()
|
|
|
|
|
|
|
|
asyncio.set_event_loop_policy(gbulb.GtkEventLoopPolicy())
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
try:
|
|
|
|
win = SchedulerWindow()
|
|
|
|
win.connect("delete-event", Gtk.main_quit)
|
|
|
|
win.show_all()
|
|
|
|
|
|
|
|
loop.run_until_complete(win.sub_connect(args.server,
|
|
|
|
args.port_schedule_notify))
|
|
|
|
try:
|
|
|
|
loop.run_forever()
|
|
|
|
finally:
|
|
|
|
loop.run_until_complete(win.sub_close())
|
|
|
|
finally:
|
|
|
|
loop.close()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|