1#!/usr/bin/python 2 3# Create status.html 4 5import subprocess,sys 6 7def readit(args, shell=False): 8 ret={} 9 arr=[] 10 blob=subprocess.Popen(args, stdout=subprocess.PIPE, shell=shell) 11 for i in blob.stdout.read().split("\n"): 12 if not i: continue 13 i=i.split() 14 try: ret[i[0]].extend(i[1:]) 15 except: ret[i[0]]=i[1:] 16 arr.extend(i) 17 return ret,arr 18 19# Run sed on roadmap and source to get command lists, and run toybox too 20# This gives us a dictionary of types, each with a list of commands 21 22print "Collecting data..." 23 24stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@@;t out;H;b loop;:out;g;s/\\n/ /g;p', "www/roadmap.html", "www/status.html"]) 25blah,toystuff=readit(["./toybox"]) 26blah,pending=readit(["sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/*.c"], 1) 27blah,version=readit(["git","describe","--tags"]) 28 29print "Analyzing..." 30 31# Create reverse mappings: reverse["command"] gives list of categories it's in 32 33reverse={} 34for i in stuff: 35 for j in stuff[i]: 36 try: reverse[j].append(i) 37 except: reverse[j]=[i] 38print "all commands=%s" % len(reverse) 39 40# Run a couple sanity checks on input 41 42for i in toystuff: 43 if (i in pending): print "barf %s" % i 44 45unknowns=[] 46for i in toystuff + pending: 47 if not i in reverse: unknowns.append(i) 48 49if unknowns: print "uncategorized: %s" % " ".join(unknowns) 50 51conv = [("posix", '<a href="http://pubs.opengroup.org/onlinepubs/9699919799/utilities/%s.html">%%s</a>', "[%s]"), 52 ("lsb", '<a href="http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/%s.html">%%s</a>', '<%s>'), 53 ("development", '<a href="http://linux.die.net/man/1/%s">%%s</a>', '(%s)'), 54 ("toolbox", "", '{%s}'), ("klibc_cmd", "", '=%s='), 55 ("sash_cmd", "", '#%s#'), ("sbase_cmd", "", '@%s@'), 56 ("beastiebox_cmd", "", '*%s*'), ("tizen", "", '$%s$'), 57 ("shell", "", "%%%s%%"), 58 ("request", '<a href="http://linux.die.net/man/1/%s">%%s</a>', '+%s+')] 59 60 61def categorize(reverse, i, skippy=""): 62 linky = "%s" 63 out = i 64 65 if skippy: types = filter(lambda a: a != skippy, reverse[i]) 66 else: types = reverse[i] 67 68 for j in conv: 69 if j[0] in types: 70 if j[1]: linky = j[1] % i 71 out = j[2] % out 72 if not skippy: break 73 if (not skippy) and out == i: 74 sys.stderr.write("unknown %s %s\n" % (i,reverse[i])) 75 76 return linky % out 77 78# Sort/annotate done, pending, and todo item lists 79 80allcmd=[] 81done=[] 82pend=[] 83todo=[] 84blah=list(reverse) 85blah.sort() 86for i in blah: 87 out=categorize(reverse, i) 88 allcmd.append(out) 89 if i in toystuff or i in pending: 90 if i in toystuff: done.append(out) 91 else: pend.append(out) 92 out='<strike>%s</strike>' % out 93 else: todo.append(out) 94 95print "implemented=%s" % len(toystuff) 96 97# Write data to output file 98 99outfile=open("www/status.gen", "w") 100outfile.write("<h1>Status of toybox %s</h1>\n" % version[0]); 101outfile.write("<h3>Legend: [posix] <lsb> (development) {android}\n") 102outfile.write("=klibc= #sash# @sbase@ *beastiebox* $tizen$ %shell% +request+ other\n") 103outfile.write("<strike>pending</strike></h3>\n"); 104 105outfile.write("<a name=done><h2><a href=#done>Completed</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(done)) 106outfile.write("<a name=part><h2><a href=#part>Partially implemented</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(pend)) 107outfile.write("<a name=todo><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(todo)) 108 109# Output unfinished commands by category 110 111outfile.write("<hr><h2>Categories of remaining todo items</h2>") 112 113for i in stuff: 114 todo = [] 115 116 for j in stuff[i]: 117 if j in toystuff: continue 118 if j in pending: todo.append('<strike>%s</strike>' % j) 119 else: todo.append(categorize(reverse,j,i)) 120 121 if todo: 122 k = i 123 for j in conv: 124 if j[0] == i: 125 k = j[2] % i 126 127 outfile.write("<a name=%s><h2><a href=#%s>%s<a></h2><blockquote><p>" % (i,i,k)) 128 outfile.write(" ".join(todo)) 129 outfile.write("</p></blockquote>\n") 130 131outfile.write("<hr><a name=all><h2><a href=#all>All commands together in one big list</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(allcmd)) 132