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
|
# This code is part of Perl distribution Log-Report-Lexicon version 1.14.
# The POD got stripped from this file by OODoc version 3.04.
# For contributors see file ChangeLog.
# This software is copyright (c) 2007-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!
#oorestyle: old style disclaimer to be removed.
# This code is part of distribution Log-Report-Lexicon. Meta-POD processed
# with OODoc into POD and HTML manual-pages. See README.md
# Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
package Log::Report::Translator::POT;{
our $VERSION = '1.14';
}
use base 'Log::Report::Translator';
use warnings;
use strict;
use Log::Report 'log-report-lexicon';
use Log::Report::Lexicon::Index;
use Log::Report::Lexicon::POTcompact;
use POSIX qw/:locale_h/;
use Scalar::Util qw/blessed/;
use File::Spec ();
my %lexicons;
sub _fn_to_lexdir($);
# Work-around for missing LC_MESSAGES on old Perls and Windows
{ no warnings;
eval "&LC_MESSAGES";
*LC_MESSAGES = sub(){5} if $@;
}
#--------------------
sub new(@)
{ my $class = shift;
# Caller cannot wait until init()
$class->SUPER::new(callerfn => (caller)[1], @_);
}
sub init($)
{ my ($self, $args) = @_;
$self->SUPER::init($args);
my $lex = delete $args->{lexicons} || delete $args->{lexicon} ||
(ref $self eq __PACKAGE__ ? [] : _fn_to_lexdir $args->{callerfn});
+($Log::Report::Lexicon::Index::VERSION || 999) >= 1.00
or error __x"You have to upgrade Log::Report::Lexicon to at least 1.00";
my @lex;
foreach my $dir (ref $lex eq 'ARRAY' ? @$lex : $lex)
{ # lexicon indexes are shared
my $l = $lexicons{$dir} ||= Log::Report::Lexicon::Index->new($dir);
$l->index; # index the files now
push @lex, $l;
}
$self->{LRTP_lexicons} = \@lex;
$self->{LRTP_charset} = $args->{charset};
$self;
}
sub _fn_to_lexdir($)
{ my $fn = shift;
$fn =~ s/\.pm$//;
File::Spec->catdir($fn, 'messages');
}
#--------------------
sub lexicons() { @{ $_[0]->{LRTP_lexicons}} }
sub charset() { $_[0]->{LRTP_charset} }
#--------------------
sub translate($;$$)
{ my ($self, $msg, $lang, $ctxt) = @_;
#!!! do not debug with $msg in a print: recursion
my $domain = $msg->{_domain};
my $dname = blessed $domain ? $domain->name : $domain;
my $locale = $lang || setlocale(LC_MESSAGES)
or return $self->SUPER::translate($msg, $lang, $ctxt);
my $pot
= exists $self->{LRTP_pots}{$dname}{$locale}
? $self->{LRTP_pots}{$dname}{$locale}
: $self->load($dname, $locale);
($pot ? $pot->msgstr($msg->{_msgid}, $msg->{_count}, $ctxt) : undef)
|| $self->SUPER::translate($msg, $lang, $ctxt);
}
sub load($$)
{ my ($self, $dname, $locale) = @_;
foreach my $lex ($self->lexicons)
{ my $fn = $lex->find($dname, $locale);
!$fn && $lex->list($dname)
and last; # there are tables for dname, but not our lang
$fn or next;
my ($ext) = lc($fn) =~ m/\.(\w+)$/;
my $class
= $ext eq 'mo' ? 'Log::Report::Lexicon::MOTcompact'
: $ext eq 'po' ? 'Log::Report::Lexicon::POTcompact'
: error __x"unknown translation table extension '{ext}' in {filename}", ext => $ext, filename => $fn;
info __x"read table {filename} as {class} for {dname} in {locale}", filename => $fn, class => $class, dname => $dname, locale => $locale
if $dname ne 'log-report'; # avoid recursion
eval "require $class" or panic $@;
return $self->{LRTP_pots}{$dname}{$locale} = $class->read($fn, charset => $self->charset);
}
$self->{LRTP_pots}{$dname}{$locale} = undef;
}
1;
|