workspace_status.py
Go to the documentation of this file.
1 """
2 The workspace status command produces a github markdown compatible
3 table of the current worspace.
4 
5 Copyright 2015 Fetch Robotics Inc.
6 Author: Alex Henning
7 """
8 
9 import os
10 import subprocess
11 
12 from ..util import add_workspace
13 
14 name = "workspace-status"
15 help_text = "Print the status of the current workspace"
16 
17 
18 def main(args):
19  print "Status of %s: " % (args.workspace+"/src")
20  data = []
21  for name in [i for i in os.listdir(args.workspace+"/src")
22  if os.path.isdir(args.workspace+"/src/"+i)]:
23  dir = args.workspace+"/src/"+name
24  if os.path.isdir(dir+"/.git"):
25  branch = subprocess.check_output("cd %s && git rev-parse --abbrev-ref HEAD" % dir, shell=True).strip()
26  sha = subprocess.check_output("cd %s && git describe --always --dirty" % dir, shell=True).strip()
27  data.append((name, branch, sha))
28  else:
29  data.append((name, "None", "untracked"))
30 
31  data.sort()
32  name_len = max([len(name) for name, _, _ in data])
33  branch_len = max([len(branch) for _, branch, _ in data])
34  sha_len = max([len(sha) for _, _, sha in data])
35 
36  print "%s%s | %s%s | %s%s" % ("Name", " "*(name_len-len("name")),
37  "Branch", " "*(branch_len-len("branch")),
38  "SHA1", " "*(sha_len-len("sha1")))
39  print "%s|%s|%s" % ("-"*(1+name_len), "-"*(2+branch_len), "-"*(1+sha_len))
40  for name, branch, sha in data:
41  print "%s%s | %s%s | %s%s" % (name, " "*(name_len-len(name)),
42  branch, " "*(branch_len-len(branch)),
43  sha, " "*(sha_len-len(sha)),)
44 
45 def add_arguments(parser):
46  add_workspace(parser)
def add_workspace(parser)
Definition: util.py:64


fetch_tools
Author(s): Alex Henning
autogenerated on Mon Feb 28 2022 22:19:10