Store more as plain strings.
[build-farm.git] / buildfarm / web / __init__.py
1 #!/usr/bin/python
2 # This CGI script presents the results of the build_farm build
3
4 # Copyright (C) Jelmer Vernooij <jelmer@samba.org>     2010
5 # Copyright (C) Matthieu Patou <mat@matws.net>         2010
6 #
7 # Based on the original web/build.pl:
8 #
9 # Copyright (C) Andrew Tridgell <tridge@samba.org>     2001-2005
10 # Copyright (C) Andrew Bartlett <abartlet@samba.org>   2001
11 # Copyright (C) Vance Lankhaar  <vance@samba.org>      2002-2005
12 # Copyright (C) Martin Pool <mbp@samba.org>            2001
13 # Copyright (C) Jelmer Vernooij <jelmer@samba.org>     2007-2009
14 #
15 #   This program is free software; you can redistribute it and/or modify
16 #   it under the terms of the GNU General Public License as published by
17 #   the Free Software Foundation; either version 3 of the License, or
18 #   (at your option) any later version.
19 #
20 #   This program is distributed in the hope that it will be useful,
21 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
22 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 #   GNU General Public License for more details.
24 #
25 #   You should have received a copy of the GNU General Public License
26 #   along with this program; if not, write to the Free Software
27 #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28
29 # TODO: Allow filtering of the "Recent builds" list to show
30 # e.g. only broken builds or only builds that you care about.
31
32 import os
33
34 from buildfarm import (
35     data,
36     hostdb,
37     util,
38     )
39 from buildfarm.filecache import (
40     CachingBuildFarm,
41     )
42
43 import cgi
44 import re
45 import time
46
47 import wsgiref.util
48 webdir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "web"))
49
50
51 GITWEB_BASE = "http://gitweb.samba.org"
52 HISTORY_HORIZON = 1000
53
54 # this is automatically filled in
55 deadhosts = []
56
57 def get_param(form, param):
58     """get a param from the request, after sanitizing it"""
59     if param not in form:
60         return None
61
62     result = [s.replace(" ", "_") for s in form.getlist(param)]
63
64     for entry in result:
65         if re.match("[^a-zA-Z0-9\-\_\.]", entry):
66             raise Exception("Parameter %s is invalid" % param)
67
68     return result[0]
69
70
71 def build_link(myself, tree, host, compiler, rev, status):
72     if rev:
73         opt_rev = ';revision=%s' % rev
74     else:
75         opt_rev = ''
76     return "<a href='%s?function=View+Build;host=%s;tree=%s;compiler=%s%s'>%s</a>" % (
77            myself, host, tree, compiler, opt_rev, status)
78
79
80 def html_build_status(status):
81     def span(classname, contents):
82         return "<span class=\"%s\">%s</span>" % (classname, contents)
83
84     def span_status(stage):
85         if stage.name == "CC_CHECKER":
86             if stage.result == 0:
87                 return span("status checker", "ok")
88             else:
89                 return span("status checker", stage.result)
90
91         if stage.result is None:
92             return span("status unknown", "?")
93         elif stage.result == 0:
94             return span("status passed", "ok")
95         else:
96             return span("status failed", stage.result)
97
98     ostatus = ""
99     if "panic" in status.other_failures:
100         ostatus += "/"+span("status panic", "PANIC")
101     if "disk full" in status.other_failures:
102         ostatus += "/"+span("status failed", "disk full")
103     if "timeout" in status.other_failures:
104         ostatus += "/"+span("status failed", "timeout")
105     if "inconsistent test result" in status.other_failures:
106         ostatus += "/"+span("status failed", "unexpected return code")
107     bstatus = "/".join([span_status(s) for s in status.stages])
108     if bstatus == "":
109         bstatus = "?"
110     return bstatus + ostatus
111
112
113 def build_status_html(myself, build):
114     status = html_build_status(build.status())
115     return build_link(myself, build.tree, build.host, build.compiler, build.revision, status)
116
117
118 def build_status_vals(status):
119     """translate a status into a set of int representing status"""
120     status = util.strip_html(status)
121
122     status = status.replace("ok", "0")
123     status = status.replace("-", "0")
124     status = status.replace("?", "0.1")
125     status = status.replace("PANIC", "1")
126
127     return status.split("/")
128
129
130 def revision_link(myself, revision, tree):
131     """return a link to a particular revision"""
132
133     if revision is None:
134         return "unknown"
135
136     revision = revision.lstrip()
137     rev_short = revision
138     if len(revision) == 40:
139         rev_short = re.sub("(^.{7}).*", "\\1(git)", rev_short)
140
141     return "<a href='%s?function=diff;tree=%s;revision=%s' title='View Diff for %s'>%s</a>" % (myself, tree, revision, revision, rev_short)
142
143
144 def subunit_to_buildfarm_result(subunit_result):
145     if subunit_result == "success":
146         return "passed"
147     elif subunit_result == "error":
148         return "error"
149     elif subunit_result == "skip":
150         return "skipped"
151     elif subunit_result == "failure":
152         return "failed"
153     elif subunit_result == "xfail":
154         return "xfailed"
155     else:
156         return "unknown"
157
158 def format_subunit_reason(reason):
159     reason = re.sub("^\[\n+(.*?)\n+\]$", "\\1", reason)
160     return "<div class=\"reason\">%s</div>" % reason
161
162
163 class LogPrettyPrinter(object):
164
165     def __init__(self):
166         self.indice = 0
167
168     def _pretty_print(self, m):
169         output = m.group(1)
170         actionName = m.group(2)
171         status = m.group(3)
172         # handle pretty-printing of static-analysis tools
173         if actionName == 'cc_checker':
174              output = print_log_cc_checker(output)
175
176         self.indice += 1
177         return make_collapsible_html('action', actionName, output, self.indice, status)
178
179     # log is already CGI-escaped, so handle '>' in test name by handling &gt
180     def _format_stage(self, m):
181         self.indice += 1
182         return make_collapsible_html('test', m.group(1), m.group(2), self.indice, m.group(3))
183
184     def _format_skip_testsuite(self, m):
185         self.indice += 1
186         return make_collapsible_html('test', m.group(1), '', self.indice, 'skipped')
187
188     def _format_testsuite(self, m):
189         testName = m.group(1)
190         content = m.group(2)
191         status = subunit_to_buildfarm_result(m.group(3))
192         if m.group(4):
193             errorReason = format_subunit_reason(m.group(4))
194         else:
195             errorReason = ""
196         self.indice += 1
197         return make_collapsible_html('test', testName, content+errorReason, self.indice, status)
198
199     def _format_test(self, m):
200         self.indice += 1
201         return make_collapsible_html('test', m.group(1), m.group(2)+format_subunit_reason(m.group(4)), self.indice, subunit_to_buildfarm_result(m.group(3)))
202
203     def pretty_print(self, log):
204         # do some pretty printing for the actions
205         pattern = re.compile("(Running action\s+([\w\-]+)$(?:\s^.*$)*?\sACTION\ (PASSED|FAILED):\ ([\w\-]+)$)", re.M)
206         log = pattern.sub(self._pretty_print, log)
207
208         log = re.sub("""
209               --==--==--==--==--==--==--==--==--==--==--.*?
210               Running\ test\ ([\w\-=,_:\ /.&;]+).*?
211               --==--==--==--==--==--==--==--==--==--==--
212                   (.*?)
213               ==========================================.*?
214               TEST\ (FAILED|PASSED|SKIPPED):.*?
215               ==========================================\s+
216             """, self._format_stage, log)
217
218         log = re.sub("skip-testsuite: ([\w\-=,_:\ /.&; \(\)]+).*?",
219                 self._format_skip_testsuite, log)
220
221         pattern = re.compile("^testsuite: (.+)$\s((?:^.*$\s)*?)testsuite-(\w+): .*?(?:(\[$\s(?:^.*$\s)*?^\]$)|$)", re.M)
222         log = pattern.sub(self._format_testsuite, log)
223         log = re.sub("""
224               ^test: ([\w\-=,_:\ /.&; \(\)]+).*?
225               (.*?)
226               (success|xfail|failure|skip): [\w\-=,_:\ /.&; \(\)]+( \[.*?\])?.*?
227            """, self._format_test, log)
228
229         return "<pre>%s</pre>" % log
230
231
232 def print_log_pretty(log):
233     return LogPrettyPrinter().pretty_print(log)
234
235
236 def print_log_cc_checker(input):
237     # generate pretty-printed html for static analysis tools
238     output = ""
239
240     # for now, we only handle the IBM Checker's output style
241     if not re.search("^BEAM_VERSION", input):
242         return "here"
243         return input
244
245     content = ""
246     inEntry = False
247     title = None
248     status = None
249
250     for line in input.splitlines():
251         # for each line, check if the line is a new entry,
252         # otherwise, store the line under the current entry.
253
254         if line.startswith("-- "):
255             # got a new entry
256             if inEntry:
257                 output += make_collapsible_html('cc_checker', title, content, id, status)
258             else:
259                 output += content
260
261             # clear maintenance vars
262             (inEntry, content) = (True, "")
263
264             # parse the line
265             m = re.match("^-- ((ERROR|WARNING|MISTAKE).*?)\s+&gt;&gt;&gt;([a-zA-Z0-9]+_(\w+)_[a-zA-Z0-9]+)", line)
266
267             # then store the result
268             (title, status, id) = ("%s %s" % (m.group(1), m.group(4)), m.group(2), m.group(3))
269         elif line.startswith("CC_CHECKER STATUS"):
270             if inEntry:
271                 output += make_collapsible_html('cc_checker', title, content, id, status)
272
273             inEntry = False
274             content = ""
275
276         # not a new entry, so part of the current entry's output
277         content += "%s\n" % line
278
279     output += content
280
281     # This function does approximately the same as the following, following
282     # commented-out regular expression except that the regex doesn't quite
283     # handle IBM Checker's newlines quite right.
284     #   $output =~ s{
285     #                 --\ ((ERROR|WARNING|MISTAKE).*?)\s+
286     #                        &gt;&gt;&gt
287     #                 (.*?)
288     #                 \n{3,}
289     #               }{make_collapsible_html('cc_checker', "$1 $4", $5, $3, $2)}exgs
290     return output
291
292
293 def make_collapsible_html(type, title, output, id, status=""):
294     """generate html for a collapsible section
295
296     :param type: the logical type of it. e.g. "test" or "action"
297     :param title: the title to be displayed
298     """
299     if ((status == "" or "failed" == status.lower())):
300         icon = 'icon_hide_16.png'
301     else:
302         icon = 'icon_unhide_16.png'
303
304     # trim leading and trailing whitespace
305     output = output.strip()
306
307     # note that we may be inside a <pre>, so we don't put any extra whitespace
308     # in this html
309     ret = "<div class='%s unit %s' id='%s-%s'>" % (type, status, type, id)
310     ret += "<a href=\"javascript:handle('%s');\">" % id
311     ret += "<img id='img-%s' name='img-%s' alt='%s' src='%s' />" %(id, id, status, icon)
312     ret += "<div class='%s title'>%s</div></a>" % (type, title)
313     #ret += " "
314     ret += "<div class='%s status %s'>%s</div>" % (type, status, status)
315     ret += "<div class='%s output' id='output-%s'>" % (type, id)
316     if output and len(output):
317         ret += "<pre>%s</pre>>" % (output)
318     ret += "</div></div>"
319     return ret
320
321
322 def diff_pretty(diff):
323     """pretty up a diff -u"""
324     # FIXME: JRV 20101109 Use pygments for this
325     ret = ""
326     lines = diff.splitlines()
327
328     line_types = {
329             'diff': 'diff_diff',
330             '=': 'diff_separator',
331             'Index:': 'diff_index',
332             'index': 'diff_index',
333             '-': 'diff_removed',
334             '+': 'diff_added',
335             '@@': 'diff_fragment_header'
336             }
337
338     for line in lines:
339         for r, cls in line_types.iteritems():
340             if line.startswith(r):
341                 line = "<span class=\"%s\">%s</span>" % (cls, line)
342                 continue
343         ret += line + "\n"
344
345     return ret
346
347
348 def web_paths(t, paths):
349     """change the given source paths into links"""
350     if t.scm == "git":
351         ret = ""
352         for path in paths:
353             ret += " <a href=\"%s/?p=%s;a=history;f=%s%s;h=%s;hb=%s\">%s</a>" % (GITWEB_BASE, t.repo, t.subdir, path, t.branch, t.branch, path)
354         return ret
355     else:
356         raise Exception("Unknown scm %s" % t.scm)
357
358
359 def history_row_html(myself, entry, tree, changes):
360     """show one row of history table"""
361     msg = cgi.escape(entry.message)
362     t = time.asctime(time.gmtime(entry.date))
363     age = util.dhm_time(time.time()-entry.date)
364
365     t = t.replace(" ", "&nbsp;")
366
367     yield """
368 <div class=\"history_row\">
369     <div class=\"datetime\">
370         <span class=\"date\">%s</span><br />
371         <span class=\"age\">%s ago</span>""" % (t, age)
372     if entry.revision:
373         yield " - <span class=\"revision\">%s</span><br/>" % entry.revision
374         revision_url = "revision=%s" % entry.revision
375     else:
376         revision_url = "author=%s" % entry.author
377     yield """    </div>
378     <div class=\"diff\">
379         <span class=\"html\"><a href=\"%s?function=diff;tree=%s;date=%s;%s\">show diffs</a></span>
380     <br />
381         <span class=\"text\"><a href=\"%s?function=text_diff;tree=%s;date=%s;%s\">download diffs</a></span>
382         <br />
383         <div class=\"history_log_message\">
384             <pre>%s</pre>
385         </div>
386     </div>
387     <div class=\"author\">
388     <span class=\"label\">Author: </span>%s
389     </div>""" % (myself, tree.name, entry.date, revision_url,
390                  myself, tree.name, entry.date, revision_url,
391                  msg, entry.author)
392
393     (added, modified, removed) = changes
394
395     if modified:
396         yield "<div class=\"files\"><span class=\"label\">Modified: </span>"
397         yield web_paths(tree, modified)
398         yield "</div>\n"
399
400     if added:
401         yield "<div class=\"files\"><span class=\"label\">Added: </span>"
402         yield web_paths(tree, added)
403         yield "</div>\n"
404
405     if removed:
406         yield "<div class=\"files\"><span class=\"label\">Removed: </span>"
407         yield web_paths(tree, removed)
408         yield "</div>\n"
409
410     yield "</div>\n"
411
412
413 def history_row_text(entry, tree, changes):
414     """show one row of history table"""
415     msg = cgi.escape(entry.message)
416     t = time.asctime(time.gmtime(entry.date))
417     age = util.dhm_time(time.time()-entry.date)
418
419     yield "Author: %s\n" % entry.author
420     if entry.revision:
421         yield "Revision: %s\n" % entry.revision
422     (added, modified, removed) = changes
423     yield "Modified: %s\n" % modified
424     yield "Added: %s\n" % added
425     yield "Removed: %s\n" % removed
426     yield "\n\n%s\n\n\n" % msg
427
428
429 def show_diff(diff, text_html):
430     if text_html == "html":
431         diff = cgi.escape(diff)
432         diff = diff_pretty(diff)
433         return "<pre>%s</pre>\n" % diff
434     else:
435         return "%s\n" % diff
436
437
438 class BuildFarmPage(object):
439
440     def __init__(self, buildfarm):
441         self.buildfarm = buildfarm
442
443     def red_age(self, age):
444         """show an age as a string"""
445         if age > self.buildfarm.OLDAGE:
446             return "<span clsas='old'>%s</span>" % util.dhm_time(age)
447         return util.dhm_time(age)
448
449     def tree_link(self, myself, tree):
450         # return a link to a particular tree
451         branch = ""
452         if tree in self.buildfarm.trees:
453             branch = ":%s" % self.buildfarm.trees[tree].branch
454
455         return "<a href='%s?function=Recent+Builds;tree=%s' title='View recent builds for %s'>%s%s</a>" % (myself, tree, tree, tree, branch)
456
457     def render(self, output_type):
458         raise NotImplementedError(self.render)
459
460
461 class ViewBuildPage(BuildFarmPage):
462
463     def show_oldrevs(self, myself, tree, host, compiler):
464         """show the available old revisions, if any"""
465         old_rev_builds  = self.buildfarm.builds.get_old_revs(tree, host, compiler)
466
467         if len(old_rev_builds) == 0:
468             return
469
470         yield "<h2>Older builds:</h2>\n"
471
472         yield "<table class='real'>\n"
473         yield "<thead><tr><th>Revision</th><th>Status</th></tr></thead>\n"
474         yield "<tbody>\n"
475
476         for build in old_rev_builds:
477             yield "<tr><td>%s</td><td>%s</td></tr>\n" % (
478                 revision_link(myself, build.revision, tree),
479                 build_status_html(myself, build))
480
481         yield "</tbody></table>\n"
482
483     def render(self, myself, tree, host, compiler, rev, plain_logs=False):
484         """view one build in detail"""
485
486         uname = ""
487         cflags = ""
488         config = ""
489         build = self.buildfarm.get_build(tree, host, compiler, rev)
490         age_mtime = build.age_mtime()
491         try:
492             (revision, revision_time) = build.revision_details()
493         except data.MissingRevisionInfo:
494             revision = None
495
496         status = build_status_html(myself, build)
497
498         if rev:
499             assert re.match("^[0-9a-fA-F]*$", rev)
500
501         f = build.read_log()
502         try:
503             log = f.read()
504         finally:
505             f.close()
506         f = build.read_err()
507         try:
508             err = f.read()
509         finally:
510             f.close()
511
512         if log:
513             log = cgi.escape(log)
514
515             m = re.search("(.*)", log)
516             if m:
517                 uname = m.group(1)
518             m = re.search("CFLAGS=(.*)", log)
519             if m:
520                 cflags = m.group(1)
521             m = re.search("configure options: (.*)", log)
522             if m:
523                 config = m.group(1)
524
525         if err:
526             err = cgi.escape(err)
527         yield '<h2>Host information:</h2>'
528
529         host_web_file = "../web/%s.html" % host
530         if os.path.exists(host_web_file):
531             yield util.FileLoad(host_web_file)
532
533         yield "<table class='real'>\n"
534         yield "<tr><td>Host:</td><td><a href='%s?function=View+Host;host=%s;tree=%s;"\
535               "compiler=%s#'>%s</a> - %s</td></tr>\n" %\
536                 (myself, host, tree, compiler, host, self.buildfarm.hostdb.host(host).platform.encode("utf-8"))
537         yield "<tr><td>Uname:</td><td>%s</td></tr>\n" % uname
538         yield "<tr><td>Tree:</td><td>%s</td></tr>\n" % self.tree_link(myself, tree)
539         yield "<tr><td>Build Revision:</td><td>%s</td></tr>\n" % revision_link(myself, revision, tree)
540         yield "<tr><td>Build age:</td><td><div class='age'>%s</div></td></tr>\n" % self.red_age(age_mtime)
541         yield "<tr><td>Status:</td><td>%s</td></tr>\n" % status
542         yield "<tr><td>Compiler:</td><td>%s</td></tr>\n" % compiler
543         yield "<tr><td>CFLAGS:</td><td>%s</td></tr>\n" % cflags
544         yield "<tr><td>configure options:</td><td>%s</td></tr>\n" % config
545         yield "</table>\n"
546
547         yield "".join(self.show_oldrevs(myself, tree, host, compiler))
548
549         # check the head of the output for our magic string
550         rev_var = ""
551         if rev:
552             rev_var = ";revision=%s" % rev
553
554         yield "<div id='log'>"
555
556         if not plain_logs:
557             yield "<p>Switch to the <a href='%s?function=View+Build;host=%s;tree=%s"\
558                   ";compiler=%s%s;plain=true' title='Switch to bland, non-javascript,"\
559                   " unstyled view'>Plain View</a></p>" % (myself, host, tree, compiler, rev_var)
560
561             yield "<div id='actionList'>"
562             # These can be pretty wide -- perhaps we need to
563             # allow them to wrap in some way?
564             if err == "":
565                 yield "<h2>No error log available</h2>\n"
566             else:
567                 yield "<h2>Error log:</h2>"
568                 yield make_collapsible_html('action', "Error Output", "\n%s" % err, "stderr-0", "errorlog")
569
570             if log == "":
571                 yield "<h2>No build log available</h2>"
572             else:
573                 yield "<h2>Build log:</h2>\n"
574                 yield print_log_pretty(log)
575
576             yield "<p><small>Some of the above icons derived from the <a href='http://www.gnome.org'>Gnome Project</a>'s stock icons.</small></p>"
577             yield "</div>"
578         else:
579             yield "<p>Switch to the <a href='%s?function=View+Build;host=%s;tree=%s;"\
580                   "compiler=%s%s' title='Switch to colourful, javascript-enabled, styled"\
581                   " view'>Enhanced View</a></p>" % (myself, host, tree, compiler, rev_var)
582             if err == "":
583                 yield "<h2>No error log available</h2>"
584             else:
585                 yield '<h2>Error log:</h2>\n'
586                 yield '<div id="errorLog"><pre>%s</pre></div>' % err
587             if log == "":
588                 yield '<h2>No build log available</h2>'
589             else:
590                 yield '<h2>Build log:</h2>\n'
591                 yield '<div id="buildLog"><pre>%s</pre></div>' % log
592
593         yield '</div>'
594
595
596 class ViewRecentBuildsPage(BuildFarmPage):
597
598     def render(self, myself, tree, sort_by):
599         """Draw the "recent builds" view"""
600         last_host = ""
601         all_builds = []
602
603         cmp_funcs = {
604             "revision": lambda a, b: cmp(a[7], b[7]),
605             "age": lambda a, b: cmp(a[0], b[0]),
606             "host": lambda a, b: cmp(a[2], b[2]),
607             "platform": lambda a, b: cmp(a[1], b[1]),
608             "compiler": lambda a, b: cmp(a[3], b[3]),
609             "status": lambda a, b: cmp(a[6], b[6]),
610             }
611
612         assert tree in self.buildfarm.trees, "not a build tree"
613         assert sort_by in cmp_funcs, "not a valid sort"
614
615         t = self.buildfarm.trees[tree]
616
617         for host in self.buildfarm.hostdb.hosts():
618             for compiler in self.buildfarm.compilers:
619                 try:
620                     build = self.buildfarm.get_build(tree, host.name, compiler)
621                     status = build_status_html(myself, build)
622                 except data.NoSuchBuildError:
623                     pass
624                 else:
625                     age_mtime = build.age_mtime()
626                     age_ctime = build.age_ctime()
627                     try:
628                         (revision, revision_time) = build.revision_details()
629                     except data.MissingRevisionInfo:
630                         pass
631                     else:
632                         all_builds.append([
633                             age_ctime,
634                             host.platform.encode("utf-8"),
635                             "<a href='%s?function=View+Host;host=%s;tree=%s;compiler=%s#%s'>%s</a>"
636                                 % (myself, host.name,
637                                    tree, compiler, host.name,
638                                    host.name),
639                             compiler, tree, status, build.status(),
640                             revision_link(myself, revision, tree),
641                             revision_time])
642
643         all_builds.sort(cmp_funcs[sort_by])
644
645         sorturl = "%s?tree=%s;function=Recent+Builds" % (myself, tree)
646
647         yield "<div id='recent-builds' class='build-section'>"
648         yield "<h2>Recent builds of %s (%s branch %s)</h2>" % (tree, t.scm, t.branch)
649         yield "<table class='real'>"
650         yield "<thead>"
651         yield "<tr>"
652         yield "<th><a href='%s;sortby=age' title='Sort by build age'>Age</a></th>" % sorturl
653         yield "<th><a href='%s;sortby=revision' title='Sort by build revision'>Revision</a></th>" % sorturl
654         yield "<th>Tree</th>"
655         yield "<th><a href='%s;sortby=platform' title='Sort by platform'>Platform</a></th>" % sorturl
656         yield "<th><a href='%s;sortby=host' title='Sort by host'>Host</a></th>" % sorturl
657         yield "<th><a href='%s;sortby=compiler' title='Sort by compiler'>Compiler</a></th>" % sorturl
658         yield "<th><a href='%s;sortby=status' title='Sort by status'>Status</a></th>" % sorturl
659         yield "<tbody>"
660
661         for build in all_builds:
662             yield "<tr>"
663             yield "<td>%s</td>" % util.dhm_time(build[0])
664             yield "<td>%s</td>" % build[7]
665             yield "<td>%s</td>" % build[4]
666             yield "<td>%s</td>" % build[1]
667             yield "<td>%s</td>" % build[2]
668             yield "<td>%s</td>" % build[3]
669             yield "<td>%s</td>" % build[5]
670             yield "</tr>"
671         yield "</tbody></table>"
672         yield "</div>"
673
674
675 class ViewHostPage(BuildFarmPage):
676
677     def _render_build_list_header(self, host):
678         yield "<div class='host summary'>"
679         yield "<a id='host' name='host'/>"
680         yield "<h3>%s - %s</h3>" % (host, self.buildfarm.hostdb.host(host).platform.encode("utf-8"))
681         yield "<table class='real'>"
682         yield "<thead><tr><th>Target</th><th>Build<br/>Revision</th><th>Build<br />Age</th><th>Status<br />config/build<br />install/test</th><th>Warnings</th></tr></thead>"
683         yield "<tbody>"
684
685     def _render_build_html(self, myself, build):
686         try:
687             (revision, revision_time) = build.revision_details()
688         except data.MissingRevisionInfo:
689             revision = None
690         age_mtime = build.age_mtime()
691         age_ctime = build.age_ctime()
692         warnings = build.err_count()
693         status = build_status_html(myself, build)
694         yield "<tr>"
695         yield "<td><span class='tree'>" + self.tree_link(myself, build.tree) +"</span>/" + build.compiler + "</td>"
696         yield "<td>" + revision_link(myself, revision, build.tree) + "</td>"
697         yield "<td><div class='age'>" + self.red_age(age_mtime) + "</div></td>"
698         yield "<td><div class='status'>%s</div></td>" % status
699         yield "<td>%s</td>" % warnings
700         yield "</tr>"
701
702     def render_html(self, myself, *requested_hosts):
703         yield "<div class='build-section' id='build-summary'>"
704         yield '<h2>Host summary:</h2>'
705         for host in requested_hosts:
706             # make sure we have some data from it
707             try:
708                 self.buildfarm.hostdb.host(host)
709             except hostdb.NoSuchHost:
710                 continue
711
712             builds = list(self.buildfarm.get_host_builds(host))
713             if len(builds) > 0:
714                 yield "".join(self._render_build_list_header(host))
715                 for build in builds:
716                     yield "".join(self._render_build_html(myself, build))
717                 yield "</tbody></table>"
718                 yield "</div>"
719             else:
720                 deadhosts.append(host)
721
722         yield "</div>"
723         yield "".join(self.draw_dead_hosts(*deadhosts))
724
725     def render_text(self, myself, *requested_hosts):
726         """print the host's table of information"""
727         yield "Host summary:\n"
728
729         for host in requested_hosts:
730             # make sure we have some data from it
731             try:
732                 self.buildfarm.hostdb.host(host)
733             except hostdb.NoSuchHost:
734                 continue
735
736             builds = list(self.buildfarm.get_host_builds(host))
737             if len(builds) > 0:
738                 yield "%-12s %-10s %-10s %-10s %-10s\n" % (
739                         "Tree", "Compiler", "Build Age", "Status", "Warnings")
740                 for build in builds:
741                     yield "%-12s %-10s %-10s %-10s %-10s\n" % (
742                             build.tree, build.compiler,
743                             util.dhm_time(build.age_mtime()),
744                             str(build.status()), build.err_count())
745                 yield "\n"
746
747     def draw_dead_hosts(self, *deadhosts):
748         """Draw the "dead hosts" table"""
749
750         # don't output anything if there are no dead hosts
751         if len(deadhosts) == 0:
752             return
753
754         yield "<div class='build-section' id='dead-hosts'>"
755         yield "<h2>Dead Hosts:</h2>"
756         yield "<table class='real'>"
757         yield "<thead><tr><th>Host</th><th>OS</th><th>Min Age</th></tr></thead>"
758         yield "<tbody>"
759
760         for host in deadhosts:
761             age_ctime = self.buildfarm.hostdb.host_age(host)
762             yield "<tr><td>%s</td><td>%s</td><td>%s</td></tr>" %\
763                     (host, self.buildfarm.hostdb.host(host).platform.encode("utf-8"),
764                      util.dhm_time(age_ctime))
765
766         yield "</tbody></table>"
767         yield "</div>"
768
769
770 class ViewSummaryPage(BuildFarmPage):
771
772     def _get_counts(self):
773         broken_count = {}
774         panic_count = {}
775         host_count = {}
776
777         # zero broken and panic counters
778         for tree in self.buildfarm.trees:
779             broken_count[tree] = 0
780             panic_count[tree] = 0
781             host_count[tree] = 0
782
783         # set up a variable to store the broken builds table's code, so we can
784         # output when we want
785         broken_table = ""
786         last_host = ""
787
788         for host in self.buildfarm.hostdb.hosts():
789             for compiler in self.buildfarm.compilers:
790                 for tree in self.buildfarm.trees:
791                     try:
792                         build = self.buildfarm.get_build(tree, host.name, compiler)
793                     except data.NoSuchBuildError:
794                         continue
795                     age_mtime = build.age_mtime()
796                     host_count[tree]+=1
797                     status = build.status()
798
799                     if status.failed:
800                         broken_count[tree]+=1
801                         if "panic" in status.other_failures:
802                             panic_count[tree]+=1
803         return (host_count, broken_count, panic_count)
804
805     def render_text(self, myself):
806
807         (host_count, broken_count, panic_count) = self._get_counts()
808         # for the text report, include the current time
809         t = time.gmtime()
810         yield "Build status as of %s\n\n" % t
811
812         yield "Build counts:\n"
813         yield "%-12s %-6s %-6s %-6s\n" % ("Tree", "Total", "Broken", "Panic")
814
815         for tree in sorted(self.buildfarm.trees.keys()):
816             yield "%-12s %-6s %-6s %-6s\n" % (tree, host_count[tree],
817                     broken_count[tree], panic_count[tree])
818
819         yield "\n"
820
821     def render_html(self, myself):
822         """view build summary"""
823
824         (host_count, broken_count, panic_count) = self._get_counts()
825
826         yield "<div id='build-counts' class='build-section'>"
827         yield "<h2>Build counts:</h2>"
828         yield "<table class='real'>"
829         yield "<thead><tr><th>Tree</th><th>Total</th><th>Broken</th><th>Panic</th><th>Test coverage</th></tr></thead>"
830         yield "<tbody>"
831
832         for tree in sorted(self.buildfarm.trees.keys()):
833             yield "<tr>"
834             yield "<td>%s</td>" % self.tree_link(myself, tree)
835             yield "<td>%s</td>" % host_count[tree]
836             yield "<td>%s</td>" % broken_count[tree]
837             if panic_count[tree]:
838                     yield "<td class='panic'>"
839             else:
840                     yield "<td>"
841             yield "%d</td>" % panic_count[tree]
842             try:
843                 lcov_status = self.buildfarm.lcov_status(tree)
844             except data.NoSuchBuildError:
845                 yield "<td></td>"
846             else:
847                 if lcov_status is not None:
848                     yield "<td><a href=\"/lcov/data/%s/%s\">%s %%</a></td>" % (
849                         self.buildfarm.LCOVHOST, tree, lcov_status)
850                 else:
851                     yield "<td></td>"
852             yield "</tr>"
853
854         yield "</tbody></table>"
855         yield "</div>"
856
857
858 class DiffPage(BuildFarmPage):
859
860     def render(self, myself, tree, revision):
861         t = self.buildfarm.trees[tree]
862         branch = t.get_branch()
863         (entry, diff) = branch.diff(revision)
864         # get information about the current diff
865         title = "GIT Diff in %s:%s for revision %s" % (
866             tree, t.branch, revision)
867         yield "<h2>%s</h2>" % title
868         changes = branch.changes_summary(revision)
869         yield "".join(history_row_html(myself, entry, t, changes))
870         yield show_diff(diff, "html")
871
872
873 class RecentCheckinsPage(BuildFarmPage):
874
875     limit = 40
876
877     def render(self, myself, tree, author=None):
878         t = self.buildfarm.trees[tree]
879         interesting = list()
880         authors = {"ALL": "ALL"}
881         branch = t.get_branch()
882         re_author = re.compile("^(.*) <(.*)>$")
883         for entry in branch.log(limit=HISTORY_HORIZON):
884             m = re_author.match(entry.author)
885             authors[m.group(2)] = m.group(1)
886             if author in ("ALL", "", m.group(2)):
887                 interesting.append(entry)
888
889         yield "<h2>Recent checkins for %s (%s branch %s)</h2>\n" % (
890             tree, t.scm, t.branch)
891         yield "<form method='GET'>"
892         yield "Select Author: "
893         yield "<select name='author'>"
894         for email in sorted(authors):
895             yield "<option value='%s'>%s</option>" % (email, authors[email])
896         yield "</select>"
897         yield "<input type='submit' name='sub_function' value='Refresh'/>"
898         yield "<input type='hidden' name='tree' value='%s'/>" % tree
899         yield "<input type='hidden' name='function', value='Recent Checkins'/>"
900         yield "</form>"
901
902         for entry in interesting[:self.limit]:
903             changes = branch.changes_summary(entry.revision)
904             yield "".join(history_row_html(myself, entry, t, changes))
905         yield "\n"
906
907
908 class BuildFarmApp(object):
909
910     def __init__(self, buildfarm):
911         self.buildfarm = buildfarm
912
913         # host.properties are unicode object and the framework expect string object
914         self.hosts = dict([(host.name, host) for host in self.buildfarm.hostdb.hosts()])
915
916     def main_menu(self):
917         """main page"""
918
919         yield "<form method='GET'>\n"
920         yield "<div id='build-menu'>\n"
921         yield "<select name='host'>\n"
922         for name, host in self.hosts.iteritems():
923             yield "<option value='%s'>%s -- %s</option>\n" % (
924                 name, host.platform.encode("utf-8"), name)
925         yield "</select>\n"
926         yield "<select name='tree'>\n"
927         for tree, t in self.buildfarm.trees.iteritems():
928             yield "<option value='%s'>%s:%s</option>\n" % (tree, tree, t.branch)
929         yield "</select>\n"
930         yield "<select name='compiler'>\n"
931         for compiler in self.buildfarm.compilers:
932             yield "<option>%s</option>\n" % compiler
933         yield "</select>\n"
934         yield "<br/>\n"
935         yield "<input type='submit' name='function' value='View Build'/>\n"
936         yield "<input type='submit' name='function' value='View Host'/>\n"
937         yield "<input type='submit' name='function' value='Recent Checkins'/>\n"
938         yield "<input type='submit' name='function' value='Summary'/>\n"
939         yield "<input type='submit' name='function' value='Recent Builds'/>\n"
940         yield "</div>\n"
941         yield "</form>\n"
942
943     def __call__(self, environ, start_response):
944         form = cgi.FieldStorage(fp=environ['wsgi.input'], environ=environ)
945         fn_name = get_param(form, 'function') or ''
946         myself = wsgiref.util.application_uri(environ)
947
948         if fn_name == 'text_diff':
949             start_response('200 OK', [('Content-type', 'application/x-diff')])
950             tree = get_param(form, 'tree')
951             t = self.buildfarm.trees[tree]
952             branch = t.get_branch()
953             revision = get_param(form, 'revision')
954             (entry, diff) = branch.diff(revision)
955             changes = branch.changes_summary(revision)
956             yield "".join(history_row_text(entry, tree, changes))
957             yield show_diff(diff, "text")
958         elif fn_name == 'Text_Summary':
959             start_response('200 OK', [('Content-type', 'text/plain')])
960             page = ViewSummaryPage(self.buildfarm)
961             yield "".join(page.render_text(myself))
962         else:
963             start_response('200 OK', [('Content-type', 'text/html')])
964
965             yield "<html>\n"
966             yield "  <head>\n"
967             yield "    <title>samba.org build farm</title>\n"
968             yield "    <script language='javascript' src='/build_farm.js'></script>\n"
969             yield "    <meta name='keywords' contents='Samba SMB CIFS Build Farm'/>\n"
970             yield "    <meta name='description' contents='Home of the Samba Build Farm, the automated testing facility.'/>\n"
971             yield "    <meta name='robots' contents='noindex'/>"
972             yield "    <link rel='stylesheet' href='/build_farm.css' type='text/css' media='all'/>"
973             yield "    <link rel='stylesheet' href='http://master.samba.org/samba/style/common.css' type='text/css' media='all'/>"
974             yield "    <link rel='shortcut icon' href='http://www.samba.org/samba/images/favicon.ico'/>"
975             yield "  </head>"
976             yield "<body>"
977
978             yield util.FileLoad(os.path.join(webdir, "header2.html"))
979             yield "".join(self.main_menu())
980             yield util.FileLoad(os.path.join(webdir, "header3.html"))
981             if fn_name == "View_Build":
982                 plain_logs = (get_param(form, "plain") is not None and get_param(form, "plain").lower() in ("yes", "1", "on", "true", "y"))
983                 tree = get_param(form, "tree")
984                 host = get_param(form, "host")
985                 compiler = get_param(form, "compiler")
986                 page = ViewBuildPage(self.buildfarm)
987                 yield "".join(page.render(myself, tree, host, compiler, get_param(form, "revision"), plain_logs))
988             elif fn_name == "View_Host":
989                 page = ViewHostPage(self.buildfarm)
990                 yield "".join(page.render_html(myself, get_param(form, 'host')))
991             elif fn_name == "Recent_Builds":
992                 page = ViewRecentBuildsPage(self.buildfarm)
993                 yield "".join(page.render(myself, get_param(form, "tree"), get_param(form, "sortby") or "revision"))
994             elif fn_name == "Recent_Checkins":
995                 # validate the tree
996                 tree =  get_param(form, "tree")
997                 author = get_param(form, 'author')
998                 page = RecentCheckinsPage(self.buildfarm)
999                 yield "".join(page.render(myself, tree, author))
1000             elif fn_name == "diff":
1001                 tree =  get_param(form, "tree")
1002                 revision = get_param(form, 'revision')
1003                 page = DiffPage(self.buildfarm)
1004                 yield "".join(page.render(myself, tree, revision))
1005             elif os.getenv("PATH_INFO") not in (None, "", "/"):
1006                 paths = os.getenv("PATH_INFO").split('/')
1007                 if paths[1] == "recent":
1008                     page = ViewRecentBuildsPage(self.buildfarm)
1009                     yield "".join(page.render(myself, paths[2], get_param(form, 'sortby') or 'revision'))
1010                 elif paths[1] == "host":
1011                     page = ViewHostPage(self.buildfarm)
1012                     yield "".join(page.render_html(myself, paths[2]))
1013             else:
1014                 page = ViewSummaryPage(self.buildfarm)
1015                 yield "".join(page.render_html(myself))
1016             yield util.FileLoad(os.path.join(webdir, "footer.html"))
1017             yield "</body>"
1018             yield "</html>"
1019
1020
1021 if __name__ == '__main__':
1022     import optparse
1023     parser = optparse.OptionParser("[options]")
1024     parser.add_option("--cachedirname", help="Cache directory name", type=str)
1025     parser.add_option("--port", help="Port to listen on [localhost:8000]", default="localhost:8000", type=str)
1026     opts, args = parser.parse_args()
1027     buildfarm = CachingBuildFarm(cachedirname=opts.cachedirname)
1028     buildApp = BuildFarmApp(buildfarm)
1029     from wsgiref.simple_server import make_server
1030     import mimetypes
1031     mimetypes.init()
1032
1033     def standaloneApp(environ, start_response):
1034         if environ['PATH_INFO']:
1035             m = re.match("^/([a-zA-Z0-9_-]+)(\.[a-zA-Z0-9_-]+)?", environ['PATH_INFO'])
1036             if m:
1037                 static_file = os.path.join(webdir, m.group(1)+m.group(2))
1038                 if os.path.exists(static_file):
1039                     type = mimetypes.types_map[m.group(2)]
1040                     start_response('200 OK', [('Content-type', type)])
1041                     data = open(static_file, 'rb').read()
1042                     yield data
1043                     return
1044         yield "".join(buildApp(environ, start_response))
1045     try:
1046         (address, port) = opts.port.rsplit(":", 1)
1047     except ValueError:
1048         address = "localhost"
1049         port = opts.port
1050     httpd = make_server(address, int(port), standaloneApp)
1051     print "Serving on %s:%d..." % (address, int(port))
1052     httpd.serve_forever()