3 # This file is part of DisOrder.
4 # Copyright (C) 2007 Richard Kettlewell
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 import re,sys,os,string
24 sys.stderr.write("%s\n" % msg)
28 if c == '&' or c == '<' or ord(c) < 32 or ord(c) > 126:
29 return "&#%d;" % ord(c)
34 return string.join(map(sgmlquotechar, s),'')
42 while len(args) > 0 and re.match("^--", args[0]):
43 if args[0] == "--html":
47 fatal("unknown option '%s'" % args[0])
52 for line in sys.stdin:
54 r = re.match("File ['`](?:.*/)?([^/]+.c)'", line)
59 r = re.match("Lines executed:([0-9\\.]+)% of ([0-9]+)", line)
62 this_pc = float(r.group(1))
63 this_lines = int(r.group(2))
64 percent[name] = this_pc
65 total_lines += this_lines
66 covered_lines += this_lines * this_pc / 100.0
70 if percent[a] < percent[b]: return -1
71 elif percent[a] > percent[b]: return 1
79 print "%20s: %d%%" % (k, percent[k])
80 print "Total coverage: %d%%" % (100 * (covered_lines / total_lines))
82 if htmldir is not None and len(keys):
83 index = open(os.path.join(htmldir, "index.html"), "w")
84 index.write("<html><head><title>gcov report</title>\n")
85 index.write("<body><h1>gcov report</h1>\n")
86 index.write("<table><tr><th>File</th><th>Coverage</th></tr>\n")
88 index.write("<tr><td><a href=\"%s.html\">%s</a><td>%d%%\n" %
89 (sgmlquote(k), sgmlquote(k), percent[k]))
90 index.write("</table>\n")
91 index.write("<p>Total coverage: %d%%</p>\n" % (100 * (covered_lines / total_lines)))
92 missing_files = missing.keys()
94 if len(missing_files) > 0:
95 index.write("<p>Missing files:</p>\n")
97 for mf in missing_files:
98 index.write("<li><a href=\"%s\">%s</a></li>\n" % (mf, mf))
99 index.write("</lu>\n")
101 html = open(os.path.join(htmldir, "%s.html" % k), "w")
102 html.write("<html><head><title>%s</title>\n" % sgmlquote(k))
103 html.write("<body><h1>%s</h1>\n" % sgmlquote(k))
105 r = re.compile("^ *#####:.*")
106 for line in open("%s.gcov" % k, "r"):
107 if len(line) > 0 and line[-1] == '\n':
110 html.write("<span style='background-color:#ffff00'>%s</span>\n" % sgmlquote(line))
112 html.write("%s\n" % sgmlquote(line))
113 html.write("</pre>\n")