2 The workspace status command produces a github markdown compatible 3 table of the current worspace. 5 Copyright 2015 Fetch Robotics Inc. 12 from ..util
import add_workspace
14 name =
"workspace-status" 15 help_text =
"Print the status of the current workspace" 19 print "Status of %s: " % (args.workspace+
"/src")
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))
29 data.append((name,
"None",
"untracked"))
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])
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)),)