10 $usage = "Usage: mo-score [--detail] [--alt] [--extras] [--html] [--tex] [--split] <task1> <task2> ...";
11 while (($arg = $ARGV[0]) =~ /^--([a-z]+)$/) {
14 if (!eval "defined $var") { die $usage; }
21 print STDERR "Scanning contestants... ";
22 open (CT, "bin/mo-get-users --full |") || die "Cannot get list of contestants";
26 ($u eq "somebody") && next;
30 print STDERR 0+keys %users, "\n";
32 print STDERR "Scanning exceptions... ";
33 if ($extras && open (EX, "exceptions")) {
36 (/^$/ || /^#/) && next;
39 defined $users{$u} || die "Unknown user $u";
40 while (@a) { $extra{$u} += shift @a; }
44 } else { print STDERR "none\n"; }
46 print STDERR "Scanning task results... ";
47 $need_tasks = join("|", @ARGV);
50 foreach $u (keys %users) {
51 opendir (D, "testing/$u") or next;
52 foreach $t (readdir(D)) {
54 $t =~ /$need_tasks/ || next;
56 $tt = "testing/$u/$t/points" . ($alt ? ".alt" : "");
58 print STDERR "$u/$t ";
59 open (X, $tt) || die "Unable to open $tt";
62 /^(\S+) (-?\d+)\s*(.*)/ || die "Parse error: $_";
67 $ttest =~ s/[^0-9]//g unless $split;
68 $known_tests{$t}{$ttest} = 1;
70 if ($tpts == 0 && $trem ne "OK") {
71 if ($trem =~ /^Compile /) { $cmt = "CE"; }
72 elsif ($trem =~ /^Time limit exceeded/) { $cmt = "TO"; }
73 elsif ($trem =~ /^Exited with error /) { $cmt = "RE"; }
74 elsif ($trem =~ /^Caught fatal signal /) { $cmt = "SG"; }
75 elsif ($trem =~ /^([A-Za-z])\S*\s+([A-Za-z])/) {
76 ($cmt = "$1$2") =~ tr/a-z/A-Z/;
78 elsif ($trem =~ /^Wrong answer/) { $cmt = "WA"; }
79 if (!defined $messages{$trem}) {
80 $messages{$trem} = $cmt;
81 if (!defined $error_codes{$cmt}) {
82 $error_codes{$cmt} = $trem;
84 $error_codes{$cmt} .= ", $trem";
88 if (!defined($results{$u}{$t}{$ttest}) || $results{$u}{$t}{$ttest} > $tpts) {
89 $results{$u}{$t}{$ttest} = $tpts;
90 $comment{$u}{$t}{$ttest} = $cmt;
95 foreach my $t (keys %known_tasks) {
97 foreach my $pts (values %{$results{$u}{$t}}) { $total{$u}{$t} += $pts; }
103 print STDERR "Creating table template... ";
104 @header = ("Rank","User","Name");
105 @body = ('','$u','$users{$u}');
107 @footer = ('"Total"','','');
109 push @header, "Extra";
110 push @body, '$extra{$u}';
112 push @bodysums, $col;
113 push @footer, "sum($col)";
116 defined $known_tasks{$t} || die "Unknown task $t";
117 push @header, substr($t, 0, 4);
118 push @body, "(\$xx = \$total{\$u}{'$t'}) > 0 ? \$xx : 0";
120 push @footer, "sum($col)";
121 push @bodysums, $col;
123 foreach $s (sort { $a <=> $b } keys %{$known_tests{$t}}) {
125 push @body, "\$comment{\$u}{'$t'}{'$s'}";
127 push @footer, "sum($col)";
131 push @header, "Total";
132 push @body, join('+', map { $_ = "\$$_" } @bodysums);
134 push @footer, "sum($col)";
137 print STDERR "h: ", join(':',@header), "\n" if $debug;
138 print STDERR "b: ", join(':',@body), "\n" if $debug;
139 print STDERR "f: ", join(':',@footer), "\n" if $debug;
141 print STDERR "Filling in results... ";
143 foreach $u (keys %users) {
145 foreach my $c (@body) {
146 $c =~ s/\$(\d+)/\$\$row[$1]/g;
148 push @$row, (defined $x ? $x : '-');
150 print STDERR "row: ", join(':',@$row), "\n" if $debug;
155 print STDERR "Sorting... ";
156 $sortcol = @{$table[0]} - 1;
160 $p = $$b[$sortcol] <=> $$a[$sortcol];
161 ($an = $$a[$namecol]) =~ s/(\S+)\s+(\S+)/$2 $1/;
162 ($bn = $$b[$namecol]) =~ s/(\S+)\s+(\S+)/$2 $1/;
163 $p ? $p : ($an cmp $bn);
166 while ($i < @table) {
168 while ($i < @table && ${$table[$i]}[$sortcol] == ${$table[$j]}[$sortcol]) {
172 ${table[$j]}[0] = "$i.";
174 ${table[$j]}[0] = $j+1 . ".-" . $i . ".";
176 while ($j < $i) { ${table[$j++]}[0] = ""; };
181 print STDERR "Attaching headers and footers... ";
182 sub sum { my $col=shift @_; my $t=0; foreach my $z (0..@table-1) { $t += ${$table[$z]}[$col]; } $t; }
183 map { $_ = eval $_; } @footer;
184 push @table, \@footer;
185 unshift @table, \@header;
189 foreach $r (@table) { print join(':',@$r), "\n"; }
191 print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html40/strict.dtd">', "\n";
192 print "<HTML><HEAD><TITLE>Rank list</TITLE></HEAD><BODY>\n";
193 print "<H1>Rank list</H1>\n";
196 &printHtmlHeader(\@perm);
199 foreach $r (@table[1..($#table - 1)]) {
200 &printHtmlRow(@{$r}[@perm]);
204 &printHtmlRow(@{$table[$#table]}[@perm]);
208 print "<H2>Error codes</H2><UL>\n";
209 foreach $r (sort keys %error_codes) { print "<LI>$r: $error_codes{$r}\n"; }
212 print "</BODY></HTML>\n";
214 print "\\error{TeX output not supported yet!}\n";
216 foreach $r (@table) { print join("\t",@$r), "\n"; }
218 foreach $r (sort keys %error_codes) { print "$r: $error_codes{$r}\n"; }
223 print "<TR>", join('',map {
224 if ($hdr) { $_ = "<TH>$_"; }
225 else { $_ = "<TD align=" . (/^[0-9A-Z-]+$/ ? "right" : "left") . (length($_) > 14 ? " width=150" : "") . ">$_"; }
230 sub printHtmlHeader {
234 my $colspec = "<colgroup span=3>";
242 $hdr1 = "<th rowspan=2>Rank<th rowspan=2>User<th rowspan=2>Name";
243 for my $task (@tasks) {
245 my $nSub = scalar(keys %{$known_tests{$task}});
248 map { push @$perm, $p++ } (1..$nSub);
249 push @$perm, $p - $nSub - 1;
251 $colspec .= "<colgroup span='" . $nSub . "'>\n";
252 $colspec .= "<colgroup span='1'>\n";
253 $hdr1 .= "<th colspan='" . ($nSub + 1) . "' style='border-bottom:1px solid black;'>$task";
254 $hdr2 .= join("", map { "<th>$_" } sort {$a <=> $b} keys %{$known_tests{$task}});
255 $hdr2 .= "<th>Total";
258 $hdr1 .= "<th rowspan='2'>Total";
260 } else { ## no detail
262 $hdr1 = "<th>Rank<th>User<th>Name";
264 for my $task (@tasks) {
266 $hdr1 .= "<th>$task";
268 $hdr1 .= "<th>Total";
269 $colspec .= "<colgroup span='" . scalar (@tasks) . "'>";
274 print "<TABLE rules=groups frame=all border='1' cellpadding='2'>\n";
275 print "$colspec<colgroup span='1'>\n";
276 print "<tr>$hdr1</tr>\n";
277 print "<tr>$hdr2</tr>\n" if $detail;