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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
|
# Common tools for test files to find the locales which exist on the
# system. Caller should have verified that this isn't miniperl before calling
# the functions.
# Note that it's okay that some languages have their native names
# capitalized here even though that's not "right". They are lowercased
# anyway later during the scanning process (and besides, some clueless
# vendor might have them capitalized erroneously anyway).
# Functions whose names begin with underscore are internal helper functions
# for this file, and are not to be used by outside callers.
use Config;
use strict;
use warnings;
use feature 'state';
my %known_bad_locales = ( # XXX eventually will need version info if and
# when these get fixed.
solaris => [ 'vi_VN.UTF-8', ], # Use of U+A8 segfaults: GH #20578
);
eval { require POSIX; POSIX->import('locale_h'); };
my $has_locale_h = ! $@;
my @known_categories = ( qw(LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY
LC_NUMERIC LC_TIME LC_ADDRESS LC_IDENTIFICATION
LC_MEASUREMENT LC_PAPER LC_TELEPHONE LC_SYNTAX
LC_TOD LC_NAME));
my @platform_categories;
my $has_excluded_category = $Config{ccflags} =~ /\bD?NO_LOCALE_/;
sub category_excluded($) {
my $cat_name = shift =~ s/^LC_//r;
# Recognize Configure option to exclude a category
return $has_excluded_category
&& $Config{ccflags} =~ /\bD?NO_LOCALE_$cat_name\b/;
}
# LC_ALL can be -1 on some platforms. And, in fact the implementors could
# legally use any integer to represent any category. But it makes the most
# sense for them to have used small integers. Below, we create new locale
# numbers for ones missing from this machine. We make them very negative,
# hopefully more negative than anything likely to be a valid category on the
# platform, but also below is a check to be sure that our guess is valid.
my $max_bad_category_number = -1000000;
# Initialize this hash so that it looks like e.g.,
# 6 => 'CTYPE',
# where 6 is the value of &POSIX::LC_CTYPE
my %category_name;
my %category_number;
if ($has_locale_h) {
my $number_for_missing_category = $max_bad_category_number;
foreach my $name (@known_categories) {
my $number = eval "&POSIX::$name";
if ($@) {
# Use a negative number (smaller than any legitimate category
# number) if the platform doesn't support this category, so we
# have an entry for all the ones that might be specified in calls
# to us.
$number = $number_for_missing_category--;
}
elsif ( $number !~ / ^ -? \d+ $ /x
|| $number <= $max_bad_category_number)
{
# We think this should be an int. And it has to be larger than
# any of our synthetic numbers.
die "Unexpected locale category number '$number' for $name"
}
else {
push @platform_categories, $name;
}
$name =~ s/LC_//;
$category_name{$number} = "$name";
$category_number{$name} = $number;
}
}
sub _my_diag($) {
my $message = shift;
if (defined &main::diag) {
diag($message);
}
else {
local($\, $", $,) = (undef, ' ', '');
print STDERR $message, "\n";
}
}
# Larger than any real test
my $my_count = 1_000_000;
sub _my_fail($) {
my $message = shift;
if (defined &main::fail) {
fail($message);
}
else {
local($\, $", $,) = (undef, ' ', '');
print "not ok " . $my_count++ . $message . "\n";
}
}
sub platform_locale_categories() {
return @platform_categories;
}
sub valid_locale_categories() {
# Returns a list of the locale categories (expressed as strings, like
# "LC_ALL") known to this program that are available on this platform.
return grep { ! category_excluded($_) } @platform_categories;
}
sub is_category_valid($) {
my $name = shift;
$name = 'LC_' . $name =~ s/^LC_//r;
return grep { $name eq $_ } valid_locale_categories();
}
# It turns out that strings generated under the control of a given locale
# category are often affected as well by LC_CTYPE. If the two categories
# don't match, one can get mojibake or even core dumps. (khw thinks it more
# likely that it's the code set, not the locale that's critical here; but
# didn't run experiments to verify this.) Hence, in the code below, CTYPE and
# the tested categories are all set to the same locale. If CTYPE isn't
# available on the platform, LC_ALL is instead used. One might think to just
# use LC_ALL all the time, but on Windows
# setlocale(LC_ALL, "some_borked_locale")
# can return success, whereas setting LC_CTYPE to it fails.
my $master_category;
$master_category = $category_number{'CTYPE'}
if is_category_valid('LC_CTYPE') && defined $category_number{'CTYPE'};
$master_category = $category_number{'ALL'}
if ! defined $master_category
&& is_category_valid('LC_ALL') && defined $category_number{'ALL'};
my @platform_locales; # cache of locales found on this platform
my $gathering_platform_locales = 0; # Should we gather locales, or use the
# cache?
my %seen; # Used to avoid duplicates
sub _trylocale ($$$$) { # For use only by other functions in this file!
# Adds the locale given by the first parameter to the list given by the
# 3rd iff the platform supports the locale in each of the category numbers
# given by the 2nd parameter, which is either a single category or a
# reference to a list of categories.
#
# The 4th parameter is true if to accept locales that aren't apparently
# fully compatible with Perl.
my $locale = shift;
my $categories = shift;
my $list = shift;
my $allow_incompatible = shift;
my $normalized_locale = lc ($locale =~ s/\W//gr);
return if ! $locale || grep { $normalized_locale eq lc ($_ =~ s/\W//gr) } @$list;
# This is a toy (pig latin) locale that is not fully implemented on some
# systems
return if $locale =~ / ^ pig $ /ix;
# Certain platforms have a crippled locale system in which setlocale
# returns success for just about any possible locale name, but if anything
# actually happens as a result of the call, it is that the underlying
# locale is set to a system default, likely C or C.UTF-8. We can't test
# such systems fully, but we shouldn't disable the user from using
# locales, as it may work out for them (or not).
return if defined $Config{d_setlocale_accepts_any_locale_name}
&& $locale !~ / ^ (?: C | POSIX | C\.UTF-?8 ) $/ix;
if (exists $known_bad_locales{$^O}) {
my @bad_locales = $known_bad_locales{$^O}->@*;
return if grep { $locale eq $_ } @bad_locales;
}
my $badutf8 = 0;
my $plays_well = 1;
my $unsupported = 0;
use warnings 'locale';
local $SIG{__WARN__} = sub {
$badutf8 = 1 if grep { /Malformed UTF-8/ } @_;
$unsupported = 1 if grep { /Locale .* is unsupported/i } @_;
$plays_well = 0 if grep {
/The following characters .* may not have the same meaning as the Perl program expects(?#
)|The Perl program will use the expected meanings/i
} @_;
};
my $result;
my @category_list;
if (defined $categories) {
$categories = [ $categories ] unless ref $categories;
push @category_list, $categories->@*;
}
# Make the master category first thing on the list; adding it if necessary
if (defined $master_category) {
@category_list = grep { $_ != $master_category } @category_list;
unshift @category_list, $master_category;
}
foreach my $category (@category_list) {
my $save_locale = setlocale($category);
if (! $save_locale) {
_my_fail("Verify could save previous locale");
return;
}
# Incompatible locales aren't warned about unless using locales.
use locale;
my $cur_result = setlocale($category, $locale);
return unless defined $cur_result;
no locale;
if ( $gathering_platform_locales
&& $category eq $master_category
&& ! $seen{$locale})
{
push @platform_locales, $locale;
$seen{$locale}++;
}
# We definitely don't want the locale set to something that is
# unsupported
if (! setlocale($category, $save_locale)) {
my $error_text = "\$!=$!";
$error_text .= "; \$^E=$^E" if $^E != $!;
die "Couldn't restore locale '$save_locale', category $category;"
. $error_text;
}
if ($badutf8) {
_my_fail("Verify locale name doesn't contain malformed utf8");
return;
}
return if $unsupported;
# Commas in locale names are bad in Windows, and there is a bug in
# some versions where setlocale() turns a legal input locale name into
# an illegal return value, which it can't later parse.
return if $cur_result =~ /,/;
return unless $plays_well || $allow_incompatible;
if (! defined $result) { # First time
# If the name returned as $cur_result by the setlocale() above is the
# same as we requested, there are no complications: use that.
if ($locale eq $cur_result) {
$result = $cur_result;
}
else {
# But if it's different, we check if it's part of a disparate
# LC_ALL. If so, use the input locale; if not it means the
# input was a synonym, and we use what it maps to.
#
# First, if the platform uses positional notation
if ($Config{PERL_LC_ALL_SEPARATOR}) {
$result = (index($cur_result, $Config{PERL_LC_ALL_SEPARATOR})
>= 0)
? $locale
: $cur_result;
}
else { # Must be using name=value notation
$result = ($cur_result =~ / = .* ; /x)
? $locale
: $cur_result;
}
}
}
elsif (! $has_excluded_category && $result ne $cur_result) {
# Some platforms will translate POSIX into C
if (! ( ($result eq "C" && $cur_result eq "POSIX")
|| ($result eq "POSIX" && $cur_result eq "C")))
{
# But otherwise if the new result for this category doesn't
# match what we already have for a previous category for this
# same input locale, it's problematic, so discard this whole
# locale.
return;
}
}
}
push @$list, $result;
}
sub _decode_encodings { # For use only by other functions in this file!
my @enc;
foreach (split(/ /, shift)) {
if (/^(\d+)$/) {
push @enc, "ISO8859-$1";
push @enc, "ISO-8859-$1";
push @enc, "iso8859$1"; # HP
if ($1 eq '1') {
push @enc, "roman8"; # HP
}
push @enc, $_;
push @enc, "$_.UTF-8";
push @enc, "$_.65001"; # Windows UTF-8
}
}
if ($^O eq 'os390') {
push @enc, qw(IBM-037 IBM-819 IBM-1047);
}
push @enc, "UTF-8";
push @enc, "65001"; # Windows UTF-8
push @enc, "1252"; # Windows
return @enc;
}
sub locales_enabled(;$) {
# If no parameter is specified, the function returns 1 if there is any
# "safe" locale handling available to the caller; otherwise 0. Safeness
# is defined here as the caller operating in the main thread of a program,
# or if threaded locales are safe on the platform and Configured to be
# used. This sub is used for testing purposes, and for those, this
# definition of safety is sufficient, and necessary to get some tests to
# run on certain configurations on certain platforms. But beware that the
# main thread can change the locale of any subthreads unless
# ${^SAFE_LOCALES} is non-zero.
#
# Use the optional parameter to discover if a particular category or
# categories are available on the system. 1 is returned if the global
# criteria described in the previous paragraph are true, AND if all the
# specified categories are available on the platform and Configured to be
# used. Otherwise 0 is returned. The parameter is either a single POSIX
# locale category or a reference to a list of them. Each category must be
# its name as a string, like 'LC_TIME' (the initial 'LC_' is optional), or
# the number this platform uses to signify the category (e.g.,
# 'locales_enabled(&POSIX::LC_CTYPE)'
#
# When the function returns 1 and a parameter was specified as a list
# reference, the reference will be altered on return to point to an
# equivalent list such that the categories are numeric instead of strings
# and sorted to meet the input expectations of _trylocale().
#
# It is a fatal error to call this with something that isn't a known
# category to this file. If this happens, look first for a typo, and
# second if you are using a category unknown to Perl. In the latter case
# a bug report should be submitted.
# khw cargo-culted the '?' in the pattern on the next line.
return 0 if $Config{ccflags} =~ /\bD?NO_LOCALE\b/;
# If we can't load the POSIX XS module, we can't have locales even if they
# normally would be available
return 0 if ! defined &DynaLoader::boot_DynaLoader;
# Don't test locales where they aren't safe. On systems with unsafe
# threads, for the purposes of testing, we consider the main thread safe,
# and all other threads unsafe.
if (! ${^SAFE_LOCALES}) {
return 0 if $^O eq 'os390'; # Threaded locales don't work well here
require threads;
return 0 if threads->tid() != 0;
}
# If no setlocale, we need the POSIX 2008 alternatives
if (! $Config{d_setlocale}) {
return 0 if $Config{ccflags} =~ /\bD?NO_POSIX_2008_LOCALE\b/;
return 0 unless $Config{d_newlocale};
return 0 unless $Config{d_uselocale};
return 0 unless $Config{d_duplocale};
return 0 unless $Config{d_freelocale};
}
# Done with the global possibilities. Now check if any passed in category
# is disabled.
my $categories_ref = $_[0];
my $return_categories_numbers = 0;
my @categories_numbers;
my $has_LC_ALL = 0;
my $has_LC_COLLATE = 0;
if (defined $categories_ref) {
my @local_categories_copy;
my $reftype = ref $categories_ref;
if ($reftype eq 'ARRAY') {
@local_categories_copy = @$categories_ref;
$return_categories_numbers = 1;
}
elsif ($reftype ne "") {
die "Parameter to locales_enabled() must be an ARRAY;"
. " instead you used a $reftype";
}
else { # Single category passed in
@local_categories_copy = $categories_ref;
}
for my $category_name_or_number (@local_categories_copy) {
my $name;
my $number;
if ($category_name_or_number =~ / ^ -? \d+ $ /x) {
$number = $category_name_or_number;
die "Invalid locale category number '$number'"
unless grep { $number == $_ } keys %category_name;
$name = $category_name{$number};
}
else {
$name = $category_name_or_number;
$name =~ s/ ^ LC_ //x;
foreach my $trial (keys %category_name) {
if ($category_name{$trial} eq $name) {
$number = $trial;
last;
}
}
die "Invalid locale category name '$name'"
unless defined $number;
}
return 0 if $number <= $max_bad_category_number
|| category_excluded($name);
eval "defined &POSIX::LC_$name";
return 0 if $@;
if ($return_categories_numbers) {
if ($name eq 'CTYPE') {
unshift @categories_numbers, $number; # Always first
}
elsif ($name eq 'ALL') {
$has_LC_ALL = 1;
}
elsif ($name eq 'COLLATE') {
$has_LC_COLLATE = 1;
}
else {
push @categories_numbers, $number;
}
}
}
}
if ($return_categories_numbers) {
# COLLATE comes after all other locales except ALL, which comes last
if ($has_LC_COLLATE) {
push @categories_numbers, $category_number{'COLLATE'};
}
if ($has_LC_ALL) {
push @categories_numbers, $category_number{'ALL'};
}
@$categories_ref = @categories_numbers;
}
return 1;
}
sub find_locales ($;$) {
# Returns an array of all the locales we found on the system. If the
# optional 2nd parameter is non-zero, the list includes all found locales;
# otherwise it is restricted to those locales that play well with Perl, as
# far as we can easily determine.
#
# The first parameter is either a single locale category or a reference to
# a list of categories to find valid locales for it (or in the case of
# multiple) for all of them. Each category can be a name (like 'LC_ALL'
# or simply 'ALL') or the C enum value for the category.
my $input_categories = shift;
my $allow_incompatible = shift // 0;
die ("Usage: find_locales( category | [ categories ] )")
unless defined $input_categories;
my @categories = (ref $input_categories)
? $input_categories->@*
: $input_categories;
# If we can't use at least one of these categories, investigate further
if (! locales_enabled(\@categories)) {
# Not usable at all if system doesn't have locales
return unless locales_enabled();
# Nor if any of the required categories isn't on the system
my @on_platform = platform_locale_categories();
for my $category (@categories) {
return unless grep { $category eq $_ } @on_platform;
}
# Otherwise the category is on the system, but not generally usable.
# But the two always-present locales should be usable
return ( "C", "POSIX" );
}
# Note, the subroutine call above converts the $categories into a form
# suitable for _trylocale().
# Visual C's CRT goes silly on strings of the form "en_US.ISO8859-1"
# and mingw32 uses said silly CRT
# This doesn't seem to be an issue any more, at least on Windows XP,
# so re-enable the tests for Windows XP onwards.
my $winxp = ($^O eq 'MSWin32' && defined &Win32::GetOSVersion &&
join('.', (Win32::GetOSVersion())[1..2]) >= 5.1);
return if (($^O eq 'MSWin32' && !$winxp)
&& $Config{cc} =~ /^(cl|gcc|g\+\+|ici)/i);
my @Locale;
if (@platform_locales) {
$gathering_platform_locales = 0;
foreach my $locale (@platform_locales) {
_trylocale($locale, \@categories, \@Locale, $allow_incompatible);
}
}
else {
$gathering_platform_locales = 1;
_trylocale("C", \@categories, \@Locale, $allow_incompatible);
_trylocale("POSIX", \@categories, \@Locale, $allow_incompatible);
if ($Config{d_has_C_UTF8} && $Config{d_has_C_UTF8} eq 'true') {
_trylocale("C.UTF-8", \@categories, \@Locale, $allow_incompatible);
}
# There's no point in looking at anything more if we know that
# setlocale will return success on any garbage or non-garbage name.
return sort @Locale
if defined $Config{d_setlocale_accepts_any_locale_name};
foreach (1..16) {
_trylocale("ISO8859-$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("iso8859$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("iso8859-$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("iso_8859_$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("isolatin$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("isolatin-$_", \@categories, \@Locale,
$allow_incompatible);
_trylocale("iso_latin_$_", \@categories, \@Locale,
$allow_incompatible);
}
# Sanitize the environment so that we can run the external 'locale'
# program without the taint mode getting grumpy.
# $ENV{PATH} is special in VMS.
delete local $ENV{PATH} if $^O ne 'VMS' or $Config{d_setenv};
# Other subversive stuff.
delete local @ENV{qw(IFS CDPATH ENV BASH_ENV)};
if (-x "/usr/bin/locale"
&& open(LOCALES, '-|', "/usr/bin/locale -a 2>/dev/null"))
{
while (<LOCALES>) {
# It seems that /usr/bin/locale steadfastly outputs 8 bit
# data, which ain't great when we're running this
# testPERL_UNICODE= so that utf8 locales will cause all IO
# hadles to default to (assume) utf8
next unless utf8::valid($_);
chomp;
_trylocale($_, \@categories, \@Locale, $allow_incompatible);
}
close(LOCALES);
} elsif ($^O eq 'VMS'
&& defined($ENV{'SYS$I18N_LOCALE'})
&& -d 'SYS$I18N_LOCALE')
{
# The SYS$I18N_LOCALE logical name search list was not present on
# VAX VMS V5.5-12, but was on AXP && VAX VMS V6.2 as well as later
# versions.
opendir(LOCALES, "SYS\$I18N_LOCALE:");
while ($_ = readdir(LOCALES)) {
chomp;
_trylocale($_, \@categories, \@Locale, $allow_incompatible);
}
close(LOCALES);
} elsif ( ($^O eq 'openbsd' || $^O eq 'bitrig' )
&& -e '/usr/share/locale')
{
# OpenBSD doesn't have a locale executable, so reading
# /usr/share/locale is much easier and faster than the last resort
# method.
opendir(LOCALES, '/usr/share/locale');
while ($_ = readdir(LOCALES)) {
chomp;
_trylocale($_, \@categories, \@Locale, $allow_incompatible);
}
close(LOCALES);
} else { # Final fallback. Try our list of locales hard-coded here
# This is going to be slow.
my @Data;
# Locales whose name differs if the utf8 bit is on are stored in
# these two files with appropriate encodings.
my $data_file = ($^H & 0x08 || (${^OPEN} || "") =~ /:utf8/)
? _source_location() . "/lib/locale/utf8"
: _source_location() . "/lib/locale/latin1";
if (-e $data_file) {
@Data = do $data_file;
}
else {
_my_diag(__FILE__ . ":" . __LINE__ .
": '$data_file' doesn't exist");
}
# The rest of the locales are in this file.
state @my_data = <DATA>; close DATA if fileno DATA;
push @Data, @my_data;
foreach my $default (qw(.ACP .OCP)) {
_trylocale($default, \@categories, \@Locale,
$allow_incompatible);
}
foreach my $line (@Data) {
chomp $line;
my ($locale_name, $language_codes, $country_codes, $encodings) =
split /:/, $line;
_my_diag(__FILE__ . ":" . __LINE__
. ": Unexpected syntax in '$line'")
unless defined $locale_name;
my @enc = _decode_encodings($encodings);
foreach my $loc (split(/ /, $locale_name)) {
_trylocale($loc, \@categories, \@Locale,
$allow_incompatible);
foreach my $enc (@enc) {
_trylocale("$loc.$enc", \@categories, \@Locale,
$allow_incompatible);
}
$loc = lc $loc;
foreach my $enc (@enc) {
_trylocale("$loc.$enc", \@categories, \@Locale,
$allow_incompatible);
}
}
foreach my $lang (split(/ /, $language_codes)) {
_trylocale($lang, \@categories, \@Locale,
$allow_incompatible);
foreach my $country (split(/ /, $country_codes)) {
my $lc = "${lang}_${country}";
_trylocale($lc, \@categories, \@Locale,
$allow_incompatible);
foreach my $enc (@enc) {
_trylocale("$lc.$enc", \@categories, \@Locale,
$allow_incompatible);
}
my $lC = "${lang}_\U${country}";
_trylocale($lC, \@categories, \@Locale,
$allow_incompatible);
foreach my $enc (@enc) {
_trylocale("$lC.$enc", \@categories, \@Locale,
$allow_incompatible);
}
}
}
}
}
}
my %Locale;
$Locale{$_} = 1 for @Locale;
@Locale = sort keys %Locale;
return @Locale;
}
sub is_locale_utf8 ($) { # Return a boolean as to if core Perl thinks the input
# is a UTF-8 locale
# On z/OS, even locales marked as UTF-8 aren't.
return 0 if ord "A" != 65;
return 0 unless locales_enabled('LC_CTYPE');
my $locale = shift;
no warnings 'locale'; # We may be trying out a weird locale
use locale;
my $save_locale = setlocale(&POSIX::LC_CTYPE());
if (! $save_locale) {
_my_fail("Verify could save previous locale");
return 0;
}
if (! setlocale(&POSIX::LC_CTYPE(), $locale)) {
_my_fail("Verify could setlocale to $locale");
return 0;
}
my $ret = 0;
# Use an op that gives different results for UTF-8 than any other locale.
# If a platform has UTF-8 locales, there should be at least one locale on
# most platforms with UTF-8 in its name, so if there is a bug in the op
# giving a false negative, we should get a failure for those locales as we
# go through testing all the locales on the platform.
if (CORE::fc(chr utf8::unicode_to_native(0xdf)) ne "ss") {
if ($locale =~ /UTF-?8/i) {
_my_fail("Verify $locale with UTF-8 in name is a UTF-8 locale");
}
}
else {
$ret = 1;
}
die "Couldn't restore locale '$save_locale'"
unless setlocale(&POSIX::LC_CTYPE(), $save_locale);
return $ret;
}
sub classify_locales_wrt_utf8ness($) {
# Takes the input list of locales, and returns two lists split apart from
# it: the UTF-8 ones, and the non-UTF-8 ones.
my $locales_ref = shift;
my (@utf8, @non_utf8);
if (! locales_enabled('LC_CTYPE')) { # No CTYPE implies all are non-UTF-8
@non_utf8 = $locales_ref->@*;
return ( \@utf8, \@non_utf8 );
}
foreach my $locale (@$locales_ref) {
my $which = (is_locale_utf8($locale)) ? \@utf8 : \@non_utf8;
push $which->@*, $locale;
}
return ( \@utf8, \@non_utf8 );
}
sub find_utf8_ctype_locales (;$) {
# Return the names of the locales that core Perl thinks are UTF-8 LC_CTYPE
# locales. Optional parameter is a reference to a list of locales to try;
# if omitted, this tries all locales it can find on the platform
return unless locales_enabled('LC_CTYPE');
my $locales_ref = shift;
if (! defined $locales_ref) {
my @locales = find_locales(&POSIX::LC_CTYPE());
$locales_ref = \@locales;
}
my ($utf8_ref, undef) = classify_locales_wrt_utf8ness($locales_ref);
return unless $utf8_ref;
return $utf8_ref->@*;
}
sub find_utf8_ctype_locale (;$) { # Return the name of a locale that core Perl
# thinks is a UTF-8 LC_CTYPE non-turkic
# locale.
# Optional parameter is a reference to a
# list of locales to try; if omitted, this
# tries all locales it can find on the
# platform
my $try_locales_ref = shift;
my @utf8_locales = find_utf8_ctype_locales($try_locales_ref);
my @turkic_locales = find_utf8_turkic_locales($try_locales_ref);
my %seen_turkic;
# Create undef elements in the hash for turkic locales
@seen_turkic{@turkic_locales} = ();
foreach my $locale (@utf8_locales) {
return $locale unless exists $seen_turkic{$locale};
}
return;
}
sub find_utf8_turkic_locales (;$) {
# Return the name of all the locales that core Perl thinks are UTF-8
# Turkic LC_CTYPE. Optional parameter is a reference to a list of locales
# to try; if omitted, this tries all locales it can find on the platform
my @return;
return unless locales_enabled('LC_CTYPE');
my $save_locale = setlocale(&POSIX::LC_CTYPE());
foreach my $locale (find_utf8_ctype_locales(shift)) {
use locale;
setlocale(&POSIX::LC_CTYPE(), $locale);
push @return, $locale if uc('i') eq "\x{130}";
}
die "Couldn't restore locale '$save_locale'"
unless setlocale(&POSIX::LC_CTYPE(), $save_locale);
return @return;
}
sub find_utf8_turkic_locale (;$) {
my @turkics = find_utf8_turkic_locales(shift);
return unless @turkics;
return $turkics[0]
}
# returns full path to the directory containing the current source
# file, inspired by mauke's Dir::Self
sub _source_location {
require File::Spec;
my $caller_filename = (caller)[1];
my $loc = File::Spec->rel2abs(
File::Spec->catpath(
(File::Spec->splitpath($caller_filename))[0, 1], ''
)
);
return ($loc =~ /^(.*)$/)[0]; # untaint
}
1
# Format of data is: locale_name, language_codes, country_codes, encodings
__DATA__
Afrikaans:af:za:1 15
Arabic:ar:dz eg sa:6 arabic8
Brezhoneg Breton:br:fr:1 15
Bulgarski Bulgarian:bg:bg:5
Chinese:zh:cn tw:cn.EUC eucCN eucTW euc.CN euc.TW Big5 GB2312 tw.EUC
Hrvatski Croatian:hr:hr:2
Cymraeg Welsh:cy:cy:1 14 15
Czech:cs:cz:2
Dansk Danish:da:dk:1 15
Nederlands Dutch:nl:be nl:1 15
English American British:en:au ca gb ie nz us uk zw:1 15 cp850
Esperanto:eo:eo:3
Eesti Estonian:et:ee:4 6 13
Suomi Finnish:fi:fi:1 15
Flamish::fl:1 15
Deutsch German:de:at be ch de lu:1 15
Euskaraz Basque:eu:es fr:1 15
Galego Galician:gl:es:1 15
Ellada Greek:el:gr:7 g8
Frysk:fy:nl:1 15
Greenlandic:kl:gl:4 6
Hebrew:iw:il:8 hebrew8
Hungarian:hu:hu:2
Indonesian:id:id:1 15
Gaeilge Irish:ga:IE:1 14 15
Italiano Italian:it:ch it:1 15
Nihongo Japanese:ja:jp:euc eucJP jp.EUC sjis
Korean:ko:kr:
Latine Latin:la:va:1 15
Latvian:lv:lv:4 6 13
Lithuanian:lt:lt:4 6 13
Macedonian:mk:mk:1 15
Maltese:mt:mt:3
Moldovan:mo:mo:2
Norsk Norwegian:no no\@nynorsk nb nn:no:1 15
Occitan:oc:es:1 15
Polski Polish:pl:pl:2
Rumanian:ro:ro:2
Russki Russian:ru:ru su ua:5 koi8 koi8r KOI8-R koi8u cp1251 cp866
Serbski Serbian:sr:yu:5
Slovak:sk:sk:2
Slovene Slovenian:sl:si:2
Sqhip Albanian:sq:sq:1 15
Svenska Swedish:sv:fi se:1 15
Thai:th:th:11 tis620
Turkish:tr:tr:9 turkish8
Yiddish:yi::1 15
|