Die verschiedenen Iconv-Handle immer anlegen, auch wenn das locale-Verzeichnis nicht...
[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   $self->{charset}     = Common::DEFAULT_CHARSET;
70   $self->{countrycode} = $country;
71   $self->{NLS_file}    = $NLS_file;
72
73   if ($country && -d "locale/$country") {
74     local *IN;
75     if (open(IN, "<", "locale/$country/$NLS_file")) {
76       my $code = join("", <IN>);
77       eval($code);
78       close(IN);
79     }
80
81     if (open IN, "<", "locale/$country/charset") {
82       $self->{charset} = <IN>;
83       close IN;
84
85       chomp $self->{charset};
86     }
87   }
88
89   my $db_charset            = $main::dbcharset || Common::DEFAULT_CHARSET;
90
91   $self->{iconv}            = Text::Iconv->new($self->{charset}, $db_charset);
92   $self->{iconv_reverse}    = Text::Iconv->new($db_charset,      $self->{charset});
93   $self->{iconv_english}    = Text::Iconv->new('ASCII',          $db_charset);
94   $self->{iconv_iso8859}    = Text::Iconv->new('ISO-8859-15',    $db_charset);
95   $self->{iconv_to_iso8859} = Text::Iconv->new($db_charset,      'ISO-8859-15');
96
97   $self->_read_special_chars_file($country);
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 = $self->{iconv}->convert($scmap->{order});
170     delete $scmap->{order};
171
172     foreach my $key (keys %{ $scmap }) {
173       $scmap->{$key} = $self->_handle_markup($self->{iconv}->convert($scmap->{$key}));
174
175       my $new_key    = $self->_handle_markup($self->{iconv}->convert($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   my $text_rev      = $self->{iconv_reverse}->convert($text);
212
213   if (exists $self->{subs}{$text_rev}) {
214     $text = $self->{subs}{$text_rev};
215   } elsif ($self->{countrycode} && $self->{NLS_file}) {
216     Form->error("$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
217   }
218
219   $main::lxdebug->leave_sub();
220
221   return $text;
222 }
223
224 sub date {
225   $main::lxdebug->enter_sub();
226
227   my ($self, $myconfig, $date, $longformat) = @_;
228
229   my $longdate  = "";
230   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
231
232   if ($date) {
233
234     # get separator
235     $spc = $myconfig->{dateformat};
236     $spc =~ s/\w//g;
237     $spc = substr($spc, 1, 1);
238
239     if ($date =~ /\D/) {
240       if ($myconfig->{dateformat} =~ /^yy/) {
241         ($yy, $mm, $dd) = split /\D/, $date;
242       }
243       if ($myconfig->{dateformat} =~ /^mm/) {
244         ($mm, $dd, $yy) = split /\D/, $date;
245       }
246       if ($myconfig->{dateformat} =~ /^dd/) {
247         ($dd, $mm, $yy) = split /\D/, $date;
248       }
249     } else {
250       $date = substr($date, 2);
251       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
252     }
253
254     $dd *= 1;
255     $mm--;
256     $yy = ($yy < 70) ? $yy + 2000 : $yy;
257     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
258
259     if ($myconfig->{dateformat} =~ /^dd/) {
260       if (defined $longformat && $longformat == 0) {
261         $mm++;
262         $dd = "0$dd" if ($dd < 10);
263         $mm = "0$mm" if ($mm < 10);
264         $longdate = "$dd$spc$mm$spc$yy";
265       } else {
266         $longdate = "$dd";
267         $longdate .= ($spc eq '.') ? ". " : " ";
268         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
269       }
270     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
271
272       # Use German syntax with the ISO date style "yyyy-mm-dd" because
273       # Lx-Office is mainly used in Germany or German speaking countries.
274       if (defined $longformat && $longformat == 0) {
275         $mm++;
276         $dd = "0$dd" if ($dd < 10);
277         $mm = "0$mm" if ($mm < 10);
278         $longdate = "$yy-$mm-$dd";
279       } else {
280         $longdate = "$dd. ";
281         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
282       }
283     } else {
284       if (defined $longformat && $longformat == 0) {
285         $mm++;
286         $dd = "0$dd" if ($dd < 10);
287         $mm = "0$mm" if ($mm < 10);
288         $longdate = "$mm$spc$dd$spc$yy";
289       } else {
290         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
291       }
292     }
293
294   }
295
296   $main::lxdebug->leave_sub();
297
298   return $longdate;
299 }
300
301 sub parse_date {
302   $main::lxdebug->enter_sub();
303
304   my ($self, $myconfig, $date, $longformat) = @_;
305
306   unless ($date) {
307     $main::lxdebug->leave_sub();
308     return ();
309   }
310
311   # get separator
312   $spc = $myconfig->{dateformat};
313   $spc =~ s/\w//g;
314   $spc = substr($spc, 1, 1);
315
316   if ($date =~ /\D/) {
317     if ($myconfig->{dateformat} =~ /^yy/) {
318       ($yy, $mm, $dd) = split /\D/, $date;
319     } elsif ($myconfig->{dateformat} =~ /^mm/) {
320       ($mm, $dd, $yy) = split /\D/, $date;
321     } elsif ($myconfig->{dateformat} =~ /^dd/) {
322       ($dd, $mm, $yy) = split /\D/, $date;
323     }
324   } else {
325     $date = substr($date, 2);
326     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
327   }
328
329   $dd *= 1;
330   $mm *= 1;
331   $yy = ($yy < 70) ? $yy + 2000 : $yy;
332   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
333
334   $main::lxdebug->leave_sub();
335   return ($yy, $mm, $dd);
336 }
337
338 sub reformat_date {
339   $main::lxdebug->enter_sub();
340
341   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
342
343   $main::lxdebug->leave_sub() and return "" unless ($date);
344
345   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
346
347   $output_format =~ /d+/;
348   substr($output_format, $-[0], $+[0] - $-[0]) =
349     sprintf("%0" . (length($&)) . "d", $dd);
350
351   $output_format =~ /m+/;
352   substr($output_format, $-[0], $+[0] - $-[0]) =
353     sprintf("%0" . (length($&)) . "d", $mm);
354
355   $output_format =~ /y+/;
356   if (length($&) == 2) {
357     $yy -= $yy >= 2000 ? 2000 : 1900;
358   }
359   substr($output_format, $-[0], $+[0] - $-[0]) =
360     sprintf("%0" . (length($&)) . "d", $yy);
361
362   $main::lxdebug->leave_sub();
363
364   return $output_format;
365 }
366
367 sub quote_special_chars {
368   my $self   = shift;
369   my $format = lc shift;
370   my $string = shift;
371
372   if ($self->{special_chars_map} && $self->{special_chars_map}->{$format} && $self->{special_chars_map}->{$format}->{order}) {
373     my $scmap = $self->{special_chars_map}->{$format};
374
375     map { $string =~ s/\Q${_}\E/$scmap->{$_}/g } @{ $scmap->{order} };
376   }
377
378   return $string;
379 }
380
381 sub unquote_special_chars {
382   my $self    = shift;
383   my $format  = shift;
384
385   return $self->quote_special_chars("${format}-reverse", shift);
386 }
387
388 sub remap_special_chars {
389   my $self       = shift;
390   my $src_format = shift;
391   my $dst_format = shift;
392
393   return $self->quote_special_chars($dst_format, $self->quote_special_chars("${src_format}-reverse", shift));
394 }
395
396 1;