X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=blobdiff_plain;f=results2html;h=b330c871abbdae8a74df08a6fa36cb5d52eb6c3b;hp=8f8725f82f3067c85358951d6fb711bb138af7a7;hb=HEAD;hpb=b65ac0f58133c7057bad96b9de7af32e06b6e21c diff --git a/results2html b/results2html index 8f8725f82f..b330c871ab 100755 --- a/results2html +++ b/results2html @@ -3,23 +3,24 @@ use strict; use warnings; -use HTML::Entities; +use Digest::SHA; +use File::Spec; +use HTML::Entities qw(); +use URI::Escape; + +sub encode_entities { + return HTML::Entities::encode_entities($_[0], "<&>'\""); +} + +my $gitweb_url = 'http://benpfaff.org/cgi-bin/gitweb.cgi?p=pspp;a=blob;f=[FILE];hb=[BRANCH]#l[LINE]'; open (LOG, '<', "LOG"); -open (INDEX, '>','index.html'); open (LOG_HTML, '>', "log.html"); -print INDEX < - - - - -EOF - print LOG_HTML < + @@ -39,58 +40,99 @@ sub read_vars { } return %vars; } - my (%vars) = read_vars ('VARS'); -print INDEX "

Build Properties

\n"; -print INDEX "\n"; -print INDEX "\n"; -foreach my $key (sort (keys (%vars))) { - print INDEX ""; - print INDEX ""; - print INDEX ""; - print INDEX "\n"; -} -print INDEX "
NameValue
", encode_entities ($key), "", encode_entities ($vars{$key}), "
\n"; my (@products); my (@steps); my ($new_page) = 0; +my ($result) = "failure"; +my (%dist_files); +my ($dist_dir); +my @dirstack; while () { my $ln = $.; chomp; if (/^ $/) { $new_page = 1; + @dirstack = (); print LOG_HTML "
\n";
 	next;
     }
 
+    if (/Entering directory `(.*)'$/) {
+        push (@dirstack, $1);
+    } elsif (/Leaving directory `(.*)'$/) {
+        pop (@dirstack);
+    }
+
     my $log_class;
     if ($new_page) {
 	$new_page = 0;
 	$log_class = "step";
-	if (my ($product) = /^Saving (.*)$/) {
+	if (my ($name, $product) = /^Saving(?:\s+([^:]*):)?\s+(.*)$/) {
 	    my $href = "$product/index.html";
 	    $href = $product if ! -e $href;
 
 	    my (%p);
+	    $p{NAME} = $name if defined ($name);
 	    $p{PRODUCT} = $product;
 	    $p{HREF} = $href;
 	    $p{LN} = $ln;
 	    push (@products, \%p);
-	    push (@{$steps[$#steps]{CHILDREN}}, \%p);
+	    push (@{$steps[$#steps]{CHILDREN}}, \%p) if @steps;
+
+	    if (defined ($name) && $name eq 'source distribution') {
+		open (DIST, '-|', "zcat $product | tar tf -");
+		while (my $line = ) {
+		    chomp $line;
+		    $line =~ s%^([./])*%%; # Trim leading ./
+		    $dist_files{$line} = 1;
+		    if (!defined ($dist_dir)) {
+			$dist_dir = (split ('/', $line))[0];
+		    }
+		}
+		close (DIST);
+	    }
 	} else {
 	    my (%s);
 	    $s{TITLE} = $_;
 	    $s{LN} = $ln;
 	    push (@steps, \%s);
 	}
+	$result = 'success' if $_ eq 'Success';
     } else {
-	if (my ($diagnostic) = /(error|warning):/) {
+	if (my ($diagnostic) = /(error|warning):/i) {
 	    my (%d);
-	    $d{DIAGNOSTIC} = $diagnostic;
+	    $d{DIAGNOSTIC} = lc ($diagnostic);
 	    $d{MESSAGE} = $_;
 	    $d{LN} = $ln;
+
+	    if (@dirstack && defined ($dist_dir)
+		&& (my ($match, $file, $line) = /^(([^\s:]+):(\d+):)/)) {
+		$file = File::Spec->rel2abs ($file, $dirstack[$#dirstack]);
+		my (@path) = grep ($_ ne '' && $_ ne '.', split ('/', $file));
+		for (my $i = 1; $i <= $#path; ) {
+		    if ($path[$i] eq '..') {
+			splice (@path, $i - 1, 2);
+			$i-- if $i > 1;
+		    } else {
+			$i++;
+		    }
+		}
+
+		for (my $i = $#path; $i >= 0; $i--) {
+		    if ($path[$i] eq $dist_dir) {
+			my $dist_file = join ('/', @path[$i..$#path]);
+			if (exists ($dist_files{$dist_file})) {
+			    $d{MATCH} = length ($match);
+			    $d{LINE} = $line;
+			    $d{FILE} = $dist_file;
+			}
+			last;
+		    }
+		}
+	    }
 	    push (@{$steps[$#steps]{CHILDREN}}, \%d);
 
 	    $log_class = "$diagnostic";
@@ -104,12 +146,48 @@ while () {
     }
 }
 
+open (INDEX, '>','index.html');
+
+print INDEX <
+
+  
+  
+
+
+EOF
+
+print INDEX "

Build ", $vars{"build_number"}, ": $result

\n"; + +print INDEX "

Build Properties

\n"; +print INDEX "\n"; +print INDEX "\n"; +foreach my $key (sort (keys (%vars))) { + print INDEX ""; + print INDEX ""; + print INDEX ""; + print INDEX "\n"; +} +print INDEX "
NameValue
", encode_entities ($key), "", encode_entities ($vars{$key}), "
\n"; + print INDEX "

Build Products

\n"; print INDEX "\n"; @@ -126,13 +204,29 @@ foreach my $s (@steps) { foreach my $c (@{$s->{CHILDREN}}) { if (defined ($c->{DIAGNOSTIC})) { print INDEX "

{DIAGNOSTIC}\">"; - print INDEX "{LN}\">"; - print INDEX encode_entities ($c->{MESSAGE}); - print INDEX "

\n"; + if (defined ($c->{MATCH})) { + my $href = $gitweb_url; + $href =~ s/\[FILE\]/uri_escape ($c->{FILE})/ge; + $href =~ s/\[LINE\]/$c->{LINE}/g; + $href =~ s/\[BRANCH\]/uri_escape ($vars{'dist_commit'})/e; + + print INDEX ''; + print INDEX encode_entities (substr ($c->{MESSAGE}, + 0, $c->{MATCH})); + print INDEX ''; + print INDEX encode_entities (substr ($c->{MESSAGE}, + $c->{MATCH})); + } else { + print INDEX encode_entities ($c->{MESSAGE}); + } + print INDEX " ", log_link ($c->{LN}); + print INDEX "

\n"; } else { print INDEX "

{HREF}), "\">"; print INDEX encode_entities ($c->{PRODUCT}); - print INDEX "

\n"; + print INDEX " "; + print INDEX log_link ($c->{LN}); + print INDEX "

\n"; } } print INDEX "\n";