]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/Log/Entry.pm
Heeere's Plack/PSGI!
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log / Entry.pm
index e849876d2a67a32f9abe138457c63d4242e652a8..beceae7e2f1cf01dc4807570f8fb97c4ce46ab58 100644 (file)
@@ -3,21 +3,16 @@ package Gruntmaster::Page::Log::Entry;
 use 5.014000;
 use strict;
 use warnings;
-use parent qw/Exporter/;
-our @EXPORT_OK = qw/generate/;
+use Gruntmaster::Page::Base log_entry => 'Job <tmpl_var id>';
+our @ISA = qw/Gruntmaster::Page::Base/;
 our $VERSION = '0.001';
 
-use constant TITLE => 'Job <tmpl_var id>';
+use constant TEMPLATES => {
+       en => <<'HTML',
+Compiler output:
+<pre><tmpl_var errors></pre>
 
-use Fcntl qw/:flock/;
-use HTML::Template::Compiled;
-use IO::File;
-use POSIX qw/strftime/;
-use YAML::Any qw/LoadFile/;
-use Gruntmaster::Page::Common qw/header footer/;
-
-my %templates = (
-  en => <<'HTML',
+Results:
 <table border>
 <thead>
 <tr><th>Test number<th>Result<th>Time
@@ -26,29 +21,25 @@ my %templates = (
 </tmpl_loop>
 </table>
 HTML
-);
-
-$templates{$_}  = header($_, TITLE) . $templates{$_} for keys %templates;
-$templates{$_} .= footer $_ for keys %templates;
+};
 
-sub generate{
-  my ($path, $lang) = @_;
-  my $id = ($path =~ m,log/(.*)/index,)[0];
-  $path =~ s,/index\.html,,;
-  my $template = $templates{$lang};
+sub _generate{
+       my ($self, $htc, $lang, $logger, $ct, $id) = @_;
+       debug $logger => "language is $lang, contest is $ct and id is $id";
+       local $Gruntmaster::Data::contest = $ct;
 
-  my $htc = HTML::Template::Compiled->new(scalarref => \$template);
-  flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH;
-  my $meta = LoadFile "$path/meta.yml";
+       my @tests = ();
 
-  my @tests = map {
-       $_->{time} = sprintf "%.4fs", $_->{time};
-       $_
-  } @{$meta->{results}};
+       eval {
+               @tests = map {
+                       $_->{time} = sprintf "%.4fs", $_->{time};
+                       $_
+               } @{job_results $id};
+       };
 
-  $htc->param(id => $id);
-  $htc->param(tests => \@tests);
-  $htc->output
+       $htc->param(id => $id);
+       $htc->param(tests => \@tests);
+       $htc->param(errors => job_errors $id)
 }
 
 1
This page took 0.02338 seconds and 4 git commands to generate.