Enable auto-unit formatting in script output
[ganeti-local] / scripts / gnt-job
index 6b0a56d..e1ee560 100755 (executable)
 # 02110-1301, USA.
 
 
+# pylint: disable-msg=W0401,W0614
+# W0401: Wildcard import ganeti.cli
+# W0614: Unused import %s from wildcard import (since we need cli)
+
 import sys
-import os
-import itertools
-from optparse import make_option
-from cStringIO import StringIO
 
 from ganeti.cli import *
-from ganeti import opcodes
-from ganeti import logger
 from ganeti import constants
-from ganeti import utils
 from ganeti import errors
 
 
+#: default list of fields for L{ListJobs}
 _LIST_DEF_FIELDS = ["id", "status", "summary"]
 
+#: map converting the job status contants to user-visible
+#: names
 _USER_JOB_STATUS = {
   constants.JOB_STATUS_QUEUED: "queued",
+  constants.JOB_STATUS_WAITLOCK: "waiting",
   constants.JOB_STATUS_RUNNING: "running",
   constants.JOB_STATUS_CANCELED: "canceled",
   constants.JOB_STATUS_SUCCESS: "success",
@@ -47,6 +48,12 @@ _USER_JOB_STATUS = {
 def ListJobs(opts, args):
   """List the jobs
 
+  @param opts: the command line options selected by the user
+  @type args: list
+  @param args: should be an empty list
+  @rtype: int
+  @return: the desired exit code
+
   """
   if opts.output is None:
     selected_fields = _LIST_DEF_FIELDS
@@ -64,7 +71,13 @@ def ListJobs(opts, args):
       "ops": "OpCodes",
       "opresult": "OpCode_result",
       "opstatus": "OpCode_status",
+      "oplog": "OpCode_log",
       "summary": "Summary",
+      "opstart": "OpCode_start",
+      "opend": "OpCode_end",
+      "start_ts": "Start",
+      "end_ts": "End",
+      "received_ts": "Received",
       }
   else:
     headers = None
@@ -84,19 +97,32 @@ def ListJobs(opts, args):
           raise errors.ProgrammerError("Unknown job status code '%s'" % val)
       elif field == "summary":
         val = ",".join(val)
+      elif field in ("start_ts", "end_ts", "received_ts"):
+        val = FormatTimestamp(val)
+      elif field in ("opstart", "opend"):
+        val = [FormatTimestamp(entry) for entry in val]
 
       row[idx] = str(val)
 
   data = GenerateTable(separator=opts.separator, headers=headers,
                        fields=selected_fields, unitfields=unitfields,
-                       numfields=numfields, data=output)
+                       numfields=numfields, data=output, units=opts.units)
   for line in data:
-    print line
+    ToStdout(line)
 
   return 0
 
 
 def ArchiveJobs(opts, args):
+  """Archive jobs.
+
+  @param opts: the command line options selected by the user
+  @type args: list
+  @param args: should contain the job IDs to be archived
+  @rtype: int
+  @return: the desired exit code
+
+  """
   client = GetClient()
 
   for job_id in args:
@@ -105,7 +131,44 @@ def ArchiveJobs(opts, args):
   return 0
 
 
+def AutoArchiveJobs(opts, args):
+  """Archive jobs based on age.
+
+  This will archive jobs based on their age, or all jobs if a 'all' is
+  passed.
+
+  @param opts: the command line options selected by the user
+  @type args: list
+  @param args: should contain only one element, the age as a time spec
+      that can be parsed by L{cli.ParseTimespec} or the keyword I{all},
+      which will cause all jobs to be archived
+  @rtype: int
+  @return: the desired exit code
+
+  """
+  client = GetClient()
+
+  age = args[0]
+
+  if age == 'all':
+    age = -1
+  else:
+    age = ParseTimespec(age)
+
+  client.AutoArchiveJobs(age)
+  return 0
+
+
 def CancelJobs(opts, args):
+  """Cancel not-yet-started jobs.
+
+  @param opts: the command line options selected by the user
+  @type args: list
+  @param args: should contain the job IDs to be cancelled
+  @rtype: int
+  @return: the desired exit code
+
+  """
   client = GetClient()
 
   for job_id in args:
@@ -115,12 +178,18 @@ def CancelJobs(opts, args):
 
 
 def ShowJobs(opts, args):
-  """List the jobs
+  """Show detailed information about jobs.
+
+  @param opts: the command line options selected by the user
+  @type args: list
+  @param args: should contain the job IDs to be queried
+  @rtype: int
+  @return: the desired exit code
 
   """
   def format(level, text):
     """Display the text indented."""
-    print "%s%s" % ("  " * level, text)
+    ToStdout("%s%s", "  " * level, text)
 
   def result_helper(value):
     """Format a result field in a nice way."""
@@ -129,34 +198,89 @@ def ShowJobs(opts, args):
     else:
       return str(value)
 
-  selected_fields = ["id", "status", "ops", "opresult", "opstatus"]
+  selected_fields = [
+    "id", "status", "ops", "opresult", "opstatus", "oplog",
+    "opstart", "opend", "received_ts", "start_ts", "end_ts",
+    ]
 
   result = GetClient().QueryJobs(args, selected_fields)
 
   first = True
 
-  for job_id, status, ops, opresult, opstatus in result:
+  for idx, entry in enumerate(result):
     if not first:
       format(0, "")
     else:
       first = False
+
+    if entry is None:
+      if idx <= len(args):
+        format(0, "Job ID %s not found" % args[idx])
+      else:
+        # this should not happen, when we don't pass args it will be a
+        # valid job returned
+        format(0, "Job ID requested as argument %s not found" % (idx + 1))
+      continue
+
+    (job_id, status, ops, opresult, opstatus, oplog,
+     opstart, opend, recv_ts, start_ts, end_ts) = entry
     format(0, "Job ID: %s" % job_id)
     if status in _USER_JOB_STATUS:
       status = _USER_JOB_STATUS[status]
     else:
-      raise errors.ProgrammerError("Unknown job status code '%s'" % val)
+      raise errors.ProgrammerError("Unknown job status code '%s'" % status)
 
     format(1, "Status: %s" % status)
+
+    if recv_ts is not None:
+      format(1, "Received:         %s" % FormatTimestamp(recv_ts))
+    else:
+      format(1, "Missing received timestamp (%s)" % str(recv_ts))
+
+    if start_ts is not None:
+      if recv_ts is not None:
+        d1 = start_ts[0] - recv_ts[0] + (start_ts[1] - recv_ts[1]) / 1000000.0
+        delta = " (delta %.6fs)" % d1
+      else:
+        delta = ""
+      format(1, "Processing start: %s%s" % (FormatTimestamp(start_ts), delta))
+    else:
+      format(1, "Processing start: unknown (%s)" % str(start_ts))
+
+    if end_ts is not None:
+      if start_ts is not None:
+        d2 = end_ts[0] - start_ts[0] + (end_ts[1] - start_ts[1]) / 1000000.0
+        delta = " (delta %.6fs)" % d2
+      else:
+        delta = ""
+      format(1, "Processing end:   %s%s" % (FormatTimestamp(end_ts), delta))
+    else:
+      format(1, "Processing end:   unknown (%s)" % str(end_ts))
+
+    if end_ts is not None and recv_ts is not None:
+      d3 = end_ts[0] - recv_ts[0] + (end_ts[1] - recv_ts[1]) / 1000000.0
+      format(1, "Total processing time: %.6f seconds" % d3)
+    else:
+      format(1, "Total processing time: N/A")
     format(1, "Opcodes:")
-    for opcode, result, status in zip(ops, opresult, opstatus):
+    for (opcode, result, status, log, s_ts, e_ts) in \
+            zip(ops, opresult, opstatus, oplog, opstart, opend):
       format(2, "%s" % opcode["OP_ID"])
       format(3, "Status: %s" % status)
+      if isinstance(s_ts, (tuple, list)):
+        format(3, "Processing start: %s" % FormatTimestamp(s_ts))
+      else:
+        format(3, "No processing start time")
+      if isinstance(e_ts, (tuple, list)):
+        format(3, "Processing end:   %s" % FormatTimestamp(e_ts))
+      else:
+        format(3, "No processing end time")
       format(3, "Input fields:")
       for key, val in opcode.iteritems():
         if key == "OP_ID":
           continue
         if isinstance(val, (tuple, list)):
-          val = ",".join(val)
+          val = ",".join([str(item) for item in val])
         format(4, "%s: %s" % (key, val))
       if result is None:
         format(3, "No output data")
@@ -175,6 +299,11 @@ def ShowJobs(opts, args):
             format(4, "%s: %s" % (key, result_helper(val)))
       else:
         format(3, "Result: %s" % result)
+      format(3, "Execution log:")
+      for serial, log_ts, log_type, log_msg in log:
+        time_txt = FormatTimestamp(log_ts)
+        encoded = str(log_msg).encode('string_escape')
+        format(4, "%s:%s:%s %s" % (serial, time_txt, log_type, encoded))
   return 0
 
 
@@ -190,6 +319,10 @@ commands = {
               [DEBUG_OPT],
               "<job-id> [<job-id> ...]",
               "Archive specified jobs"),
+  'autoarchive': (AutoArchiveJobs, ARGS_ONE,
+              [DEBUG_OPT],
+              "<age>",
+              "Auto archive jobs older than the given age"),
   'cancel': (CancelJobs, ARGS_ANY,
              [DEBUG_OPT],
              "<job-id> [<job-id> ...]",