This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix perl #126186 make all verbs allow an optional arg
[perl5.git] / t / loc_tools.pl
1 # Common tools for test files files to find the locales which exist on the
2 # system.  Caller should have defined ok() for the unlikely event that setup
3 # here fails, and should have verified that this isn't miniperl before calling
4 # the functions.
5
6 # Note that it's okay that some languages have their native names
7 # capitalized here even though that's not "right".  They are lowercased
8 # anyway later during the scanning process (and besides, some clueless
9 # vendor might have them capitalized erroneously anyway).
10
11 # Functions whose names begin with underscore are internal helper functions
12 # for this file, and are not to be used by outside callers.
13
14 eval { require POSIX; import POSIX 'locale_h'; };
15 my $has_posix_locales = defined &POSIX::LC_CTYPE;
16
17 sub _trylocale ($$$$) { # For use only by other functions in this file!
18
19     # Adds the locale given by the first parameter to the list given by the
20     # 3rd iff the platform supports the locale in each of the categories given
21     # by the 2nd parameter, which is either a single category or a reference
22     # to a list of categories The 4th parameter is true if to reject locales
23     # that aren't apparently fully compatible with Perl.
24
25     my $locale = shift;
26     my $categories = shift;
27     my $list = shift;
28     my $only_plays_well = shift;
29
30     return if ! $locale || grep { $locale eq $_ } @$list;
31
32     $categories = [ $categories ] unless ref $categories;
33
34     my $badutf8 = 0;
35     my $plays_well = 1;
36
37     use warnings 'locale';
38
39     local $SIG{__WARN__} = sub {
40         $badutf8 = 1 if $_[0] =~ /Malformed UTF-8/;
41         $plays_well = 0 if $_[0] =~ /Locale .* may not work well/i
42     };
43
44     foreach my $category (@$categories) {
45         return unless setlocale($category, $locale);
46         return if $only_plays_well && ! $plays_well;
47     }
48
49     if ($badutf8) {
50         ok(0, "Verify locale name doesn't contain malformed utf8");
51         return;
52     }
53     push @$list, $locale;
54 }
55
56 sub _decode_encodings { # For use only by other functions in this file!
57     my @enc;
58
59     foreach (split(/ /, shift)) {
60         if (/^(\d+)$/) {
61             push @enc, "ISO8859-$1";
62             push @enc, "iso8859$1";     # HP
63             if ($1 eq '1') {
64                  push @enc, "roman8";   # HP
65             }
66             push @enc, $_;
67             push @enc, "$_.UTF-8";
68             push @enc, "$_.65001"; # Windows UTF-8
69             push @enc, "$_.ACP"; # Windows ANSI code page
70             push @enc, "$_.OCP"; # Windows OEM code page
71             push @enc, "$_.1252"; # Windows
72         }
73     }
74     if ($^O eq 'os390') {
75         push @enc, qw(IBM-037 IBM-819 IBM-1047);
76     }
77     push @enc, "UTF-8";
78     push @enc, "65001"; # Windows UTF-8
79
80     return @enc;
81 }
82
83 # LC_ALL can be -1 on some platforms.  And, in fact the implementors could
84 # legally use any integer to represent any category.  But it makes the most
85 # sense for them to have used small integers.  Below, we create new locale
86 # numbers for ones missing from this machine.  We make them very negative,
87 # hopefully more negative than anything likely to be a valid category on the
88 # platform, but also below is a check to be sure that our guess is valid.
89 my $max_bad_category_number = -1000000;
90
91 # Initialize this hash so that it looks like e.g.,
92 #   6 => 'CTYPE',
93 # where 6 is the value of &POSIX::LC_CTYPE
94 my %category_name;
95 eval { require POSIX; import POSIX 'locale_h'; };
96 unless ($@) {
97     my $number_for_missing_category = $max_bad_category_number;
98     foreach my $name (qw(ALL COLLATE CTYPE MESSAGES MONETARY NUMERIC TIME)) {
99         my $number = eval "&POSIX::LC_$name";
100
101         if ($@) {
102             # Use a negative number (smaller than any legitimate category
103             # number) if the platform doesn't support this category, so we
104             # have an entry for all the ones that might be specified in calls
105             # to us.
106             $number = $number_for_missing_category-- if $@;
107         }
108         elsif (   $number !~ / ^ -? \d+ $ /x
109                || $number <=  $max_bad_category_number)
110         {
111             # We think this should be an int.  And it has to be larger than
112             # any of our synthetic numbers.
113             die "Unexpected locale category number '$number' for LC_$name"
114         }
115
116         $category_name{$number} = "$name";
117     }
118 }
119
120 sub locales_enabled(;$) {
121     # Returns 0 if no locale handling is available on this platform; otherwise
122     # 1.
123     #
124     # The optional parameter is a reference to a list of individual POSIX
125     # locale categories.  If present, this function also returns 0 if any of
126     # them are individually not available on this platform; otherwise 1.
127     # Actually, it is acceptable for the list to be just a simple scalar
128     # denoting a single category.
129     #
130     # If any of the individual categories specified by the optional parameter
131     # is all digits, it is taken to be the C enum for the category (e.g.,
132     # &POSIX::LC_CTYPE).  Otherwise it should be a string name of the
133     # category, like 'LC_TIME'.  The initial 'LC_' is optional.  It is a fatal
134     # error to call this with something that isn't a known category
135
136     use Config;
137
138     return 0 unless    $Config{d_setlocale}
139                         # I (khw) cargo-culted the '?' in the pattern on the
140                         # next line.
141                     && $Config{ccflags} !~ /\bD?NO_LOCALE\b/
142                     && $has_posix_locales;
143
144     # Done with the global possibilities.  Now check if any passed in category
145     # is disabled.
146     my $categories_ref = shift;
147     if (defined $categories_ref) {
148         $categories_ref = [ $categories_ref ] if ! ref $categories_ref;
149         my @local_categories_copy = @$categories_ref;
150         for my $category_name_or_number (@local_categories_copy) {
151             my $name;
152             my $number;
153             if ($category_name_or_number =~ / ^ -? \d+ $ /x) {
154                 $number = $category_name_or_number;
155                 die "Invalid locale category number '$number'"
156                     unless grep { $number == $_ } keys %category_name;
157                 $name = $category_name{$number};
158             }
159             else {
160                 $name = $category_name_or_number;
161                 $name =~ s/ ^ LC_ //x;
162                 foreach my $trial (keys %category_name) {
163                     if ($category_name{$trial} eq $name) {
164                         $number = $trial;
165                         last;
166                     }
167                 }
168                 die "Invalid locale category name '$name'"
169                     unless defined $number;
170             }
171
172             return 0 if    $number <= $max_bad_category_number
173                         || $Config{ccflags} =~ /\bD?NO_LOCALE_$name\b/;
174         }
175     }
176
177     return 1;
178 }
179
180
181 sub find_locales ($;$) {  # Returns an array of all the locales we found on the
182                           # system.  If the optional 2nd parameter is
183                           # non-zero, the list is restricted to those locales
184                           # that play well with Perl.
185                           # The first parameter is either a single locale
186                           # category or a reference to a list of categories to
187                           # find valid locales for it (or in the case of
188                           # multiple) for all of them.
189     my $categories = shift;
190     my $only_plays_well = shift // 0;
191
192     return unless locales_enabled($categories);
193
194     # Visual C's CRT goes silly on strings of the form "en_US.ISO8859-1"
195     # and mingw32 uses said silly CRT
196     # This doesn't seem to be an issue any more, at least on Windows XP,
197     # so re-enable the tests for Windows XP onwards.
198     my $winxp = ($^O eq 'MSWin32' && defined &Win32::GetOSVersion &&
199                     join('.', (Win32::GetOSVersion())[1..2]) >= 5.1);
200     return if ((($^O eq 'MSWin32' && !$winxp) || $^O eq 'NetWare')
201                 && $Config{cc} =~ /^(cl|gcc|g\+\+|ici)/i);
202
203     # UWIN seems to loop after taint tests, just skip for now
204     return if ($^O =~ /^uwin/);
205
206     # Done this way in case this is 'required' in the caller before seeing if
207     # this is miniperl.
208     return unless $has_posix_locales;
209
210     _trylocale("C", $categories, \@Locale, $only_plays_well);
211     _trylocale("POSIX", $categories, \@Locale, $only_plays_well);
212     foreach (0..15) {
213         _trylocale("ISO8859-$_", $categories, \@Locale, $only_plays_well);
214         _trylocale("iso8859$_", $categories, \@Locale, $only_plays_well);
215         _trylocale("iso8859-$_", $categories, \@Locale, $only_plays_well);
216         _trylocale("iso_8859_$_", $categories, \@Locale, $only_plays_well);
217         _trylocale("isolatin$_", $categories, \@Locale, $only_plays_well);
218         _trylocale("isolatin-$_", $categories, \@Locale, $only_plays_well);
219         _trylocale("iso_latin_$_", $categories, \@Locale, $only_plays_well);
220     }
221
222     # Sanitize the environment so that we can run the external 'locale'
223     # program without the taint mode getting grumpy.
224
225     # $ENV{PATH} is special in VMS.
226     delete local $ENV{PATH} if $^O ne 'VMS' or $Config{d_setenv};
227
228     # Other subversive stuff.
229     delete local @ENV{qw(IFS CDPATH ENV BASH_ENV)};
230
231     if (-x "/usr/bin/locale"
232         && open(LOCALES, "/usr/bin/locale -a 2>/dev/null|"))
233     {
234         while (<LOCALES>) {
235             # It seems that /usr/bin/locale steadfastly outputs 8 bit data, which
236             # ain't great when we're running this testPERL_UNICODE= so that utf8
237             # locales will cause all IO hadles to default to (assume) utf8
238             next unless utf8::valid($_);
239             chomp;
240             _trylocale($_, $categories, \@Locale, $only_plays_well);
241         }
242         close(LOCALES);
243     } elsif ($^O eq 'VMS'
244              && defined($ENV{'SYS$I18N_LOCALE'})
245              && -d 'SYS$I18N_LOCALE')
246     {
247     # The SYS$I18N_LOCALE logical name search list was not present on
248     # VAX VMS V5.5-12, but was on AXP && VAX VMS V6.2 as well as later versions.
249         opendir(LOCALES, "SYS\$I18N_LOCALE:");
250         while ($_ = readdir(LOCALES)) {
251             chomp;
252             _trylocale($_, $categories, \@Locale, $only_plays_well);
253         }
254         close(LOCALES);
255     } elsif (($^O eq 'openbsd' || $^O eq 'bitrig' ) && -e '/usr/share/locale') {
256
257     # OpenBSD doesn't have a locale executable, so reading /usr/share/locale
258     # is much easier and faster than the last resort method.
259
260         opendir(LOCALES, '/usr/share/locale');
261         while ($_ = readdir(LOCALES)) {
262             chomp;
263             _trylocale($_, $categories, \@Locale, $only_plays_well);
264         }
265         close(LOCALES);
266     } else { # Final fallback.  Try our list of locales hard-coded here
267
268         # This is going to be slow.
269         my @Data;
270
271         # Locales whose name differs if the utf8 bit is on are stored in these two
272         # files with appropriate encodings.
273         if ($^H & 0x08 || (${^OPEN} || "") =~ /:utf8/) {
274             @Data = do "lib/locale/utf8";
275         } else {
276             @Data = do "lib/locale/latin1";
277         }
278
279         # The rest of the locales are in this file.
280         push @Data, <DATA>;
281
282         foreach my $line (@Data) {
283             my ($locale_name, $language_codes, $country_codes, $encodings) =
284                 split /:/, $line;
285             my @enc = _decode_encodings($encodings);
286             foreach my $loc (split(/ /, $locale_name)) {
287                 _trylocale($loc, $categories, \@Locale, $only_plays_well);
288                 foreach my $enc (@enc) {
289                     _trylocale("$loc.$enc", $categories, \@Locale,
290                                                             $only_plays_well);
291                 }
292                 $loc = lc $loc;
293                 foreach my $enc (@enc) {
294                     _trylocale("$loc.$enc", $categories, \@Locale,
295                                                             $only_plays_well);
296                 }
297             }
298             foreach my $lang (split(/ /, $language_codes)) {
299                 _trylocale($lang, $categories, \@Locale, $only_plays_well);
300                 foreach my $country (split(/ /, $country_codes)) {
301                     my $lc = "${lang}_${country}";
302                     _trylocale($lc, $categories, \@Locale, $only_plays_well);
303                     foreach my $enc (@enc) {
304                         _trylocale("$lc.$enc", $categories, \@Locale,
305                                                             $only_plays_well);
306                     }
307                     my $lC = "${lang}_\U${country}";
308                     _trylocale($lC, $categories, \@Locale, $only_plays_well);
309                     foreach my $enc (@enc) {
310                         _trylocale("$lC.$enc", $categories, \@Locale,
311                                                             $only_plays_well);
312                     }
313                 }
314             }
315         }
316     }
317
318     @Locale = sort @Locale;
319
320     return @Locale;
321 }
322
323 sub is_locale_utf8 ($) { # Return a boolean as to if core Perl thinks the input
324                          # is a UTF-8 locale
325
326     # On z/OS, even locales marked as UTF-8 aren't.
327     return 0 if ord "A" != 65;
328
329     return 0 if ! $has_posix_locales;
330     return 0 if ! locales_enabled('LC_CTYPE');
331
332     my $locale = shift;
333
334     use locale;
335     no warnings 'locale'; # We may be trying out a weird locale
336
337     my $save_locale = setlocale(&POSIX::LC_CTYPE());
338     if (! $save_locale) {
339         ok(0, "Verify could save previous locale");
340         return 0;
341     }
342
343     if (! setlocale(&POSIX::LC_CTYPE(), $locale)) {
344         ok(0, "Verify could setlocale to $locale");
345         return 0;
346     }
347
348     my $ret = 0;
349
350     # Use an op that gives different results for UTF-8 than any other locale.
351     # If a platform has UTF-8 locales, there should be at least one locale on
352     # most platforms with UTF-8 in its name, so if there is a bug in the op
353     # giving a false negative, we should get a failure for those locales as we
354     # go through testing all the locales on the platform.
355     if (CORE::fc(chr utf8::unicode_to_native(0xdf)) ne "ss") {
356         if ($locale =~ /UTF-?8/i) {
357             ok (0, "Verify $locale with UTF-8 in name is a UTF-8 locale");
358         }
359     }
360     else {
361         $ret = 1;
362     }
363
364     die "Couldn't restore locale '$save_locale'"
365         unless setlocale(&POSIX::LC_CTYPE(), $save_locale);
366
367     return $ret;
368 }
369
370 sub find_utf8_ctype_locale (;$) { # Return the name of a locale that core Perl
371                                   # thinks is a UTF-8 LC_CTYPE locale.
372                                   # Optional parameter is a reference to a
373                                   # list of locales to try; if omitted, this
374                                   # tries all locales it can find on the
375                                   # platform
376     my $locales_ref = shift;
377
378     if (! defined $locales_ref) {
379         return if ! $has_posix_locales;
380
381         my @locales = find_locales(&POSIX::LC_CTYPE(),
382                                    1 # Reject iffy locales.
383                                   );
384         $locales_ref = \@locales;
385     }
386
387     foreach my $locale (@$locales_ref) {
388         return $locale if is_locale_utf8($locale);
389     }
390
391     return;
392 }
393
394 1
395
396 # Format of data is: locale_name, language_codes, country_codes, encodings
397 __DATA__
398 Afrikaans:af:za:1 15
399 Arabic:ar:dz eg sa:6 arabic8
400 Brezhoneg Breton:br:fr:1 15
401 Bulgarski Bulgarian:bg:bg:5
402 Chinese:zh:cn tw:cn.EUC eucCN eucTW euc.CN euc.TW Big5 GB2312 tw.EUC
403 Hrvatski Croatian:hr:hr:2
404 Cymraeg Welsh:cy:cy:1 14 15
405 Czech:cs:cz:2
406 Dansk Danish:da:dk:1 15
407 Nederlands Dutch:nl:be nl:1 15
408 English American British:en:au ca gb ie nz us uk zw:1 15 cp850
409 Esperanto:eo:eo:3
410 Eesti Estonian:et:ee:4 6 13
411 Suomi Finnish:fi:fi:1 15
412 Flamish::fl:1 15
413 Deutsch German:de:at be ch de lu:1 15
414 Euskaraz Basque:eu:es fr:1 15
415 Galego Galician:gl:es:1 15
416 Ellada Greek:el:gr:7 g8
417 Frysk:fy:nl:1 15
418 Greenlandic:kl:gl:4 6
419 Hebrew:iw:il:8 hebrew8
420 Hungarian:hu:hu:2
421 Indonesian:id:id:1 15
422 Gaeilge Irish:ga:IE:1 14 15
423 Italiano Italian:it:ch it:1 15
424 Nihongo Japanese:ja:jp:euc eucJP jp.EUC sjis
425 Korean:ko:kr:
426 Latine Latin:la:va:1 15
427 Latvian:lv:lv:4 6 13
428 Lithuanian:lt:lt:4 6 13
429 Macedonian:mk:mk:1 15
430 Maltese:mt:mt:3
431 Moldovan:mo:mo:2
432 Norsk Norwegian:no no\@nynorsk nb nn:no:1 15
433 Occitan:oc:es:1 15
434 Polski Polish:pl:pl:2
435 Rumanian:ro:ro:2
436 Russki Russian:ru:ru su ua:5 koi8 koi8r KOI8-R koi8u cp1251 cp866
437 Serbski Serbian:sr:yu:5
438 Slovak:sk:sk:2
439 Slovene Slovenian:sl:si:2
440 Sqhip Albanian:sq:sq:1 15
441 Svenska Swedish:sv:fi se:1 15
442 Thai:th:th:11 tis620
443 Turkish:tr:tr:9 turkish8
444 Yiddish:yi::1 15