lua2html.lua

Fri, 13 Nov 2009 16:24:48 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 13 Nov 2009 16:24:48 +0000
changeset 0
140ff9cafe2f
child 1
b3889bfb6052
permissions
-rw-r--r--

Initial commit

0
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 local keywords = { "function", "for", "if", "elseif", "then", "else", "do", "repeat", "until", "end", "return", "true", "false", "and", "not", "or", "local", "nil", "break" }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 for _, keyword in ipairs(keywords) do keywords[keyword] = true; end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 local ops = {};
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 local bytelisting, err = io.popen("luac -l -p "..arg[1]);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 if not bytelisting then print(err); return 1; end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 for line in bytelisting:lines() do
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 local opnum, linenum, opname, comments = line:match("^\t(%d+)%s*%[(%d+)%]%s*(%u+)[^;]*;? ?(.*)$");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 if opnum then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 linenum = tonumber(linenum);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 -- print(string.format("opnum: %d line: %d op: %s ; %s", opnum, linenum, opname, comments));
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 if not ops[linenum] then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 ops[linenum] = { };
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 if ops[linenum-1] then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 table.sort(ops[linenum-1], function (a,b) return a.comment and b.comment and #a.comment > #b.comment; end);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 table.insert(ops[linenum], { name = opname, comment = comments });
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 local test_coverage = {};
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 local test_report, test_report_err = io.open("tests/reports/coverage_"..arg[1]:gsub("^%W", ""):gsub("%W+", "_")..".report");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
28 if test_report then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29 for line in test_report:lines() do
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30 local f, linenum, test, success = line:match("^(.-)|(.-)|(.-)|(.-)$");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31 if linenum and success then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
32 test_coverage[tonumber(linenum)] = success;
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
33 else
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 io.stderr:write("Warning: Can't parse this: [[", line, "]] in test report\n");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 else
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 test_coverage = nil;
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
41
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 local linenum = 1;
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 local html_spaces = { ["\t"] = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", [" "] = "&nbsp;" };
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 function escape_html(s)
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46 return (s and s:gsub("[^%w]", { ["<"] = "&lt;", [">"] = "&gt;", ["&"] = "&amp;", ["\""] = "&quot;", ["'"] = "&apos;" })) or "";
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
47 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
48
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49 function escape_pattern(s)
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50 return s:gsub("(%p)", "%%%1");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53 local sub;
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
54
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55 print("<html><head><title>"..escape_html(arg[1]).."</title><style type='text/css'>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 print [[
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 .getglobal { color:#cc0000 !important; text-decoration:underline; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 .setglobal { color:#ff0000; font-weight:bold; text-decoration:underline; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 .getupval { color:#00cc00; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 .nop { color:#cccccc; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61 .keyword { color:#0000cc; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 .comment, .comment .keyword { color:#007733; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 .string, .string * { color:#007755; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 td .test-false, .test-false { background-color:#ffa6be !important; display:block; width:100%; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 td .test-true, .test-true { background-color:#beffa6; display:block; width:100%; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 td .test-miss, .test-miss { background-color:#a6beff; display:block; width:100%; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69 table { border-collapse: collapse; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 span, tr, *, table { padding:2px; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 td { padding:0px; padding-right:2em; }
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
72 ]]
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
73 print("</style></head><body>\n<br/>\n<table>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74 for line in io.lines(arg[1]) do
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75 line = " "..line:gsub("%s", html_spaces).." ";
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76 line = line:gsub("FIXME:?", "<b>%1</b>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 line = line:gsub("TODO:?", "<b>%1</b>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 line = line:gsub("%-%-.*$", "<span class='comment'>%1</span>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79 line = line:gsub("\".-[^\\]\"", "<span class='string'>%1</span>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
80 if ops[linenum] then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 for _, op in pairs(ops[linenum]) do
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
82 if op.comment and #op.comment > 0 and op.name ~= "JMP" then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
83 --print("Replacing "..escape_pattern(op.comment).."("..op.comment..") for "..op.name);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84 line, sub = line:gsub("([^%w_])("..escape_pattern(op.comment)..")([^%w_])", "%1<span class='"..op.name:lower().."'>"..escape_html(op.comment).."</span>%3");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85 if sub == 0 and op.name == "GETTABLE" then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 --print("Trying again...");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87 local id = op.comment:match("[%w_]+");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 if id then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 --print("Got "..id);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
90 line = line:gsub(escape_pattern("."..id), ".<span class='"..op.name:lower().."'>"..escape_html(id).."</span>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
91 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
92 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 else
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 --print("??", tostring(op.comment), tostring(#op.comment));
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 line = line:gsub("[%w_]+", function (id) if keywords[id] then return "<span class='keyword'>"..id.."</span>"; end end);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98 local classes = { "line" };
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100 if test_coverage and test_coverage[linenum] ~= nil then
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 table.insert(classes, "test-"..test_coverage[linenum]);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103 print("<tr><td><span class='"..table.concat(classes, " ").."'>"..linenum.."</span></td><td>", line, "</td></tr>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104 else
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 line = line:gsub("[%w_]+", function (id) if keywords[id] then return "<span class='keyword'>"..id.."</span>"; end end);
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106 print("<tr><td><span class='line nop'>"..linenum.."</span></td><td>", line, "</td></tr>");
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 linenum = linenum + 1;
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 end
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110
140ff9cafe2f Initial commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111 print("</table>\n</body>\n</html>");

mercurial