3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2005, 2006, 2007, 2008 by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * A Elbereth Gilthoniel,
13 * silivren penna míriel
14 * o menel aglar elenath!
15 * Na-chaered palan-díriel
16 * o galadhremmin ennorath,
17 * Fanuilos, le linnathon
18 * nef aear, si nef aearon!
20 * [p.238 of _The Lord of the Rings_, II/i: "Many Meetings"]
23 /* utility functions for handling locale-specific stuff like what
24 * character represents the decimal point.
26 * All C programs have an underlying locale. Perl code generally doesn't pay
27 * any attention to it except within the scope of a 'use locale'. For most
28 * categories, it accomplishes this by just using different operations if it is
29 * in such scope than if not. However, various libc functions called by Perl
30 * are affected by the LC_NUMERIC category, so there are macros in perl.h that
31 * are used to toggle between the current locale and the C locale depending on
32 * the desired behavior of those functions at the moment. And, LC_MESSAGES is
33 * switched to the C locale for outputting the message unless within the scope
38 #define PERL_IN_LOCALE_C
39 #include "perl_langinfo.h"
44 /* If the environment says to, we can output debugging information during
45 * initialization. This is done before option parsing, and before any thread
46 * creation, so can be a file-level static */
48 # ifdef PERL_GLOBAL_STRUCT
49 /* no global syms allowed */
50 # define debug_initialization 0
51 # define DEBUG_INITIALIZATION_set(v)
53 static bool debug_initialization = FALSE;
54 # define DEBUG_INITIALIZATION_set(v) (debug_initialization = v)
58 /* strlen() of a literal string constant. XXX We might want this more general,
59 * but using it in just this file for now */
60 #define STRLENs(s) (sizeof("" s "") - 1)
62 /* Is the C string input 'name' "C" or "POSIX"? If so, and 'name' is the
63 * return of setlocale(), then this is extremely likely to be the C or POSIX
64 * locale. However, the output of setlocale() is documented to be opaque, but
65 * the odds are extremely small that it would return these two strings for some
66 * other locale. Note that VMS in these two locales includes many non-ASCII
67 * characters as controls and punctuation (below are hex bytes):
69 * punct: A1-A3 A5 A7-AB B0-B3 B5-B7 B9-BD BF-CF D1-DD DF-EF F1-FD
70 * Oddly, none there are listed as alphas, though some represent alphabetics
71 * http://www.nntp.perl.org/group/perl.perl5.porters/2013/02/msg198753.html */
72 #define isNAME_C_OR_POSIX(name) \
74 && (( *(name) == 'C' && (*(name + 1)) == '\0') \
75 || strEQ((name), "POSIX")))
80 * Standardize the locale name from a string returned by 'setlocale', possibly
81 * modifying that string.
83 * The typical return value of setlocale() is either
84 * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL
85 * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL
86 * (the space-separated values represent the various sublocales,
87 * in some unspecified order). This is not handled by this function.
89 * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n",
90 * which is harmful for further use of the string in setlocale(). This
91 * function removes the trailing new line and everything up through the '='
95 S_stdize_locale(pTHX_ char *locs)
97 const char * const s = strchr(locs, '=');
100 PERL_ARGS_ASSERT_STDIZE_LOCALE;
103 const char * const t = strchr(s, '.');
106 const char * const u = strchr(t, '\n');
107 if (u && (u[1] == 0)) {
108 const STRLEN len = u - s;
109 Move(s + 1, locs, len, char);
117 Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs);
122 /* Two parallel arrays; first the locale categories Perl uses on this system;
123 * the second array is their names. These arrays are in mostly arbitrary
126 const int categories[] = {
128 # ifdef USE_LOCALE_NUMERIC
131 # ifdef USE_LOCALE_CTYPE
134 # ifdef USE_LOCALE_COLLATE
137 # ifdef USE_LOCALE_TIME
140 # ifdef USE_LOCALE_MESSAGES
143 # ifdef USE_LOCALE_MONETARY
149 -1 /* Placeholder because C doesn't allow a
150 trailing comma, and it would get complicated
151 with all the #ifdef's */
154 /* The top-most real element is LC_ALL */
156 const char * category_names[] = {
158 # ifdef USE_LOCALE_NUMERIC
161 # ifdef USE_LOCALE_CTYPE
164 # ifdef USE_LOCALE_COLLATE
167 # ifdef USE_LOCALE_TIME
170 # ifdef USE_LOCALE_MESSAGES
173 # ifdef USE_LOCALE_MONETARY
179 NULL /* Placeholder */
184 /* On systems with LC_ALL, it is kept in the highest index position. (-2
185 * to account for the final unused placeholder element.) */
186 # define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 2)
190 /* On systems without LC_ALL, we pretend it is there, one beyond the real
191 * top element, hence in the unused placeholder element. */
192 # define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 1)
196 /* Pretending there is an LC_ALL element just above allows us to avoid most
197 * special cases. Most loops through these arrays in the code below are
198 * written like 'for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++)'. They will work
199 * on either type of system. But the code must be written to not access the
200 * element at 'LC_ALL_INDEX' except on platforms that have it. This can be
201 * checked for at compile time by using the #define LC_ALL_INDEX which is only
202 * defined if we do have LC_ALL. */
205 S_category_name(const int category)
211 if (category == LC_ALL) {
217 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
218 if (category == categories[i]) {
219 return category_names[i];
224 const char suffix[] = " (unknown)";
226 Size_t length = sizeof(suffix) + 1;
235 /* Calculate the number of digits */
241 Newx(unknown, length, char);
242 my_snprintf(unknown, length, "%d%s", category, suffix);
248 /* Now create LC_foo_INDEX #defines for just those categories on this system */
249 # ifdef USE_LOCALE_NUMERIC
250 # define LC_NUMERIC_INDEX 0
251 # define _DUMMY_NUMERIC LC_NUMERIC_INDEX
253 # define _DUMMY_NUMERIC -1
255 # ifdef USE_LOCALE_CTYPE
256 # define LC_CTYPE_INDEX _DUMMY_NUMERIC + 1
257 # define _DUMMY_CTYPE LC_CTYPE_INDEX
259 # define _DUMMY_CTYPE _DUMMY_NUMERIC
261 # ifdef USE_LOCALE_COLLATE
262 # define LC_COLLATE_INDEX _DUMMY_CTYPE + 1
263 # define _DUMMY_COLLATE LC_COLLATE_INDEX
265 # define _DUMMY_COLLATE _DUMMY_COLLATE
267 # ifdef USE_LOCALE_TIME
268 # define LC_TIME_INDEX _DUMMY_COLLATE + 1
269 # define _DUMMY_TIME LC_TIME_INDEX
271 # define _DUMMY_TIME _DUMMY_COLLATE
273 # ifdef USE_LOCALE_MESSAGES
274 # define LC_MESSAGES_INDEX _DUMMY_TIME + 1
275 # define _DUMMY_MESSAGES LC_MESSAGES_INDEX
277 # define _DUMMY_MESSAGES _DUMMY_TIME
279 # ifdef USE_LOCALE_MONETARY
280 # define LC_MONETARY_INDEX _DUMMY_MESSAGES + 1
281 # define _DUMMY_MONETARY LC_MONETARY_INDEX
283 # define _DUMMY_MONETARY _DUMMY_MESSAGES
286 # define LC_ALL_INDEX _DUMMY_MONETARY + 1
288 #endif /* ifdef USE_LOCALE */
290 /* Windows requres a customized base-level setlocale() */
292 # define my_setlocale(cat, locale) win32_setlocale(cat, locale)
294 # define my_setlocale(cat, locale) setlocale(cat, locale)
297 /* Just placeholders for now. "_c" is intended to be called when the category
298 * is a constant known at compile time; "_r", not known until run time */
299 # define do_setlocale_c(category, locale) my_setlocale(category, locale)
300 # define do_setlocale_r(category, locale) my_setlocale(category, locale)
303 S_set_numeric_radix(pTHX_ const bool use_locale)
305 /* If 'use_locale' is FALSE, set to use a dot for the radix character. If
306 * TRUE, use the radix character derived from the current locale */
308 #if defined(USE_LOCALE_NUMERIC) && ( defined(HAS_LOCALECONV) \
309 || defined(HAS_NL_LANGINFO))
311 /* We only set up the radix SV if we are to use a locale radix ... */
313 const char * radix = my_nl_langinfo(PERL_RADIXCHAR, FALSE);
314 /* FALSE => already in dest locale */
316 /* ... and the character being used isn't a dot */
317 if (strNE(radix, ".")) {
318 if (PL_numeric_radix_sv) {
319 sv_setpv(PL_numeric_radix_sv, radix);
322 PL_numeric_radix_sv = newSVpv(radix, 0);
325 if ( ! is_utf8_invariant_string(
326 (U8 *) SvPVX(PL_numeric_radix_sv), SvCUR(PL_numeric_radix_sv))
328 (U8 *) SvPVX(PL_numeric_radix_sv), SvCUR(PL_numeric_radix_sv))
329 && _is_cur_LC_category_utf8(LC_NUMERIC))
331 SvUTF8_on(PL_numeric_radix_sv);
337 SvREFCNT_dec(PL_numeric_radix_sv);
338 PL_numeric_radix_sv = NULL;
344 if (DEBUG_L_TEST || debug_initialization) {
345 PerlIO_printf(Perl_debug_log, "Locale radix is '%s', ?UTF-8=%d\n",
346 (PL_numeric_radix_sv)
347 ? SvPVX(PL_numeric_radix_sv)
349 (PL_numeric_radix_sv)
350 ? cBOOL(SvUTF8(PL_numeric_radix_sv))
355 #endif /* USE_LOCALE_NUMERIC and can find the radix char */
361 Perl_new_numeric(pTHX_ const char *newnum)
364 #ifndef USE_LOCALE_NUMERIC
366 PERL_UNUSED_ARG(newnum);
370 /* Called after all libc setlocale() calls affecting LC_NUMERIC, to tell
371 * core Perl this and that 'newnum' is the name of the new locale.
372 * It installs this locale as the current underlying default.
374 * The default locale and the C locale can be toggled between by use of the
375 * set_numeric_underlying() and set_numeric_standard() functions, which
376 * should probably not be called directly, but only via macros like
377 * SET_NUMERIC_STANDARD() in perl.h.
379 * The toggling is necessary mainly so that a non-dot radix decimal point
380 * character can be output, while allowing internal calculations to use a
383 * This sets several interpreter-level variables:
384 * PL_numeric_name The underlying locale's name: a copy of 'newnum'
385 * PL_numeric_underlying A boolean indicating if the toggled state is such
386 * that the current locale is the program's underlying
388 * PL_numeric_standard An int indicating if the toggled state is such
389 * that the current locale is the C locale. If non-zero,
390 * it is in C; if > 1, it means it may not be toggled away
392 * Note that both of the last two variables can be true at the same time,
393 * if the underlying locale is C. (Toggling is a no-op under these
396 * Any code changing the locale (outside this file) should use
397 * POSIX::setlocale, which calls this function. Therefore this function
398 * should be called directly only from this file and from
399 * POSIX::setlocale() */
404 Safefree(PL_numeric_name);
405 PL_numeric_name = NULL;
406 PL_numeric_standard = TRUE;
407 PL_numeric_underlying = TRUE;
411 save_newnum = stdize_locale(savepv(newnum));
413 PL_numeric_standard = isNAME_C_OR_POSIX(save_newnum);
414 PL_numeric_underlying = TRUE;
416 if (! PL_numeric_name || strNE(PL_numeric_name, save_newnum)) {
417 Safefree(PL_numeric_name);
418 PL_numeric_name = save_newnum;
421 Safefree(save_newnum);
424 /* Keep LC_NUMERIC in the C locale. This is for XS modules, so they don't
425 * have to worry about the radix being a non-dot. (Core operations that
426 * need the underlying locale change to it temporarily). */
427 set_numeric_standard();
429 #endif /* USE_LOCALE_NUMERIC */
434 Perl_set_numeric_standard(pTHX)
437 #ifdef USE_LOCALE_NUMERIC
439 /* Toggle the LC_NUMERIC locale to C. Most code should use the macros like
440 * SET_NUMERIC_STANDARD() in perl.h instead of calling this directly. The
441 * macro avoids calling this routine if toggling isn't necessary according
442 * to our records (which could be wrong if some XS code has changed the
443 * locale behind our back) */
445 do_setlocale_c(LC_NUMERIC, "C");
446 PL_numeric_standard = TRUE;
447 PL_numeric_underlying = isNAME_C_OR_POSIX(PL_numeric_name);
448 set_numeric_radix(0);
452 if (DEBUG_L_TEST || debug_initialization) {
453 PerlIO_printf(Perl_debug_log,
454 "LC_NUMERIC locale now is standard C\n");
458 #endif /* USE_LOCALE_NUMERIC */
463 Perl_set_numeric_underlying(pTHX)
466 #ifdef USE_LOCALE_NUMERIC
468 /* Toggle the LC_NUMERIC locale to the current underlying default. Most
469 * code should use the macros like SET_NUMERIC_UNDERLYING() in perl.h
470 * instead of calling this directly. The macro avoids calling this routine
471 * if toggling isn't necessary according to our records (which could be
472 * wrong if some XS code has changed the locale behind our back) */
474 do_setlocale_c(LC_NUMERIC, PL_numeric_name);
475 PL_numeric_standard = isNAME_C_OR_POSIX(PL_numeric_name);
476 PL_numeric_underlying = TRUE;
477 set_numeric_radix(1);
481 if (DEBUG_L_TEST || debug_initialization) {
482 PerlIO_printf(Perl_debug_log,
483 "LC_NUMERIC locale now is %s\n",
488 #endif /* USE_LOCALE_NUMERIC */
493 * Set up for a new ctype locale.
496 S_new_ctype(pTHX_ const char *newctype)
499 #ifndef USE_LOCALE_CTYPE
501 PERL_ARGS_ASSERT_NEW_CTYPE;
502 PERL_UNUSED_ARG(newctype);
507 /* Called after all libc setlocale() calls affecting LC_CTYPE, to tell
508 * core Perl this and that 'newctype' is the name of the new locale.
510 * This function sets up the folding arrays for all 256 bytes, assuming
511 * that tofold() is tolc() since fold case is not a concept in POSIX,
513 * Any code changing the locale (outside this file) should use
514 * POSIX::setlocale, which calls this function. Therefore this function
515 * should be called directly only from this file and from
516 * POSIX::setlocale() */
521 PERL_ARGS_ASSERT_NEW_CTYPE;
523 /* We will replace any bad locale warning with 1) nothing if the new one is
524 * ok; or 2) a new warning for the bad new locale */
525 if (PL_warn_locale) {
526 SvREFCNT_dec_NN(PL_warn_locale);
527 PL_warn_locale = NULL;
530 PL_in_utf8_CTYPE_locale = _is_cur_LC_category_utf8(LC_CTYPE);
532 /* A UTF-8 locale gets standard rules. But note that code still has to
533 * handle this specially because of the three problematic code points */
534 if (PL_in_utf8_CTYPE_locale) {
535 Copy(PL_fold_latin1, PL_fold_locale, 256, U8);
538 /* Assume enough space for every character being bad. 4 spaces each
539 * for the 94 printable characters that are output like "'x' "; and 5
540 * spaces each for "'\\' ", "'\t' ", and "'\n' "; plus a terminating
542 char bad_chars_list[ (94 * 4) + (3 * 5) + 1 ];
544 /* Don't check for problems if we are suppressing the warnings */
545 bool check_for_problems = ckWARN_d(WARN_LOCALE)
546 || UNLIKELY(DEBUG_L_TEST);
547 bool multi_byte_locale = FALSE; /* Assume is a single-byte locale
549 unsigned int bad_count = 0; /* Count of bad characters */
551 for (i = 0; i < 256; i++) {
552 if (isUPPER_LC((U8) i))
553 PL_fold_locale[i] = (U8) toLOWER_LC((U8) i);
554 else if (isLOWER_LC((U8) i))
555 PL_fold_locale[i] = (U8) toUPPER_LC((U8) i);
557 PL_fold_locale[i] = (U8) i;
559 /* If checking for locale problems, see if the native ASCII-range
560 * printables plus \n and \t are in their expected categories in
561 * the new locale. If not, this could mean big trouble, upending
562 * Perl's and most programs' assumptions, like having a
563 * metacharacter with special meaning become a \w. Fortunately,
564 * it's very rare to find locales that aren't supersets of ASCII
565 * nowadays. It isn't a problem for most controls to be changed
566 * into something else; we check only \n and \t, though perhaps \r
567 * could be an issue as well. */
568 if ( check_for_problems
569 && (isGRAPH_A(i) || isBLANK_A(i) || i == '\n'))
571 if ( cBOOL(isalnum(i)) != cBOOL(isALPHANUMERIC(i))
572 || cBOOL(isalpha(i)) != cBOOL(isALPHA_A(i))
573 || cBOOL(isdigit(i)) != cBOOL(isDIGIT_A(i))
574 || cBOOL(isgraph(i)) != cBOOL(isGRAPH_A(i))
575 || cBOOL(islower(i)) != cBOOL(isLOWER_A(i))
576 || cBOOL(isprint(i)) != cBOOL(isPRINT_A(i))
577 || cBOOL(ispunct(i)) != cBOOL(isPUNCT_A(i))
578 || cBOOL(isspace(i)) != cBOOL(isSPACE_A(i))
579 || cBOOL(isupper(i)) != cBOOL(isUPPER_A(i))
580 || cBOOL(isxdigit(i))!= cBOOL(isXDIGIT_A(i))
581 || tolower(i) != (int) toLOWER_A(i)
582 || toupper(i) != (int) toUPPER_A(i)
583 || (i == '\n' && ! isCNTRL_LC(i)))
585 if (bad_count) { /* Separate multiple entries with a
587 bad_chars_list[bad_count++] = ' ';
589 bad_chars_list[bad_count++] = '\'';
591 bad_chars_list[bad_count++] = (char) i;
594 bad_chars_list[bad_count++] = '\\';
596 bad_chars_list[bad_count++] = 'n';
600 bad_chars_list[bad_count++] = 't';
603 bad_chars_list[bad_count++] = '\'';
604 bad_chars_list[bad_count] = '\0';
611 /* We only handle single-byte locales (outside of UTF-8 ones; so if
612 * this locale requires more than one byte, there are going to be
614 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
615 "%s:%d: check_for_problems=%d, MB_CUR_MAX=%d\n",
616 __FILE__, __LINE__, check_for_problems, (int) MB_CUR_MAX));
618 if (check_for_problems && MB_CUR_MAX > 1
620 /* Some platforms return MB_CUR_MAX > 1 for even the "C"
621 * locale. Just assume that the implementation for them (plus
622 * for POSIX) is correct and the > 1 value is spurious. (Since
623 * these are specially handled to never be considered UTF-8
624 * locales, as long as this is the only problem, everything
625 * should work fine */
626 && strNE(newctype, "C") && strNE(newctype, "POSIX"))
628 multi_byte_locale = TRUE;
633 if (bad_count || multi_byte_locale) {
634 PL_warn_locale = Perl_newSVpvf(aTHX_
635 "Locale '%s' may not work well.%s%s%s\n",
638 ? " Some characters in it are not recognized by"
642 ? "\nThe following characters (and maybe others)"
643 " may not have the same meaning as the Perl"
644 " program expects:\n"
650 /* If we are actually in the scope of the locale or are debugging,
651 * output the message now. If not in that scope, we save the
652 * message to be output at the first operation using this locale,
653 * if that actually happens. Most programs don't use locales, so
654 * they are immune to bad ones. */
655 if (IN_LC(LC_CTYPE) || UNLIKELY(DEBUG_L_TEST)) {
657 /* We have to save 'newctype' because the setlocale() just
658 * below may destroy it. The next setlocale() further down
659 * should restore it properly so that the intermediate change
660 * here is transparent to this function's caller */
661 const char * const badlocale = savepv(newctype);
663 do_setlocale_c(LC_CTYPE, "C");
665 /* The '0' below suppresses a bogus gcc compiler warning */
666 Perl_warner(aTHX_ packWARN(WARN_LOCALE), SvPVX(PL_warn_locale), 0);
668 do_setlocale_c(LC_CTYPE, badlocale);
671 if (IN_LC(LC_CTYPE)) {
672 SvREFCNT_dec_NN(PL_warn_locale);
673 PL_warn_locale = NULL;
679 #endif /* USE_LOCALE_CTYPE */
684 Perl__warn_problematic_locale()
687 #ifdef USE_LOCALE_CTYPE
691 /* Internal-to-core function that outputs the message in PL_warn_locale,
692 * and then NULLS it. Should be called only through the macro
693 * _CHECK_AND_WARN_PROBLEMATIC_LOCALE */
695 if (PL_warn_locale) {
696 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
697 SvPVX(PL_warn_locale),
698 0 /* dummy to avoid compiler warning */ );
699 SvREFCNT_dec_NN(PL_warn_locale);
700 PL_warn_locale = NULL;
708 S_new_collate(pTHX_ const char *newcoll)
711 #ifndef USE_LOCALE_COLLATE
713 PERL_UNUSED_ARG(newcoll);
718 /* Called after all libc setlocale() calls affecting LC_COLLATE, to tell
719 * core Perl this and that 'newcoll' is the name of the new locale.
721 * The design of locale collation is that every locale change is given an
722 * index 'PL_collation_ix'. The first time a string particpates in an
723 * operation that requires collation while locale collation is active, it
724 * is given PERL_MAGIC_collxfrm magic (via sv_collxfrm_flags()). That
725 * magic includes the collation index, and the transformation of the string
726 * by strxfrm(), q.v. That transformation is used when doing comparisons,
727 * instead of the string itself. If a string changes, the magic is
728 * cleared. The next time the locale changes, the index is incremented,
729 * and so we know during a comparison that the transformation is not
730 * necessarily still valid, and so is recomputed. Note that if the locale
731 * changes enough times, the index could wrap (a U32), and it is possible
732 * that a transformation would improperly be considered valid, leading to
736 if (PL_collation_name) {
738 Safefree(PL_collation_name);
739 PL_collation_name = NULL;
741 PL_collation_standard = TRUE;
742 is_standard_collation:
743 PL_collxfrm_base = 0;
744 PL_collxfrm_mult = 2;
745 PL_in_utf8_COLLATE_locale = FALSE;
746 PL_strxfrm_NUL_replacement = '\0';
747 PL_strxfrm_max_cp = 0;
751 /* If this is not the same locale as currently, set the new one up */
752 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
754 Safefree(PL_collation_name);
755 PL_collation_name = stdize_locale(savepv(newcoll));
756 PL_collation_standard = isNAME_C_OR_POSIX(newcoll);
757 if (PL_collation_standard) {
758 goto is_standard_collation;
761 PL_in_utf8_COLLATE_locale = _is_cur_LC_category_utf8(LC_COLLATE);
762 PL_strxfrm_NUL_replacement = '\0';
763 PL_strxfrm_max_cp = 0;
765 /* A locale collation definition includes primary, secondary, tertiary,
766 * etc. weights for each character. To sort, the primary weights are
767 * used, and only if they compare equal, then the secondary weights are
768 * used, and only if they compare equal, then the tertiary, etc.
770 * strxfrm() works by taking the input string, say ABC, and creating an
771 * output transformed string consisting of first the primary weights,
772 * A¹B¹C¹ followed by the secondary ones, A²B²C²; and then the
773 * tertiary, etc, yielding A¹B¹C¹ A²B²C² A³B³C³ .... Some characters
774 * may not have weights at every level. In our example, let's say B
775 * doesn't have a tertiary weight, and A doesn't have a secondary
776 * weight. The constructed string is then going to be
777 * A¹B¹C¹ B²C² A³C³ ....
778 * This has the desired effect that strcmp() will look at the secondary
779 * or tertiary weights only if the strings compare equal at all higher
780 * priority weights. The spaces shown here, like in
782 * are not just for readability. In the general case, these must
783 * actually be bytes, which we will call here 'separator weights'; and
784 * they must be smaller than any other weight value, but since these
785 * are C strings, only the terminating one can be a NUL (some
786 * implementations may include a non-NUL separator weight just before
787 * the NUL). Implementations tend to reserve 01 for the separator
788 * weights. They are needed so that a shorter string's secondary
789 * weights won't be misconstrued as primary weights of a longer string,
790 * etc. By making them smaller than any other weight, the shorter
791 * string will sort first. (Actually, if all secondary weights are
792 * smaller than all primary ones, there is no need for a separator
793 * weight between those two levels, etc.)
795 * The length of the transformed string is roughly a linear function of
796 * the input string. It's not exactly linear because some characters
797 * don't have weights at all levels. When we call strxfrm() we have to
798 * allocate some memory to hold the transformed string. The
799 * calculations below try to find coefficients 'm' and 'b' for this
800 * locale so that m*x + b equals how much space we need, given the size
801 * of the input string in 'x'. If we calculate too small, we increase
802 * the size as needed, and call strxfrm() again, but it is better to
803 * get it right the first time to avoid wasted expensive string
804 * transformations. */
807 /* We use the string below to find how long the tranformation of it
808 * is. Almost all locales are supersets of ASCII, or at least the
809 * ASCII letters. We use all of them, half upper half lower,
810 * because if we used fewer, we might hit just the ones that are
811 * outliers in a particular locale. Most of the strings being
812 * collated will contain a preponderance of letters, and even if
813 * they are above-ASCII, they are likely to have the same number of
814 * weight levels as the ASCII ones. It turns out that digits tend
815 * to have fewer levels, and some punctuation has more, but those
816 * are relatively sparse in text, and khw believes this gives a
817 * reasonable result, but it could be changed if experience so
819 const char longer[] = "ABCDEFGHIJKLMnopqrstuvwxyz";
820 char * x_longer; /* Transformed 'longer' */
821 Size_t x_len_longer; /* Length of 'x_longer' */
823 char * x_shorter; /* We also transform a substring of 'longer' */
824 Size_t x_len_shorter;
826 /* _mem_collxfrm() is used get the transformation (though here we
827 * are interested only in its length). It is used because it has
828 * the intelligence to handle all cases, but to work, it needs some
829 * values of 'm' and 'b' to get it started. For the purposes of
830 * this calculation we use a very conservative estimate of 'm' and
831 * 'b'. This assumes a weight can be multiple bytes, enough to
832 * hold any UV on the platform, and there are 5 levels, 4 weight
833 * bytes, and a trailing NUL. */
834 PL_collxfrm_base = 5;
835 PL_collxfrm_mult = 5 * sizeof(UV);
837 /* Find out how long the transformation really is */
838 x_longer = _mem_collxfrm(longer,
842 /* We avoid converting to UTF-8 in the
843 * called function by telling it the
844 * string is in UTF-8 if the locale is a
845 * UTF-8 one. Since the string passed
846 * here is invariant under UTF-8, we can
847 * claim it's UTF-8 even though it isn't.
849 PL_in_utf8_COLLATE_locale);
852 /* Find out how long the transformation of a substring of 'longer'
853 * is. Together the lengths of these transformations are
854 * sufficient to calculate 'm' and 'b'. The substring is all of
855 * 'longer' except the first character. This minimizes the chances
856 * of being swayed by outliers */
857 x_shorter = _mem_collxfrm(longer + 1,
860 PL_in_utf8_COLLATE_locale);
863 /* If the results are nonsensical for this simple test, the whole
864 * locale definition is suspect. Mark it so that locale collation
865 * is not active at all for it. XXX Should we warn? */
866 if ( x_len_shorter == 0
868 || x_len_shorter >= x_len_longer)
870 PL_collxfrm_mult = 0;
871 PL_collxfrm_base = 0;
874 SSize_t base; /* Temporary */
876 /* We have both: m * strlen(longer) + b = x_len_longer
877 * m * strlen(shorter) + b = x_len_shorter;
878 * subtracting yields:
879 * m * (strlen(longer) - strlen(shorter))
880 * = x_len_longer - x_len_shorter
881 * But we have set things up so that 'shorter' is 1 byte smaller
882 * than 'longer'. Hence:
883 * m = x_len_longer - x_len_shorter
885 * But if something went wrong, make sure the multiplier is at
888 if (x_len_longer > x_len_shorter) {
889 PL_collxfrm_mult = (STRLEN) x_len_longer - x_len_shorter;
892 PL_collxfrm_mult = 1;
897 * but in case something has gone wrong, make sure it is
899 base = x_len_longer - PL_collxfrm_mult * (sizeof(longer) - 1);
904 /* Add 1 for the trailing NUL */
905 PL_collxfrm_base = base + 1;
910 if (DEBUG_L_TEST || debug_initialization) {
911 PerlIO_printf(Perl_debug_log,
912 "%s:%d: ?UTF-8 locale=%d; x_len_shorter=%zu, "
914 " collate multipler=%zu, collate base=%zu\n",
916 PL_in_utf8_COLLATE_locale,
917 x_len_shorter, x_len_longer,
918 PL_collxfrm_mult, PL_collxfrm_base);
925 #endif /* USE_LOCALE_COLLATE */
932 S_win32_setlocale(pTHX_ int category, const char* locale)
934 /* This, for Windows, emulates POSIX setlocale() behavior. There is no
935 * difference between the two unless the input locale is "", which normally
936 * means on Windows to get the machine default, which is set via the
937 * computer's "Regional and Language Options" (or its current equivalent).
938 * In POSIX, it instead means to find the locale from the user's
939 * environment. This routine changes the Windows behavior to first look in
940 * the environment, and, if anything is found, use that instead of going to
941 * the machine default. If there is no environment override, the machine
942 * default is used, by calling the real setlocale() with "".
944 * The POSIX behavior is to use the LC_ALL variable if set; otherwise to
945 * use the particular category's variable if set; otherwise to use the LANG
948 bool override_LC_ALL = FALSE;
952 if (locale && strEQ(locale, "")) {
956 locale = PerlEnv_getenv("LC_ALL");
958 if (category == LC_ALL) {
959 override_LC_ALL = TRUE;
965 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
966 if (category == categories[i]) {
967 locale = PerlEnv_getenv(category_names[i]);
972 locale = PerlEnv_getenv("LANG");
988 result = setlocale(category, locale);
989 DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n", __FILE__, __LINE__,
990 setlocale_debug_string(category, locale, result)));
992 if (! override_LC_ALL) {
996 /* Here the input category was LC_ALL, and we have set it to what is in the
997 * LANG variable or the system default if there is no LANG. But these have
998 * lower priority than the other LC_foo variables, so override it for each
999 * one that is set. (If they are set to "", it means to use the same thing
1000 * we just set LC_ALL to, so can skip) */
1002 for (i = 0; i < LC_ALL_INDEX; i++) {
1003 result = PerlEnv_getenv(category_names[i]);
1004 if (result && strNE(result, "")) {
1005 setlocale(categories[i], result);
1006 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
1008 setlocale_debug_string(categories[i], result, "not captured")));
1012 result = setlocale(LC_ALL, NULL);
1013 DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
1015 setlocale_debug_string(LC_ALL, NULL, result)));
1023 Perl_setlocale(int category, const char * locale)
1025 /* This wraps POSIX::setlocale() */
1031 #ifdef USE_LOCALE_NUMERIC
1033 /* A NULL locale means only query what the current one is. We
1034 * have the LC_NUMERIC name saved, because we are normally switched
1035 * into the C locale for it. Switch back so an LC_ALL query will yield
1036 * the correct results; all other categories don't require special
1038 if (locale == NULL) {
1039 if (category == LC_NUMERIC) {
1040 return savepv(PL_numeric_name);
1045 else if (category == LC_ALL) {
1046 SET_NUMERIC_UNDERLYING();
1055 /* Save retval since subsequent setlocale() calls may overwrite it. */
1056 retval = savepv(do_setlocale_r(category, locale));
1058 DEBUG_L(PerlIO_printf(Perl_debug_log,
1059 "%s:%d: %s\n", __FILE__, __LINE__,
1060 setlocale_debug_string(category, locale, retval)));
1062 /* Should never happen that a query would return an error, but be
1063 * sure and reset to C locale */
1065 SET_NUMERIC_STANDARD();
1071 /* If locale == NULL, we are just querying the state, but may have switched
1072 * to NUMERIC_UNDERLYING. Switch back before returning. */
1073 if (locale == NULL) {
1074 SET_NUMERIC_STANDARD();
1078 /* Now that have switched locales, we have to update our records to
1083 #ifdef USE_LOCALE_CTYPE
1090 #ifdef USE_LOCALE_COLLATE
1093 new_collate(retval);
1097 #ifdef USE_LOCALE_NUMERIC
1100 new_numeric(retval);
1108 /* LC_ALL updates all the things we care about. The values may not
1109 * be the same as 'retval', as the locale "" may have set things
1112 # ifdef USE_LOCALE_CTYPE
1114 newlocale = do_setlocale_c(LC_CTYPE, NULL);
1115 new_ctype(newlocale);
1117 # endif /* USE_LOCALE_CTYPE */
1118 # ifdef USE_LOCALE_COLLATE
1120 newlocale = do_setlocale_c(LC_COLLATE, NULL);
1121 new_collate(newlocale);
1124 # ifdef USE_LOCALE_NUMERIC
1126 newlocale = do_setlocale_c(LC_NUMERIC, NULL);
1127 new_numeric(newlocale);
1129 # endif /* USE_LOCALE_NUMERIC */
1141 PERL_STATIC_INLINE const char *
1142 S_save_to_buffer(const char * string, char **buf, Size_t *buf_size, const Size_t offset)
1144 /* Copy the NUL-terminated 'string' to 'buf' + 'offset'. 'buf' has size 'buf_size',
1145 * growing it if necessary */
1147 const Size_t string_size = strlen(string) + offset + 1;
1149 PERL_ARGS_ASSERT_SAVE_TO_BUFFER;
1151 if (*buf_size == 0) {
1152 Newx(*buf, string_size, char);
1153 *buf_size = string_size;
1155 else if (string_size > *buf_size) {
1156 Renew(*buf, string_size, char);
1157 *buf_size = string_size;
1160 Copy(string, *buf + offset, string_size - offset, char);
1166 =head1 Locale-related functions and macros
1168 =for apidoc Perl_langinfo
1170 This is an (almost ª) drop-in replacement for the system C<L<nl_langinfo(3)>>,
1171 taking the same C<item> parameter values, and returning the same information.
1172 But it is more thread-safe than regular C<nl_langinfo()>, and hides the quirks
1173 of Perl's locale handling from your code, and can be used on systems that lack
1174 a native C<nl_langinfo>.
1182 It delivers the correct results for the C<RADIXCHAR> and C<THOUSESEP> items,
1183 without you having to write extra code. The reason for the extra code would be
1184 because these are from the C<LC_NUMERIC> locale category, which is normally
1185 kept set to the C locale by Perl, no matter what the underlying locale is
1186 supposed to be, and so to get the expected results, you have to temporarily
1187 toggle into the underlying locale, and later toggle back. (You could use
1188 plain C<nl_langinfo> and C<L</STORE_LC_NUMERIC_FORCE_TO_UNDERLYING>> for this
1189 but then you wouldn't get the other advantages of C<Perl_langinfo()>; not
1190 keeping C<LC_NUMERIC> in the C locale would break a lot of CPAN, which is
1191 expecting the radix (decimal point) character to be a dot.)
1195 Depending on C<item>, it works on systems that don't have C<nl_langinfo>, hence
1196 makes your code more portable. Of the fifty-some possible items specified by
1197 the POSIX 2008 standard,
1198 L<http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/langinfo.h.html>,
1199 only two are completely unimplemented. It uses various techniques to recover
1200 the other items, including calling C<L<localeconv(3)>>, and C<L<strftime(3)>>,
1201 both of which are specified in C89, so should be always be available. Later
1202 C<strftime()> versions have additional capabilities; C<""> is returned for
1203 those not available on your system.
1205 The details for those items which may differ from what this emulation returns
1206 and what a native C<nl_langinfo()> would return are:
1214 Unimplemented, so returns C<"">.
1220 Only the values for English are returned. Earlier POSIX standards also
1221 specified C<YESSTR> and C<NOSTR>, but these have been removed from POSIX 2008,
1222 and aren't supported by C<Perl_langinfo>.
1226 Always evaluates to C<%x>, the locale's appropriate date representation.
1230 Always evaluates to C<%X>, the locale's appropriate time representation.
1234 Always evaluates to C<%c>, the locale's appropriate date and time
1239 The return may be incorrect for those rare locales where the currency symbol
1240 replaces the radix character.
1241 Send email to L<mailto:perlbug@perl.org> if you have examples of it needing
1242 to work differently.
1246 Currently this gives the same results as Linux does.
1247 Send email to L<mailto:perlbug@perl.org> if you have examples of it needing
1248 to work differently.
1254 =item C<ERA_D_T_FMT>
1258 These are derived by using C<strftime()>, and not all versions of that function
1259 know about them. C<""> is returned for these on such systems.
1263 When using C<Perl_langinfo> on systems that don't have a native
1264 C<nl_langinfo()>, you must
1266 #include "perl_langinfo.h"
1268 before the C<perl.h> C<#include>. You can replace your C<langinfo.h>
1269 C<#include> with this one. (Doing it this way keeps out the symbols that plain
1270 C<langinfo.h> imports into the namespace for code that doesn't need it.)
1272 You also should not use the bare C<langinfo.h> item names, but should preface
1273 them with C<PERL_>, so use C<PERL_RADIXCHAR> instead of plain C<RADIXCHAR>.
1274 The C<PERL_I<foo>> versions will also work for this function on systems that do
1275 have a native C<nl_langinfo>.
1279 It is thread-friendly, returning its result in a buffer that won't be
1280 overwritten by another thread, so you don't have to code for that possibility.
1281 The buffer can be overwritten by the next call to C<nl_langinfo> or
1282 C<Perl_langinfo> in the same thread.
1286 ª It returns S<C<const char *>>, whereas plain C<nl_langinfo()> returns S<C<char
1287 *>>, but you are (only by documentation) forbidden to write into the buffer.
1288 By declaring this C<const>, the compiler enforces this restriction. The extra
1289 C<const> is why this isn't an unequivocal drop-in replacement for
1294 The original impetus for C<Perl_langinfo()> was so that code that needs to
1295 find out the current currency symbol, floating point radix character, or digit
1296 grouping separator can use, on all systems, the simpler and more
1297 thread-friendly C<nl_langinfo> API instead of C<L<localeconv(3)>> which is a
1298 pain to make thread-friendly. For other fields returned by C<localeconv>, it
1299 is better to use the methods given in L<perlcall> to call
1300 L<C<POSIX::localeconv()>|POSIX/localeconv>, which is thread-friendly.
1307 #ifdef HAS_NL_LANGINFO
1308 Perl_langinfo(const nl_item item)
1310 Perl_langinfo(const int item)
1313 return my_nl_langinfo(item, TRUE);
1317 #ifdef HAS_NL_LANGINFO
1318 S_my_nl_langinfo(const nl_item item, bool toggle)
1320 S_my_nl_langinfo(const int item, bool toggle)
1325 #if defined(HAS_NL_LANGINFO) /* nl_langinfo() is available. */
1326 #if ! defined(HAS_POSIX_2008_LOCALE)
1328 /* Here, use plain nl_langinfo(), switching to the underlying LC_NUMERIC
1329 * for those items dependent on it. This must be copied to a buffer before
1330 * switching back, as some systems destroy the buffer when setlocale() is
1336 if (item == PERL_RADIXCHAR || item == PERL_THOUSEP) {
1337 do_setlocale_c(LC_NUMERIC, PL_numeric_name);
1344 save_to_buffer(nl_langinfo(item), &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
1347 do_setlocale_c(LC_NUMERIC, "C");
1352 return PL_langinfo_buf;
1354 # else /* Use nl_langinfo_l(), avoiding both a mutex and changing the locale */
1356 bool do_free = FALSE;
1357 locale_t cur = uselocale((locale_t) 0);
1359 if (cur == LC_GLOBAL_LOCALE) {
1360 cur = duplocale(LC_GLOBAL_LOCALE);
1365 && (item == PERL_RADIXCHAR || item == PERL_THOUSEP))
1367 cur = newlocale(LC_NUMERIC_MASK, PL_numeric_name, cur);
1371 save_to_buffer(nl_langinfo_l(item, cur),
1372 &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
1377 return PL_langinfo_buf;
1380 #else /* Below, emulate nl_langinfo as best we can */
1381 # ifdef HAS_LOCALECONV
1383 const struct lconv* lc;
1386 # ifdef HAS_STRFTIME
1389 bool return_format = FALSE; /* Return the %format, not the value */
1390 const char * format;
1394 /* We copy the results to a per-thread buffer, even if not multi-threaded.
1395 * This is in part to simplify this code, and partly because we need a
1396 * buffer anyway for strftime(), and partly because a call of localeconv()
1397 * could otherwise wipe out the buffer, and the programmer would not be
1398 * expecting this, as this is a nl_langinfo() substitute after all, so s/he
1399 * might be thinking their localeconv() is safe until another localeconv()
1404 const char * retval;
1406 /* These 2 are unimplemented */
1408 case PERL_ERA: /* For use with strftime() %E modifier */
1413 /* We use only an English set, since we don't know any more */
1414 case PERL_YESEXPR: return "^[+1yY]";
1415 case PERL_NOEXPR: return "^[-0nN]";
1417 # ifdef HAS_LOCALECONV
1424 if (! lc || ! lc->currency_symbol || strEQ("", lc->currency_symbol))
1430 /* Leave the first spot empty to be filled in below */
1431 save_to_buffer(lc->currency_symbol, &PL_langinfo_buf,
1432 &PL_langinfo_bufsize, 1);
1433 if (lc->mon_decimal_point && strEQ(lc->mon_decimal_point, ""))
1434 { /* khw couldn't figure out how the localedef specifications
1435 would show that the $ should replace the radix; this is
1436 just a guess as to how it might work.*/
1437 *PL_langinfo_buf = '.';
1439 else if (lc->p_cs_precedes) {
1440 *PL_langinfo_buf = '-';
1443 *PL_langinfo_buf = '+';
1449 case PERL_RADIXCHAR:
1455 do_setlocale_c(LC_NUMERIC, PL_numeric_name);
1463 retval = (item == PERL_RADIXCHAR)
1465 : lc->thousands_sep;
1471 save_to_buffer(retval, &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
1474 do_setlocale_c(LC_NUMERIC, "C");
1482 # ifdef HAS_STRFTIME
1484 /* These are defined by C89, so we assume that strftime supports them,
1485 * and so are returned unconditionally; they may not be what the locale
1486 * actually says, but should give good enough results for someone using
1487 * them as formats (as opposed to trying to parse them to figure out
1488 * what the locale says). The other format items are actually tested to
1489 * verify they work on the platform */
1490 case PERL_D_FMT: return "%x";
1491 case PERL_T_FMT: return "%X";
1492 case PERL_D_T_FMT: return "%c";
1494 /* These formats are only available in later strfmtime's */
1495 case PERL_ERA_D_FMT: case PERL_ERA_T_FMT: case PERL_ERA_D_T_FMT:
1496 case PERL_T_FMT_AMPM:
1498 /* The rest can be gotten from most versions of strftime(). */
1499 case PERL_ABDAY_1: case PERL_ABDAY_2: case PERL_ABDAY_3:
1500 case PERL_ABDAY_4: case PERL_ABDAY_5: case PERL_ABDAY_6:
1502 case PERL_ALT_DIGITS:
1503 case PERL_AM_STR: case PERL_PM_STR:
1504 case PERL_ABMON_1: case PERL_ABMON_2: case PERL_ABMON_3:
1505 case PERL_ABMON_4: case PERL_ABMON_5: case PERL_ABMON_6:
1506 case PERL_ABMON_7: case PERL_ABMON_8: case PERL_ABMON_9:
1507 case PERL_ABMON_10: case PERL_ABMON_11: case PERL_ABMON_12:
1508 case PERL_DAY_1: case PERL_DAY_2: case PERL_DAY_3: case PERL_DAY_4:
1509 case PERL_DAY_5: case PERL_DAY_6: case PERL_DAY_7:
1510 case PERL_MON_1: case PERL_MON_2: case PERL_MON_3: case PERL_MON_4:
1511 case PERL_MON_5: case PERL_MON_6: case PERL_MON_7: case PERL_MON_8:
1512 case PERL_MON_9: case PERL_MON_10: case PERL_MON_11: case PERL_MON_12:
1516 init_tm(&tm); /* Precaution against core dumps */
1520 tm.tm_year = 2017 - 1900;
1526 Perl_croak(aTHX_ "panic: %s: %d: switch case: %d problem",
1527 __FILE__, __LINE__, item);
1528 NOT_REACHED; /* NOTREACHED */
1530 case PERL_PM_STR: tm.tm_hour = 18;
1535 case PERL_ABDAY_7: tm.tm_wday++;
1536 case PERL_ABDAY_6: tm.tm_wday++;
1537 case PERL_ABDAY_5: tm.tm_wday++;
1538 case PERL_ABDAY_4: tm.tm_wday++;
1539 case PERL_ABDAY_3: tm.tm_wday++;
1540 case PERL_ABDAY_2: tm.tm_wday++;
1545 case PERL_DAY_7: tm.tm_wday++;
1546 case PERL_DAY_6: tm.tm_wday++;
1547 case PERL_DAY_5: tm.tm_wday++;
1548 case PERL_DAY_4: tm.tm_wday++;
1549 case PERL_DAY_3: tm.tm_wday++;
1550 case PERL_DAY_2: tm.tm_wday++;
1555 case PERL_ABMON_12: tm.tm_mon++;
1556 case PERL_ABMON_11: tm.tm_mon++;
1557 case PERL_ABMON_10: tm.tm_mon++;
1558 case PERL_ABMON_9: tm.tm_mon++;
1559 case PERL_ABMON_8: tm.tm_mon++;
1560 case PERL_ABMON_7: tm.tm_mon++;
1561 case PERL_ABMON_6: tm.tm_mon++;
1562 case PERL_ABMON_5: tm.tm_mon++;
1563 case PERL_ABMON_4: tm.tm_mon++;
1564 case PERL_ABMON_3: tm.tm_mon++;
1565 case PERL_ABMON_2: tm.tm_mon++;
1570 case PERL_MON_12: tm.tm_mon++;
1571 case PERL_MON_11: tm.tm_mon++;
1572 case PERL_MON_10: tm.tm_mon++;
1573 case PERL_MON_9: tm.tm_mon++;
1574 case PERL_MON_8: tm.tm_mon++;
1575 case PERL_MON_7: tm.tm_mon++;
1576 case PERL_MON_6: tm.tm_mon++;
1577 case PERL_MON_5: tm.tm_mon++;
1578 case PERL_MON_4: tm.tm_mon++;
1579 case PERL_MON_3: tm.tm_mon++;
1580 case PERL_MON_2: tm.tm_mon++;
1585 case PERL_T_FMT_AMPM:
1587 return_format = TRUE;
1590 case PERL_ERA_D_FMT:
1592 return_format = TRUE;
1595 case PERL_ERA_T_FMT:
1597 return_format = TRUE;
1600 case PERL_ERA_D_T_FMT:
1602 return_format = TRUE;
1605 case PERL_ALT_DIGITS:
1607 format = "%Ow"; /* Find the alternate digit for 0 */
1611 /* We can't use my_strftime() because it doesn't look at tm_wday */
1612 while (0 == strftime(PL_langinfo_buf, PL_langinfo_bufsize,
1615 /* A zero return means one of:
1616 * a) there wasn't enough space in PL_langinfo_buf
1617 * b) the format, like a plain %p, returns empty
1618 * c) it was an illegal format, though some implementations of
1619 * strftime will just return the illegal format as a plain
1620 * character sequence.
1622 * To quickly test for case 'b)', try again but precede the
1623 * format with a plain character. If that result is still
1624 * empty, the problem is either 'a)' or 'c)' */
1626 Size_t format_size = strlen(format) + 1;
1627 Size_t mod_size = format_size + 1;
1631 Newx(mod_format, mod_size, char);
1632 Newx(temp_result, PL_langinfo_bufsize, char);
1634 my_strlcpy(mod_format + 1, format, mod_size);
1635 len = strftime(temp_result,
1636 PL_langinfo_bufsize,
1638 Safefree(mod_format);
1639 Safefree(temp_result);
1641 /* If 'len' is non-zero, it means that we had a case like %p
1642 * which means the current locale doesn't use a.m. or p.m., and
1646 /* Here, still didn't work. If we get well beyond a
1647 * reasonable size, bail out to prevent an infinite loop. */
1649 if (PL_langinfo_bufsize > 100 * format_size) {
1650 *PL_langinfo_buf = '\0';
1652 else { /* Double the buffer size to retry; Add 1 in case
1653 original was 0, so we aren't stuck at 0. */
1654 PL_langinfo_bufsize *= 2;
1655 PL_langinfo_bufsize++;
1656 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
1664 /* Here, we got a result.
1666 * If the item is 'ALT_DIGITS', PL_langinfo_buf contains the
1667 * alternate format for wday 0. If the value is the same as the
1668 * normal 0, there isn't an alternate, so clear the buffer. */
1669 if ( item == PERL_ALT_DIGITS
1670 && strEQ(PL_langinfo_buf, "0"))
1672 *PL_langinfo_buf = '\0';
1675 /* ALT_DIGITS is problematic. Experiments on it showed that
1676 * strftime() did not always work properly when going from alt-9 to
1677 * alt-10. Only a few locales have this item defined, and in all
1678 * of them on Linux that khw was able to find, nl_langinfo() merely
1679 * returned the alt-0 character, possibly doubled. Most Unicode
1680 * digits are in blocks of 10 consecutive code points, so that is
1681 * sufficient information for those scripts, as we can infer alt-1,
1682 * alt-2, .... But for a Japanese locale, a CJK ideographic 0 is
1683 * returned, and the CJK digits are not in code point order, so you
1684 * can't really infer anything. The localedef for this locale did
1685 * specify the succeeding digits, so that strftime() works properly
1686 * on them, without needing to infer anything. But the
1687 * nl_langinfo() return did not give sufficient information for the
1688 * caller to understand what's going on. So until there is
1689 * evidence that it should work differently, this returns the alt-0
1690 * string for ALT_DIGITS.
1692 * wday was chosen because its range is all a single digit. Things
1693 * like tm_sec have two digits as the minimum: '00' */
1697 /* If to return the format, not the value, overwrite the buffer
1698 * with it. But some strftime()s will keep the original format if
1699 * illegal, so change those to "" */
1700 if (return_format) {
1701 if (strEQ(PL_langinfo_buf, format)) {
1702 *PL_langinfo_buf = '\0';
1705 save_to_buffer(format, &PL_langinfo_buf,
1706 &PL_langinfo_bufsize, 0);
1716 return PL_langinfo_buf;
1723 * Initialize locale awareness.
1726 Perl_init_i18nl10n(pTHX_ int printwarn)
1730 * 0 if not to output warning when setup locale is bad
1731 * 1 if to output warning based on value of PERL_BADLANG
1732 * >1 if to output regardless of PERL_BADLANG
1735 * 1 = set ok or not applicable,
1736 * 0 = fallback to a locale of lower priority
1737 * -1 = fallback to all locales failed, not even to the C locale
1739 * Under -DDEBUGGING, if the environment variable PERL_DEBUG_LOCALE_INIT is
1740 * set, debugging information is output.
1742 * This looks more complicated than it is, mainly due to the #ifdefs.
1744 * We try to set LC_ALL to the value determined by the environment. If
1745 * there is no LC_ALL on this platform, we try the individual categories we
1746 * know about. If this works, we are done.
1748 * But if it doesn't work, we have to do something else. We search the
1749 * environment variables ourselves instead of relying on the system to do
1750 * it. We look at, in order, LC_ALL, LANG, a system default locale (if we
1751 * think there is one), and the ultimate fallback "C". This is all done in
1752 * the same loop as above to avoid duplicating code, but it makes things
1753 * more complex. The 'trial_locales' array is initialized with just one
1754 * element; it causes the behavior described in the paragraph above this to
1755 * happen. If that fails, we add elements to 'trial_locales', and do extra
1756 * loop iterations to cause the behavior described in this paragraph.
1758 * On Ultrix, the locale MUST come from the environment, so there is
1759 * preliminary code to set it. I (khw) am not sure that it is necessary,
1760 * and that this couldn't be folded into the loop, but barring any real
1761 * platforms to test on, it's staying as-is
1763 * A slight complication is that in embedded Perls, the locale may already
1764 * be set-up, and we don't want to get it from the normal environment
1765 * variables. This is handled by having a special environment variable
1766 * indicate we're in this situation. We simply set setlocale's 2nd
1767 * parameter to be a NULL instead of "". That indicates to setlocale that
1768 * it is not to change anything, but to return the current value,
1769 * effectively initializing perl's db to what the locale already is.
1771 * We play the same trick with NULL if a LC_ALL succeeds. We call
1772 * setlocale() on the individual categores with NULL to get their existing
1773 * values for our db, instead of trying to change them.
1780 PERL_UNUSED_ARG(printwarn);
1782 #else /* USE_LOCALE */
1785 const char * const language = savepv(PerlEnv_getenv("LANGUAGE"));
1789 /* NULL uses the existing already set up locale */
1790 const char * const setlocale_init = (PerlEnv_getenv("PERL_SKIP_LOCALE_INIT"))
1793 const char* trial_locales[5]; /* 5 = 1 each for "", LC_ALL, LANG, "", C */
1794 unsigned int trial_locales_count;
1795 const char * const lc_all = savepv(PerlEnv_getenv("LC_ALL"));
1796 const char * const lang = savepv(PerlEnv_getenv("LANG"));
1797 bool setlocale_failure = FALSE;
1800 /* A later getenv() could zap this, so only use here */
1801 const char * const bad_lang_use_once = PerlEnv_getenv("PERL_BADLANG");
1803 const bool locwarn = (printwarn > 1
1805 && ( ! bad_lang_use_once
1807 /* disallow with "" or "0" */
1809 && strNE("0", bad_lang_use_once)))));
1811 char * sl_result[NOMINAL_LC_ALL_INDEX + 1]; /* setlocale() return vals;
1812 not copied so must be
1813 looked at immediately */
1814 char * curlocales[NOMINAL_LC_ALL_INDEX + 1]; /* current locale for given
1815 category; should have been
1816 copied so aren't volatile
1818 char * locale_param;
1822 /* In some systems you can find out the system default locale
1823 * and use that as the fallback locale. */
1824 # define SYSTEM_DEFAULT_LOCALE
1826 # ifdef SYSTEM_DEFAULT_LOCALE
1828 const char *system_default_locale = NULL;
1833 # define DEBUG_LOCALE_INIT(a,b,c)
1836 DEBUG_INITIALIZATION_set(cBOOL(PerlEnv_getenv("PERL_DEBUG_LOCALE_INIT")));
1838 # define DEBUG_LOCALE_INIT(category, locale, result) \
1840 if (debug_initialization) { \
1841 PerlIO_printf(Perl_debug_log, \
1843 __FILE__, __LINE__, \
1844 setlocale_debug_string(category, \
1850 /* Make sure the parallel arrays are properly set up */
1851 # ifdef USE_LOCALE_NUMERIC
1852 assert(categories[LC_NUMERIC_INDEX] == LC_NUMERIC);
1853 assert(strEQ(category_names[LC_NUMERIC_INDEX], "LC_NUMERIC"));
1855 # ifdef USE_LOCALE_CTYPE
1856 assert(categories[LC_CTYPE_INDEX] == LC_CTYPE);
1857 assert(strEQ(category_names[LC_CTYPE_INDEX], "LC_CTYPE"));
1859 # ifdef USE_LOCALE_COLLATE
1860 assert(categories[LC_COLLATE_INDEX] == LC_COLLATE);
1861 assert(strEQ(category_names[LC_COLLATE_INDEX], "LC_COLLATE"));
1863 # ifdef USE_LOCALE_TIME
1864 assert(categories[LC_TIME_INDEX] == LC_TIME);
1865 assert(strEQ(category_names[LC_TIME_INDEX], "LC_TIME"));
1867 # ifdef USE_LOCALE_MESSAGES
1868 assert(categories[LC_MESSAGES_INDEX] == LC_MESSAGES);
1869 assert(strEQ(category_names[LC_MESSAGES_INDEX], "LC_MESSAGES"));
1871 # ifdef USE_LOCALE_MONETARY
1872 assert(categories[LC_MONETARY_INDEX] == LC_MONETARY);
1873 assert(strEQ(category_names[LC_MONETARY_INDEX], "LC_MONETARY"));
1876 assert(categories[LC_ALL_INDEX] == LC_ALL);
1877 assert(strEQ(category_names[LC_ALL_INDEX], "LC_ALL"));
1878 assert(NOMINAL_LC_ALL_INDEX == LC_ALL_INDEX);
1880 # endif /* DEBUGGING */
1881 # ifndef LOCALE_ENVIRON_REQUIRED
1883 PERL_UNUSED_VAR(done);
1884 PERL_UNUSED_VAR(locale_param);
1889 * Ultrix setlocale(..., "") fails if there are no environment
1890 * variables from which to get a locale name.
1896 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, setlocale_init);
1897 DEBUG_LOCALE_INIT(LC_ALL, setlocale_init, sl_result[LC_ALL_INDEX]);
1898 if (sl_result[LC_ALL_INDEX])
1901 setlocale_failure = TRUE;
1903 if (! setlocale_failure) {
1904 for (i = 0; i < LC_ALL_INDEX; i++) {
1905 locale_param = (! done && (lang || PerlEnv_getenv(category_names[i])))
1908 sl_result[i] = do_setlocale_r(categories[i], locale_param);
1909 if (! sl_result[i]) {
1910 setlocale_failure = TRUE;
1912 DEBUG_LOCALE_INIT(categories[i], locale_param, sl_result[i]);
1916 # endif /* LC_ALL */
1917 # endif /* LOCALE_ENVIRON_REQUIRED */
1919 /* We try each locale in the list until we get one that works, or exhaust
1920 * the list. Normally the loop is executed just once. But if setting the
1921 * locale fails, inside the loop we add fallback trials to the array and so
1922 * will execute the loop multiple times */
1923 trial_locales[0] = setlocale_init;
1924 trial_locales_count = 1;
1926 for (i= 0; i < trial_locales_count; i++) {
1927 const char * trial_locale = trial_locales[i];
1931 /* XXX This is to preserve old behavior for LOCALE_ENVIRON_REQUIRED
1932 * when i==0, but I (khw) don't think that behavior makes much
1934 setlocale_failure = FALSE;
1936 # ifdef SYSTEM_DEFAULT_LOCALE
1939 /* On Windows machines, an entry of "" after the 0th means to use
1940 * the system default locale, which we now proceed to get. */
1941 if (strEQ(trial_locale, "")) {
1944 /* Note that this may change the locale, but we are going to do
1945 * that anyway just below */
1946 system_default_locale = do_setlocale_c(LC_ALL, "");
1947 DEBUG_LOCALE_INIT(LC_ALL, "", system_default_locale);
1949 /* Skip if invalid or if it's already on the list of locales to
1951 if (! system_default_locale) {
1952 goto next_iteration;
1954 for (j = 0; j < trial_locales_count; j++) {
1955 if (strEQ(system_default_locale, trial_locales[j])) {
1956 goto next_iteration;
1960 trial_locale = system_default_locale;
1963 # endif /* SYSTEM_DEFAULT_LOCALE */
1968 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, trial_locale);
1969 DEBUG_LOCALE_INIT(LC_ALL, trial_locale, sl_result[LC_ALL_INDEX]);
1970 if (! sl_result[LC_ALL_INDEX]) {
1971 setlocale_failure = TRUE;
1974 /* Since LC_ALL succeeded, it should have changed all the other
1975 * categories it can to its value; so we massage things so that the
1976 * setlocales below just return their category's current values.
1977 * This adequately handles the case in NetBSD where LC_COLLATE may
1978 * not be defined for a locale, and setting it individually will
1979 * fail, whereas setting LC_ALL succeeds, leaving LC_COLLATE set to
1980 * the POSIX locale. */
1981 trial_locale = NULL;
1984 # endif /* LC_ALL */
1986 if (! setlocale_failure) {
1988 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
1990 = savepv(do_setlocale_r(categories[j], trial_locale));
1991 if (! curlocales[j]) {
1992 setlocale_failure = TRUE;
1994 DEBUG_LOCALE_INIT(categories[j], trial_locale, curlocales[j]);
1997 if (! setlocale_failure) { /* All succeeded */
1998 break; /* Exit trial_locales loop */
2002 /* Here, something failed; will need to try a fallback. */
2008 if (locwarn) { /* Output failure info only on the first one */
2012 PerlIO_printf(Perl_error_log,
2013 "perl: warning: Setting locale failed.\n");
2015 # else /* !LC_ALL */
2017 PerlIO_printf(Perl_error_log,
2018 "perl: warning: Setting locale failed for the categories:\n\t");
2020 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
2021 if (! curlocales[j]) {
2022 PerlIO_printf(Perl_error_log, category_names[j]);
2025 Safefree(curlocales[j]);
2029 PerlIO_printf(Perl_error_log, "and possibly others\n");
2031 # endif /* LC_ALL */
2033 PerlIO_printf(Perl_error_log,
2034 "perl: warning: Please check that your locale settings:\n");
2038 PerlIO_printf(Perl_error_log,
2039 "\tLANGUAGE = %c%s%c,\n",
2040 language ? '"' : '(',
2041 language ? language : "unset",
2042 language ? '"' : ')');
2045 PerlIO_printf(Perl_error_log,
2046 "\tLC_ALL = %c%s%c,\n",
2048 lc_all ? lc_all : "unset",
2049 lc_all ? '"' : ')');
2051 # if defined(USE_ENVIRON_ARRAY)
2056 /* Look through the environment for any variables of the
2057 * form qr/ ^ LC_ [A-Z]+ = /x, except LC_ALL which was
2058 * already handled above. These are assumed to be locale
2059 * settings. Output them and their values. */
2060 for (e = environ; *e; e++) {
2061 const STRLEN prefix_len = sizeof("LC_") - 1;
2064 if ( strBEGINs(*e, "LC_")
2065 && ! strBEGINs(*e, "LC_ALL=")
2066 && (uppers_len = strspn(*e + prefix_len,
2067 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
2068 && ((*e)[prefix_len + uppers_len] == '='))
2070 PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
2071 (int) (prefix_len + uppers_len), *e,
2072 *e + prefix_len + uppers_len + 1);
2079 PerlIO_printf(Perl_error_log,
2080 "\t(possibly more locale environment variables)\n");
2084 PerlIO_printf(Perl_error_log,
2085 "\tLANG = %c%s%c\n",
2087 lang ? lang : "unset",
2090 PerlIO_printf(Perl_error_log,
2091 " are supported and installed on your system.\n");
2094 /* Calculate what fallback locales to try. We have avoided this
2095 * until we have to, because failure is quite unlikely. This will
2096 * usually change the upper bound of the loop we are in.
2098 * Since the system's default way of setting the locale has not
2099 * found one that works, We use Perl's defined ordering: LC_ALL,
2100 * LANG, and the C locale. We don't try the same locale twice, so
2101 * don't add to the list if already there. (On POSIX systems, the
2102 * LC_ALL element will likely be a repeat of the 0th element "",
2103 * but there's no harm done by doing it explicitly.
2105 * Note that this tries the LC_ALL environment variable even on
2106 * systems which have no LC_ALL locale setting. This may or may
2107 * not have been originally intentional, but there's no real need
2108 * to change the behavior. */
2110 for (j = 0; j < trial_locales_count; j++) {
2111 if (strEQ(lc_all, trial_locales[j])) {
2115 trial_locales[trial_locales_count++] = lc_all;
2120 for (j = 0; j < trial_locales_count; j++) {
2121 if (strEQ(lang, trial_locales[j])) {
2125 trial_locales[trial_locales_count++] = lang;
2129 # if defined(WIN32) && defined(LC_ALL)
2131 /* For Windows, we also try the system default locale before "C".
2132 * (If there exists a Windows without LC_ALL we skip this because
2133 * it gets too complicated. For those, the "C" is the next
2134 * fallback possibility). The "" is the same as the 0th element of
2135 * the array, but the code at the loop above knows to treat it
2136 * differently when not the 0th */
2137 trial_locales[trial_locales_count++] = "";
2141 for (j = 0; j < trial_locales_count; j++) {
2142 if (strEQ("C", trial_locales[j])) {
2146 trial_locales[trial_locales_count++] = "C";
2149 } /* end of first time through the loop */
2157 } /* end of looping through the trial locales */
2159 if (ok < 1) { /* If we tried to fallback */
2161 if (! setlocale_failure) { /* fallback succeeded */
2162 msg = "Falling back to";
2164 else { /* fallback failed */
2167 /* We dropped off the end of the loop, so have to decrement i to
2168 * get back to the value the last time through */
2172 msg = "Failed to fall back to";
2174 /* To continue, we should use whatever values we've got */
2176 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
2177 Safefree(curlocales[j]);
2178 curlocales[j] = savepv(do_setlocale_r(categories[j], NULL));
2179 DEBUG_LOCALE_INIT(categories[j], NULL, curlocales[j]);
2184 const char * description;
2185 const char * name = "";
2186 if (strEQ(trial_locales[i], "C")) {
2187 description = "the standard locale";
2191 # ifdef SYSTEM_DEFAULT_LOCALE
2193 else if (strEQ(trial_locales[i], "")) {
2194 description = "the system default locale";
2195 if (system_default_locale) {
2196 name = system_default_locale;
2200 # endif /* SYSTEM_DEFAULT_LOCALE */
2203 description = "a fallback locale";
2204 name = trial_locales[i];
2206 if (name && strNE(name, "")) {
2207 PerlIO_printf(Perl_error_log,
2208 "perl: warning: %s %s (\"%s\").\n", msg, description, name);
2211 PerlIO_printf(Perl_error_log,
2212 "perl: warning: %s %s.\n", msg, description);
2215 } /* End of tried to fallback */
2217 /* Done with finding the locales; update our records */
2219 # ifdef USE_LOCALE_CTYPE
2221 new_ctype(curlocales[LC_CTYPE_INDEX]);
2224 # ifdef USE_LOCALE_COLLATE
2226 new_collate(curlocales[LC_COLLATE_INDEX]);
2229 # ifdef USE_LOCALE_NUMERIC
2231 new_numeric(curlocales[LC_NUMERIC_INDEX]);
2236 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
2237 Safefree(curlocales[i]);
2240 # if defined(USE_PERLIO) && defined(USE_LOCALE_CTYPE)
2242 /* Set PL_utf8locale to TRUE if using PerlIO _and_ the current LC_CTYPE
2243 * locale is UTF-8. If PL_utf8locale and PL_unicode (set by -C or by
2244 * $ENV{PERL_UNICODE}) are true, perl.c:S_parse_body() will turn on the
2245 * PerlIO :utf8 layer on STDIN, STDOUT, STDERR, _and_ the default open
2247 PL_utf8locale = _is_cur_LC_category_utf8(LC_CTYPE);
2249 /* Set PL_unicode to $ENV{PERL_UNICODE} if using PerlIO.
2250 This is an alternative to using the -C command line switch
2251 (the -C if present will override this). */
2253 const char *p = PerlEnv_getenv("PERL_UNICODE");
2254 PL_unicode = p ? parse_unicode_opts(&p) : 0;
2255 if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG)
2269 #endif /* USE_LOCALE */
2272 /* So won't continue to output stuff */
2273 DEBUG_INITIALIZATION_set(FALSE);
2280 #ifdef USE_LOCALE_COLLATE
2283 Perl__mem_collxfrm(pTHX_ const char *input_string,
2284 STRLEN len, /* Length of 'input_string' */
2285 STRLEN *xlen, /* Set to length of returned string
2286 (not including the collation index
2288 bool utf8 /* Is the input in UTF-8? */
2292 /* _mem_collxfrm() is a bit like strxfrm() but with two important
2293 * differences. First, it handles embedded NULs. Second, it allocates a bit
2294 * more memory than needed for the transformed data itself. The real
2295 * transformed data begins at offset COLLXFRM_HDR_LEN. *xlen is set to
2296 * the length of that, and doesn't include the collation index size.
2297 * Please see sv_collxfrm() to see how this is used. */
2299 #define COLLXFRM_HDR_LEN sizeof(PL_collation_ix)
2301 char * s = (char *) input_string;
2302 STRLEN s_strlen = strlen(input_string);
2304 STRLEN xAlloc; /* xalloc is a reserved word in VC */
2305 STRLEN length_in_chars;
2306 bool first_time = TRUE; /* Cleared after first loop iteration */
2308 PERL_ARGS_ASSERT__MEM_COLLXFRM;
2310 /* Must be NUL-terminated */
2311 assert(*(input_string + len) == '\0');
2313 /* If this locale has defective collation, skip */
2314 if (PL_collxfrm_base == 0 && PL_collxfrm_mult == 0) {
2315 DEBUG_L(PerlIO_printf(Perl_debug_log,
2316 "_mem_collxfrm: locale's collation is defective\n"));
2320 /* Replace any embedded NULs with the control that sorts before any others.
2321 * This will give as good as possible results on strings that don't
2322 * otherwise contain that character, but otherwise there may be
2323 * less-than-perfect results with that character and NUL. This is
2324 * unavoidable unless we replace strxfrm with our own implementation. */
2325 if (UNLIKELY(s_strlen < len)) { /* Only execute if there is an embedded
2329 STRLEN sans_nuls_len;
2330 int try_non_controls;
2331 char this_replacement_char[] = "?\0"; /* Room for a two-byte string,
2332 making sure 2nd byte is NUL.
2334 STRLEN this_replacement_len;
2336 /* If we don't know what non-NUL control character sorts lowest for
2337 * this locale, find it */
2338 if (PL_strxfrm_NUL_replacement == '\0') {
2340 char * cur_min_x = NULL; /* The min_char's xfrm, (except it also
2341 includes the collation index
2344 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Looking to replace NUL\n"));
2346 /* Unlikely, but it may be that no control will work to replace
2347 * NUL, in which case we instead look for any character. Controls
2348 * are preferred because collation order is, in general, context
2349 * sensitive, with adjoining characters affecting the order, and
2350 * controls are less likely to have such interactions, allowing the
2351 * NUL-replacement to stand on its own. (Another way to look at it
2352 * is to imagine what would happen if the NUL were replaced by a
2353 * combining character; it wouldn't work out all that well.) */
2354 for (try_non_controls = 0;
2355 try_non_controls < 2;
2358 /* Look through all legal code points (NUL isn't) */
2359 for (j = 1; j < 256; j++) {
2360 char * x; /* j's xfrm plus collation index */
2361 STRLEN x_len; /* length of 'x' */
2362 STRLEN trial_len = 1;
2363 char cur_source[] = { '\0', '\0' };
2365 /* Skip non-controls the first time through the loop. The
2366 * controls in a UTF-8 locale are the L1 ones */
2367 if (! try_non_controls && (PL_in_utf8_COLLATE_locale)
2374 /* Create a 1-char string of the current code point */
2375 cur_source[0] = (char) j;
2377 /* Then transform it */
2378 x = _mem_collxfrm(cur_source, trial_len, &x_len,
2379 0 /* The string is not in UTF-8 */);
2381 /* Ignore any character that didn't successfully transform.
2387 /* If this character's transformation is lower than
2388 * the current lowest, this one becomes the lowest */
2389 if ( cur_min_x == NULL
2390 || strLT(x + COLLXFRM_HDR_LEN,
2391 cur_min_x + COLLXFRM_HDR_LEN))
2393 PL_strxfrm_NUL_replacement = j;
2399 } /* end of loop through all 255 characters */
2401 /* Stop looking if found */
2406 /* Unlikely, but possible, if there aren't any controls that
2407 * work in the locale, repeat the loop, looking for any
2408 * character that works */
2409 DEBUG_L(PerlIO_printf(Perl_debug_log,
2410 "_mem_collxfrm: No control worked. Trying non-controls\n"));
2411 } /* End of loop to try first the controls, then any char */
2414 DEBUG_L(PerlIO_printf(Perl_debug_log,
2415 "_mem_collxfrm: Couldn't find any character to replace"
2416 " embedded NULs in locale %s with", PL_collation_name));
2420 DEBUG_L(PerlIO_printf(Perl_debug_log,
2421 "_mem_collxfrm: Replacing embedded NULs in locale %s with "
2422 "0x%02X\n", PL_collation_name, PL_strxfrm_NUL_replacement));
2424 Safefree(cur_min_x);
2425 } /* End of determining the character that is to replace NULs */
2427 /* If the replacement is variant under UTF-8, it must match the
2428 * UTF8-ness as the original */
2429 if ( ! UVCHR_IS_INVARIANT(PL_strxfrm_NUL_replacement) && utf8) {
2430 this_replacement_char[0] =
2431 UTF8_EIGHT_BIT_HI(PL_strxfrm_NUL_replacement);
2432 this_replacement_char[1] =
2433 UTF8_EIGHT_BIT_LO(PL_strxfrm_NUL_replacement);
2434 this_replacement_len = 2;
2437 this_replacement_char[0] = PL_strxfrm_NUL_replacement;
2438 /* this_replacement_char[1] = '\0' was done at initialization */
2439 this_replacement_len = 1;
2442 /* The worst case length for the replaced string would be if every
2443 * character in it is NUL. Multiply that by the length of each
2444 * replacement, and allow for a trailing NUL */
2445 sans_nuls_len = (len * this_replacement_len) + 1;
2446 Newx(sans_nuls, sans_nuls_len, char);
2449 /* Replace each NUL with the lowest collating control. Loop until have
2450 * exhausted all the NULs */
2451 while (s + s_strlen < e) {
2452 my_strlcat(sans_nuls, s, sans_nuls_len);
2454 /* Do the actual replacement */
2455 my_strlcat(sans_nuls, this_replacement_char, sans_nuls_len);
2457 /* Move past the input NUL */
2459 s_strlen = strlen(s);
2462 /* And add anything that trails the final NUL */
2463 my_strlcat(sans_nuls, s, sans_nuls_len);
2465 /* Switch so below we transform this modified string */
2468 } /* End of replacing NULs */
2470 /* Make sure the UTF8ness of the string and locale match */
2471 if (utf8 != PL_in_utf8_COLLATE_locale) {
2472 const char * const t = s; /* Temporary so we can later find where the
2475 /* Here they don't match. Change the string's to be what the locale is
2478 if (! utf8) { /* locale is UTF-8, but input isn't; upgrade the input */
2479 s = (char *) bytes_to_utf8((const U8 *) s, &len);
2482 else { /* locale is not UTF-8; but input is; downgrade the input */
2484 s = (char *) bytes_from_utf8((const U8 *) s, &len, &utf8);
2486 /* If the downgrade was successful we are done, but if the input
2487 * contains things that require UTF-8 to represent, have to do
2488 * damage control ... */
2489 if (UNLIKELY(utf8)) {
2491 /* What we do is construct a non-UTF-8 string with
2492 * 1) the characters representable by a single byte converted
2493 * to be so (if necessary);
2494 * 2) and the rest converted to collate the same as the
2495 * highest collating representable character. That makes
2496 * them collate at the end. This is similar to how we
2497 * handle embedded NULs, but we use the highest collating
2498 * code point instead of the smallest. Like the NUL case,
2499 * this isn't perfect, but is the best we can reasonably
2500 * do. Every above-255 code point will sort the same as
2501 * the highest-sorting 0-255 code point. If that code
2502 * point can combine in a sequence with some other code
2503 * points for weight calculations, us changing something to
2504 * be it can adversely affect the results. But in most
2505 * cases, it should work reasonably. And note that this is
2506 * really an illegal situation: using code points above 255
2507 * on a locale where only 0-255 are valid. If two strings
2508 * sort entirely equal, then the sort order for the
2509 * above-255 code points will be in code point order. */
2513 /* If we haven't calculated the code point with the maximum
2514 * collating order for this locale, do so now */
2515 if (! PL_strxfrm_max_cp) {
2518 /* The current transformed string that collates the
2519 * highest (except it also includes the prefixed collation
2521 char * cur_max_x = NULL;
2523 /* Look through all legal code points (NUL isn't) */
2524 for (j = 1; j < 256; j++) {
2527 char cur_source[] = { '\0', '\0' };
2529 /* Create a 1-char string of the current code point */
2530 cur_source[0] = (char) j;
2532 /* Then transform it */
2533 x = _mem_collxfrm(cur_source, 1, &x_len, FALSE);
2535 /* If something went wrong (which it shouldn't), just
2536 * ignore this code point */
2541 /* If this character's transformation is higher than
2542 * the current highest, this one becomes the highest */
2543 if ( cur_max_x == NULL
2544 || strGT(x + COLLXFRM_HDR_LEN,
2545 cur_max_x + COLLXFRM_HDR_LEN))
2547 PL_strxfrm_max_cp = j;
2556 DEBUG_L(PerlIO_printf(Perl_debug_log,
2557 "_mem_collxfrm: Couldn't find any character to"
2558 " replace above-Latin1 chars in locale %s with",
2559 PL_collation_name));
2563 DEBUG_L(PerlIO_printf(Perl_debug_log,
2564 "_mem_collxfrm: highest 1-byte collating character"
2565 " in locale %s is 0x%02X\n",
2567 PL_strxfrm_max_cp));
2569 Safefree(cur_max_x);
2572 /* Here we know which legal code point collates the highest.
2573 * We are ready to construct the non-UTF-8 string. The length
2574 * will be at least 1 byte smaller than the input string
2575 * (because we changed at least one 2-byte character into a
2576 * single byte), but that is eaten up by the trailing NUL */
2582 char * e = (char *) t + len;
2584 for (i = 0; i < len; i+= UTF8SKIP(t + i)) {
2586 if (UTF8_IS_INVARIANT(cur_char)) {
2589 else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(t + i, e)) {
2590 s[d++] = EIGHT_BIT_UTF8_TO_NATIVE(cur_char, t[i+1]);
2592 else { /* Replace illegal cp with highest collating
2594 s[d++] = PL_strxfrm_max_cp;
2598 Renew(s, d, char); /* Free up unused space */
2603 /* Here, we have constructed a modified version of the input. It could
2604 * be that we already had a modified copy before we did this version.
2605 * If so, that copy is no longer needed */
2606 if (t != input_string) {
2611 length_in_chars = (utf8)
2612 ? utf8_length((U8 *) s, (U8 *) s + len)
2615 /* The first element in the output is the collation id, used by
2616 * sv_collxfrm(); then comes the space for the transformed string. The
2617 * equation should give us a good estimate as to how much is needed */
2618 xAlloc = COLLXFRM_HDR_LEN
2620 + (PL_collxfrm_mult * length_in_chars);
2621 Newx(xbuf, xAlloc, char);
2622 if (UNLIKELY(! xbuf)) {
2623 DEBUG_L(PerlIO_printf(Perl_debug_log,
2624 "_mem_collxfrm: Couldn't malloc %zu bytes\n", xAlloc));
2628 /* Store the collation id */
2629 *(U32*)xbuf = PL_collation_ix;
2631 /* Then the transformation of the input. We loop until successful, or we
2635 *xlen = strxfrm(xbuf + COLLXFRM_HDR_LEN, s, xAlloc - COLLXFRM_HDR_LEN);
2637 /* If the transformed string occupies less space than we told strxfrm()
2638 * was available, it means it successfully transformed the whole
2640 if (*xlen < xAlloc - COLLXFRM_HDR_LEN) {
2642 /* Some systems include a trailing NUL in the returned length.
2643 * Ignore it, using a loop in case multiple trailing NULs are
2646 && *(xbuf + COLLXFRM_HDR_LEN + (*xlen) - 1) == '\0')
2651 /* If the first try didn't get it, it means our prediction was low.
2652 * Modify the coefficients so that we predict a larger value in any
2653 * future transformations */
2655 STRLEN needed = *xlen + 1; /* +1 For trailing NUL */
2656 STRLEN computed_guess = PL_collxfrm_base
2657 + (PL_collxfrm_mult * length_in_chars);
2659 /* On zero-length input, just keep current slope instead of
2661 const STRLEN new_m = (length_in_chars != 0)
2662 ? needed / length_in_chars
2665 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
2666 "%s: %d: initial size of %zu bytes for a length "
2667 "%zu string was insufficient, %zu needed\n",
2669 computed_guess, length_in_chars, needed));
2671 /* If slope increased, use it, but discard this result for
2672 * length 1 strings, as we can't be sure that it's a real slope
2674 if (length_in_chars > 1 && new_m > PL_collxfrm_mult) {
2678 STRLEN old_m = PL_collxfrm_mult;
2679 STRLEN old_b = PL_collxfrm_base;
2683 PL_collxfrm_mult = new_m;
2684 PL_collxfrm_base = 1; /* +1 For trailing NUL */
2685 computed_guess = PL_collxfrm_base
2686 + (PL_collxfrm_mult * length_in_chars);
2687 if (computed_guess < needed) {
2688 PL_collxfrm_base += needed - computed_guess;
2691 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
2692 "%s: %d: slope is now %zu; was %zu, base "
2693 "is now %zu; was %zu\n",
2695 PL_collxfrm_mult, old_m,
2696 PL_collxfrm_base, old_b));
2698 else { /* Slope didn't change, but 'b' did */
2699 const STRLEN new_b = needed
2702 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
2703 "%s: %d: base is now %zu; was %zu\n",
2705 new_b, PL_collxfrm_base));
2706 PL_collxfrm_base = new_b;
2713 if (UNLIKELY(*xlen >= PERL_INT_MAX)) {
2714 DEBUG_L(PerlIO_printf(Perl_debug_log,
2715 "_mem_collxfrm: Needed %zu bytes, max permissible is %u\n",
2716 *xlen, PERL_INT_MAX));
2720 /* A well-behaved strxfrm() returns exactly how much space it needs
2721 * (usually not including the trailing NUL) when it fails due to not
2722 * enough space being provided. Assume that this is the case unless
2723 * it's been proven otherwise */
2724 if (LIKELY(PL_strxfrm_is_behaved) && first_time) {
2725 xAlloc = *xlen + COLLXFRM_HDR_LEN + 1;
2727 else { /* Here, either:
2728 * 1) The strxfrm() has previously shown bad behavior; or
2729 * 2) It isn't the first time through the loop, which means
2730 * that the strxfrm() is now showing bad behavior, because
2731 * we gave it what it said was needed in the previous
2732 * iteration, and it came back saying it needed still more.
2733 * (Many versions of cygwin fit this. When the buffer size
2734 * isn't sufficient, they return the input size instead of
2735 * how much is needed.)
2736 * Increase the buffer size by a fixed percentage and try again.
2738 xAlloc += (xAlloc / 4) + 1;
2739 PL_strxfrm_is_behaved = FALSE;
2743 if (DEBUG_Lv_TEST || debug_initialization) {
2744 PerlIO_printf(Perl_debug_log,
2745 "_mem_collxfrm required more space than previously calculated"
2746 " for locale %s, trying again with new guess=%d+%zu\n",
2747 PL_collation_name, (int) COLLXFRM_HDR_LEN,
2748 xAlloc - COLLXFRM_HDR_LEN);
2755 Renew(xbuf, xAlloc, char);
2756 if (UNLIKELY(! xbuf)) {
2757 DEBUG_L(PerlIO_printf(Perl_debug_log,
2758 "_mem_collxfrm: Couldn't realloc %zu bytes\n", xAlloc));
2768 if (DEBUG_Lv_TEST || debug_initialization) {
2770 print_collxfrm_input_and_return(s, s + len, xlen, utf8);
2771 PerlIO_printf(Perl_debug_log, "Its xfrm is:");
2772 PerlIO_printf(Perl_debug_log, "%s\n",
2773 _byte_dump_string((U8 *) xbuf + COLLXFRM_HDR_LEN,
2779 /* Free up unneeded space; retain ehough for trailing NUL */
2780 Renew(xbuf, COLLXFRM_HDR_LEN + *xlen + 1, char);
2782 if (s != input_string) {
2790 if (s != input_string) {
2797 if (DEBUG_Lv_TEST || debug_initialization) {
2798 print_collxfrm_input_and_return(s, s + len, NULL, utf8);
2809 S_print_collxfrm_input_and_return(pTHX_
2810 const char * const s,
2811 const char * const e,
2812 const STRLEN * const xlen,
2816 PERL_ARGS_ASSERT_PRINT_COLLXFRM_INPUT_AND_RETURN;
2818 PerlIO_printf(Perl_debug_log, "_mem_collxfrm[%" UVuf "]: returning ",
2819 (UV)PL_collation_ix);
2821 PerlIO_printf(Perl_debug_log, "%zu", *xlen);
2824 PerlIO_printf(Perl_debug_log, "NULL");
2826 PerlIO_printf(Perl_debug_log, " for locale '%s', string='",
2828 print_bytes_for_locale(s, e, is_utf8);
2830 PerlIO_printf(Perl_debug_log, "'\n");
2834 S_print_bytes_for_locale(pTHX_
2835 const char * const s,
2836 const char * const e,
2840 bool prev_was_printable = TRUE;
2841 bool first_time = TRUE;
2843 PERL_ARGS_ASSERT_PRINT_BYTES_FOR_LOCALE;
2847 ? utf8_to_uvchr_buf((U8 *) t, e, NULL)
2850 if (! prev_was_printable) {
2851 PerlIO_printf(Perl_debug_log, " ");
2853 PerlIO_printf(Perl_debug_log, "%c", (U8) cp);
2854 prev_was_printable = TRUE;
2858 PerlIO_printf(Perl_debug_log, " ");
2860 PerlIO_printf(Perl_debug_log, "%02" UVXf, cp);
2861 prev_was_printable = FALSE;
2863 t += (is_utf8) ? UTF8SKIP(t) : 1;
2868 # endif /* #ifdef DEBUGGING */
2869 #endif /* USE_LOCALE_COLLATE */
2874 Perl__is_cur_LC_category_utf8(pTHX_ int category)
2876 /* Returns TRUE if the current locale for 'category' is UTF-8; FALSE
2877 * otherwise. 'category' may not be LC_ALL. If the platform doesn't have
2878 * nl_langinfo(), nor MB_CUR_MAX, this employs a heuristic, which hence
2879 * could give the wrong result. The result will very likely be correct for
2880 * languages that have commonly used non-ASCII characters, but for notably
2881 * English, it comes down to if the locale's name ends in something like
2882 * "UTF-8". It errs on the side of not being a UTF-8 locale. */
2884 char *save_input_locale = NULL;
2889 assert(category != LC_ALL);
2893 /* First dispose of the trivial cases */
2894 save_input_locale = do_setlocale_r(category, NULL);
2895 if (! save_input_locale) {
2896 DEBUG_L(PerlIO_printf(Perl_debug_log,
2897 "Could not find current locale for category %d\n",
2899 return FALSE; /* XXX maybe should croak */
2901 save_input_locale = stdize_locale(savepv(save_input_locale));
2902 if (isNAME_C_OR_POSIX(save_input_locale)) {
2903 DEBUG_L(PerlIO_printf(Perl_debug_log,
2904 "Current locale for category %d is %s\n",
2905 category, save_input_locale));
2906 Safefree(save_input_locale);
2910 # if defined(USE_LOCALE_CTYPE) \
2911 && (defined(MB_CUR_MAX) || (defined(HAS_NL_LANGINFO) && defined(CODESET)))
2913 { /* Next try nl_langinfo or MB_CUR_MAX if available */
2915 char *save_ctype_locale = NULL;
2918 if (category != LC_CTYPE) { /* These work only on LC_CTYPE */
2920 /* Get the current LC_CTYPE locale */
2921 save_ctype_locale = do_setlocale_c(LC_CTYPE, NULL);
2922 if (! save_ctype_locale) {
2923 DEBUG_L(PerlIO_printf(Perl_debug_log,
2924 "Could not find current locale for LC_CTYPE\n"));
2925 goto cant_use_nllanginfo;
2927 save_ctype_locale = stdize_locale(savepv(save_ctype_locale));
2929 /* If LC_CTYPE and the desired category use the same locale, this
2930 * means that finding the value for LC_CTYPE is the same as finding
2931 * the value for the desired category. Otherwise, switch LC_CTYPE
2932 * to the desired category's locale */
2933 if (strEQ(save_ctype_locale, save_input_locale)) {
2934 Safefree(save_ctype_locale);
2935 save_ctype_locale = NULL;
2937 else if (! do_setlocale_c(LC_CTYPE, save_input_locale)) {
2938 DEBUG_L(PerlIO_printf(Perl_debug_log,
2939 "Could not change LC_CTYPE locale to %s\n",
2940 save_input_locale));
2941 Safefree(save_ctype_locale);
2942 goto cant_use_nllanginfo;
2946 DEBUG_L(PerlIO_printf(Perl_debug_log, "Current LC_CTYPE locale=%s\n",
2947 save_input_locale));
2949 /* Here the current LC_CTYPE is set to the locale of the category whose
2950 * information is desired. This means that nl_langinfo() and MB_CUR_MAX
2951 * should give the correct results */
2953 # if defined(HAS_NL_LANGINFO) && defined(CODESET)
2954 /* The task is easiest if has this POSIX 2001 function */
2957 const char *codeset = my_nl_langinfo(PERL_CODESET, FALSE);
2958 /* FALSE => already in dest locale */
2960 DEBUG_L(PerlIO_printf(Perl_debug_log,
2961 "\tnllanginfo returned CODESET '%s'\n", codeset));
2963 if (codeset && strNE(codeset, "")) {
2964 /* If we switched LC_CTYPE, switch back */
2965 if (save_ctype_locale) {
2966 do_setlocale_c(LC_CTYPE, save_ctype_locale);
2967 Safefree(save_ctype_locale);
2970 is_utf8 = ( ( strlen(codeset) == STRLENs("UTF-8")
2971 && foldEQ(codeset, STR_WITH_LEN("UTF-8")))
2972 || ( strlen(codeset) == STRLENs("UTF8")
2973 && foldEQ(codeset, STR_WITH_LEN("UTF8"))));
2975 DEBUG_L(PerlIO_printf(Perl_debug_log,
2976 "\tnllanginfo returned CODESET '%s'; ?UTF8 locale=%d\n",
2978 Safefree(save_input_locale);
2986 /* Here, either we don't have nl_langinfo, or it didn't return a
2987 * codeset. Try MB_CUR_MAX */
2989 /* Standard UTF-8 needs at least 4 bytes to represent the maximum
2990 * Unicode code point. Since UTF-8 is the only non-single byte
2991 * encoding we handle, we just say any such encoding is UTF-8, and if
2992 * turns out to be wrong, other things will fail */
2993 is_utf8 = (unsigned) MB_CUR_MAX >= STRLENs(MAX_UNICODE_UTF8);
2995 DEBUG_L(PerlIO_printf(Perl_debug_log,
2996 "\tMB_CUR_MAX=%d; ?UTF8 locale=%d\n",
2997 (int) MB_CUR_MAX, is_utf8));
2999 Safefree(save_input_locale);
3003 /* ... But, most system that have MB_CUR_MAX will also have mbtowc(),
3004 * since they are both in the C99 standard. We can feed a known byte
3005 * string to the latter function, and check that it gives the expected
3011 PERL_UNUSED_RESULT(mbtowc(&wc, NULL, 0));/* Reset any shift state */
3013 len = mbtowc(&wc, STR_WITH_LEN(REPLACEMENT_CHARACTER_UTF8));
3016 if ( len != STRLENs(REPLACEMENT_CHARACTER_UTF8)
3017 || wc != (wchar_t) UNICODE_REPLACEMENT)
3020 DEBUG_L(PerlIO_printf(Perl_debug_log, "\replacement=U+%x\n",
3022 DEBUG_L(PerlIO_printf(Perl_debug_log,
3023 "\treturn from mbtowc=%d; errno=%d; ?UTF8 locale=0\n",
3030 /* If we switched LC_CTYPE, switch back */
3031 if (save_ctype_locale) {
3032 do_setlocale_c(LC_CTYPE, save_ctype_locale);
3033 Safefree(save_ctype_locale);
3042 cant_use_nllanginfo:
3044 # else /* nl_langinfo should work if available, so don't bother compiling this
3045 fallback code. The final fallback of looking at the name is
3046 compiled, and will be executed if nl_langinfo fails */
3048 /* nl_langinfo not available or failed somehow. Next try looking at the
3049 * currency symbol to see if it disambiguates things. Often that will be
3050 * in the native script, and if the symbol isn't in UTF-8, we know that the
3051 * locale isn't. If it is non-ASCII UTF-8, we infer that the locale is
3052 * too, as the odds of a non-UTF8 string being valid UTF-8 are quite small
3055 # ifdef HAS_LOCALECONV
3056 # ifdef USE_LOCALE_MONETARY
3059 char *save_monetary_locale = NULL;
3060 bool only_ascii = FALSE;
3061 bool is_utf8 = FALSE;
3064 /* Like above for LC_CTYPE, we first set LC_MONETARY to the locale of
3065 * the desired category, if it isn't that locale already */
3067 if (category != LC_MONETARY) {
3069 save_monetary_locale = do_setlocale_c(LC_MONETARY, NULL);
3070 if (! save_monetary_locale) {
3071 DEBUG_L(PerlIO_printf(Perl_debug_log,
3072 "Could not find current locale for LC_MONETARY\n"));
3073 goto cant_use_monetary;
3075 save_monetary_locale = stdize_locale(savepv(save_monetary_locale));
3077 if (strEQ(save_monetary_locale, save_input_locale)) {
3078 Safefree(save_monetary_locale);
3079 save_monetary_locale = NULL;
3081 else if (! do_setlocale_c(LC_MONETARY, save_input_locale)) {
3082 DEBUG_L(PerlIO_printf(Perl_debug_log,
3083 "Could not change LC_MONETARY locale to %s\n",
3084 save_input_locale));
3085 Safefree(save_monetary_locale);
3086 goto cant_use_monetary;
3090 /* Here the current LC_MONETARY is set to the locale of the category
3091 * whose information is desired. */
3095 || ! lc->currency_symbol
3096 || is_utf8_invariant_string((U8 *) lc->currency_symbol, 0))
3098 DEBUG_L(PerlIO_printf(Perl_debug_log, "Couldn't get currency symbol for %s, or contains only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
3102 is_utf8 = is_utf8_string((U8 *) lc->currency_symbol, 0);
3105 /* If we changed it, restore LC_MONETARY to its original locale */
3106 if (save_monetary_locale) {
3107 do_setlocale_c(LC_MONETARY, save_monetary_locale);
3108 Safefree(save_monetary_locale);
3113 /* It isn't a UTF-8 locale if the symbol is not legal UTF-8;
3114 * otherwise assume the locale is UTF-8 if and only if the symbol
3115 * is non-ascii UTF-8. */
3116 DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?Currency symbol for %s is UTF-8=%d\n",
3117 save_input_locale, is_utf8));
3118 Safefree(save_input_locale);
3124 # endif /* USE_LOCALE_MONETARY */
3125 # endif /* HAS_LOCALECONV */
3127 # if defined(HAS_STRFTIME) && defined(USE_LOCALE_TIME)
3129 /* Still haven't found a non-ASCII string to disambiguate UTF-8 or not. Try
3130 * the names of the months and weekdays, timezone, and am/pm indicator */
3132 char *save_time_locale = NULL;
3134 bool is_dst = FALSE;
3138 char * formatted_time;
3141 /* Like above for LC_MONETARY, we set LC_TIME to the locale of the
3142 * desired category, if it isn't that locale already */
3144 if (category != LC_TIME) {
3146 save_time_locale = do_setlocale_c(LC_TIME, NULL);
3147 if (! save_time_locale) {
3148 DEBUG_L(PerlIO_printf(Perl_debug_log,
3149 "Could not find current locale for LC_TIME\n"));
3152 save_time_locale = stdize_locale(savepv(save_time_locale));
3154 if (strEQ(save_time_locale, save_input_locale)) {
3155 Safefree(save_time_locale);
3156 save_time_locale = NULL;
3158 else if (! do_setlocale_c(LC_TIME, save_input_locale)) {
3159 DEBUG_L(PerlIO_printf(Perl_debug_log,
3160 "Could not change LC_TIME locale to %s\n",
3161 save_input_locale));
3162 Safefree(save_time_locale);
3167 /* Here the current LC_TIME is set to the locale of the category
3168 * whose information is desired. Look at all the days of the week and
3169 * month names, and the timezone and am/pm indicator for UTF-8 variant
3170 * characters. The first such a one found will tell us if the locale
3171 * is UTF-8 or not */
3173 for (i = 0; i < 7 + 12; i++) { /* 7 days; 12 months */
3174 formatted_time = my_strftime("%A %B %Z %p",
3175 0, 0, hour, dom, month, 2012 - 1900, 0, 0, is_dst);
3176 if ( ! formatted_time
3177 || is_utf8_invariant_string((U8 *) formatted_time, 0))
3180 /* Here, we didn't find a non-ASCII. Try the next time through
3181 * with the complemented dst and am/pm, and try with the next
3182 * weekday. After we have gotten all weekdays, try the next
3185 hour = (hour + 12) % 24;
3193 /* Here, we have a non-ASCII. Return TRUE is it is valid UTF8;
3194 * false otherwise. But first, restore LC_TIME to its original
3195 * locale if we changed it */
3196 if (save_time_locale) {
3197 do_setlocale_c(LC_TIME, save_time_locale);
3198 Safefree(save_time_locale);
3201 DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?time-related strings for %s are UTF-8=%d\n",
3203 is_utf8_string((U8 *) formatted_time, 0)));
3204 Safefree(save_input_locale);
3205 return is_utf8_string((U8 *) formatted_time, 0);
3208 /* Falling off the end of the loop indicates all the names were just
3209 * ASCII. Go on to the next test. If we changed it, restore LC_TIME
3210 * to its original locale */
3211 if (save_time_locale) {
3212 do_setlocale_c(LC_TIME, save_time_locale);
3213 Safefree(save_time_locale);
3215 DEBUG_L(PerlIO_printf(Perl_debug_log, "All time-related words for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
3221 # if 0 && defined(USE_LOCALE_MESSAGES) && defined(HAS_SYS_ERRLIST)
3223 /* This code is ifdefd out because it was found to not be necessary in testing
3224 * on our dromedary test machine, which has over 700 locales. There, this
3225 * added no value to looking at the currency symbol and the time strings. I
3226 * left it in so as to avoid rewriting it if real-world experience indicates
3227 * that dromedary is an outlier. Essentially, instead of returning abpve if we
3228 * haven't found illegal utf8, we continue on and examine all the strerror()
3229 * messages on the platform for utf8ness. If all are ASCII, we still don't
3230 * know the answer; but otherwise we have a pretty good indication of the
3231 * utf8ness. The reason this doesn't help much is that the messages may not
3232 * have been translated into the locale. The currency symbol and time strings
3233 * are much more likely to have been translated. */
3236 bool is_utf8 = FALSE;
3237 bool non_ascii = FALSE;
3238 char *save_messages_locale = NULL;
3239 const char * errmsg = NULL;
3241 /* Like above, we set LC_MESSAGES to the locale of the desired
3242 * category, if it isn't that locale already */
3244 if (category != LC_MESSAGES) {
3246 save_messages_locale = do_setlocale_c(LC_MESSAGES, NULL);
3247 if (! save_messages_locale) {
3248 DEBUG_L(PerlIO_printf(Perl_debug_log,
3249 "Could not find current locale for LC_MESSAGES\n"));
3250 goto cant_use_messages;
3252 save_messages_locale = stdize_locale(savepv(save_messages_locale));
3254 if (strEQ(save_messages_locale, save_input_locale)) {
3255 Safefree(save_messages_locale);
3256 save_messages_locale = NULL;
3258 else if (! do_setlocale_c(LC_MESSAGES, save_input_locale)) {
3259 DEBUG_L(PerlIO_printf(Perl_debug_log,
3260 "Could not change LC_MESSAGES locale to %s\n",
3261 save_input_locale));
3262 Safefree(save_messages_locale);
3263 goto cant_use_messages;
3267 /* Here the current LC_MESSAGES is set to the locale of the category
3268 * whose information is desired. Look through all the messages. We
3269 * can't use Strerror() here because it may expand to code that
3270 * segfaults in miniperl */
3272 for (e = 0; e <= sys_nerr; e++) {
3274 errmsg = sys_errlist[e];
3275 if (errno || !errmsg) {
3278 errmsg = savepv(errmsg);
3279 if (! is_utf8_invariant_string((U8 *) errmsg, 0)) {
3281 is_utf8 = is_utf8_string((U8 *) errmsg, 0);
3287 /* And, if we changed it, restore LC_MESSAGES to its original locale */
3288 if (save_messages_locale) {
3289 do_setlocale_c(LC_MESSAGES, save_messages_locale);
3290 Safefree(save_messages_locale);
3295 /* Any non-UTF-8 message means not a UTF-8 locale; if all are valid,
3296 * any non-ascii means it is one; otherwise we assume it isn't */
3297 DEBUG_L(PerlIO_printf(Perl_debug_log, "\t?error messages for %s are UTF-8=%d\n",
3300 Safefree(save_input_locale);
3304 DEBUG_L(PerlIO_printf(Perl_debug_log, "All error messages for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
3309 # endif /* the code that is compiled when no nl_langinfo */
3311 # ifndef EBCDIC /* On os390, even if the name ends with "UTF-8', it isn't a
3314 /* As a last resort, look at the locale name to see if it matches
3315 * qr/UTF -? * 8 /ix, or some other common locale names. This "name", the
3316 * return of setlocale(), is actually defined to be opaque, so we can't
3317 * really rely on the absence of various substrings in the name to indicate
3318 * its UTF-8ness, but if it has UTF8 in the name, it is extremely likely to
3319 * be a UTF-8 locale. Similarly for the other common names */
3321 final_pos = strlen(save_input_locale) - 1;
3322 if (final_pos >= 3) {
3323 char *name = save_input_locale;
3325 /* Find next 'U' or 'u' and look from there */
3326 while ((name += strcspn(name, "Uu") + 1)
3327 <= save_input_locale + final_pos - 2)
3329 if ( isALPHA_FOLD_NE(*name, 't')
3330 || isALPHA_FOLD_NE(*(name + 1), 'f'))
3335 if (*(name) == '-') {
3336 if ((name > save_input_locale + final_pos - 1)) {
3341 if (*(name) == '8') {
3342 DEBUG_L(PerlIO_printf(Perl_debug_log,
3343 "Locale %s ends with UTF-8 in name\n",
3344 save_input_locale));
3345 Safefree(save_input_locale);
3349 DEBUG_L(PerlIO_printf(Perl_debug_log,
3350 "Locale %s doesn't end with UTF-8 in name\n",
3351 save_input_locale));
3357 /* http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756.aspx */
3358 if (memENDs(save_input_locale, final_pos, "65001")) {
3359 DEBUG_L(PerlIO_printf(Perl_debug_log,
3360 "Locale %s ends with 65001 in name, is UTF-8 locale\n",
3361 save_input_locale));
3362 Safefree(save_input_locale);
3368 /* Other common encodings are the ISO 8859 series, which aren't UTF-8. But
3369 * since we are about to return FALSE anyway, there is no point in doing
3370 * this extra work */
3373 if (instr(save_input_locale, "8859")) {
3374 DEBUG_L(PerlIO_printf(Perl_debug_log,
3375 "Locale %s has 8859 in name, not UTF-8 locale\n",
3376 save_input_locale));
3377 Safefree(save_input_locale);
3382 DEBUG_L(PerlIO_printf(Perl_debug_log,
3383 "Assuming locale %s is not a UTF-8 locale\n",
3384 save_input_locale));
3385 Safefree(save_input_locale);
3393 Perl__is_in_locale_category(pTHX_ const bool compiling, const int category)
3396 /* Internal function which returns if we are in the scope of a pragma that
3397 * enables the locale category 'category'. 'compiling' should indicate if
3398 * this is during the compilation phase (TRUE) or not (FALSE). */
3400 const COP * const cop = (compiling) ? &PL_compiling : PL_curcop;
3402 SV *categories = cop_hints_fetch_pvs(cop, "locale", 0);
3403 if (! categories || categories == &PL_sv_placeholder) {
3407 /* The pseudo-category 'not_characters' is -1, so just add 1 to each to get
3408 * a valid unsigned */
3409 assert(category >= -1);
3410 return cBOOL(SvUV(categories) & (1U << (category + 1)));
3414 Perl_my_strerror(pTHX_ const int errnum)
3416 /* Returns a mortalized copy of the text of the error message associated
3417 * with 'errnum'. It uses the current locale's text unless the platform
3418 * doesn't have the LC_MESSAGES category or we are not being called from
3419 * within the scope of 'use locale'. In the former case, it uses whatever
3420 * strerror returns; in the latter case it uses the text from the C locale.
3422 * The function just calls strerror(), but temporarily switches, if needed,
3423 * to the C locale */
3428 #ifndef USE_LOCALE_MESSAGES
3430 /* If platform doesn't have messages category, we don't do any switching to
3431 * the C locale; we just use whatever strerror() returns */
3433 errstr = savepv(Strerror(errnum));
3435 #else /* Has locale messages */
3437 const bool within_locale_scope = IN_LC(LC_MESSAGES);
3439 # if defined(HAS_POSIX_2008_LOCALE) && defined(HAS_STRERROR_L)
3441 /* This function is trivial if we don't have to worry about thread safety
3442 * and have strerror_l(), as it handles the switch of locales so we don't
3443 * have to deal with that. We don't have to worry about thread safety if
3444 * this is an unthreaded build, or if strerror_r() is also available. Both
3445 * it and strerror_l() are thread-safe. Plain strerror() isn't thread
3446 * safe. But on threaded builds when strerror_r() is available, the
3447 * apparent call to strerror() below is actually a macro that
3448 * behind-the-scenes calls strerror_r().
3451 # if ! defined(USE_ITHREADS) || defined(HAS_STRERROR_R)
3453 if (within_locale_scope) {
3454 errstr = savepv(strerror(errnum));
3457 errstr = savepv(strerror_l(errnum, PL_C_locale_obj));
3462 /* Here we have strerror_l(), but not strerror_r() and we are on a
3463 * threaded-build. We use strerror_l() for everything, constructing a
3464 * locale to pass to it if necessary */
3466 bool do_free = FALSE;
3467 locale_t locale_to_use;
3469 if (within_locale_scope) {
3470 locale_to_use = uselocale((locale_t) 0);
3471 if (locale_to_use == LC_GLOBAL_LOCALE) {
3472 locale_to_use = duplocale(LC_GLOBAL_LOCALE);
3476 else { /* Use C locale if not within 'use locale' scope */
3477 locale_to_use = PL_C_locale_obj;
3480 errstr = savepv(strerror_l(errnum, locale_to_use));
3483 freelocale(locale_to_use);
3487 # else /* Doesn't have strerror_l() */
3489 # ifdef USE_POSIX_2008_LOCALE
3491 locale_t save_locale = NULL;
3495 char * save_locale = NULL;
3496 bool locale_is_C = FALSE;
3498 /* We have a critical section to prevent another thread from changing the
3499 * locale out from under us (or zapping the buffer returned from
3505 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3506 "my_strerror called with errnum %d\n", errnum));
3507 if (! within_locale_scope) {
3510 # ifdef USE_POSIX_2008_LOCALE /* Use the thread-safe locale functions */
3512 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3513 "Not within locale scope, about to call"
3514 " uselocale(0x%p)\n", PL_C_locale_obj));
3515 save_locale = uselocale(PL_C_locale_obj);
3516 if (! save_locale) {
3517 DEBUG_L(PerlIO_printf(Perl_debug_log,
3518 "uselocale failed, errno=%d\n", errno));
3521 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3522 "uselocale returned 0x%p\n", save_locale));
3525 # else /* Not thread-safe build */
3527 save_locale = do_setlocale_c(LC_MESSAGES, NULL);
3528 if (! save_locale) {
3529 DEBUG_L(PerlIO_printf(Perl_debug_log,
3530 "setlocale failed, errno=%d\n", errno));
3533 locale_is_C = isNAME_C_OR_POSIX(save_locale);
3535 /* Switch to the C locale if not already in it */
3536 if (! locale_is_C) {
3538 /* The setlocale() just below likely will zap 'save_locale', so
3540 save_locale = savepv(save_locale);
3541 do_setlocale_c(LC_MESSAGES, "C");
3547 } /* end of ! within_locale_scope */
3549 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s: %d: WITHIN locale scope\n",
3550 __FILE__, __LINE__));
3553 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3554 "Any locale change has been done; about to call Strerror\n"));
3555 errstr = savepv(Strerror(errnum));
3557 if (! within_locale_scope) {
3560 # ifdef USE_POSIX_2008_LOCALE
3562 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3563 "%s: %d: not within locale scope, restoring the locale\n",
3564 __FILE__, __LINE__));
3565 if (save_locale && ! uselocale(save_locale)) {
3566 DEBUG_L(PerlIO_printf(Perl_debug_log,
3567 "uselocale restore failed, errno=%d\n", errno));
3573 if (save_locale && ! locale_is_C) {
3574 if (! do_setlocale_c(LC_MESSAGES, save_locale)) {
3575 DEBUG_L(PerlIO_printf(Perl_debug_log,
3576 "setlocale restore failed, errno=%d\n", errno));
3578 Safefree(save_locale);
3585 # endif /* End of doesn't have strerror_l */
3586 #endif /* End of does have locale messages */
3590 if (DEBUG_Lv_TEST) {
3591 PerlIO_printf(Perl_debug_log, "Strerror returned; saving a copy: '");
3592 print_bytes_for_locale(errstr, errstr + strlen(errstr), 0);
3593 PerlIO_printf(Perl_debug_log, "'\n");
3604 =for apidoc sync_locale
3606 Changing the program's locale should be avoided by XS code. Nevertheless,
3607 certain non-Perl libraries called from XS, such as C<Gtk> do so. When this
3608 happens, Perl needs to be told that the locale has changed. Use this function
3609 to do so, before returning to Perl.
3615 Perl_sync_locale(pTHX)
3619 #ifdef USE_LOCALE_CTYPE
3621 newlocale = do_setlocale_c(LC_CTYPE, NULL);
3622 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3623 "%s:%d: %s\n", __FILE__, __LINE__,
3624 setlocale_debug_string(LC_CTYPE, NULL, newlocale)));
3625 new_ctype(newlocale);
3627 #endif /* USE_LOCALE_CTYPE */
3628 #ifdef USE_LOCALE_COLLATE
3630 newlocale = do_setlocale_c(LC_COLLATE, NULL);
3631 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3632 "%s:%d: %s\n", __FILE__, __LINE__,
3633 setlocale_debug_string(LC_COLLATE, NULL, newlocale)));
3634 new_collate(newlocale);
3637 #ifdef USE_LOCALE_NUMERIC
3639 newlocale = do_setlocale_c(LC_NUMERIC, NULL);
3640 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
3641 "%s:%d: %s\n", __FILE__, __LINE__,
3642 setlocale_debug_string(LC_NUMERIC, NULL, newlocale)));
3643 new_numeric(newlocale);
3645 #endif /* USE_LOCALE_NUMERIC */
3649 #if defined(DEBUGGING) && defined(USE_LOCALE)
3652 S_setlocale_debug_string(const int category, /* category number,
3654 const char* const locale, /* locale name */
3656 /* return value from setlocale() when attempting to
3657 * set 'category' to 'locale' */
3658 const char* const retval)
3660 /* Returns a pointer to a NUL-terminated string in static storage with
3661 * added text about the info passed in. This is not thread safe and will
3662 * be overwritten by the next call, so this should be used just to
3663 * formulate a string to immediately print or savepv() on. */
3665 /* initialise to a non-null value to keep it out of BSS and so keep
3666 * -DPERL_GLOBAL_STRUCT_PRIVATE happy */
3667 static char ret[128] = "If you can read this, thank your buggy C"
3668 " library strlcpy(), and change your hints file"
3671 my_strlcpy(ret, "setlocale(", sizeof(ret));
3672 my_strlcat(ret, category_name(category), sizeof(ret));
3673 my_strlcat(ret, ", ", sizeof(ret));
3676 my_strlcat(ret, "\"", sizeof(ret));
3677 my_strlcat(ret, locale, sizeof(ret));
3678 my_strlcat(ret, "\"", sizeof(ret));
3681 my_strlcat(ret, "NULL", sizeof(ret));
3684 my_strlcat(ret, ") returned ", sizeof(ret));
3687 my_strlcat(ret, "\"", sizeof(ret));
3688 my_strlcat(ret, retval, sizeof(ret));
3689 my_strlcat(ret, "\"", sizeof(ret));
3692 my_strlcat(ret, "NULL", sizeof(ret));
3695 assert(strlen(ret) < sizeof(ret));
3704 * ex: set ts=8 sts=4 sw=4 et: