Debugcode entfernt.
[kivitendo-erp.git] / SL / Locale.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 # Contributors: Thomas Bayen <bayen@gmx.de>
16 #               Antti Kaihola <akaihola@siba.fi>
17 #               Moritz Bunkus (tex code)
18 #
19 # This program is free software; you can redistribute it and/or modify
20 # it under the terms of the GNU General Public License as published by
21 # the Free Software Foundation; either version 2 of the License, or
22 # (at your option) any later version.
23 #
24 # This program is distributed in the hope that it will be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #======================================================================
32 #
33 # Translations and number/date formatting
34 #
35 #======================================================================
36
37 package Locale;
38
39 use Text::Iconv;
40
41 use SL::LXDebug;
42 use SL::Common;
43 use SL::Inifile;
44
45 sub new {
46   $main::lxdebug->enter_sub();
47
48   my ($type, $country, $NLS_file) = @_;
49
50   my $self = {};
51   bless $self, $type;
52
53   $country  =~ s|.*/||;
54   $country  =~ s|\.||g;
55   $NLS_file =~ s|.*/||;
56
57   $self->_init($country, $NLS_file);
58
59   $main::lxdebug->leave_sub();
60
61   return $self;
62 }
63
64 sub _init {
65   my $self     = shift;
66   my $country  = shift;
67   my $NLS_file = shift;
68
69   if ($country && -d "locale/$country") {
70     local *IN;
71     $self->{countrycode} = $country;
72     if (open(IN, "<", "locale/$country/$NLS_file")) {
73       my $code = join("", <IN>);
74       eval($code);
75       close(IN);
76     }
77
78     if (open IN, "<", "locale/$country/charset") {
79       $self->{charset} = <IN>;
80       close IN;
81
82       chomp $self->{charset};
83
84     } else {
85       $self->{charset} = Common::DEFAULT_CHARSET;
86     }
87
88     $self->_read_special_chars_file($country);
89
90     my $db_charset         = $main::dbcharset || Common::DEFAULT_CHARSET;
91
92     $self->{iconv}         = Text::Iconv->new($self->{charset}, $db_charset);
93     $self->{iconv_english} = Text::Iconv->new('ASCII',          $db_charset);
94     $self->{iconv_iso8859} = Text::Iconv->new('ISO-8859-15',    $db_charset);
95   }
96
97   $self->{NLS_file} = $NLS_file;
98
99   push @{ $self->{LONG_MONTH} },
100     ("January",   "February", "March",    "April",
101      "May ",      "June",     "July",     "August",
102      "September", "October",  "November", "December");
103   push @{ $self->{SHORT_MONTH} },
104     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
105 }
106
107 sub _handle_markup {
108   my $self    = shift;
109   my $str     = shift;
110
111   my $escaped = 0;
112   my $new_str = '';
113
114   for (my $i = 0; $i < length $str; $i++) {
115     my $char = substr $str, $i, 1;
116
117     if ($escaped) {
118       if ($char eq 'n') {
119         $new_str .= "\n";
120
121       } elsif ($char eq 'r') {
122         $new_str .= "\r";
123
124       } elsif ($char eq 's') {
125         $new_str .= ' ';
126
127       } elsif ($char eq 'x') {
128         $new_str .= chr(hex(substr($str, $i + 1, 2)));
129         $i       += 2;
130
131       } else {
132         $new_str .= $char;
133       }
134
135       $escaped  = 0;
136
137     } elsif ($char eq '\\') {
138       $escaped  = 1;
139
140     } else {
141       $new_str .= $char;
142     }
143   }
144
145   return $new_str;
146 }
147
148 sub _read_special_chars_file {
149   my $self    = shift;
150   my $country = shift;
151
152   if (! -f "locale/$country/special_chars") {
153     $self->{special_chars_map} = {};
154     return;
155   }
156
157   $self->{special_chars_map} = Inifile->new("locale/$country/special_chars", 'verbatim' => 1);
158
159   foreach my $format (keys %{ $self->{special_chars_map} }) {
160     next if (($format eq 'FILE') || ($format eq 'ORDER') || (ref $self->{special_chars_map}->{$format} ne 'HASH'));
161
162     if ($format ne lc $format) {
163       $self->{special_chars_map}->{lc $format} = $self->{special_chars_map}->{$format};
164       delete $self->{special_chars_map}->{$format};
165       $format = lc $format;
166     }
167
168     my $scmap = $self->{special_chars_map}->{$format};
169     my $order = $scmap->{order};
170     delete $scmap->{order};
171
172     foreach my $key (keys %{ $scmap }) {
173       $scmap->{$key} = $self->_handle_markup($scmap->{$key});
174
175       my $new_key    = $self->_handle_markup($key);
176
177       if ($key ne $new_key) {
178         $scmap->{$new_key} = $scmap->{$key};
179         delete $scmap->{$key};
180       }
181     }
182
183     $self->{special_chars_map}->{"${format}-reverse"}          = { reverse %{ $scmap } };
184
185     $scmap->{order}                                            = [ map { $self->_handle_markup($_) } split m/\s+/, $order ];
186     $self->{special_chars_map}->{"${format}-reverse"}->{order} = [ grep { $_ } map { $scmap->{$_} } reverse @{ $scmap->{order} } ];
187   }
188 }
189
190 sub text {
191   my $self = shift;
192   my $text = shift;
193
194   if (exists $self->{texts}->{$text}) {
195     $text = $self->{iconv}->convert($self->{texts}->{$text});
196   } else {
197     $text = $self->{iconv_english}->convert($text);
198   }
199
200   if (@_) {
201     $text = Form->format_string($text, @_);
202   }
203
204   return $text;
205 }
206
207 sub findsub {
208   $main::lxdebug->enter_sub();
209
210   my ($self, $text) = @_;
211
212   if (exists $self->{subs}{$text}) {
213     $text = $self->{subs}{$text};
214   } else {
215     if ($self->{countrycode} && $self->{NLS_file}) {
216       Form->error(
217          "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
218     }
219   }
220
221   $main::lxdebug->leave_sub();
222
223   return $text;
224 }
225
226 sub date {
227   $main::lxdebug->enter_sub();
228
229   my ($self, $myconfig, $date, $longformat) = @_;
230
231   my $longdate  = "";
232   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
233
234   if ($date) {
235
236     # get separator
237     $spc = $myconfig->{dateformat};
238     $spc =~ s/\w//g;
239     $spc = substr($spc, 1, 1);
240
241     if ($date =~ /\D/) {
242       if ($myconfig->{dateformat} =~ /^yy/) {
243         ($yy, $mm, $dd) = split /\D/, $date;
244       }
245       if ($myconfig->{dateformat} =~ /^mm/) {
246         ($mm, $dd, $yy) = split /\D/, $date;
247       }
248       if ($myconfig->{dateformat} =~ /^dd/) {
249         ($dd, $mm, $yy) = split /\D/, $date;
250       }
251     } else {
252       $date = substr($date, 2);
253       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
254     }
255
256     $dd *= 1;
257     $mm--;
258     $yy = ($yy < 70) ? $yy + 2000 : $yy;
259     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
260
261     if ($myconfig->{dateformat} =~ /^dd/) {
262       if (defined $longformat && $longformat == 0) {
263         $mm++;
264         $dd = "0$dd" if ($dd < 10);
265         $mm = "0$mm" if ($mm < 10);
266         $longdate = "$dd$spc$mm$spc$yy";
267       } else {
268         $longdate = "$dd";
269         $longdate .= ($spc eq '.') ? ". " : " ";
270         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
271       }
272     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
273
274       # Use German syntax with the ISO date style "yyyy-mm-dd" because
275       # Lx-Office is mainly used in Germany or German speaking countries.
276       if (defined $longformat && $longformat == 0) {
277         $mm++;
278         $dd = "0$dd" if ($dd < 10);
279         $mm = "0$mm" if ($mm < 10);
280         $longdate = "$yy-$mm-$dd";
281       } else {
282         $longdate = "$dd. ";
283         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
284       }
285     } else {
286       if (defined $longformat && $longformat == 0) {
287         $mm++;
288         $dd = "0$dd" if ($dd < 10);
289         $mm = "0$mm" if ($mm < 10);
290         $longdate = "$mm$spc$dd$spc$yy";
291       } else {
292         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
293       }
294     }
295
296   }
297
298   $main::lxdebug->leave_sub();
299
300   return $longdate;
301 }
302
303 sub parse_date {
304   $main::lxdebug->enter_sub();
305
306   my ($self, $myconfig, $date, $longformat) = @_;
307
308   unless ($date) {
309     $main::lxdebug->leave_sub();
310     return ();
311   }
312
313   # get separator
314   $spc = $myconfig->{dateformat};
315   $spc =~ s/\w//g;
316   $spc = substr($spc, 1, 1);
317
318   if ($date =~ /\D/) {
319     if ($myconfig->{dateformat} =~ /^yy/) {
320       ($yy, $mm, $dd) = split /\D/, $date;
321     } elsif ($myconfig->{dateformat} =~ /^mm/) {
322       ($mm, $dd, $yy) = split /\D/, $date;
323     } elsif ($myconfig->{dateformat} =~ /^dd/) {
324       ($dd, $mm, $yy) = split /\D/, $date;
325     }
326   } else {
327     $date = substr($date, 2);
328     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
329   }
330
331   $dd *= 1;
332   $mm *= 1;
333   $yy = ($yy < 70) ? $yy + 2000 : $yy;
334   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
335
336   $main::lxdebug->leave_sub();
337   return ($yy, $mm, $dd);
338 }
339
340 sub reformat_date {
341   $main::lxdebug->enter_sub();
342
343   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
344
345   $main::lxdebug->leave_sub() and return "" unless ($date);
346
347   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
348
349   $output_format =~ /d+/;
350   substr($output_format, $-[0], $+[0] - $-[0]) =
351     sprintf("%0" . (length($&)) . "d", $dd);
352
353   $output_format =~ /m+/;
354   substr($output_format, $-[0], $+[0] - $-[0]) =
355     sprintf("%0" . (length($&)) . "d", $mm);
356
357   $output_format =~ /y+/;
358   if (length($&) == 2) {
359     $yy -= $yy >= 2000 ? 2000 : 1900;
360   }
361   substr($output_format, $-[0], $+[0] - $-[0]) =
362     sprintf("%0" . (length($&)) . "d", $yy);
363
364   $main::lxdebug->leave_sub();
365
366   return $output_format;
367 }
368
369 sub quote_special_chars {
370   my $self   = shift;
371   my $format = lc shift;
372   my $string = shift;
373
374   if ($self->{special_chars_map} && $self->{special_chars_map}->{$format} && $self->{special_chars_map}->{$format}->{order}) {
375     my $scmap = $self->{special_chars_map}->{$format};
376
377     map { $string =~ s/\Q${_}\E/$scmap->{$_}/g } @{ $scmap->{order} };
378   }
379
380   return $string;
381 }
382
383 sub unquote_special_chars {
384   my $self    = shift;
385   my $format  = shift;
386
387   return $self->quote_special_chars("${format}-reverse", shift);
388 }
389
390 sub remap_special_chars {
391   my $self       = shift;
392   my $src_format = shift;
393   my $dst_format = shift;
394
395   return $self->quote_special_chars($dst_format, $self->quote_special_chars("${src_format}-reverse", shift));
396 }
397
398 1;