forked from yoheinakajima/babyagi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitor.py
40 lines (36 loc) · 1.19 KB
/
monitor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
import sys
import time
import curses
from pathlib import Path
sys.path.append(str(Path(__file__).resolve().parent.parent))
from extensions.ray_objectives import CooperativeObjectivesListStorage
from extensions.ray_tasks import CooperativeTaskListStorage
def print_buffer(stdscr, lines):
stdscr.clear()
y = 0
x = 0
for line in lines:
stdscr.addstr(y, x, line)
y += 1
stdscr.refresh()
def main(stdscr):
objectives = CooperativeObjectivesListStorage()
while True:
objectives_list = objectives.get_objective_names()
buffer = []
if not objectives_list:
buffer.append("No objectives")
for objective in objectives_list:
buffer.append("-----------------")
buffer.append(f"Objective: {objective}")
buffer.append("-----------------")
tasks = CooperativeTaskListStorage(objective)
tasks_list = tasks.get_task_names()
buffer.append(f"Tasks:")
for t in tasks_list:
buffer.append(f" * {t}")
buffer.append("-----------------")
print_buffer(stdscr, buffer)
time.sleep(30)
curses.wrapper(main)