1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
# This code is part of Perl distribution Log-Report-Template version 1.03.
# The POD got stripped from this file by OODoc version 3.04.
# For contributors see file ChangeLog.
# This software is copyright (c) 2017-2025 by Mark Overmeer.
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
# SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
#oodist: *** DO NOT USE THIS VERSION FOR PRODUCTION ***
#oodist: This file contains OODoc-style documentation which will get stripped
#oodist: during its release in the distribution. You can use this file for
#oodist: testing, however the code of this development version may be broken!
package Log::Report::Template;{
our $VERSION = '1.03';
}
use base 'Template';
use warnings;
use strict;
use Log::Report 'log-report-template';
use Log::Report::Template::Textdomain ();
# use Log::Report::Template::Extract on demand.
use File::Find qw/find/;
use Scalar::Util qw/blessed/;
use Template::Filters ();
use String::Print ();
sub new
{ my $class = shift;
# Template::Base gladly also calls _init() !!
my $self = $class->SUPER::new(@_) or panic $class->error;
$self;
}
sub _init($)
{ my ($self, $args) = @_;
if(ref $self eq __PACKAGE__)
{ # Instantiated directly
$self->SUPER::_init($args);
}
else
{ # Upgrade from existing Template object
bless $self, __PACKAGE__;
}
my $delim = $self->{LRT_delim} = $args->{DELIMITER} || ':';
my $incl = $args->{INCLUDE_PATH} || [];
$self->{LRT_path} = ref $incl eq 'ARRAY' ? $incl : [ split $delim, $incl ];
my $handle_errors = $args->{processing_errors} || 'NATIVE';
if($handle_errors eq 'EXCEPTION') { $self->{LRT_exceptions} = 1 }
elsif($handle_errors ne 'NATIVE')
{ error __x"illegal value '{value}' for 'processing_errors' option", value => $handle_errors;
}
$self->{LRT_formatter} = $self->_createFormatter($args);
$self->{LRT_trTo} = $args->{translate_to};
$self->{LRT_tdc} = $args->{textdomain_class} || 'Log::Report::Template::Textdomain';
$self->_defaultFilters;
$self;
}
sub _createFormatter($)
{ my ($self, $args) = @_;
my $formatter = $args->{formatter};
return $formatter if ref $formatter eq 'CODE';
my $syntax = $args->{template_syntax} || 'HTML';
my $modifiers = $self->_collectModifiers($args);
my $sp = String::Print->new(
encode_for => ($syntax eq 'HTML' ? $syntax : undef),
modifiers => $modifiers,
);
sub { $sp->sprinti(@_) };
}
#--------------------
sub formatter() { $_[0]->{LRT_formatter} }
sub translateTo(;$)
{ my $self = shift;
my $old = $self->{LRT_trTo};
@_ or return $old;
my $lang = shift;
return $lang # language unchanged?
if ! defined $lang ? ! defined $old : ! defined $old ? 0 : $lang eq $old;
$_->translateTo($lang) for $self->domains;
$self->{LRT_trTo} = $lang;
}
#--------------------
sub addTextdomain($%) {
my ($self, %args) = @_;
if(my $only = $args{only_in_directory})
{ my $delim = $self->{LRT_delim};
$only = $args{only_in_directory} = [ split $delim, $only ]
if ref $only ne 'ARRAY';
my @incl = $self->_incl_path;
foreach my $dir (@$only)
{ next if grep $_ eq $dir, @incl;
error __x"directory {dir} not in INCLUDE_PATH, used by {option}", dir => $dir, option => 'addTextdomain(only_in_directory)';
}
}
$args{templater} ||= $self;
$args{lang} ||= $self->translateTo;
my $name = $args{name};
my $td_class= $self->{LRT_tdc};
my $domain;
if($domain = textdomain $name, 'EXISTS')
{ $td_class->upgrade($domain, %args);
}
else
{ $domain = textdomain($td_class->new(%args));
}
my $func = $domain->function;
if((my $other) = grep $func eq $_->function, $self->domains)
{ error __x"translation function '{func}' already in use by textdomain '{name}'", func => $func, name => $other->name;
}
$self->{LRT_domains}{$name} = $domain;
# call as function or as filter
$self->_stash->{$func} = $domain->translationFunction($self->service);
$self->context->define_filter($func => $domain->translationFilter, 1);
$domain;
}
sub _incl_path() { @{ $_[0]->{LRT_path}} }
sub _stash() { $_[0]->service->context->stash }
sub domains() { values %{$_[0]->{LRT_domains} } }
sub domain($) { $_[0]->{LRT_domains}{$_[1]} }
sub extract(%)
{ my ($self, %args) = @_;
eval "require Log::Report::Template::Extract";
panic $@ if $@;
my $stats = $args{show_stats} || 0;
my $charset = $args{charset} || 'UTF-8';
my $write = exists $args{write_tables} ? $args{write_tables} : 1;
my @filenames;
if(my $fns = $args{filenames} || $args{filename})
{ push @filenames, ref $fns eq 'ARRAY' ? @$fns : $fns;
}
else
{ my $match = $args{filename_match} || qr/\.tt2?$/;
my $filter = sub {
my $name = $File::Find::name;
push @filenames, $name if -f $name && $name =~ $match;
};
foreach my $dir ($self->_incl_path)
{ trace "scan $dir for template files";
find { wanted => sub { $filter->($File::Find::name) }, no_chdir => 1}, $dir;
}
}
foreach my $domain ($self->domains)
{ my $function = $domain->function;
my $name = $domain->name;
trace "extracting msgids for '$function' from domain '$name'";
my $extr = Log::Report::Template::Extract->new(
lexicon => $domain->lexicon,
domain => $name,
pattern => "TT2-$function",
charset => $charset,
);
$extr->process($_)
for @filenames;
$extr->showStats;
$extr->write if $write;
}
}
#--------------------
sub _cols_factory(@)
{ my $self = shift;
my $params = ref $_[-1] eq 'HASH' ? pop : undef;
my @blocks = @_ ? @_ : 'td';
if(@blocks==1 && $blocks[0] =~ /\$[1-9]/)
{ my $pattern = shift @blocks;
return sub { # second syntax
my @cols = split /\t/, $_[0];
$pattern =~ s/\$([0-9]+)/$cols[$1-1] || ''/ge;
$pattern;
}
}
sub { # first syntax
my @cols = split /\t/, $_[0];
my @wrap = @blocks;
my @out;
while(@cols)
{ push @out, "<$wrap[0]>$cols[0]</$wrap[0]>";
shift @cols;
shift @wrap if @wrap > 1;
}
join '', @out;
}
}
sub _br_factory(@)
{ my $self = shift;
my $params = ref $_[-1] eq 'HASH' ? pop : undef;
return sub {
my $templ = shift or return '';
for($templ)
{ s/\A[\s\n]*\n//; # leading blank lines
s/\n[\s\n]*\n/\n/g; # double blank links
s/\n[\s\n]*\z/\n/; # trailing blank lines
s/\s*\n/<br>\n/gm; # trailing blanks per line
}
$templ;
}
}
sub _defaultFilters()
{ my $self = shift;
my $context = $self->context;
$context->define_filter(cols => \&_cols_factory, 1);
$context->define_filter(br => \&_br_factory, 1);
$self;
}
sub _collectModifiers($)
{ my ($self, $args) = @_;
# First match will be used
my @modifiers = @{$args->{modifiers} || []};
# More default extensions expected here. String::Print already adds a bunch.
\@modifiers;
}
{ # Log::Report exports 'error', and we use that. Our base-class
# 'Template' however, also has a method named error() as well.
# Gladly, they can easily be separated.
# no warnings 'redefined' misbehaves, at least for perl 5.16.2
no warnings;
sub error()
{
blessed $_[0] && $_[0]->isa('Template')
or return Log::Report::error(@_);
$_[0]->{LRT_exceptions}
or return shift->SUPER::error(@_);
@_ or panic "inexpected call to collect errors()";
# convert Template errors into Log::Report errors
Log::Report::error($_[1]);
}
}
#--------------------
1;
|