]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page/Log/Entry.pm
Initial commit
[gruntmaster-page.git] / lib / Gruntmaster / Page / Log / Entry.pm
CommitLineData
42546e6c
MG
1package Gruntmaster::Page::Log::Entry;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7our @EXPORT_OK = qw/generate/;
8our $VERSION = '0.001';
9
10use constant TITLE => 'Job <tmpl_var id>';
11
12use Fcntl qw/:flock/;
13use HTML::Template::Compiled;
14use IO::File;
15use POSIX qw/strftime/;
16use YAML::Any qw/LoadFile/;
17use Gruntmaster::Page qw/header footer/;
18
19my %templates = (
20 en => <<'HTML',
21<table border>
22<thead>
23<tr><th>Test number<th>Result<th>Time
24<tbody>
25<tmpl_loop tests><tr><td><tmpl_var id><td class="r<tmpl_var result>"><tmpl_var result_text><td><tmpl_var time>
26</tmpl_loop>
27</table>
28HTML
29);
30
31$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
32$templates{$_} .= footer $_ for keys %templates;
33
34sub generate{
35 my ($path, $lang) = @_;
36 $path = ($path =~ m,log/(.*)/index,)[0];
37 my $template = $templates{$lang};
38
39 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
40 flock my $metafh = IO::File->new("<log/$path/meta.yml"), LOCK_SH;
41 my $meta = LoadFile "log/$path/meta.yml";
42
43 my @tests = map {
44 $_->{time} = sprintf "%.4fs", $_->{time};
45 $_
46 } @{$meta->{results}};
47
48 $htc->param(id => $path);
49 $htc->param(tests => \@tests);
50 $htc->output
51}
52
531
This page took 0.025991 seconds and 4 git commands to generate.