Ver código fonte

Add progress bar and time left to job list

Frans Bergman 7 anos atrás
pai
commit
845eb7f112
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      cbc/client.py

+ 7 - 0
cbc/client.py

@@ -2,6 +2,7 @@ from getpass import getpass
 import websocket
 import _thread
 import json
+import time
 
 from cmd import Cmd
 
@@ -29,6 +30,12 @@ class MyPrompt(Cmd):
                 print("Training level {} {}.".format(product['level'], product['name'].title()))
             else:
                 print("Unknown job: " + job)
+            bar_width = 20
+            remaining = job['finish_time'] - time.time()
+            progress = remaining / job['product']['time']
+            num_bars = bar_width - int(progress * bar_width)
+            print("[" + num_bars * "#" + (bar_width - num_bars) * " " + "]" + str(int(remaining)) + "s remaining")
+            print("-" * (bar_width + 10))
 
     def do_resources(self, args):
         """List available resources."""