source: gsdl/trunk/perllib/gsprintf.pm@ 16635

Last change on this file since 16635 was 16635, checked in by kjdon, 16 years ago

modified the line where we get rid of the #Updated 13-Mar-2007 bit from a language fragment. Needed to allow for the 'by George Braoudakis' bit as well

  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
RevLine 
[5613]1###########################################################################
2#
3# gsprintf.pm --
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
[7828]25use strict;
26no strict 'refs';
[5613]27
28package gsprintf;
[7828]29require Exporter;
30@gsprintf::ISA=qw(Exporter);
[5613]31
[6934]32use unicode;
[5613]33use util;
34
[15007]35@gsprintf::EXPORT_OK = qw(gsprintf); # functions we can export into namespace
[5613]36
[7828]37
[6945]38# Language-specific resource bundle
39my %specialresourcebundle = ();
[6993]40our $specialoutputencoding; # our, so that it can be changed outside.
[6925]41
[6945]42# Default resource bundle
43my %defaultresourcebundle;
44my $defaultoutputencoding;
[6925]45
[6945]46# English resource bundle
47my %englishresourcebundle;
48my $englishoutputencoding;
49
50# Ignore the OutputEncoding strings in the resource bundles and output all text in UTF-8
51my $outputstringsinUTF8 = 0;
52
53
[5613]54sub gsprintf
55{
56 my ($handle, $text_string, @text_arguments) = @_;
57
58 # Return unless the required arguments were supplied
59 return unless (defined($handle) && defined($text_string));
60
61 # Look up all the strings in the dictionary
[6925]62 $text_string =~ s/(\{[^\}]+\})/&lookup_string($1)/eg;
[5613]63
64 # Resolve the string arguments using sprintf, then write out to the handle
65 print $handle sprintf($text_string, @text_arguments);
66}
67
68
[6920]69sub lookup_string
[5613]70{
[6934]71 my ($stringkey) = @_;
[10228]72 return "" unless defined $stringkey;
[6945]73 # Try the language-specific resource bundle first
74 my $utf8string = $specialresourcebundle{$stringkey};
75 my $outputencoding = $specialoutputencoding;
76
77 # Try the default resource bundle next
78 if (!defined($utf8string)) {
79 # Load the default resource bundle if it is not already loaded
80 &load_default_resource_bundle() if (!%defaultresourcebundle);
81
82 $utf8string = $defaultresourcebundle{$stringkey};
83 $outputencoding = $defaultoutputencoding;
[6925]84 }
[5613]85
[6945]86 # Try the English resource bundle last
87 if (!defined($utf8string)) {
88 # Load the English resource bundle if it is not already loaded
89 &load_english_resource_bundle() if (!%englishresourcebundle);
[6934]90
[6945]91 $utf8string = $englishresourcebundle{$stringkey};
92 $outputencoding = $englishoutputencoding;
93 }
[6934]94
[6945]95 # No matching string was found, so just return the key
96 if (!defined($utf8string)) {
97 return $stringkey;
98 }
99
100 # Return the string matching the key
[6993]101 return $utf8string if (!defined($outputencoding) || $outputstringsinUTF8
102 || $outputencoding eq "utf8");
[6945]103
[6934]104 # If an 8-bit output encoding has been defined, encode the string appropriately
[9969]105 my $encoded=unicode::unicode2singlebyte(&unicode::utf82unicode($utf8string), $outputencoding);
106
107 # If we successfully encoded it, return it
108 if ($encoded) { return $encoded }
109
110 # Otherwise, we can't convert to the requested encoding. return the utf8?
111 $specialoutputencoding='utf8';
112 return $utf8string;
[5613]113}
114
115
[6945]116sub load_language_specific_resource_bundle
[5613]117{
[6934]118 my $language = shift(@_);
[5613]119
[6945]120 # Read the specified resource bundle
121 my $resourcebundlehome = &util::filename_cat("$ENV{'GSDLHOME'}", "perllib");
[11632]122 my $resourcebundlename = "strings_" . $language . ".properties";
[6945]123 my $resourcebundlefile = &util::filename_cat($resourcebundlehome, $resourcebundlename);
124
125 %specialresourcebundle = &read_resource_bundle($resourcebundlefile);
126 return if (!%specialresourcebundle);
127
128 # Read the output encoding to use from the resource bundle
129 if ($ENV{'GSDLOS'} =~ /windows/) {
130 $specialoutputencoding = $specialresourcebundle{"{OutputEncoding.windows}"};
[5613]131 }
[6945]132 else {
[9969]133 # see if there is an encoding set in the appropriate locale env var
134
135 foreach my $envvar ('LC_ALL', 'LANG') {
136 if (!exists $ENV{$envvar}) { next }
137 my $locale=$ENV{$envvar};
138 if ($locale !~ /^\w+\.(.+)$/) { next }
139 my $enc=lc($1);
140 $enc =~ s/-/_/g;
141 if ($enc eq 'utf_8') { $enc='utf8' } # normalise to this name
142 $specialoutputencoding = $enc;
143 return;
144 }
[6945]145 $specialoutputencoding = $specialresourcebundle{"{OutputEncoding.unix}"};
146 }
147}
[5613]148
[6945]149
150sub load_default_resource_bundle
151{
152 # Read the default resource bundle
[6934]153 my $resourcebundlehome = &util::filename_cat("$ENV{'GSDLHOME'}", "perllib");
[11632]154 my $resourcebundlename = "strings.properties";
[6934]155 my $resourcebundlefile = &util::filename_cat($resourcebundlehome, $resourcebundlename);
[5613]156
[6945]157 %defaultresourcebundle = &read_resource_bundle($resourcebundlefile);
[10982]158 if (!%defaultresourcebundle) {
159 # $! will still have the error value for the last failed syscall
160 print STDERR "$! $resourcebundlefile\n";
161 # set something so we don't bother trying to load it again
162 $defaultresourcebundle{0}=undef;
163 return;
164 }
[6945]165
166 # Read the output encoding to use from the resource bundle
167 if ($ENV{'GSDLOS'} =~ /windows/) {
168 $defaultoutputencoding = $defaultresourcebundle{"{OutputEncoding.windows}"};
[5613]169 }
[6945]170 else {
171 $defaultoutputencoding = $defaultresourcebundle{"{OutputEncoding.unix}"};
172 }
173}
[5613]174
[6945]175
176sub load_english_resource_bundle
177{
178 # Ensure the English resource bundle hasn't already been loaded
[9362]179 if (%specialresourcebundle && $specialresourcebundle{"{Language.code}"} eq "en") {
[7828]180 %englishresourcebundle = %specialresourcebundle;
[6945]181 $englishoutputencoding = $specialoutputencoding;
182 }
[10982]183
184 if ($defaultresourcebundle{"{Language.code}"} &&
185 $defaultresourcebundle{"{Language.code}"} eq "en") {
[7828]186 %englishresourcebundle = %defaultresourcebundle;
[6945]187 $englishoutputencoding = $defaultoutputencoding;
188 }
189
190 # Read the English resource bundle
191 my $resourcebundlehome = &util::filename_cat("$ENV{'GSDLHOME'}", "perllib");
[11632]192 my $resourcebundlename = "strings_en.properties";
[6945]193 my $resourcebundlefile = &util::filename_cat($resourcebundlehome, $resourcebundlename);
194
195 %englishresourcebundle = &read_resource_bundle($resourcebundlefile);
196 return if (!%englishresourcebundle);
197
198 # Read the output encoding to use from the resource bundle
199 if ($ENV{'GSDLOS'} =~ /windows/) {
200 $englishoutputencoding = $englishresourcebundle{"{OutputEncoding.windows}"};
201 }
202 else {
203 $englishoutputencoding = $englishresourcebundle{"{OutputEncoding.unix}"};
204 }
205}
206
207
208sub read_resource_bundle
209{
210 my ($resourcebundlefilepath) = shift(@_);
211
212 # Return an empty hash if the specified resource bundle could not be read
213 return () if (!open(RESOURCE_BUNDLE, "<$resourcebundlefilepath"));
214
215 # Load this resource bundle
[6934]216 my @resourcebundlelines = <RESOURCE_BUNDLE>;
[5613]217 close(RESOURCE_BUNDLE);
218
[6945]219 # Parse the resource bundle
220 my %resourcebundle = ();
[7828]221 foreach my $line (@resourcebundlelines) {
[5613]222 # Remove any trailing whitespace
223 $line =~ s/(\s*)$//;
224
225 # Ignore comments and empty lines
226 if ($line !~ /^\#/ && $line ne "") {
227 # Parse key (everything up to the first colon)
228 $line =~ /^([^:]+):(.+)$/;
[6934]229 my $linekey = "{" . $1 . "}";
230 my $linetext = $2;
[16635]231 $linetext =~ s/(\s*)\#\s+Updated\s+(\d?\d-\D\D\D-\d\d\d\d).*$//i;
[5613]232
233 # Map key to text
[6945]234 $resourcebundle{$linekey} = $linetext;
[5613]235 }
236 }
[6934]237
[6945]238 return %resourcebundle;
[5613]239}
240
241
[6945]242sub output_strings_in_UTF8
[6934]243{
[6945]244 $outputstringsinUTF8 = 1;
[6934]245}
246
247
[15007]248sub debug_unicode_string
249{
250 join("",
251 map { $_ > 255 ? # if wide character...
252 sprintf("\\x{%04X}", $_) : # \x{...}
253 chr($_)
254 } unpack("U*", $_[0])); # unpack Unicode characters
255}
256
257
[5613]2581;
Note: See TracBrowser for help on using the repository browser.