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
36 * This code now has multi-thread-safe locale handling on systems that support
37 * that. This is completely transparent to most XS code. On earlier systems,
38 * it would be possible to emulate thread-safe locales, but this likely would
39 * involve a lot of locale switching, and would require XS code changes.
40 * Macros could be written so that the code wouldn't have to know which type of
41 * system is being used. It's unlikely that we would ever do that, since most
42 * modern systems support thread-safe locales, but there was code written to
43 * this end, and is retained, #ifdef'd out.
47 #define PERL_IN_LOCALE_C
48 #include "perl_langinfo.h"
57 /* If the environment says to, we can output debugging information during
58 * initialization. This is done before option parsing, and before any thread
59 * creation, so can be a file-level static */
60 #if ! defined(DEBUGGING) || defined(PERL_GLOBAL_STRUCT)
61 # define debug_initialization 0
62 # define DEBUG_INITIALIZATION_set(v)
64 static bool debug_initialization = FALSE;
65 # define DEBUG_INITIALIZATION_set(v) (debug_initialization = v)
69 /* Returns the Unix errno portion; ignoring any others. This is a macro here
70 * instead of putting it into perl.h, because unclear to khw what should be
72 #define GET_ERRNO saved_errno
74 /* strlen() of a literal string constant. We might want this more general,
75 * but using it in just this file for now. A problem with more generality is
76 * the compiler warnings about comparing unlike signs */
77 #define STRLENs(s) (sizeof("" s "") - 1)
79 /* Is the C string input 'name' "C" or "POSIX"? If so, and 'name' is the
80 * return of setlocale(), then this is extremely likely to be the C or POSIX
81 * locale. However, the output of setlocale() is documented to be opaque, but
82 * the odds are extremely small that it would return these two strings for some
83 * other locale. Note that VMS in these two locales includes many non-ASCII
84 * characters as controls and punctuation (below are hex bytes):
86 * punct: A1-A3 A5 A7-AB B0-B3 B5-B7 B9-BD BF-CF D1-DD DF-EF F1-FD
87 * Oddly, none there are listed as alphas, though some represent alphabetics
88 * http://www.nntp.perl.org/group/perl.perl5.porters/2013/02/msg198753.html */
89 #define isNAME_C_OR_POSIX(name) \
91 && (( *(name) == 'C' && (*(name + 1)) == '\0') \
92 || strEQ((name), "POSIX")))
96 /* This code keeps a LRU cache of the UTF-8ness of the locales it has so-far
97 * looked up. This is in the form of a C string: */
99 #define UTF8NESS_SEP "\v"
100 #define UTF8NESS_PREFIX "\f"
102 /* So, the string looks like:
104 * \vC\a0\vPOSIX\a0\vam_ET\a0\vaf_ZA.utf8\a1\ven_US.UTF-8\a1\0
106 * where the digit 0 after the \a indicates that the locale starting just
107 * after the preceding \v is not UTF-8, and the digit 1 mean it is. */
109 STATIC_ASSERT_DECL(STRLENs(UTF8NESS_SEP) == 1);
110 STATIC_ASSERT_DECL(STRLENs(UTF8NESS_PREFIX) == 1);
112 #define C_and_POSIX_utf8ness UTF8NESS_SEP "C" UTF8NESS_PREFIX "0" \
113 UTF8NESS_SEP "POSIX" UTF8NESS_PREFIX "0"
115 /* The cache is initialized to C_and_POSIX_utf8ness at start up. These are
116 * kept there always. The remining portion of the cache is LRU, with the
117 * oldest looked-up locale at the tail end */
120 S_stdize_locale(pTHX_ char *locs)
122 /* Standardize the locale name from a string returned by 'setlocale',
123 * possibly modifying that string.
125 * The typical return value of setlocale() is either
126 * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL
127 * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL
128 * (the space-separated values represent the various sublocales,
129 * in some unspecified order). This is not handled by this function.
131 * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n",
132 * which is harmful for further use of the string in setlocale(). This
133 * function removes the trailing new line and everything up through the '='
136 const char * const s = strchr(locs, '=');
139 PERL_ARGS_ASSERT_STDIZE_LOCALE;
142 const char * const t = strchr(s, '.');
145 const char * const u = strchr(t, '\n');
146 if (u && (u[1] == 0)) {
147 const STRLEN len = u - s;
148 Move(s + 1, locs, len, char);
156 Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs);
161 /* Two parallel arrays; first the locale categories Perl uses on this system;
162 * the second array is their names. These arrays are in mostly arbitrary
165 const int categories[] = {
167 # ifdef USE_LOCALE_NUMERIC
170 # ifdef USE_LOCALE_CTYPE
173 # ifdef USE_LOCALE_COLLATE
176 # ifdef USE_LOCALE_TIME
179 # ifdef USE_LOCALE_MESSAGES
182 # ifdef USE_LOCALE_MONETARY
185 # ifdef USE_LOCALE_ADDRESS
188 # ifdef USE_LOCALE_IDENTIFICATION
191 # ifdef USE_LOCALE_MEASUREMENT
194 # ifdef USE_LOCALE_PAPER
197 # ifdef USE_LOCALE_TELEPHONE
203 -1 /* Placeholder because C doesn't allow a
204 trailing comma, and it would get complicated
205 with all the #ifdef's */
208 /* The top-most real element is LC_ALL */
210 const char * category_names[] = {
212 # ifdef USE_LOCALE_NUMERIC
215 # ifdef USE_LOCALE_CTYPE
218 # ifdef USE_LOCALE_COLLATE
221 # ifdef USE_LOCALE_TIME
224 # ifdef USE_LOCALE_MESSAGES
227 # ifdef USE_LOCALE_MONETARY
230 # ifdef USE_LOCALE_ADDRESS
233 # ifdef USE_LOCALE_IDENTIFICATION
236 # ifdef USE_LOCALE_MEASUREMENT
239 # ifdef USE_LOCALE_PAPER
242 # ifdef USE_LOCALE_TELEPHONE
248 NULL /* Placeholder */
253 /* On systems with LC_ALL, it is kept in the highest index position. (-2
254 * to account for the final unused placeholder element.) */
255 # define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 2)
259 /* On systems without LC_ALL, we pretend it is there, one beyond the real
260 * top element, hence in the unused placeholder element. */
261 # define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 1)
265 /* Pretending there is an LC_ALL element just above allows us to avoid most
266 * special cases. Most loops through these arrays in the code below are
267 * written like 'for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++)'. They will work
268 * on either type of system. But the code must be written to not access the
269 * element at 'LC_ALL_INDEX' except on platforms that have it. This can be
270 * checked for at compile time by using the #define LC_ALL_INDEX which is only
271 * defined if we do have LC_ALL. */
274 S_category_name(const int category)
280 if (category == LC_ALL) {
286 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
287 if (category == categories[i]) {
288 return category_names[i];
293 const char suffix[] = " (unknown)";
295 Size_t length = sizeof(suffix) + 1;
304 /* Calculate the number of digits */
310 Newx(unknown, length, char);
311 my_snprintf(unknown, length, "%d%s", category, suffix);
317 /* Now create LC_foo_INDEX #defines for just those categories on this system */
318 # ifdef USE_LOCALE_NUMERIC
319 # define LC_NUMERIC_INDEX 0
320 # define _DUMMY_NUMERIC LC_NUMERIC_INDEX
322 # define _DUMMY_NUMERIC -1
324 # ifdef USE_LOCALE_CTYPE
325 # define LC_CTYPE_INDEX _DUMMY_NUMERIC + 1
326 # define _DUMMY_CTYPE LC_CTYPE_INDEX
328 # define _DUMMY_CTYPE _DUMMY_NUMERIC
330 # ifdef USE_LOCALE_COLLATE
331 # define LC_COLLATE_INDEX _DUMMY_CTYPE + 1
332 # define _DUMMY_COLLATE LC_COLLATE_INDEX
334 # define _DUMMY_COLLATE _DUMMY_CTYPE
336 # ifdef USE_LOCALE_TIME
337 # define LC_TIME_INDEX _DUMMY_COLLATE + 1
338 # define _DUMMY_TIME LC_TIME_INDEX
340 # define _DUMMY_TIME _DUMMY_COLLATE
342 # ifdef USE_LOCALE_MESSAGES
343 # define LC_MESSAGES_INDEX _DUMMY_TIME + 1
344 # define _DUMMY_MESSAGES LC_MESSAGES_INDEX
346 # define _DUMMY_MESSAGES _DUMMY_TIME
348 # ifdef USE_LOCALE_MONETARY
349 # define LC_MONETARY_INDEX _DUMMY_MESSAGES + 1
350 # define _DUMMY_MONETARY LC_MONETARY_INDEX
352 # define _DUMMY_MONETARY _DUMMY_MESSAGES
354 # ifdef USE_LOCALE_ADDRESS
355 # define LC_ADDRESS_INDEX _DUMMY_MONETARY + 1
356 # define _DUMMY_ADDRESS LC_ADDRESS_INDEX
358 # define _DUMMY_ADDRESS _DUMMY_MONETARY
360 # ifdef USE_LOCALE_IDENTIFICATION
361 # define LC_IDENTIFICATION_INDEX _DUMMY_ADDRESS + 1
362 # define _DUMMY_IDENTIFICATION LC_IDENTIFICATION_INDEX
364 # define _DUMMY_IDENTIFICATION _DUMMY_ADDRESS
366 # ifdef USE_LOCALE_MEASUREMENT
367 # define LC_MEASUREMENT_INDEX _DUMMY_IDENTIFICATION + 1
368 # define _DUMMY_MEASUREMENT LC_MEASUREMENT_INDEX
370 # define _DUMMY_MEASUREMENT _DUMMY_IDENTIFICATION
372 # ifdef USE_LOCALE_PAPER
373 # define LC_PAPER_INDEX _DUMMY_MEASUREMENT + 1
374 # define _DUMMY_PAPER LC_PAPER_INDEX
376 # define _DUMMY_PAPER _DUMMY_MEASUREMENT
378 # ifdef USE_LOCALE_TELEPHONE
379 # define LC_TELEPHONE_INDEX _DUMMY_PAPER + 1
380 # define _DUMMY_TELEPHONE LC_TELEPHONE_INDEX
382 # define _DUMMY_TELEPHONE _DUMMY_PAPER
385 # define LC_ALL_INDEX _DUMMY_TELEPHONE + 1
387 #endif /* ifdef USE_LOCALE */
389 /* Windows requres a customized base-level setlocale() */
391 # define my_setlocale(cat, locale) win32_setlocale(cat, locale)
393 # define my_setlocale(cat, locale) setlocale(cat, locale)
396 #ifndef USE_POSIX_2008_LOCALE
398 /* "do_setlocale_c" is intended to be called when the category is a constant
399 * known at compile time; "do_setlocale_r", not known until run time */
400 # define do_setlocale_c(cat, locale) my_setlocale(cat, locale)
401 # define do_setlocale_r(cat, locale) my_setlocale(cat, locale)
403 #else /* Below uses POSIX 2008 */
405 /* We emulate setlocale with our own function. LC_foo is not valid for the
406 * POSIX 2008 functions. Instead LC_foo_MASK is used, which we use an array
407 * lookup to convert to. At compile time we have defined LC_foo_INDEX as the
408 * proper offset into the array 'category_masks[]'. At runtime, we have to
409 * search through the array (as the actual numbers may not be small contiguous
410 * positive integers which would lend themselves to array lookup). */
411 # define do_setlocale_c(cat, locale) \
412 emulate_setlocale(cat, locale, cat ## _INDEX, TRUE)
413 # define do_setlocale_r(cat, locale) emulate_setlocale(cat, locale, 0, FALSE)
415 /* A third array, parallel to the ones above to map from category to its
417 const int category_masks[] = {
418 # ifdef USE_LOCALE_NUMERIC
421 # ifdef USE_LOCALE_CTYPE
424 # ifdef USE_LOCALE_COLLATE
427 # ifdef USE_LOCALE_TIME
430 # ifdef USE_LOCALE_MESSAGES
433 # ifdef USE_LOCALE_MONETARY
436 # ifdef USE_LOCALE_ADDRESS
439 # ifdef USE_LOCALE_IDENTIFICATION
440 LC_IDENTIFICATION_MASK,
442 # ifdef USE_LOCALE_MEASUREMENT
445 # ifdef USE_LOCALE_PAPER
448 # ifdef USE_LOCALE_TELEPHONE
451 /* LC_ALL can't be turned off by a Configure
452 * option, and in Posix 2008, should always be
453 * here, so compile it in unconditionally.
454 * This could catch some glitches at compile
460 S_emulate_setlocale(const int category,
463 const bool is_index_valid
466 /* This function effectively performs a setlocale() on just the current
467 * thread; thus it is thread-safe. It does this by using the POSIX 2008
468 * locale functions to emulate the behavior of setlocale(). Similar to
469 * regular setlocale(), the return from this function points to memory that
470 * can be overwritten by other system calls, so needs to be copied
471 * immediately if you need to retain it. The difference here is that
472 * system calls besides another setlocale() can overwrite it.
474 * By doing this, most locale-sensitive functions become thread-safe. The
475 * exceptions are mostly those that return a pointer to static memory.
477 * This function takes the same parameters, 'category' and 'locale', that
478 * the regular setlocale() function does, but it also takes two additional
479 * ones. This is because the 2008 functions don't use a category; instead
480 * they use a corresponding mask. Because this function operates in both
481 * worlds, it may need one or the other or both. This function can
482 * calculate the mask from the input category, but to avoid this
483 * calculation, if the caller knows at compile time what the mask is, it
484 * can pass it, setting 'is_index_valid' to TRUE; otherwise the mask
485 * parameter is ignored.
487 * POSIX 2008, for some sick reason, chose not to provide a method to find
488 * the category name of a locale. Some vendors have created a
489 * querylocale() function to do just that. This function is a lot simpler
490 * to implement on systems that have this. Otherwise, we have to keep
491 * track of what the locale has been set to, so that we can return its
492 * name to emulate setlocale(). It's also possible for C code in some
493 * library to change the locale without us knowing it, though as of
494 * September 2017, there are no occurrences in CPAN of uselocale(). Some
495 * libraries do use setlocale(), but that changes the global locale, and
496 * threads using per-thread locales will just ignore those changes.
497 * Another problem is that without querylocale(), we have to guess at what
498 * was meant by setting a locale of "". We handle this by not actually
499 * ever setting to "" (unless querylocale exists), but to emulate what we
500 * think should happen for "".
510 if (DEBUG_Lv_TEST || debug_initialization) {
511 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale input=%d (%s), \"%s\", %d, %d\n", __FILE__, __LINE__, category, category_name(category), locale, index, is_index_valid);
516 /* If the input mask might be incorrect, calculate the correct one */
517 if (! is_index_valid) {
522 if (DEBUG_Lv_TEST || debug_initialization) {
523 PerlIO_printf(Perl_debug_log, "%s:%d: finding index of category %d (%s)\n", __FILE__, __LINE__, category, category_name(category));
528 for (i = 0; i <= LC_ALL_INDEX; i++) {
529 if (category == categories[i]) {
535 /* Here, we don't know about this category, so can't handle it.
536 * Fallback to the early POSIX usages */
537 Perl_warner(aTHX_ packWARN(WARN_LOCALE),
538 "Unknown locale category %d; can't set it to %s\n",
546 if (DEBUG_Lv_TEST || debug_initialization) {
547 PerlIO_printf(Perl_debug_log, "%s:%d: index is %d for %s\n", __FILE__, __LINE__, index, category_name(category));
554 mask = category_masks[index];
558 if (DEBUG_Lv_TEST || debug_initialization) {
559 PerlIO_printf(Perl_debug_log, "%s:%d: category name is %s; mask is 0x%x\n", __FILE__, __LINE__, category_names[index], mask);
564 /* If just querying what the existing locale is ... */
565 if (locale == NULL) {
566 locale_t cur_obj = uselocale((locale_t) 0);
570 if (DEBUG_Lv_TEST || debug_initialization) {
571 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale querying %p\n", __FILE__, __LINE__, cur_obj);
576 if (cur_obj == LC_GLOBAL_LOCALE) {
577 return my_setlocale(category, NULL);
580 # ifdef HAS_QUERYLOCALE
582 return (char *) querylocale(mask, cur_obj);
586 /* If this assert fails, adjust the size of curlocales in intrpvar.h */
587 STATIC_ASSERT_STMT(C_ARRAY_LENGTH(PL_curlocales) > LC_ALL_INDEX);
589 # if defined(_NL_LOCALE_NAME) && defined(DEBUGGING)
592 /* Internal glibc for querylocale(), but doesn't handle
593 * empty-string ("") locale properly; who knows what other
594 * glitches. Check it for now, under debug. */
596 char * temp_name = nl_langinfo_l(_NL_LOCALE_NAME(category),
597 uselocale((locale_t) 0));
599 PerlIO_printf(Perl_debug_log, "%s:%d: temp_name=%s\n", __FILE__, __LINE__, temp_name ? temp_name : "NULL");
600 PerlIO_printf(Perl_debug_log, "%s:%d: index=%d\n", __FILE__, __LINE__, index);
601 PerlIO_printf(Perl_debug_log, "%s:%d: PL_curlocales[index]=%s\n", __FILE__, __LINE__, PL_curlocales[index]);
603 if (temp_name && PL_curlocales[index] && strNE(temp_name, "")) {
604 if ( strNE(PL_curlocales[index], temp_name)
605 && ! ( isNAME_C_OR_POSIX(temp_name)
606 && isNAME_C_OR_POSIX(PL_curlocales[index]))) {
608 # ifdef USE_C_BACKTRACE
610 dump_c_backtrace(Perl_debug_log, 20, 1);
614 Perl_croak(aTHX_ "panic: Mismatch between what Perl thinks %s is"
615 " (%s) and what internal glibc thinks"
616 " (%s)\n", category_names[index],
617 PL_curlocales[index], temp_name);
626 /* Without querylocale(), we have to use our record-keeping we've
629 if (category != LC_ALL) {
633 if (DEBUG_Lv_TEST || debug_initialization) {
634 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, PL_curlocales[index]);
639 return PL_curlocales[index];
641 else { /* For LC_ALL */
643 Size_t names_len = 0;
645 bool are_all_categories_the_same_locale = TRUE;
647 /* If we have a valid LC_ALL value, just return it */
648 if (PL_curlocales[LC_ALL_INDEX]) {
652 if (DEBUG_Lv_TEST || debug_initialization) {
653 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, PL_curlocales[LC_ALL_INDEX]);
658 return PL_curlocales[LC_ALL_INDEX];
661 /* Otherwise, we need to construct a string of name=value pairs.
662 * We use the glibc syntax, like
663 * LC_NUMERIC=C;LC_TIME=en_US.UTF-8;...
664 * First calculate the needed size. Along the way, check if all
665 * the locale names are the same */
666 for (i = 0; i < LC_ALL_INDEX; i++) {
670 if (DEBUG_Lv_TEST || debug_initialization) {
671 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale i=%d, name=%s, locale=%s\n", __FILE__, __LINE__, i, category_names[i], PL_curlocales[i]);
676 names_len += strlen(category_names[i])
678 + strlen(PL_curlocales[i])
681 if (i > 0 && strNE(PL_curlocales[i], PL_curlocales[i-1])) {
682 are_all_categories_the_same_locale = FALSE;
686 /* If they are the same, we don't actually have to construct the
687 * string; we just make the entry in LC_ALL_INDEX valid, and be
688 * that single name */
689 if (are_all_categories_the_same_locale) {
690 PL_curlocales[LC_ALL_INDEX] = savepv(PL_curlocales[0]);
691 return PL_curlocales[LC_ALL_INDEX];
694 names_len++; /* Trailing '\0' */
695 SAVEFREEPV(Newx(all_string, names_len, char));
698 /* Then fill in the string */
699 for (i = 0; i < LC_ALL_INDEX; i++) {
703 if (DEBUG_Lv_TEST || debug_initialization) {
704 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale i=%d, name=%s, locale=%s\n", __FILE__, __LINE__, i, category_names[i], PL_curlocales[i]);
709 my_strlcat(all_string, category_names[i], names_len);
710 my_strlcat(all_string, "=", names_len);
711 my_strlcat(all_string, PL_curlocales[i], names_len);
712 my_strlcat(all_string, ";", names_len);
717 if (DEBUG_L_TEST || debug_initialization) {
718 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, all_string);
728 SETERRNO(EINVAL, LIB_INVARG);
738 /* Here, we are switching locales. */
740 # ifndef HAS_QUERYLOCALE
742 if (strEQ(locale, "")) {
744 /* For non-querylocale() systems, we do the setting of "" ourselves to
745 * be sure that we really know what's going on. We follow the Linux
746 * documented behavior (but if that differs from the actual behavior,
747 * this won't work exactly as the OS implements). We go out and
748 * examine the environment based on our understanding of how the system
749 * works, and use that to figure things out */
751 const char * const lc_all = PerlEnv_getenv("LC_ALL");
753 /* Use any "LC_ALL" environment variable, as it overrides everything
755 if (lc_all && strNE(lc_all, "")) {
760 /* Otherwise, we need to dig deeper. Unless overridden, the
761 * default is the LANG environment variable; if it doesn't exist,
764 const char * default_name;
766 /* To minimize other threads messing with the environment, we copy
767 * the variable, making it a temporary. But this doesn't work upon
768 * program initialization before any scopes are created, and at
769 * this time, there's nothing else going on that would interfere.
770 * So skip the copy in that case */
771 if (PL_scopestack_ix == 0) {
772 default_name = PerlEnv_getenv("LANG");
775 default_name = savepv(PerlEnv_getenv("LANG"));
778 if (! default_name || strEQ(default_name, "")) {
781 else if (PL_scopestack_ix != 0) {
782 SAVEFREEPV(default_name);
785 if (category != LC_ALL) {
786 const char * const name = PerlEnv_getenv(category_names[index]);
788 /* Here we are setting a single category. Assume will have the
790 locale = default_name;
792 /* But then look for an overriding environment variable */
793 if (name && strNE(name, "")) {
798 bool did_override = FALSE;
801 /* Here, we are getting LC_ALL. Any categories that don't have
802 * a corresponding environment variable set should be set to
803 * LANG, or to "C" if there is no LANG. If no individual
804 * categories differ from this, we can just set LC_ALL. This
805 * is buggy on systems that have extra categories that we don't
806 * know about. If there is an environment variable that sets
807 * that category, we won't know to look for it, and so our use
808 * of LANG or "C" improperly overrides it. On the other hand,
809 * if we don't do what is done here, and there is no
810 * environment variable, the category's locale should be set to
811 * LANG or "C". So there is no good solution. khw thinks the
812 * best is to look at systems to see what categories they have,
813 * and include them, and then to assume that we know the
816 for (i = 0; i < LC_ALL_INDEX; i++) {
817 const char * const env_override
818 = savepv(PerlEnv_getenv(category_names[i]));
819 const char * this_locale = ( env_override
820 && strNE(env_override, ""))
823 if (! emulate_setlocale(categories[i], this_locale, i, TRUE))
825 Safefree(env_override);
829 if (strNE(this_locale, default_name)) {
833 Safefree(env_override);
836 /* If all the categories are the same, we can set LC_ALL to
838 if (! did_override) {
839 locale = default_name;
843 /* Here, LC_ALL is no longer valid, as some individual
844 * categories don't match it. We call ourselves
845 * recursively, as that will execute the code that
846 * generates the proper locale string for this situation.
847 * We don't do the remainder of this function, as that is
848 * to update our records, and we've just done that for the
849 * individual categories in the loop above, and doing so
850 * would cause LC_ALL to be done as well */
851 return emulate_setlocale(LC_ALL, NULL, LC_ALL_INDEX, TRUE);
856 else if (strchr(locale, ';')) {
858 /* LC_ALL may actually incude a conglomeration of various categories.
859 * Without querylocale, this code uses the glibc (as of this writing)
860 * syntax for representing that, but that is not a stable API, and
861 * other platforms do it differently, so we have to handle all cases
865 const char * s = locale;
866 const char * e = locale + strlen(locale);
868 const char * category_end;
869 const char * name_start;
870 const char * name_end;
872 /* If the string that gives what to set doesn't include all categories,
873 * the omitted ones get set to "C". To get this behavior, first set
874 * all the individual categories to "C", and override the furnished
876 for (i = 0; i < LC_ALL_INDEX; i++) {
877 if (! emulate_setlocale(categories[i], "C", i, TRUE)) {
884 /* Parse through the category */
885 while (isWORDCHAR(*p)) {
892 "panic: %s: %d: Unexpected character in locale name '%02X",
893 __FILE__, __LINE__, *(p-1));
896 /* Parse through the locale name */
898 while (p < e && *p != ';') {
901 "panic: %s: %d: Unexpected character in locale name '%02X",
902 __FILE__, __LINE__, *(p-1));
908 /* Space past the semi-colon */
913 /* Find the index of the category name in our lists */
914 for (i = 0; i < LC_ALL_INDEX; i++) {
915 char * individ_locale;
917 /* Keep going if this isn't the index. The strnNE() avoids a
918 * Perl_form(), but would fail if ever a category name could be
919 * a substring of another one, like if there were a
921 if strnNE(s, category_names[i], category_end - s) {
925 /* If this index is for the single category we're changing, we
926 * have found the locale to set it to. */
927 if (category == categories[i]) {
928 locale = Perl_form(aTHX_ "%.*s",
929 (int) (name_end - name_start),
934 assert(category == LC_ALL);
935 individ_locale = Perl_form(aTHX_ "%.*s",
936 (int) (name_end - name_start), name_start);
937 if (! emulate_setlocale(categories[i], individ_locale, i, TRUE))
946 /* Here we have set all the individual categories by recursive calls.
947 * These collectively should have fixed up LC_ALL, so can just query
948 * what that now is */
949 assert(category == LC_ALL);
951 return do_setlocale_c(LC_ALL, NULL);
956 /* Here at the end of having to deal with the absence of querylocale().
957 * Some cases have already been fully handled by recursive calls to this
958 * function. But at this point, we haven't dealt with those, but are now
959 * prepared to, knowing what the locale name to set this category to is.
960 * This would have come for free if this system had had querylocale() */
962 # endif /* end of ! querylocale */
964 assert(PL_C_locale_obj);
966 /* Switching locales generally entails freeing the current one's space (at
967 * the C library's discretion). We need to stop using that locale before
968 * the switch. So switch to a known locale object that we don't otherwise
969 * mess with. This returns the locale object in effect at the time of the
971 old_obj = uselocale(PL_C_locale_obj);
975 if (DEBUG_Lv_TEST || debug_initialization) {
976 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale was using %p\n", __FILE__, __LINE__, old_obj);
985 if (DEBUG_L_TEST || debug_initialization) {
987 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale switching to C failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
998 if (DEBUG_Lv_TEST || debug_initialization) {
999 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale now using %p\n", __FILE__, __LINE__, PL_C_locale_obj);
1004 /* If we weren't in a thread safe locale, set so that newlocale() below
1005 which uses 'old_obj', uses an empty one. Same for our reserved C object.
1006 The latter is defensive coding, so that, even if there is some bug, we
1007 will never end up trying to modify either of these, as if passed to
1008 newlocale(), they can be. */
1009 if (old_obj == LC_GLOBAL_LOCALE || old_obj == PL_C_locale_obj) {
1010 old_obj = (locale_t) 0;
1013 /* Ready to create a new locale by modification of the exising one */
1014 new_obj = newlocale(mask, locale, old_obj);
1021 if (DEBUG_L_TEST || debug_initialization) {
1022 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale creating new object failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1027 if (! uselocale(old_obj)) {
1031 if (DEBUG_L_TEST || debug_initialization) {
1032 PerlIO_printf(Perl_debug_log, "%s:%d: switching back failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1044 if (DEBUG_Lv_TEST || debug_initialization) {
1045 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale created %p; should have freed %p\n", __FILE__, __LINE__, new_obj, old_obj);
1050 /* And switch into it */
1051 if (! uselocale(new_obj)) {
1056 if (DEBUG_L_TEST || debug_initialization) {
1057 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale switching to new object failed\n", __FILE__, __LINE__);
1062 if (! uselocale(old_obj)) {
1066 if (DEBUG_L_TEST || debug_initialization) {
1067 PerlIO_printf(Perl_debug_log, "%s:%d: switching back failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1073 freelocale(new_obj);
1080 if (DEBUG_Lv_TEST || debug_initialization) {
1081 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale now using %p\n", __FILE__, __LINE__, new_obj);
1086 /* We are done, except for updating our records (if the system doesn't keep
1087 * them) and in the case of locale "", we don't actually know what the
1088 * locale that got switched to is, as it came from the environment. So
1089 * have to find it */
1091 # ifdef HAS_QUERYLOCALE
1093 if (strEQ(locale, "")) {
1094 locale = querylocale(mask, new_obj);
1099 /* Here, 'locale' is the return value */
1101 /* Without querylocale(), we have to update our records */
1103 if (category == LC_ALL) {
1106 /* For LC_ALL, we change all individual categories to correspond */
1107 /* PL_curlocales is a parallel array, so has same
1108 * length as 'categories' */
1109 for (i = 0; i <= LC_ALL_INDEX; i++) {
1110 Safefree(PL_curlocales[i]);
1111 PL_curlocales[i] = savepv(locale);
1116 /* For a single category, if it's not the same as the one in LC_ALL, we
1119 if (PL_curlocales[LC_ALL_INDEX] && strNE(PL_curlocales[LC_ALL_INDEX], locale)) {
1120 Safefree(PL_curlocales[LC_ALL_INDEX]);
1121 PL_curlocales[LC_ALL_INDEX] = NULL;
1124 /* Then update the category's record */
1125 Safefree(PL_curlocales[index]);
1126 PL_curlocales[index] = savepv(locale);
1134 #endif /* USE_POSIX_2008_LOCALE */
1136 #if 0 /* Code that was to emulate thread-safe locales on platforms that
1137 didn't natively support them */
1139 /* The way this would work is that we would keep a per-thread list of the
1140 * correct locale for that thread. Any operation that was locale-sensitive
1141 * would have to be changed so that it would look like this:
1144 * setlocale to the correct locale for this operation
1148 * This leaves the global locale in the most recently used operation's, but it
1149 * was locked long enough to get the result. If that result is static, it
1150 * needs to be copied before the unlock.
1152 * Macros could be written like SETUP_LOCALE_DEPENDENT_OP(category) that did
1153 * the setup, but are no-ops when not needed, and similarly,
1154 * END_LOCALE_DEPENDENT_OP for the tear-down
1156 * But every call to a locale-sensitive function would have to be changed, and
1157 * if a module didn't cooperate by using the mutex, things would break.
1159 * This code was abandoned before being completed or tested, and is left as-is
1162 # define do_setlocale_c(cat, locale) locking_setlocale(cat, locale, cat ## _INDEX, TRUE)
1163 # define do_setlocale_r(cat, locale) locking_setlocale(cat, locale, 0, FALSE)
1166 S_locking_setlocale(pTHX_
1168 const char * locale,
1170 const bool is_index_valid
1173 /* This function kind of performs a setlocale() on just the current thread;
1174 * thus it is kind of thread-safe. It does this by keeping a thread-level
1175 * array of the current locales for each category. Every time a locale is
1176 * switched to, it does the switch globally, but updates the thread's
1177 * array. A query as to what the current locale is just returns the
1178 * appropriate element from the array, and doesn't actually call the system
1179 * setlocale(). The saving into the array is done in an uninterruptible
1180 * section of code, so is unaffected by whatever any other threads might be
1183 * All locale-sensitive operations must work by first starting a critical
1184 * section, then switching to the thread's locale as kept by this function,
1185 * and then doing the operation, then ending the critical section. Thus,
1186 * each gets done in the appropriate locale. simulating thread-safety.
1188 * This function takes the same parameters, 'category' and 'locale', that
1189 * the regular setlocale() function does, but it also takes two additional
1190 * ones. This is because as described earlier. If we know on input the
1191 * index corresponding to the category into the array where we store the
1192 * current locales, we don't have to calculate it. If the caller knows at
1193 * compile time what the index is, it it can pass it, setting
1194 * 'is_index_valid' to TRUE; otherwise the index parameter is ignored.
1198 /* If the input index might be incorrect, calculate the correct one */
1199 if (! is_index_valid) {
1202 if (DEBUG_Lv_TEST || debug_initialization) {
1203 PerlIO_printf(Perl_debug_log, "%s:%d: converting category %d to index\n", __FILE__, __LINE__, category);
1206 for (i = 0; i <= LC_ALL_INDEX; i++) {
1207 if (category == categories[i]) {
1213 /* Here, we don't know about this category, so can't handle it.
1214 * XXX best we can do is to unsafely set this
1217 return my_setlocale(category, locale);
1221 if (DEBUG_Lv_TEST || debug_initialization) {
1222 PerlIO_printf(Perl_debug_log, "%s:%d: index is 0x%x\n", __FILE__, __LINE__, index);
1226 /* For a query, just return what's in our records */
1227 if (new_locale == NULL) {
1228 return curlocales[index];
1232 /* Otherwise, we need to do the switch, and save the result, all in a
1233 * critical section */
1235 Safefree(curlocales[[index]]);
1237 /* It might be that this is called from an already-locked section of code.
1238 * We would have to detect and skip the LOCK/UNLOCK if so */
1241 curlocales[index] = savepv(my_setlocale(category, new_locale));
1243 if (strEQ(new_locale, "")) {
1247 /* The locale values come from the environment, and may not all be the
1248 * same, so for LC_ALL, we have to update all the others, while the
1249 * mutex is still locked */
1251 if (category == LC_ALL) {
1253 for (i = 0; i < LC_ALL_INDEX) {
1254 curlocales[i] = my_setlocale(categories[i], NULL);
1263 return curlocales[index];
1270 S_set_numeric_radix(pTHX_ const bool use_locale)
1272 /* If 'use_locale' is FALSE, set to use a dot for the radix character. If
1273 * TRUE, use the radix character derived from the current locale */
1275 #if defined(USE_LOCALE_NUMERIC) && ( defined(HAS_LOCALECONV) \
1276 || defined(HAS_NL_LANGINFO))
1278 const char * radix = (use_locale)
1279 ? my_nl_langinfo(RADIXCHAR, FALSE)
1280 /* FALSE => already in dest locale */
1283 sv_setpv(PL_numeric_radix_sv, radix);
1285 /* If this is valid UTF-8 that isn't totally ASCII, and we are in
1286 * a UTF-8 locale, then mark the radix as being in UTF-8 */
1287 if (is_utf8_non_invariant_string((U8 *) SvPVX(PL_numeric_radix_sv),
1288 SvCUR(PL_numeric_radix_sv))
1289 && _is_cur_LC_category_utf8(LC_NUMERIC))
1291 SvUTF8_on(PL_numeric_radix_sv);
1296 if (DEBUG_L_TEST || debug_initialization) {
1297 PerlIO_printf(Perl_debug_log, "Locale radix is '%s', ?UTF-8=%d\n",
1298 SvPVX(PL_numeric_radix_sv),
1299 cBOOL(SvUTF8(PL_numeric_radix_sv)));
1305 PERL_UNUSED_ARG(use_locale);
1307 #endif /* USE_LOCALE_NUMERIC and can find the radix char */
1312 S_new_numeric(pTHX_ const char *newnum)
1315 #ifndef USE_LOCALE_NUMERIC
1317 PERL_UNUSED_ARG(newnum);
1321 /* Called after each libc setlocale() call affecting LC_NUMERIC, to tell
1322 * core Perl this and that 'newnum' is the name of the new locale.
1323 * It installs this locale as the current underlying default.
1325 * The default locale and the C locale can be toggled between by use of the
1326 * set_numeric_underlying() and set_numeric_standard() functions, which
1327 * should probably not be called directly, but only via macros like
1328 * SET_NUMERIC_STANDARD() in perl.h.
1330 * The toggling is necessary mainly so that a non-dot radix decimal point
1331 * character can be output, while allowing internal calculations to use a
1334 * This sets several interpreter-level variables:
1335 * PL_numeric_name The underlying locale's name: a copy of 'newnum'
1336 * PL_numeric_underlying A boolean indicating if the toggled state is such
1337 * that the current locale is the program's underlying
1339 * PL_numeric_standard An int indicating if the toggled state is such
1340 * that the current locale is the C locale or
1341 * indistinguishable from the C locale. If non-zero, it
1342 * is in C; if > 1, it means it may not be toggled away
1344 * PL_numeric_underlying_is_standard A bool kept by this function
1345 * indicating that the underlying locale and the standard
1346 * C locale are indistinguishable for the purposes of
1347 * LC_NUMERIC. This happens when both of the above two
1348 * variables are true at the same time. (Toggling is a
1349 * no-op under these circumstances.) This variable is
1350 * used to avoid having to recalculate.
1356 Safefree(PL_numeric_name);
1357 PL_numeric_name = NULL;
1358 PL_numeric_standard = TRUE;
1359 PL_numeric_underlying = TRUE;
1360 PL_numeric_underlying_is_standard = TRUE;
1364 save_newnum = stdize_locale(savepv(newnum));
1365 PL_numeric_underlying = TRUE;
1366 PL_numeric_standard = isNAME_C_OR_POSIX(save_newnum);
1368 #ifndef TS_W32_BROKEN_LOCALECONV
1370 /* If its name isn't C nor POSIX, it could still be indistinguishable from
1371 * them. But on broken Windows systems calling my_nl_langinfo() for
1372 * THOUSEP can currently (but rarely) cause a race, so avoid doing that,
1373 * and just always change the locale if not C nor POSIX on those systems */
1374 if (! PL_numeric_standard) {
1375 PL_numeric_standard = cBOOL(strEQ(".", my_nl_langinfo(RADIXCHAR,
1376 FALSE /* Don't toggle locale */ ))
1377 && strEQ("", my_nl_langinfo(THOUSEP, FALSE)));
1382 /* Save the new name if it isn't the same as the previous one, if any */
1383 if (! PL_numeric_name || strNE(PL_numeric_name, save_newnum)) {
1384 Safefree(PL_numeric_name);
1385 PL_numeric_name = save_newnum;
1388 Safefree(save_newnum);
1391 PL_numeric_underlying_is_standard = PL_numeric_standard;
1393 # ifdef HAS_POSIX_2008_LOCALE
1395 PL_underlying_numeric_obj = newlocale(LC_NUMERIC_MASK,
1397 PL_underlying_numeric_obj);
1401 if (DEBUG_L_TEST || debug_initialization) {
1402 PerlIO_printf(Perl_debug_log, "Called new_numeric with %s, PL_numeric_name=%s\n", newnum, PL_numeric_name);
1405 /* Keep LC_NUMERIC in the C locale. This is for XS modules, so they don't
1406 * have to worry about the radix being a non-dot. (Core operations that
1407 * need the underlying locale change to it temporarily). */
1408 if (PL_numeric_standard) {
1409 set_numeric_radix(0);
1412 set_numeric_standard();
1415 #endif /* USE_LOCALE_NUMERIC */
1420 Perl_set_numeric_standard(pTHX)
1423 #ifdef USE_LOCALE_NUMERIC
1425 /* Toggle the LC_NUMERIC locale to C. Most code should use the macros like
1426 * SET_NUMERIC_STANDARD() in perl.h instead of calling this directly. The
1427 * macro avoids calling this routine if toggling isn't necessary according
1428 * to our records (which could be wrong if some XS code has changed the
1429 * locale behind our back) */
1433 if (DEBUG_L_TEST || debug_initialization) {
1434 PerlIO_printf(Perl_debug_log,
1435 "Setting LC_NUMERIC locale to standard C\n");
1440 do_setlocale_c(LC_NUMERIC, "C");
1441 PL_numeric_standard = TRUE;
1442 PL_numeric_underlying = PL_numeric_underlying_is_standard;
1443 set_numeric_radix(0);
1445 #endif /* USE_LOCALE_NUMERIC */
1450 Perl_set_numeric_underlying(pTHX)
1453 #ifdef USE_LOCALE_NUMERIC
1455 /* Toggle the LC_NUMERIC locale to the current underlying default. Most
1456 * code should use the macros like SET_NUMERIC_UNDERLYING() in perl.h
1457 * instead of calling this directly. The macro avoids calling this routine
1458 * if toggling isn't necessary according to our records (which could be
1459 * wrong if some XS code has changed the locale behind our back) */
1463 if (DEBUG_L_TEST || debug_initialization) {
1464 PerlIO_printf(Perl_debug_log,
1465 "Setting LC_NUMERIC locale to %s\n",
1471 do_setlocale_c(LC_NUMERIC, PL_numeric_name);
1472 PL_numeric_standard = PL_numeric_underlying_is_standard;
1473 PL_numeric_underlying = TRUE;
1474 set_numeric_radix(! PL_numeric_standard);
1476 #endif /* USE_LOCALE_NUMERIC */
1481 * Set up for a new ctype locale.
1484 S_new_ctype(pTHX_ const char *newctype)
1487 #ifndef USE_LOCALE_CTYPE
1489 PERL_UNUSED_ARG(newctype);
1490 PERL_UNUSED_CONTEXT;
1494 /* Called after each libc setlocale() call affecting LC_CTYPE, to tell
1495 * core Perl this and that 'newctype' is the name of the new locale.
1497 * This function sets up the folding arrays for all 256 bytes, assuming
1498 * that tofold() is tolc() since fold case is not a concept in POSIX,
1500 * Any code changing the locale (outside this file) should use
1501 * Perl_setlocale or POSIX::setlocale, which call this function. Therefore
1502 * this function should be called directly only from this file and from
1503 * POSIX::setlocale() */
1508 /* Don't check for problems if we are suppressing the warnings */
1509 bool check_for_problems = ckWARN_d(WARN_LOCALE) || UNLIKELY(DEBUG_L_TEST);
1510 bool maybe_utf8_turkic = FALSE;
1512 PERL_ARGS_ASSERT_NEW_CTYPE;
1514 /* We will replace any bad locale warning with 1) nothing if the new one is
1515 * ok; or 2) a new warning for the bad new locale */
1516 if (PL_warn_locale) {
1517 SvREFCNT_dec_NN(PL_warn_locale);
1518 PL_warn_locale = NULL;
1521 PL_in_utf8_CTYPE_locale = _is_cur_LC_category_utf8(LC_CTYPE);
1523 /* A UTF-8 locale gets standard rules. But note that code still has to
1524 * handle this specially because of the three problematic code points */
1525 if (PL_in_utf8_CTYPE_locale) {
1526 Copy(PL_fold_latin1, PL_fold_locale, 256, U8);
1528 /* UTF-8 locales can have special handling for 'I' and 'i' if they are
1529 * Turkic. Make sure these two are the only anomalies. (We don't use
1530 * towupper and towlower because they aren't in C89.) */
1531 if (toupper('i') == 'i' && tolower('I') == 'I') {
1532 check_for_problems = TRUE;
1533 maybe_utf8_turkic = TRUE;
1537 /* We don't populate the other lists if a UTF-8 locale, but do check that
1538 * everything works as expected, unless checking turned off */
1539 if (check_for_problems || ! PL_in_utf8_CTYPE_locale) {
1540 /* Assume enough space for every character being bad. 4 spaces each
1541 * for the 94 printable characters that are output like "'x' "; and 5
1542 * spaces each for "'\\' ", "'\t' ", and "'\n' "; plus a terminating
1544 char bad_chars_list[ (94 * 4) + (3 * 5) + 1 ] = { '\0' };
1545 bool multi_byte_locale = FALSE; /* Assume is a single-byte locale
1547 unsigned int bad_count = 0; /* Count of bad characters */
1549 for (i = 0; i < 256; i++) {
1550 if (! PL_in_utf8_CTYPE_locale) {
1552 PL_fold_locale[i] = (U8) tolower(i);
1553 else if (islower(i))
1554 PL_fold_locale[i] = (U8) toupper(i);
1556 PL_fold_locale[i] = (U8) i;
1559 /* If checking for locale problems, see if the native ASCII-range
1560 * printables plus \n and \t are in their expected categories in
1561 * the new locale. If not, this could mean big trouble, upending
1562 * Perl's and most programs' assumptions, like having a
1563 * metacharacter with special meaning become a \w. Fortunately,
1564 * it's very rare to find locales that aren't supersets of ASCII
1565 * nowadays. It isn't a problem for most controls to be changed
1566 * into something else; we check only \n and \t, though perhaps \r
1567 * could be an issue as well. */
1568 if ( check_for_problems
1569 && (isGRAPH_A(i) || isBLANK_A(i) || i == '\n'))
1571 bool is_bad = FALSE;
1572 char name[4] = { '\0' };
1574 /* Convert the name into a string */
1579 else if (i == '\n') {
1580 my_strlcpy(name, "\\n", sizeof(name));
1582 else if (i == '\t') {
1583 my_strlcpy(name, "\\t", sizeof(name));
1587 my_strlcpy(name, "' '", sizeof(name));
1590 /* Check each possibe class */
1591 if (UNLIKELY(cBOOL(isalnum(i)) != cBOOL(isALPHANUMERIC_A(i)))) {
1593 DEBUG_L(PerlIO_printf(Perl_debug_log,
1594 "isalnum('%s') unexpectedly is %d\n",
1595 name, cBOOL(isalnum(i))));
1597 if (UNLIKELY(cBOOL(isalpha(i)) != cBOOL(isALPHA_A(i)))) {
1599 DEBUG_L(PerlIO_printf(Perl_debug_log,
1600 "isalpha('%s') unexpectedly is %d\n",
1601 name, cBOOL(isalpha(i))));
1603 if (UNLIKELY(cBOOL(isdigit(i)) != cBOOL(isDIGIT_A(i)))) {
1605 DEBUG_L(PerlIO_printf(Perl_debug_log,
1606 "isdigit('%s') unexpectedly is %d\n",
1607 name, cBOOL(isdigit(i))));
1609 if (UNLIKELY(cBOOL(isgraph(i)) != cBOOL(isGRAPH_A(i)))) {
1611 DEBUG_L(PerlIO_printf(Perl_debug_log,
1612 "isgraph('%s') unexpectedly is %d\n",
1613 name, cBOOL(isgraph(i))));
1615 if (UNLIKELY(cBOOL(islower(i)) != cBOOL(isLOWER_A(i)))) {
1617 DEBUG_L(PerlIO_printf(Perl_debug_log,
1618 "islower('%s') unexpectedly is %d\n",
1619 name, cBOOL(islower(i))));
1621 if (UNLIKELY(cBOOL(isprint(i)) != cBOOL(isPRINT_A(i)))) {
1623 DEBUG_L(PerlIO_printf(Perl_debug_log,
1624 "isprint('%s') unexpectedly is %d\n",
1625 name, cBOOL(isprint(i))));
1627 if (UNLIKELY(cBOOL(ispunct(i)) != cBOOL(isPUNCT_A(i)))) {
1629 DEBUG_L(PerlIO_printf(Perl_debug_log,
1630 "ispunct('%s') unexpectedly is %d\n",
1631 name, cBOOL(ispunct(i))));
1633 if (UNLIKELY(cBOOL(isspace(i)) != cBOOL(isSPACE_A(i)))) {
1635 DEBUG_L(PerlIO_printf(Perl_debug_log,
1636 "isspace('%s') unexpectedly is %d\n",
1637 name, cBOOL(isspace(i))));
1639 if (UNLIKELY(cBOOL(isupper(i)) != cBOOL(isUPPER_A(i)))) {
1641 DEBUG_L(PerlIO_printf(Perl_debug_log,
1642 "isupper('%s') unexpectedly is %d\n",
1643 name, cBOOL(isupper(i))));
1645 if (UNLIKELY(cBOOL(isxdigit(i))!= cBOOL(isXDIGIT_A(i)))) {
1647 DEBUG_L(PerlIO_printf(Perl_debug_log,
1648 "isxdigit('%s') unexpectedly is %d\n",
1649 name, cBOOL(isxdigit(i))));
1651 if (UNLIKELY(tolower(i) != (int) toLOWER_A(i))) {
1653 DEBUG_L(PerlIO_printf(Perl_debug_log,
1654 "tolower('%s')=0x%x instead of the expected 0x%x\n",
1655 name, tolower(i), (int) toLOWER_A(i)));
1657 if (UNLIKELY(toupper(i) != (int) toUPPER_A(i))) {
1659 DEBUG_L(PerlIO_printf(Perl_debug_log,
1660 "toupper('%s')=0x%x instead of the expected 0x%x\n",
1661 name, toupper(i), (int) toUPPER_A(i)));
1663 if (UNLIKELY((i == '\n' && ! isCNTRL_LC(i)))) {
1665 DEBUG_L(PerlIO_printf(Perl_debug_log,
1666 "'\\n' (=%02X) is not a control\n", (int) i));
1669 /* Add to the list; Separate multiple entries with a blank */
1672 my_strlcat(bad_chars_list, " ", sizeof(bad_chars_list));
1674 my_strlcat(bad_chars_list, name, sizeof(bad_chars_list));
1680 if (bad_count == 2 && maybe_utf8_turkic) {
1682 *bad_chars_list = '\0';
1683 PL_fold_locale['I'] = 'I';
1684 PL_fold_locale['i'] = 'i';
1685 PL_in_utf8_turkic_locale = TRUE;
1686 DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s is turkic\n",
1687 __FILE__, __LINE__, newctype));
1690 PL_in_utf8_turkic_locale = FALSE;
1695 /* We only handle single-byte locales (outside of UTF-8 ones; so if
1696 * this locale requires more than one byte, there are going to be
1698 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
1699 "%s:%d: check_for_problems=%d, MB_CUR_MAX=%d\n",
1700 __FILE__, __LINE__, check_for_problems, (int) MB_CUR_MAX));
1702 if ( check_for_problems && MB_CUR_MAX > 1
1703 && ! PL_in_utf8_CTYPE_locale
1705 /* Some platforms return MB_CUR_MAX > 1 for even the "C"
1706 * locale. Just assume that the implementation for them (plus
1707 * for POSIX) is correct and the > 1 value is spurious. (Since
1708 * these are specially handled to never be considered UTF-8
1709 * locales, as long as this is the only problem, everything
1710 * should work fine */
1711 && strNE(newctype, "C") && strNE(newctype, "POSIX"))
1713 multi_byte_locale = TRUE;
1718 /* If we found problems and we want them output, do so */
1719 if ( (UNLIKELY(bad_count) || UNLIKELY(multi_byte_locale))
1720 && (LIKELY(ckWARN_d(WARN_LOCALE)) || UNLIKELY(DEBUG_L_TEST)))
1722 if (UNLIKELY(bad_count) && PL_in_utf8_CTYPE_locale) {
1723 PL_warn_locale = Perl_newSVpvf(aTHX_
1724 "Locale '%s' contains (at least) the following characters"
1725 " which have\nunexpected meanings: %s\nThe Perl program"
1726 " will use the expected meanings",
1727 newctype, bad_chars_list);
1730 PL_warn_locale = Perl_newSVpvf(aTHX_
1731 "Locale '%s' may not work well.%s%s%s\n",
1734 ? " Some characters in it are not recognized by"
1738 ? "\nThe following characters (and maybe others)"
1739 " may not have the same meaning as the Perl"
1740 " program expects:\n"
1748 # ifdef HAS_NL_LANGINFO
1750 Perl_sv_catpvf(aTHX_ PL_warn_locale, "; codeset=%s",
1751 /* parameter FALSE is a don't care here */
1752 my_nl_langinfo(CODESET, FALSE));
1756 Perl_sv_catpvf(aTHX_ PL_warn_locale, "\n");
1758 /* If we are actually in the scope of the locale or are debugging,
1759 * output the message now. If not in that scope, we save the
1760 * message to be output at the first operation using this locale,
1761 * if that actually happens. Most programs don't use locales, so
1762 * they are immune to bad ones. */
1763 if (IN_LC(LC_CTYPE) || UNLIKELY(DEBUG_L_TEST)) {
1765 /* The '0' below suppresses a bogus gcc compiler warning */
1766 Perl_warner(aTHX_ packWARN(WARN_LOCALE), SvPVX(PL_warn_locale), 0);
1768 if (IN_LC(LC_CTYPE)) {
1769 SvREFCNT_dec_NN(PL_warn_locale);
1770 PL_warn_locale = NULL;
1776 #endif /* USE_LOCALE_CTYPE */
1781 Perl__warn_problematic_locale()
1784 #ifdef USE_LOCALE_CTYPE
1788 /* Internal-to-core function that outputs the message in PL_warn_locale,
1789 * and then NULLS it. Should be called only through the macro
1790 * _CHECK_AND_WARN_PROBLEMATIC_LOCALE */
1792 if (PL_warn_locale) {
1793 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
1794 SvPVX(PL_warn_locale),
1795 0 /* dummy to avoid compiler warning */ );
1796 SvREFCNT_dec_NN(PL_warn_locale);
1797 PL_warn_locale = NULL;
1805 S_new_collate(pTHX_ const char *newcoll)
1808 #ifndef USE_LOCALE_COLLATE
1810 PERL_UNUSED_ARG(newcoll);
1811 PERL_UNUSED_CONTEXT;
1815 /* Called after each libc setlocale() call affecting LC_COLLATE, to tell
1816 * core Perl this and that 'newcoll' is the name of the new locale.
1818 * The design of locale collation is that every locale change is given an
1819 * index 'PL_collation_ix'. The first time a string particpates in an
1820 * operation that requires collation while locale collation is active, it
1821 * is given PERL_MAGIC_collxfrm magic (via sv_collxfrm_flags()). That
1822 * magic includes the collation index, and the transformation of the string
1823 * by strxfrm(), q.v. That transformation is used when doing comparisons,
1824 * instead of the string itself. If a string changes, the magic is
1825 * cleared. The next time the locale changes, the index is incremented,
1826 * and so we know during a comparison that the transformation is not
1827 * necessarily still valid, and so is recomputed. Note that if the locale
1828 * changes enough times, the index could wrap (a U32), and it is possible
1829 * that a transformation would improperly be considered valid, leading to
1830 * an unlikely bug */
1833 if (PL_collation_name) {
1835 Safefree(PL_collation_name);
1836 PL_collation_name = NULL;
1838 PL_collation_standard = TRUE;
1839 is_standard_collation:
1840 PL_collxfrm_base = 0;
1841 PL_collxfrm_mult = 2;
1842 PL_in_utf8_COLLATE_locale = FALSE;
1843 PL_strxfrm_NUL_replacement = '\0';
1844 PL_strxfrm_max_cp = 0;
1848 /* If this is not the same locale as currently, set the new one up */
1849 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
1851 Safefree(PL_collation_name);
1852 PL_collation_name = stdize_locale(savepv(newcoll));
1853 PL_collation_standard = isNAME_C_OR_POSIX(newcoll);
1854 if (PL_collation_standard) {
1855 goto is_standard_collation;
1858 PL_in_utf8_COLLATE_locale = _is_cur_LC_category_utf8(LC_COLLATE);
1859 PL_strxfrm_NUL_replacement = '\0';
1860 PL_strxfrm_max_cp = 0;
1862 /* A locale collation definition includes primary, secondary, tertiary,
1863 * etc. weights for each character. To sort, the primary weights are
1864 * used, and only if they compare equal, then the secondary weights are
1865 * used, and only if they compare equal, then the tertiary, etc.
1867 * strxfrm() works by taking the input string, say ABC, and creating an
1868 * output transformed string consisting of first the primary weights,
1869 * A¹B¹C¹ followed by the secondary ones, A²B²C²; and then the
1870 * tertiary, etc, yielding A¹B¹C¹ A²B²C² A³B³C³ .... Some characters
1871 * may not have weights at every level. In our example, let's say B
1872 * doesn't have a tertiary weight, and A doesn't have a secondary
1873 * weight. The constructed string is then going to be
1874 * A¹B¹C¹ B²C² A³C³ ....
1875 * This has the desired effect that strcmp() will look at the secondary
1876 * or tertiary weights only if the strings compare equal at all higher
1877 * priority weights. The spaces shown here, like in
1879 * are not just for readability. In the general case, these must
1880 * actually be bytes, which we will call here 'separator weights'; and
1881 * they must be smaller than any other weight value, but since these
1882 * are C strings, only the terminating one can be a NUL (some
1883 * implementations may include a non-NUL separator weight just before
1884 * the NUL). Implementations tend to reserve 01 for the separator
1885 * weights. They are needed so that a shorter string's secondary
1886 * weights won't be misconstrued as primary weights of a longer string,
1887 * etc. By making them smaller than any other weight, the shorter
1888 * string will sort first. (Actually, if all secondary weights are
1889 * smaller than all primary ones, there is no need for a separator
1890 * weight between those two levels, etc.)
1892 * The length of the transformed string is roughly a linear function of
1893 * the input string. It's not exactly linear because some characters
1894 * don't have weights at all levels. When we call strxfrm() we have to
1895 * allocate some memory to hold the transformed string. The
1896 * calculations below try to find coefficients 'm' and 'b' for this
1897 * locale so that m*x + b equals how much space we need, given the size
1898 * of the input string in 'x'. If we calculate too small, we increase
1899 * the size as needed, and call strxfrm() again, but it is better to
1900 * get it right the first time to avoid wasted expensive string
1901 * transformations. */
1904 /* We use the string below to find how long the tranformation of it
1905 * is. Almost all locales are supersets of ASCII, or at least the
1906 * ASCII letters. We use all of them, half upper half lower,
1907 * because if we used fewer, we might hit just the ones that are
1908 * outliers in a particular locale. Most of the strings being
1909 * collated will contain a preponderance of letters, and even if
1910 * they are above-ASCII, they are likely to have the same number of
1911 * weight levels as the ASCII ones. It turns out that digits tend
1912 * to have fewer levels, and some punctuation has more, but those
1913 * are relatively sparse in text, and khw believes this gives a
1914 * reasonable result, but it could be changed if experience so
1916 const char longer[] = "ABCDEFGHIJKLMnopqrstuvwxyz";
1917 char * x_longer; /* Transformed 'longer' */
1918 Size_t x_len_longer; /* Length of 'x_longer' */
1920 char * x_shorter; /* We also transform a substring of 'longer' */
1921 Size_t x_len_shorter;
1923 /* _mem_collxfrm() is used get the transformation (though here we
1924 * are interested only in its length). It is used because it has
1925 * the intelligence to handle all cases, but to work, it needs some
1926 * values of 'm' and 'b' to get it started. For the purposes of
1927 * this calculation we use a very conservative estimate of 'm' and
1928 * 'b'. This assumes a weight can be multiple bytes, enough to
1929 * hold any UV on the platform, and there are 5 levels, 4 weight
1930 * bytes, and a trailing NUL. */
1931 PL_collxfrm_base = 5;
1932 PL_collxfrm_mult = 5 * sizeof(UV);
1934 /* Find out how long the transformation really is */
1935 x_longer = _mem_collxfrm(longer,
1939 /* We avoid converting to UTF-8 in the
1940 * called function by telling it the
1941 * string is in UTF-8 if the locale is a
1942 * UTF-8 one. Since the string passed
1943 * here is invariant under UTF-8, we can
1944 * claim it's UTF-8 even though it isn't.
1946 PL_in_utf8_COLLATE_locale);
1949 /* Find out how long the transformation of a substring of 'longer'
1950 * is. Together the lengths of these transformations are
1951 * sufficient to calculate 'm' and 'b'. The substring is all of
1952 * 'longer' except the first character. This minimizes the chances
1953 * of being swayed by outliers */
1954 x_shorter = _mem_collxfrm(longer + 1,
1957 PL_in_utf8_COLLATE_locale);
1958 Safefree(x_shorter);
1960 /* If the results are nonsensical for this simple test, the whole
1961 * locale definition is suspect. Mark it so that locale collation
1962 * is not active at all for it. XXX Should we warn? */
1963 if ( x_len_shorter == 0
1964 || x_len_longer == 0
1965 || x_len_shorter >= x_len_longer)
1967 PL_collxfrm_mult = 0;
1968 PL_collxfrm_base = 0;
1971 SSize_t base; /* Temporary */
1973 /* We have both: m * strlen(longer) + b = x_len_longer
1974 * m * strlen(shorter) + b = x_len_shorter;
1975 * subtracting yields:
1976 * m * (strlen(longer) - strlen(shorter))
1977 * = x_len_longer - x_len_shorter
1978 * But we have set things up so that 'shorter' is 1 byte smaller
1979 * than 'longer'. Hence:
1980 * m = x_len_longer - x_len_shorter
1982 * But if something went wrong, make sure the multiplier is at
1985 if (x_len_longer > x_len_shorter) {
1986 PL_collxfrm_mult = (STRLEN) x_len_longer - x_len_shorter;
1989 PL_collxfrm_mult = 1;
1994 * but in case something has gone wrong, make sure it is
1996 base = x_len_longer - PL_collxfrm_mult * (sizeof(longer) - 1);
2001 /* Add 1 for the trailing NUL */
2002 PL_collxfrm_base = base + 1;
2007 if (DEBUG_L_TEST || debug_initialization) {
2008 PerlIO_printf(Perl_debug_log,
2009 "%s:%d: ?UTF-8 locale=%d; x_len_shorter=%zu, "
2011 " collate multipler=%zu, collate base=%zu\n",
2013 PL_in_utf8_COLLATE_locale,
2014 x_len_shorter, x_len_longer,
2015 PL_collxfrm_mult, PL_collxfrm_base);
2022 #endif /* USE_LOCALE_COLLATE */
2031 S_win32_setlocale(pTHX_ int category, const char* locale)
2033 /* This, for Windows, emulates POSIX setlocale() behavior. There is no
2034 * difference between the two unless the input locale is "", which normally
2035 * means on Windows to get the machine default, which is set via the
2036 * computer's "Regional and Language Options" (or its current equivalent).
2037 * In POSIX, it instead means to find the locale from the user's
2038 * environment. This routine changes the Windows behavior to first look in
2039 * the environment, and, if anything is found, use that instead of going to
2040 * the machine default. If there is no environment override, the machine
2041 * default is used, by calling the real setlocale() with "".
2043 * The POSIX behavior is to use the LC_ALL variable if set; otherwise to
2044 * use the particular category's variable if set; otherwise to use the LANG
2047 bool override_LC_ALL = FALSE;
2051 if (locale && strEQ(locale, "")) {
2055 locale = PerlEnv_getenv("LC_ALL");
2057 if (category == LC_ALL) {
2058 override_LC_ALL = TRUE;
2064 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
2065 if (category == categories[i]) {
2066 locale = PerlEnv_getenv(category_names[i]);
2071 locale = PerlEnv_getenv("LANG");
2087 result = setlocale(category, locale);
2088 DEBUG_L(STMT_START {
2090 PerlIO_printf(Perl_debug_log, "%s:%d: %s\n", __FILE__, __LINE__,
2091 setlocale_debug_string(category, locale, result));
2095 if (! override_LC_ALL) {
2099 /* Here the input category was LC_ALL, and we have set it to what is in the
2100 * LANG variable or the system default if there is no LANG. But these have
2101 * lower priority than the other LC_foo variables, so override it for each
2102 * one that is set. (If they are set to "", it means to use the same thing
2103 * we just set LC_ALL to, so can skip) */
2105 for (i = 0; i < LC_ALL_INDEX; i++) {
2106 result = PerlEnv_getenv(category_names[i]);
2107 if (result && strNE(result, "")) {
2108 setlocale(categories[i], result);
2109 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
2111 setlocale_debug_string(categories[i], result, "not captured")));
2115 result = setlocale(LC_ALL, NULL);
2116 DEBUG_L(STMT_START {
2118 PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
2120 setlocale_debug_string(LC_ALL, NULL, result));
2131 =head1 Locale-related functions and macros
2133 =for apidoc Perl_setlocale
2135 This is an (almost) drop-in replacement for the system L<C<setlocale(3)>>,
2136 taking the same parameters, and returning the same information, except that it
2137 returns the correct underlying C<LC_NUMERIC> locale. Regular C<setlocale> will
2138 instead return C<C> if the underlying locale has a non-dot decimal point
2139 character, or a non-empty thousands separator for displaying floating point
2140 numbers. This is because perl keeps that locale category such that it has a
2141 dot and empty separator, changing the locale briefly during the operations
2142 where the underlying one is required. C<Perl_setlocale> knows about this, and
2143 compensates; regular C<setlocale> doesn't.
2145 Another reason it isn't completely a drop-in replacement is that it is
2146 declared to return S<C<const char *>>, whereas the system setlocale omits the
2147 C<const> (presumably because its API was specified long ago, and can't be
2148 updated; it is illegal to change the information C<setlocale> returns; doing
2149 so leads to segfaults.)
2151 Finally, C<Perl_setlocale> works under all circumstances, whereas plain
2152 C<setlocale> can be completely ineffective on some platforms under some
2155 C<Perl_setlocale> should not be used to change the locale except on systems
2156 where the predefined variable C<${^SAFE_LOCALES}> is 1. On some such systems,
2157 the system C<setlocale()> is ineffective, returning the wrong information, and
2158 failing to actually change the locale. C<Perl_setlocale>, however works
2159 properly in all circumstances.
2161 The return points to a per-thread static buffer, which is overwritten the next
2162 time C<Perl_setlocale> is called from the same thread.
2169 Perl_setlocale(const int category, const char * locale)
2171 /* This wraps POSIX::setlocale() */
2175 PERL_UNUSED_ARG(category);
2176 PERL_UNUSED_ARG(locale);
2182 const char * retval;
2183 const char * newlocale;
2186 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
2188 #ifdef USE_LOCALE_NUMERIC
2190 /* A NULL locale means only query what the current one is. We have the
2191 * LC_NUMERIC name saved, because we are normally switched into the C
2192 * (or equivalent) locale for it. For an LC_ALL query, switch back to get
2193 * the correct results. All other categories don't require special
2195 if (locale == NULL) {
2196 if (category == LC_NUMERIC) {
2198 /* We don't have to copy this return value, as it is a per-thread
2199 * variable, and won't change until a future setlocale */
2200 return PL_numeric_name;
2205 else if (category == LC_ALL) {
2206 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
2215 retval = save_to_buffer(do_setlocale_r(category, locale),
2216 &PL_setlocale_buf, &PL_setlocale_bufsize, 0);
2219 #if defined(USE_LOCALE_NUMERIC) && defined(LC_ALL)
2221 if (locale == NULL && category == LC_ALL) {
2222 RESTORE_LC_NUMERIC();
2227 DEBUG_L(PerlIO_printf(Perl_debug_log,
2228 "%s:%d: %s\n", __FILE__, __LINE__,
2229 setlocale_debug_string(category, locale, retval)));
2237 /* If locale == NULL, we are just querying the state */
2238 if (locale == NULL) {
2242 /* Now that have switched locales, we have to update our records to
2247 #ifdef USE_LOCALE_CTYPE
2254 #ifdef USE_LOCALE_COLLATE
2257 new_collate(retval);
2261 #ifdef USE_LOCALE_NUMERIC
2264 new_numeric(retval);
2272 /* LC_ALL updates all the things we care about. The values may not
2273 * be the same as 'retval', as the locale "" may have set things
2276 # ifdef USE_LOCALE_CTYPE
2278 newlocale = savepv(do_setlocale_c(LC_CTYPE, NULL));
2279 new_ctype(newlocale);
2280 Safefree(newlocale);
2282 # endif /* USE_LOCALE_CTYPE */
2283 # ifdef USE_LOCALE_COLLATE
2285 newlocale = savepv(do_setlocale_c(LC_COLLATE, NULL));
2286 new_collate(newlocale);
2287 Safefree(newlocale);
2290 # ifdef USE_LOCALE_NUMERIC
2292 newlocale = savepv(do_setlocale_c(LC_NUMERIC, NULL));
2293 new_numeric(newlocale);
2294 Safefree(newlocale);
2296 # endif /* USE_LOCALE_NUMERIC */
2309 PERL_STATIC_INLINE const char *
2310 S_save_to_buffer(const char * string, char **buf, Size_t *buf_size, const Size_t offset)
2312 /* Copy the NUL-terminated 'string' to 'buf' + 'offset'. 'buf' has size 'buf_size',
2313 * growing it if necessary */
2317 PERL_ARGS_ASSERT_SAVE_TO_BUFFER;
2323 string_size = strlen(string) + offset + 1;
2325 if (*buf_size == 0) {
2326 Newx(*buf, string_size, char);
2327 *buf_size = string_size;
2329 else if (string_size > *buf_size) {
2330 Renew(*buf, string_size, char);
2331 *buf_size = string_size;
2334 Copy(string, *buf + offset, string_size - offset, char);
2340 =for apidoc Perl_langinfo
2342 This is an (almost) drop-in replacement for the system C<L<nl_langinfo(3)>>,
2343 taking the same C<item> parameter values, and returning the same information.
2344 But it is more thread-safe than regular C<nl_langinfo()>, and hides the quirks
2345 of Perl's locale handling from your code, and can be used on systems that lack
2346 a native C<nl_langinfo>.
2354 The reason it isn't quite a drop-in replacement is actually an advantage. The
2355 only difference is that it returns S<C<const char *>>, whereas plain
2356 C<nl_langinfo()> returns S<C<char *>>, but you are (only by documentation)
2357 forbidden to write into the buffer. By declaring this C<const>, the compiler
2358 enforces this restriction, so if it is violated, you know at compilation time,
2359 rather than getting segfaults at runtime.
2363 It delivers the correct results for the C<RADIXCHAR> and C<THOUSEP> items,
2364 without you having to write extra code. The reason for the extra code would be
2365 because these are from the C<LC_NUMERIC> locale category, which is normally
2366 kept set by Perl so that the radix is a dot, and the separator is the empty
2367 string, no matter what the underlying locale is supposed to be, and so to get
2368 the expected results, you have to temporarily toggle into the underlying
2369 locale, and later toggle back. (You could use plain C<nl_langinfo> and
2370 C<L</STORE_LC_NUMERIC_FORCE_TO_UNDERLYING>> for this but then you wouldn't get
2371 the other advantages of C<Perl_langinfo()>; not keeping C<LC_NUMERIC> in the C
2372 (or equivalent) locale would break a lot of CPAN, which is expecting the radix
2373 (decimal point) character to be a dot.)
2377 The system function it replaces can have its static return buffer trashed,
2378 not only by a subesequent call to that function, but by a C<freelocale>,
2379 C<setlocale>, or other locale change. The returned buffer of this function is
2380 not changed until the next call to it, so the buffer is never in a trashed
2385 Its return buffer is per-thread, so it also is never overwritten by a call to
2386 this function from another thread; unlike the function it replaces.
2390 But most importantly, it works on systems that don't have C<nl_langinfo>, such
2391 as Windows, hence makes your code more portable. Of the fifty-some possible
2392 items specified by the POSIX 2008 standard,
2393 L<http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/langinfo.h.html>,
2394 only one is completely unimplemented, though on non-Windows platforms, another
2395 significant one is also not implemented). It uses various techniques to
2396 recover the other items, including calling C<L<localeconv(3)>>, and
2397 C<L<strftime(3)>>, both of which are specified in C89, so should be always be
2398 available. Later C<strftime()> versions have additional capabilities; C<""> is
2399 returned for those not available on your system.
2401 It is important to note that when called with an item that is recovered by
2402 using C<localeconv>, the buffer from any previous explicit call to
2403 C<localeconv> will be overwritten. This means you must save that buffer's
2404 contents if you need to access them after a call to this function. (But note
2405 that you might not want to be using C<localeconv()> directly anyway, because of
2406 issues like the ones listed in the second item of this list (above) for
2407 C<RADIXCHAR> and C<THOUSEP>. You can use the methods given in L<perlcall> to
2408 call L<POSIX/localeconv> and avoid all the issues, but then you have a hash to
2411 The details for those items which may deviate from what this emulation returns
2412 and what a native C<nl_langinfo()> would return are specified in
2417 When using C<Perl_langinfo> on systems that don't have a native
2418 C<nl_langinfo()>, you must
2420 #include "perl_langinfo.h"
2422 before the C<perl.h> C<#include>. You can replace your C<langinfo.h>
2423 C<#include> with this one. (Doing it this way keeps out the symbols that plain
2424 C<langinfo.h> would try to import into the namespace for code that doesn't need
2427 The original impetus for C<Perl_langinfo()> was so that code that needs to
2428 find out the current currency symbol, floating point radix character, or digit
2429 grouping separator can use, on all systems, the simpler and more
2430 thread-friendly C<nl_langinfo> API instead of C<L<localeconv(3)>> which is a
2431 pain to make thread-friendly. For other fields returned by C<localeconv>, it
2432 is better to use the methods given in L<perlcall> to call
2433 L<C<POSIX::localeconv()>|POSIX/localeconv>, which is thread-friendly.
2440 #ifdef HAS_NL_LANGINFO
2441 Perl_langinfo(const nl_item item)
2443 Perl_langinfo(const int item)
2446 return my_nl_langinfo(item, TRUE);
2450 #ifdef HAS_NL_LANGINFO
2451 S_my_nl_langinfo(const nl_item item, bool toggle)
2453 S_my_nl_langinfo(const int item, bool toggle)
2457 const char * retval;
2459 #ifdef USE_LOCALE_NUMERIC
2461 /* We only need to toggle into the underlying LC_NUMERIC locale for these
2462 * two items, and only if not already there */
2463 if (toggle && (( item != RADIXCHAR && item != THOUSEP)
2464 || PL_numeric_underlying))
2466 #endif /* No toggling needed if not using LC_NUMERIC */
2470 #if defined(HAS_NL_LANGINFO) /* nl_langinfo() is available. */
2471 # if ! defined(HAS_THREAD_SAFE_NL_LANGINFO_L) \
2472 || ! defined(HAS_POSIX_2008_LOCALE) \
2473 || ! defined(DUPLOCALE)
2475 /* Here, use plain nl_langinfo(), switching to the underlying LC_NUMERIC
2476 * for those items dependent on it. This must be copied to a buffer before
2477 * switching back, as some systems destroy the buffer when setlocale() is
2481 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
2484 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
2487 LOCALE_LOCK; /* Prevent interference from another thread executing
2488 this code section (the only call to nl_langinfo in
2492 /* Copy to a per-thread buffer, which is also one that won't be
2493 * destroyed by a subsequent setlocale(), such as the
2494 * RESTORE_LC_NUMERIC may do just below. */
2495 retval = save_to_buffer(nl_langinfo(item),
2496 &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
2501 RESTORE_LC_NUMERIC();
2505 # else /* Use nl_langinfo_l(), avoiding both a mutex and changing the locale */
2508 bool do_free = FALSE;
2509 locale_t cur = uselocale((locale_t) 0);
2511 if (cur == LC_GLOBAL_LOCALE) {
2512 cur = duplocale(LC_GLOBAL_LOCALE);
2516 # ifdef USE_LOCALE_NUMERIC
2519 if (PL_underlying_numeric_obj) {
2520 cur = PL_underlying_numeric_obj;
2523 cur = newlocale(LC_NUMERIC_MASK, PL_numeric_name, cur);
2530 /* We have to save it to a buffer, because the freelocale() just below
2531 * can invalidate the internal one */
2532 retval = save_to_buffer(nl_langinfo_l(item, cur),
2533 &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
2542 if (strEQ(retval, "")) {
2543 if (item == YESSTR) {
2546 if (item == NOSTR) {
2553 #else /* Below, emulate nl_langinfo as best we can */
2557 # ifdef HAS_LOCALECONV
2559 const struct lconv* lc;
2561 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
2563 # ifdef TS_W32_BROKEN_LOCALECONV
2565 const char * save_global;
2566 const char * save_thread;
2574 # ifdef HAS_STRFTIME
2577 bool return_format = FALSE; /* Return the %format, not the value */
2578 const char * format;
2582 /* We copy the results to a per-thread buffer, even if not
2583 * multi-threaded. This is in part to simplify this code, and partly
2584 * because we need a buffer anyway for strftime(), and partly because a
2585 * call of localeconv() could otherwise wipe out the buffer, and the
2586 * programmer would not be expecting this, as this is a nl_langinfo()
2587 * substitute after all, so s/he might be thinking their localeconv()
2588 * is safe until another localeconv() call. */
2593 /* This is unimplemented */
2594 case ERA: /* For use with strftime() %E modifier */
2599 /* We use only an English set, since we don't know any more */
2600 case YESEXPR: return "^[+1yY]";
2601 case YESSTR: return "yes";
2602 case NOEXPR: return "^[-0nN]";
2603 case NOSTR: return "no";
2609 /* On non-windows, this is unimplemented, in part because of
2610 * inconsistencies between vendors. The Darwin native
2611 * nl_langinfo() implementation simply looks at everything past
2612 * any dot in the name, but that doesn't work for other
2613 * vendors. Many Linux locales that don't have UTF-8 in their
2614 * names really are UTF-8, for example; z/OS locales that do
2615 * have UTF-8 in their names, aren't really UTF-8 */
2620 { /* But on Windows, the name does seem to be consistent, so
2625 const char * name = my_setlocale(LC_CTYPE, NULL);
2627 if (isNAME_C_OR_POSIX(name)) {
2628 return "ANSI_X3.4-1968";
2631 /* Find the dot in the locale name */
2632 first = (const char *) strchr(name, '.');
2638 /* Look at everything past the dot */
2643 if (! isDIGIT(*p)) {
2650 /* Here everything past the dot is a digit. Treat it as a
2652 retval = save_to_buffer("CP", &PL_langinfo_buf,
2653 &PL_langinfo_bufsize, 0);
2654 offset = STRLENs("CP");
2658 retval = save_to_buffer(first, &PL_langinfo_buf,
2659 &PL_langinfo_bufsize, offset);
2665 # ifdef HAS_LOCALECONV
2669 /* We don't bother with localeconv_l() because any system that
2670 * has it is likely to also have nl_langinfo() */
2672 LOCALE_LOCK_V; /* Prevent interference with other threads
2673 using localeconv() */
2675 # ifdef TS_W32_BROKEN_LOCALECONV
2677 /* This is a workaround for a Windows bug prior to VS 15.
2678 * What we do here is, while locked, switch to the global
2679 * locale so localeconv() works; then switch back just before
2680 * the unlock. This can screw things up if some thread is
2681 * already using the global locale while assuming no other is.
2682 * A different workaround would be to call GetCurrencyFormat on
2683 * a known value, and parse it; patches welcome
2685 * We have to use LC_ALL instead of LC_MONETARY because of
2686 * another bug in Windows */
2688 save_thread = savepv(my_setlocale(LC_ALL, NULL));
2689 _configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
2690 save_global= savepv(my_setlocale(LC_ALL, NULL));
2691 my_setlocale(LC_ALL, save_thread);
2697 || ! lc->currency_symbol
2698 || strEQ("", lc->currency_symbol))
2704 /* Leave the first spot empty to be filled in below */
2705 retval = save_to_buffer(lc->currency_symbol, &PL_langinfo_buf,
2706 &PL_langinfo_bufsize, 1);
2707 if (lc->mon_decimal_point && strEQ(lc->mon_decimal_point, ""))
2708 { /* khw couldn't figure out how the localedef specifications
2709 would show that the $ should replace the radix; this is
2710 just a guess as to how it might work.*/
2711 PL_langinfo_buf[0] = '.';
2713 else if (lc->p_cs_precedes) {
2714 PL_langinfo_buf[0] = '-';
2717 PL_langinfo_buf[0] = '+';
2720 # ifdef TS_W32_BROKEN_LOCALECONV
2722 my_setlocale(LC_ALL, save_global);
2723 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
2724 my_setlocale(LC_ALL, save_thread);
2725 Safefree(save_global);
2726 Safefree(save_thread);
2733 # ifdef TS_W32_BROKEN_LOCALECONV
2737 /* For this, we output a known simple floating point number to
2738 * a buffer, and parse it, looking for the radix */
2741 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
2744 if (PL_langinfo_bufsize < 10) {
2745 PL_langinfo_bufsize = 10;
2746 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
2749 needed_size = my_snprintf(PL_langinfo_buf, PL_langinfo_bufsize,
2751 if (needed_size >= (int) PL_langinfo_bufsize) {
2752 PL_langinfo_bufsize = needed_size + 1;
2753 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
2754 needed_size = my_snprintf(PL_langinfo_buf, PL_langinfo_bufsize,
2756 assert(needed_size < (int) PL_langinfo_bufsize);
2759 ptr = PL_langinfo_buf;
2760 e = PL_langinfo_buf + PL_langinfo_bufsize;
2763 while (ptr < e && *ptr != '1') {
2770 while (ptr < e && *ptr != '5') {
2774 /* Everything in between is the radix string */
2776 PL_langinfo_buf[0] = '?';
2777 PL_langinfo_buf[1] = '\0';
2781 Move(item_start, PL_langinfo_buf, ptr - PL_langinfo_buf, char);
2785 RESTORE_LC_NUMERIC();
2788 retval = PL_langinfo_buf;
2793 case RADIXCHAR: /* No special handling needed */
2800 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
2803 LOCALE_LOCK_V; /* Prevent interference with other threads
2804 using localeconv() */
2806 # ifdef TS_W32_BROKEN_LOCALECONV
2808 /* This should only be for the thousands separator. A
2809 * different work around would be to use GetNumberFormat on a
2810 * known value and parse the result to find the separator */
2811 save_thread = savepv(my_setlocale(LC_ALL, NULL));
2812 _configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
2813 save_global = savepv(my_setlocale(LC_ALL, NULL));
2814 my_setlocale(LC_ALL, save_thread);
2816 /* This is the start of code that for broken Windows replaces
2817 * the above and below code, and instead calls
2818 * GetNumberFormat() and then would parse that to find the
2819 * thousands separator. It needs to handle UTF-16 vs -8
2822 needed_size = GetNumberFormatEx(PL_numeric_name, 0, "1234.5", NULL, PL_langinfo_buf, PL_langinfo_bufsize);
2823 DEBUG_L(PerlIO_printf(Perl_debug_log,
2824 "%s: %d: return from GetNumber, count=%d, val=%s\n",
2825 __FILE__, __LINE__, needed_size, PL_langinfo_buf));
2835 temp = (item == RADIXCHAR)
2837 : lc->thousands_sep;
2843 retval = save_to_buffer(temp, &PL_langinfo_buf,
2844 &PL_langinfo_bufsize, 0);
2846 # ifdef TS_W32_BROKEN_LOCALECONV
2848 my_setlocale(LC_ALL, save_global);
2849 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
2850 my_setlocale(LC_ALL, save_thread);
2851 Safefree(save_global);
2852 Safefree(save_thread);
2859 RESTORE_LC_NUMERIC();
2865 # ifdef HAS_STRFTIME
2867 /* These are defined by C89, so we assume that strftime supports
2868 * them, and so are returned unconditionally; they may not be what
2869 * the locale actually says, but should give good enough results
2870 * for someone using them as formats (as opposed to trying to parse
2871 * them to figure out what the locale says). The other format
2872 * items are actually tested to verify they work on the platform */
2873 case D_FMT: return "%x";
2874 case T_FMT: return "%X";
2875 case D_T_FMT: return "%c";
2877 /* These formats are only available in later strfmtime's */
2878 case ERA_D_FMT: case ERA_T_FMT: case ERA_D_T_FMT: case T_FMT_AMPM:
2880 /* The rest can be gotten from most versions of strftime(). */
2881 case ABDAY_1: case ABDAY_2: case ABDAY_3:
2882 case ABDAY_4: case ABDAY_5: case ABDAY_6: case ABDAY_7:
2884 case AM_STR: case PM_STR:
2885 case ABMON_1: case ABMON_2: case ABMON_3: case ABMON_4:
2886 case ABMON_5: case ABMON_6: case ABMON_7: case ABMON_8:
2887 case ABMON_9: case ABMON_10: case ABMON_11: case ABMON_12:
2888 case DAY_1: case DAY_2: case DAY_3: case DAY_4:
2889 case DAY_5: case DAY_6: case DAY_7:
2890 case MON_1: case MON_2: case MON_3: case MON_4:
2891 case MON_5: case MON_6: case MON_7: case MON_8:
2892 case MON_9: case MON_10: case MON_11: case MON_12:
2896 init_tm(&tm); /* Precaution against core dumps */
2900 tm.tm_year = 2017 - 1900;
2907 "panic: %s: %d: switch case: %d problem",
2908 __FILE__, __LINE__, item);
2909 NOT_REACHED; /* NOTREACHED */
2911 case PM_STR: tm.tm_hour = 18;
2916 case ABDAY_7: tm.tm_wday++;
2917 case ABDAY_6: tm.tm_wday++;
2918 case ABDAY_5: tm.tm_wday++;
2919 case ABDAY_4: tm.tm_wday++;
2920 case ABDAY_3: tm.tm_wday++;
2921 case ABDAY_2: tm.tm_wday++;
2926 case DAY_7: tm.tm_wday++;
2927 case DAY_6: tm.tm_wday++;
2928 case DAY_5: tm.tm_wday++;
2929 case DAY_4: tm.tm_wday++;
2930 case DAY_3: tm.tm_wday++;
2931 case DAY_2: tm.tm_wday++;
2936 case ABMON_12: tm.tm_mon++;
2937 case ABMON_11: tm.tm_mon++;
2938 case ABMON_10: tm.tm_mon++;
2939 case ABMON_9: tm.tm_mon++;
2940 case ABMON_8: tm.tm_mon++;
2941 case ABMON_7: tm.tm_mon++;
2942 case ABMON_6: tm.tm_mon++;
2943 case ABMON_5: tm.tm_mon++;
2944 case ABMON_4: tm.tm_mon++;
2945 case ABMON_3: tm.tm_mon++;
2946 case ABMON_2: tm.tm_mon++;
2951 case MON_12: tm.tm_mon++;
2952 case MON_11: tm.tm_mon++;
2953 case MON_10: tm.tm_mon++;
2954 case MON_9: tm.tm_mon++;
2955 case MON_8: tm.tm_mon++;
2956 case MON_7: tm.tm_mon++;
2957 case MON_6: tm.tm_mon++;
2958 case MON_5: tm.tm_mon++;
2959 case MON_4: tm.tm_mon++;
2960 case MON_3: tm.tm_mon++;
2961 case MON_2: tm.tm_mon++;
2968 return_format = TRUE;
2973 return_format = TRUE;
2978 return_format = TRUE;
2983 return_format = TRUE;
2988 format = "%Ow"; /* Find the alternate digit for 0 */
2992 /* We can't use my_strftime() because it doesn't look at
2994 while (0 == strftime(PL_langinfo_buf, PL_langinfo_bufsize,
2997 /* A zero return means one of:
2998 * a) there wasn't enough space in PL_langinfo_buf
2999 * b) the format, like a plain %p, returns empty
3000 * c) it was an illegal format, though some
3001 * implementations of strftime will just return the
3002 * illegal format as a plain character sequence.
3004 * To quickly test for case 'b)', try again but precede
3005 * the format with a plain character. If that result is
3006 * still empty, the problem is either 'a)' or 'c)' */
3008 Size_t format_size = strlen(format) + 1;
3009 Size_t mod_size = format_size + 1;
3013 Newx(mod_format, mod_size, char);
3014 Newx(temp_result, PL_langinfo_bufsize, char);
3016 my_strlcpy(mod_format + 1, format, mod_size);
3017 len = strftime(temp_result,
3018 PL_langinfo_bufsize,
3020 Safefree(mod_format);
3021 Safefree(temp_result);
3023 /* If 'len' is non-zero, it means that we had a case like
3024 * %p which means the current locale doesn't use a.m. or
3025 * p.m., and that is valid */
3028 /* Here, still didn't work. If we get well beyond a
3029 * reasonable size, bail out to prevent an infinite
3032 if (PL_langinfo_bufsize > 100 * format_size) {
3033 *PL_langinfo_buf = '\0';
3036 /* Double the buffer size to retry; Add 1 in case
3037 * original was 0, so we aren't stuck at 0. */
3038 PL_langinfo_bufsize *= 2;
3039 PL_langinfo_bufsize++;
3040 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
3048 /* Here, we got a result.
3050 * If the item is 'ALT_DIGITS', PL_langinfo_buf contains the
3051 * alternate format for wday 0. If the value is the same as
3052 * the normal 0, there isn't an alternate, so clear the buffer.
3054 if ( item == ALT_DIGITS
3055 && strEQ(PL_langinfo_buf, "0"))
3057 *PL_langinfo_buf = '\0';
3060 /* ALT_DIGITS is problematic. Experiments on it showed that
3061 * strftime() did not always work properly when going from
3062 * alt-9 to alt-10. Only a few locales have this item defined,
3063 * and in all of them on Linux that khw was able to find,
3064 * nl_langinfo() merely returned the alt-0 character, possibly
3065 * doubled. Most Unicode digits are in blocks of 10
3066 * consecutive code points, so that is sufficient information
3067 * for those scripts, as we can infer alt-1, alt-2, .... But
3068 * for a Japanese locale, a CJK ideographic 0 is returned, and
3069 * the CJK digits are not in code point order, so you can't
3070 * really infer anything. The localedef for this locale did
3071 * specify the succeeding digits, so that strftime() works
3072 * properly on them, without needing to infer anything. But
3073 * the nl_langinfo() return did not give sufficient information
3074 * for the caller to understand what's going on. So until
3075 * there is evidence that it should work differently, this
3076 * returns the alt-0 string for ALT_DIGITS.
3078 * wday was chosen because its range is all a single digit.
3079 * Things like tm_sec have two digits as the minimum: '00' */
3083 retval = PL_langinfo_buf;
3085 /* If to return the format, not the value, overwrite the buffer
3086 * with it. But some strftime()s will keep the original format
3087 * if illegal, so change those to "" */
3088 if (return_format) {
3089 if (strEQ(PL_langinfo_buf, format)) {
3090 *PL_langinfo_buf = '\0';
3093 retval = save_to_buffer(format, &PL_langinfo_buf,
3094 &PL_langinfo_bufsize, 0);
3112 * Initialize locale awareness.
3115 Perl_init_i18nl10n(pTHX_ int printwarn)
3119 * 0 if not to output warning when setup locale is bad
3120 * 1 if to output warning based on value of PERL_BADLANG
3121 * >1 if to output regardless of PERL_BADLANG
3124 * 1 = set ok or not applicable,
3125 * 0 = fallback to a locale of lower priority
3126 * -1 = fallback to all locales failed, not even to the C locale
3128 * Under -DDEBUGGING, if the environment variable PERL_DEBUG_LOCALE_INIT is
3129 * set, debugging information is output.
3131 * This looks more complicated than it is, mainly due to the #ifdefs.
3133 * We try to set LC_ALL to the value determined by the environment. If
3134 * there is no LC_ALL on this platform, we try the individual categories we
3135 * know about. If this works, we are done.
3137 * But if it doesn't work, we have to do something else. We search the
3138 * environment variables ourselves instead of relying on the system to do
3139 * it. We look at, in order, LC_ALL, LANG, a system default locale (if we
3140 * think there is one), and the ultimate fallback "C". This is all done in
3141 * the same loop as above to avoid duplicating code, but it makes things
3142 * more complex. The 'trial_locales' array is initialized with just one
3143 * element; it causes the behavior described in the paragraph above this to
3144 * happen. If that fails, we add elements to 'trial_locales', and do extra
3145 * loop iterations to cause the behavior described in this paragraph.
3147 * On Ultrix, the locale MUST come from the environment, so there is
3148 * preliminary code to set it. I (khw) am not sure that it is necessary,
3149 * and that this couldn't be folded into the loop, but barring any real
3150 * platforms to test on, it's staying as-is
3152 * A slight complication is that in embedded Perls, the locale may already
3153 * be set-up, and we don't want to get it from the normal environment
3154 * variables. This is handled by having a special environment variable
3155 * indicate we're in this situation. We simply set setlocale's 2nd
3156 * parameter to be a NULL instead of "". That indicates to setlocale that
3157 * it is not to change anything, but to return the current value,
3158 * effectively initializing perl's db to what the locale already is.
3160 * We play the same trick with NULL if a LC_ALL succeeds. We call
3161 * setlocale() on the individual categores with NULL to get their existing
3162 * values for our db, instead of trying to change them.
3171 PERL_UNUSED_ARG(printwarn);
3173 #else /* USE_LOCALE */
3176 const char * const language = savepv(PerlEnv_getenv("LANGUAGE"));
3180 /* NULL uses the existing already set up locale */
3181 const char * const setlocale_init = (PerlEnv_getenv("PERL_SKIP_LOCALE_INIT"))
3184 const char* trial_locales[5]; /* 5 = 1 each for "", LC_ALL, LANG, "", C */
3185 unsigned int trial_locales_count;
3186 const char * const lc_all = savepv(PerlEnv_getenv("LC_ALL"));
3187 const char * const lang = savepv(PerlEnv_getenv("LANG"));
3188 bool setlocale_failure = FALSE;
3191 /* A later getenv() could zap this, so only use here */
3192 const char * const bad_lang_use_once = PerlEnv_getenv("PERL_BADLANG");
3194 const bool locwarn = (printwarn > 1
3196 && ( ! bad_lang_use_once
3198 /* disallow with "" or "0" */
3200 && strNE("0", bad_lang_use_once)))));
3202 /* setlocale() return vals; not copied so must be looked at immediately */
3203 const char * sl_result[NOMINAL_LC_ALL_INDEX + 1];
3205 /* current locale for given category; should have been copied so aren't
3207 const char * curlocales[NOMINAL_LC_ALL_INDEX + 1];
3211 /* In some systems you can find out the system default locale
3212 * and use that as the fallback locale. */
3213 # define SYSTEM_DEFAULT_LOCALE
3215 # ifdef SYSTEM_DEFAULT_LOCALE
3217 const char *system_default_locale = NULL;
3222 # define DEBUG_LOCALE_INIT(a,b,c)
3225 DEBUG_INITIALIZATION_set(cBOOL(PerlEnv_getenv("PERL_DEBUG_LOCALE_INIT")));
3227 # define DEBUG_LOCALE_INIT(category, locale, result) \
3229 if (debug_initialization) { \
3230 PerlIO_printf(Perl_debug_log, \
3232 __FILE__, __LINE__, \
3233 setlocale_debug_string(category, \
3239 /* Make sure the parallel arrays are properly set up */
3240 # ifdef USE_LOCALE_NUMERIC
3241 assert(categories[LC_NUMERIC_INDEX] == LC_NUMERIC);
3242 assert(strEQ(category_names[LC_NUMERIC_INDEX], "LC_NUMERIC"));
3243 # ifdef USE_POSIX_2008_LOCALE
3244 assert(category_masks[LC_NUMERIC_INDEX] == LC_NUMERIC_MASK);
3247 # ifdef USE_LOCALE_CTYPE
3248 assert(categories[LC_CTYPE_INDEX] == LC_CTYPE);
3249 assert(strEQ(category_names[LC_CTYPE_INDEX], "LC_CTYPE"));
3250 # ifdef USE_POSIX_2008_LOCALE
3251 assert(category_masks[LC_CTYPE_INDEX] == LC_CTYPE_MASK);
3254 # ifdef USE_LOCALE_COLLATE
3255 assert(categories[LC_COLLATE_INDEX] == LC_COLLATE);
3256 assert(strEQ(category_names[LC_COLLATE_INDEX], "LC_COLLATE"));
3257 # ifdef USE_POSIX_2008_LOCALE
3258 assert(category_masks[LC_COLLATE_INDEX] == LC_COLLATE_MASK);
3261 # ifdef USE_LOCALE_TIME
3262 assert(categories[LC_TIME_INDEX] == LC_TIME);
3263 assert(strEQ(category_names[LC_TIME_INDEX], "LC_TIME"));
3264 # ifdef USE_POSIX_2008_LOCALE
3265 assert(category_masks[LC_TIME_INDEX] == LC_TIME_MASK);
3268 # ifdef USE_LOCALE_MESSAGES
3269 assert(categories[LC_MESSAGES_INDEX] == LC_MESSAGES);
3270 assert(strEQ(category_names[LC_MESSAGES_INDEX], "LC_MESSAGES"));
3271 # ifdef USE_POSIX_2008_LOCALE
3272 assert(category_masks[LC_MESSAGES_INDEX] == LC_MESSAGES_MASK);
3275 # ifdef USE_LOCALE_MONETARY
3276 assert(categories[LC_MONETARY_INDEX] == LC_MONETARY);
3277 assert(strEQ(category_names[LC_MONETARY_INDEX], "LC_MONETARY"));
3278 # ifdef USE_POSIX_2008_LOCALE
3279 assert(category_masks[LC_MONETARY_INDEX] == LC_MONETARY_MASK);
3282 # ifdef USE_LOCALE_ADDRESS
3283 assert(categories[LC_ADDRESS_INDEX] == LC_ADDRESS);
3284 assert(strEQ(category_names[LC_ADDRESS_INDEX], "LC_ADDRESS"));
3285 # ifdef USE_POSIX_2008_LOCALE
3286 assert(category_masks[LC_ADDRESS_INDEX] == LC_ADDRESS_MASK);
3289 # ifdef USE_LOCALE_IDENTIFICATION
3290 assert(categories[LC_IDENTIFICATION_INDEX] == LC_IDENTIFICATION);
3291 assert(strEQ(category_names[LC_IDENTIFICATION_INDEX], "LC_IDENTIFICATION"));
3292 # ifdef USE_POSIX_2008_LOCALE
3293 assert(category_masks[LC_IDENTIFICATION_INDEX] == LC_IDENTIFICATION_MASK);
3296 # ifdef USE_LOCALE_MEASUREMENT
3297 assert(categories[LC_MEASUREMENT_INDEX] == LC_MEASUREMENT);
3298 assert(strEQ(category_names[LC_MEASUREMENT_INDEX], "LC_MEASUREMENT"));
3299 # ifdef USE_POSIX_2008_LOCALE
3300 assert(category_masks[LC_MEASUREMENT_INDEX] == LC_MEASUREMENT_MASK);
3303 # ifdef USE_LOCALE_PAPER
3304 assert(categories[LC_PAPER_INDEX] == LC_PAPER);
3305 assert(strEQ(category_names[LC_PAPER_INDEX], "LC_PAPER"));
3306 # ifdef USE_POSIX_2008_LOCALE
3307 assert(category_masks[LC_PAPER_INDEX] == LC_PAPER_MASK);
3310 # ifdef USE_LOCALE_TELEPHONE
3311 assert(categories[LC_TELEPHONE_INDEX] == LC_TELEPHONE);
3312 assert(strEQ(category_names[LC_TELEPHONE_INDEX], "LC_TELEPHONE"));
3313 # ifdef USE_POSIX_2008_LOCALE
3314 assert(category_masks[LC_TELEPHONE_INDEX] == LC_TELEPHONE_MASK);
3318 assert(categories[LC_ALL_INDEX] == LC_ALL);
3319 assert(strEQ(category_names[LC_ALL_INDEX], "LC_ALL"));
3320 assert(NOMINAL_LC_ALL_INDEX == LC_ALL_INDEX);
3321 # ifdef USE_POSIX_2008_LOCALE
3322 assert(category_masks[LC_ALL_INDEX] == LC_ALL_MASK);
3325 # endif /* DEBUGGING */
3327 /* Initialize the cache of the program's UTF-8ness for the always known
3328 * locales C and POSIX */
3329 my_strlcpy(PL_locale_utf8ness, C_and_POSIX_utf8ness,
3330 sizeof(PL_locale_utf8ness));
3332 # ifdef USE_THREAD_SAFE_LOCALE
3335 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
3339 # ifdef USE_POSIX_2008_LOCALE
3341 PL_C_locale_obj = newlocale(LC_ALL_MASK, "C", (locale_t) 0);
3342 if (! PL_C_locale_obj) {
3343 Perl_croak_nocontext(
3344 "panic: Cannot create POSIX 2008 C locale object; errno=%d", errno);
3346 if (DEBUG_Lv_TEST || debug_initialization) {
3347 PerlIO_printf(Perl_debug_log, "%s:%d: created C object %p\n", __FILE__, __LINE__, PL_C_locale_obj);
3352 # ifdef USE_LOCALE_NUMERIC
3354 PL_numeric_radix_sv = newSVpvs(".");
3358 # if defined(USE_POSIX_2008_LOCALE) && ! defined(HAS_QUERYLOCALE)
3360 /* Initialize our records. If we have POSIX 2008, we have LC_ALL */
3361 do_setlocale_c(LC_ALL, my_setlocale(LC_ALL, NULL));
3364 # ifdef LOCALE_ENVIRON_REQUIRED
3367 * Ultrix setlocale(..., "") fails if there are no environment
3368 * variables from which to get a locale name.
3372 # error Ultrix without LC_ALL not implemented
3378 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, setlocale_init);
3379 DEBUG_LOCALE_INIT(LC_ALL, setlocale_init, sl_result[LC_ALL_INDEX]);
3380 if (sl_result[LC_ALL_INDEX])
3383 setlocale_failure = TRUE;
3385 if (! setlocale_failure) {
3386 const char * locale_param;
3387 for (i = 0; i < LC_ALL_INDEX; i++) {
3388 locale_param = (! done && (lang || PerlEnv_getenv(category_names[i])))
3391 sl_result[i] = do_setlocale_r(categories[i], locale_param);
3392 if (! sl_result[i]) {
3393 setlocale_failure = TRUE;
3395 DEBUG_LOCALE_INIT(categories[i], locale_param, sl_result[i]);
3400 # endif /* LC_ALL */
3401 # endif /* LOCALE_ENVIRON_REQUIRED */
3403 /* We try each locale in the list until we get one that works, or exhaust
3404 * the list. Normally the loop is executed just once. But if setting the
3405 * locale fails, inside the loop we add fallback trials to the array and so
3406 * will execute the loop multiple times */
3407 trial_locales[0] = setlocale_init;
3408 trial_locales_count = 1;
3410 for (i= 0; i < trial_locales_count; i++) {
3411 const char * trial_locale = trial_locales[i];
3415 /* XXX This is to preserve old behavior for LOCALE_ENVIRON_REQUIRED
3416 * when i==0, but I (khw) don't think that behavior makes much
3418 setlocale_failure = FALSE;
3420 # ifdef SYSTEM_DEFAULT_LOCALE
3421 # ifdef WIN32 /* Note that assumes Win32 has LC_ALL */
3423 /* On Windows machines, an entry of "" after the 0th means to use
3424 * the system default locale, which we now proceed to get. */
3425 if (strEQ(trial_locale, "")) {
3428 /* Note that this may change the locale, but we are going to do
3429 * that anyway just below */
3430 system_default_locale = do_setlocale_c(LC_ALL, "");
3431 DEBUG_LOCALE_INIT(LC_ALL, "", system_default_locale);
3433 /* Skip if invalid or if it's already on the list of locales to
3435 if (! system_default_locale) {
3436 goto next_iteration;
3438 for (j = 0; j < trial_locales_count; j++) {
3439 if (strEQ(system_default_locale, trial_locales[j])) {
3440 goto next_iteration;
3444 trial_locale = system_default_locale;
3447 # error SYSTEM_DEFAULT_LOCALE only implemented for Win32
3449 # endif /* SYSTEM_DEFAULT_LOCALE */
3455 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, trial_locale);
3456 DEBUG_LOCALE_INIT(LC_ALL, trial_locale, sl_result[LC_ALL_INDEX]);
3457 if (! sl_result[LC_ALL_INDEX]) {
3458 setlocale_failure = TRUE;
3461 /* Since LC_ALL succeeded, it should have changed all the other
3462 * categories it can to its value; so we massage things so that the
3463 * setlocales below just return their category's current values.
3464 * This adequately handles the case in NetBSD where LC_COLLATE may
3465 * not be defined for a locale, and setting it individually will
3466 * fail, whereas setting LC_ALL succeeds, leaving LC_COLLATE set to
3467 * the POSIX locale. */
3468 trial_locale = NULL;
3471 # endif /* LC_ALL */
3473 if (! setlocale_failure) {
3475 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3477 = savepv(do_setlocale_r(categories[j], trial_locale));
3478 if (! curlocales[j]) {
3479 setlocale_failure = TRUE;
3481 DEBUG_LOCALE_INIT(categories[j], trial_locale, curlocales[j]);
3484 if (! setlocale_failure) { /* All succeeded */
3485 break; /* Exit trial_locales loop */
3489 /* Here, something failed; will need to try a fallback. */
3495 if (locwarn) { /* Output failure info only on the first one */
3499 PerlIO_printf(Perl_error_log,
3500 "perl: warning: Setting locale failed.\n");
3502 # else /* !LC_ALL */
3504 PerlIO_printf(Perl_error_log,
3505 "perl: warning: Setting locale failed for the categories:\n\t");
3507 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3508 if (! curlocales[j]) {
3509 PerlIO_printf(Perl_error_log, category_names[j]);
3512 Safefree(curlocales[j]);
3516 # endif /* LC_ALL */
3518 PerlIO_printf(Perl_error_log,
3519 "perl: warning: Please check that your locale settings:\n");
3523 PerlIO_printf(Perl_error_log,
3524 "\tLANGUAGE = %c%s%c,\n",
3525 language ? '"' : '(',
3526 language ? language : "unset",
3527 language ? '"' : ')');
3530 PerlIO_printf(Perl_error_log,
3531 "\tLC_ALL = %c%s%c,\n",
3533 lc_all ? lc_all : "unset",
3534 lc_all ? '"' : ')');
3536 # if defined(USE_ENVIRON_ARRAY)
3541 /* Look through the environment for any variables of the
3542 * form qr/ ^ LC_ [A-Z]+ = /x, except LC_ALL which was
3543 * already handled above. These are assumed to be locale
3544 * settings. Output them and their values. */
3545 for (e = environ; *e; e++) {
3546 const STRLEN prefix_len = sizeof("LC_") - 1;
3549 if ( strBEGINs(*e, "LC_")
3550 && ! strBEGINs(*e, "LC_ALL=")
3551 && (uppers_len = strspn(*e + prefix_len,
3552 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
3553 && ((*e)[prefix_len + uppers_len] == '='))
3555 PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
3556 (int) (prefix_len + uppers_len), *e,
3557 *e + prefix_len + uppers_len + 1);
3564 PerlIO_printf(Perl_error_log,
3565 "\t(possibly more locale environment variables)\n");
3569 PerlIO_printf(Perl_error_log,
3570 "\tLANG = %c%s%c\n",
3572 lang ? lang : "unset",
3575 PerlIO_printf(Perl_error_log,
3576 " are supported and installed on your system.\n");
3579 /* Calculate what fallback locales to try. We have avoided this
3580 * until we have to, because failure is quite unlikely. This will
3581 * usually change the upper bound of the loop we are in.
3583 * Since the system's default way of setting the locale has not
3584 * found one that works, We use Perl's defined ordering: LC_ALL,
3585 * LANG, and the C locale. We don't try the same locale twice, so
3586 * don't add to the list if already there. (On POSIX systems, the
3587 * LC_ALL element will likely be a repeat of the 0th element "",
3588 * but there's no harm done by doing it explicitly.
3590 * Note that this tries the LC_ALL environment variable even on
3591 * systems which have no LC_ALL locale setting. This may or may
3592 * not have been originally intentional, but there's no real need
3593 * to change the behavior. */
3595 for (j = 0; j < trial_locales_count; j++) {
3596 if (strEQ(lc_all, trial_locales[j])) {
3600 trial_locales[trial_locales_count++] = lc_all;
3605 for (j = 0; j < trial_locales_count; j++) {
3606 if (strEQ(lang, trial_locales[j])) {
3610 trial_locales[trial_locales_count++] = lang;
3614 # if defined(WIN32) && defined(LC_ALL)
3616 /* For Windows, we also try the system default locale before "C".
3617 * (If there exists a Windows without LC_ALL we skip this because
3618 * it gets too complicated. For those, the "C" is the next
3619 * fallback possibility). The "" is the same as the 0th element of
3620 * the array, but the code at the loop above knows to treat it
3621 * differently when not the 0th */
3622 trial_locales[trial_locales_count++] = "";
3626 for (j = 0; j < trial_locales_count; j++) {
3627 if (strEQ("C", trial_locales[j])) {
3631 trial_locales[trial_locales_count++] = "C";
3634 } /* end of first time through the loop */
3642 } /* end of looping through the trial locales */
3644 if (ok < 1) { /* If we tried to fallback */
3646 if (! setlocale_failure) { /* fallback succeeded */
3647 msg = "Falling back to";
3649 else { /* fallback failed */
3652 /* We dropped off the end of the loop, so have to decrement i to
3653 * get back to the value the last time through */
3657 msg = "Failed to fall back to";
3659 /* To continue, we should use whatever values we've got */
3661 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3662 Safefree(curlocales[j]);
3663 curlocales[j] = savepv(do_setlocale_r(categories[j], NULL));
3664 DEBUG_LOCALE_INIT(categories[j], NULL, curlocales[j]);
3669 const char * description;
3670 const char * name = "";
3671 if (strEQ(trial_locales[i], "C")) {
3672 description = "the standard locale";
3676 # ifdef SYSTEM_DEFAULT_LOCALE
3678 else if (strEQ(trial_locales[i], "")) {
3679 description = "the system default locale";
3680 if (system_default_locale) {
3681 name = system_default_locale;
3685 # endif /* SYSTEM_DEFAULT_LOCALE */
3688 description = "a fallback locale";
3689 name = trial_locales[i];
3691 if (name && strNE(name, "")) {
3692 PerlIO_printf(Perl_error_log,
3693 "perl: warning: %s %s (\"%s\").\n", msg, description, name);
3696 PerlIO_printf(Perl_error_log,
3697 "perl: warning: %s %s.\n", msg, description);
3700 } /* End of tried to fallback */
3702 /* Done with finding the locales; update our records */
3704 # ifdef USE_LOCALE_CTYPE
3706 new_ctype(curlocales[LC_CTYPE_INDEX]);
3709 # ifdef USE_LOCALE_COLLATE
3711 new_collate(curlocales[LC_COLLATE_INDEX]);
3714 # ifdef USE_LOCALE_NUMERIC
3716 new_numeric(curlocales[LC_NUMERIC_INDEX]);
3720 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
3722 # if defined(USE_ITHREADS) && ! defined(USE_THREAD_SAFE_LOCALE)
3724 /* This caches whether each category's locale is UTF-8 or not. This
3725 * may involve changing the locale. It is ok to do this at
3726 * initialization time before any threads have started, but not later
3727 * unless thread-safe operations are used.
3728 * Caching means that if the program heeds our dictate not to change
3729 * locales in threaded applications, this data will remain valid, and
3730 * it may get queried without having to change locales. If the
3731 * environment is such that all categories have the same locale, this
3732 * isn't needed, as the code will not change the locale; but this
3733 * handles the uncommon case where the environment has disparate
3734 * locales for the categories */
3735 (void) _is_cur_LC_category_utf8(categories[i]);
3739 Safefree(curlocales[i]);
3742 # if defined(USE_PERLIO) && defined(USE_LOCALE_CTYPE)
3744 /* Set PL_utf8locale to TRUE if using PerlIO _and_ the current LC_CTYPE
3745 * locale is UTF-8. The call to new_ctype() just above has already
3746 * calculated the latter value and saved it in PL_in_utf8_CTYPE_locale. If
3747 * both PL_utf8locale and PL_unicode (set by -C or by $ENV{PERL_UNICODE})
3748 * are true, perl.c:S_parse_body() will turn on the PerlIO :utf8 layer on
3749 * STDIN, STDOUT, STDERR, _and_ the default open discipline. */
3750 PL_utf8locale = PL_in_utf8_CTYPE_locale;
3752 /* Set PL_unicode to $ENV{PERL_UNICODE} if using PerlIO.
3753 This is an alternative to using the -C command line switch
3754 (the -C if present will override this). */
3756 const char *p = PerlEnv_getenv("PERL_UNICODE");
3757 PL_unicode = p ? parse_unicode_opts(&p) : 0;
3758 if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG)
3772 #endif /* USE_LOCALE */
3775 /* So won't continue to output stuff */
3776 DEBUG_INITIALIZATION_set(FALSE);
3783 #ifdef USE_LOCALE_COLLATE
3786 Perl__mem_collxfrm(pTHX_ const char *input_string,
3787 STRLEN len, /* Length of 'input_string' */
3788 STRLEN *xlen, /* Set to length of returned string
3789 (not including the collation index
3791 bool utf8 /* Is the input in UTF-8? */
3795 /* _mem_collxfrm() is a bit like strxfrm() but with two important
3796 * differences. First, it handles embedded NULs. Second, it allocates a bit
3797 * more memory than needed for the transformed data itself. The real
3798 * transformed data begins at offset COLLXFRM_HDR_LEN. *xlen is set to
3799 * the length of that, and doesn't include the collation index size.
3800 * Please see sv_collxfrm() to see how this is used. */
3802 #define COLLXFRM_HDR_LEN sizeof(PL_collation_ix)
3804 char * s = (char *) input_string;
3805 STRLEN s_strlen = strlen(input_string);
3807 STRLEN xAlloc; /* xalloc is a reserved word in VC */
3808 STRLEN length_in_chars;
3809 bool first_time = TRUE; /* Cleared after first loop iteration */
3811 PERL_ARGS_ASSERT__MEM_COLLXFRM;
3813 /* Must be NUL-terminated */
3814 assert(*(input_string + len) == '\0');
3816 /* If this locale has defective collation, skip */
3817 if (PL_collxfrm_base == 0 && PL_collxfrm_mult == 0) {
3818 DEBUG_L(PerlIO_printf(Perl_debug_log,
3819 "_mem_collxfrm: locale's collation is defective\n"));
3823 /* Replace any embedded NULs with the control that sorts before any others.
3824 * This will give as good as possible results on strings that don't
3825 * otherwise contain that character, but otherwise there may be
3826 * less-than-perfect results with that character and NUL. This is
3827 * unavoidable unless we replace strxfrm with our own implementation. */
3828 if (UNLIKELY(s_strlen < len)) { /* Only execute if there is an embedded
3832 STRLEN sans_nuls_len;
3833 int try_non_controls;
3834 char this_replacement_char[] = "?\0"; /* Room for a two-byte string,
3835 making sure 2nd byte is NUL.
3837 STRLEN this_replacement_len;
3839 /* If we don't know what non-NUL control character sorts lowest for
3840 * this locale, find it */
3841 if (PL_strxfrm_NUL_replacement == '\0') {
3843 char * cur_min_x = NULL; /* The min_char's xfrm, (except it also
3844 includes the collation index
3847 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Looking to replace NUL\n"));
3849 /* Unlikely, but it may be that no control will work to replace
3850 * NUL, in which case we instead look for any character. Controls
3851 * are preferred because collation order is, in general, context
3852 * sensitive, with adjoining characters affecting the order, and
3853 * controls are less likely to have such interactions, allowing the
3854 * NUL-replacement to stand on its own. (Another way to look at it
3855 * is to imagine what would happen if the NUL were replaced by a
3856 * combining character; it wouldn't work out all that well.) */
3857 for (try_non_controls = 0;
3858 try_non_controls < 2;
3861 /* Look through all legal code points (NUL isn't) */
3862 for (j = 1; j < 256; j++) {
3863 char * x; /* j's xfrm plus collation index */
3864 STRLEN x_len; /* length of 'x' */
3865 STRLEN trial_len = 1;
3866 char cur_source[] = { '\0', '\0' };
3868 /* Skip non-controls the first time through the loop. The
3869 * controls in a UTF-8 locale are the L1 ones */
3870 if (! try_non_controls && (PL_in_utf8_COLLATE_locale)
3877 /* Create a 1-char string of the current code point */
3878 cur_source[0] = (char) j;
3880 /* Then transform it */
3881 x = _mem_collxfrm(cur_source, trial_len, &x_len,
3882 0 /* The string is not in UTF-8 */);
3884 /* Ignore any character that didn't successfully transform.
3890 /* If this character's transformation is lower than
3891 * the current lowest, this one becomes the lowest */
3892 if ( cur_min_x == NULL
3893 || strLT(x + COLLXFRM_HDR_LEN,
3894 cur_min_x + COLLXFRM_HDR_LEN))
3896 PL_strxfrm_NUL_replacement = j;
3902 } /* end of loop through all 255 characters */
3904 /* Stop looking if found */
3909 /* Unlikely, but possible, if there aren't any controls that
3910 * work in the locale, repeat the loop, looking for any
3911 * character that works */
3912 DEBUG_L(PerlIO_printf(Perl_debug_log,
3913 "_mem_collxfrm: No control worked. Trying non-controls\n"));
3914 } /* End of loop to try first the controls, then any char */
3917 DEBUG_L(PerlIO_printf(Perl_debug_log,
3918 "_mem_collxfrm: Couldn't find any character to replace"
3919 " embedded NULs in locale %s with", PL_collation_name));
3923 DEBUG_L(PerlIO_printf(Perl_debug_log,
3924 "_mem_collxfrm: Replacing embedded NULs in locale %s with "
3925 "0x%02X\n", PL_collation_name, PL_strxfrm_NUL_replacement));
3927 Safefree(cur_min_x);
3928 } /* End of determining the character that is to replace NULs */
3930 /* If the replacement is variant under UTF-8, it must match the
3931 * UTF8-ness of the original */
3932 if ( ! UVCHR_IS_INVARIANT(PL_strxfrm_NUL_replacement) && utf8) {
3933 this_replacement_char[0] =
3934 UTF8_EIGHT_BIT_HI(PL_strxfrm_NUL_replacement);
3935 this_replacement_char[1] =
3936 UTF8_EIGHT_BIT_LO(PL_strxfrm_NUL_replacement);
3937 this_replacement_len = 2;
3940 this_replacement_char[0] = PL_strxfrm_NUL_replacement;
3941 /* this_replacement_char[1] = '\0' was done at initialization */
3942 this_replacement_len = 1;
3945 /* The worst case length for the replaced string would be if every
3946 * character in it is NUL. Multiply that by the length of each
3947 * replacement, and allow for a trailing NUL */
3948 sans_nuls_len = (len * this_replacement_len) + 1;
3949 Newx(sans_nuls, sans_nuls_len, char);
3952 /* Replace each NUL with the lowest collating control. Loop until have
3953 * exhausted all the NULs */
3954 while (s + s_strlen < e) {
3955 my_strlcat(sans_nuls, s, sans_nuls_len);
3957 /* Do the actual replacement */
3958 my_strlcat(sans_nuls, this_replacement_char, sans_nuls_len);
3960 /* Move past the input NUL */
3962 s_strlen = strlen(s);
3965 /* And add anything that trails the final NUL */
3966 my_strlcat(sans_nuls, s, sans_nuls_len);
3968 /* Switch so below we transform this modified string */
3971 } /* End of replacing NULs */
3973 /* Make sure the UTF8ness of the string and locale match */
3974 if (utf8 != PL_in_utf8_COLLATE_locale) {
3975 /* XXX convert above Unicode to 10FFFF? */
3976 const char * const t = s; /* Temporary so we can later find where the
3979 /* Here they don't match. Change the string's to be what the locale is
3982 if (! utf8) { /* locale is UTF-8, but input isn't; upgrade the input */
3983 s = (char *) bytes_to_utf8((const U8 *) s, &len);
3986 else { /* locale is not UTF-8; but input is; downgrade the input */
3988 s = (char *) bytes_from_utf8((const U8 *) s, &len, &utf8);
3990 /* If the downgrade was successful we are done, but if the input
3991 * contains things that require UTF-8 to represent, have to do
3992 * damage control ... */
3993 if (UNLIKELY(utf8)) {
3995 /* What we do is construct a non-UTF-8 string with
3996 * 1) the characters representable by a single byte converted
3997 * to be so (if necessary);
3998 * 2) and the rest converted to collate the same as the
3999 * highest collating representable character. That makes
4000 * them collate at the end. This is similar to how we
4001 * handle embedded NULs, but we use the highest collating
4002 * code point instead of the smallest. Like the NUL case,
4003 * this isn't perfect, but is the best we can reasonably
4004 * do. Every above-255 code point will sort the same as
4005 * the highest-sorting 0-255 code point. If that code
4006 * point can combine in a sequence with some other code
4007 * points for weight calculations, us changing something to
4008 * be it can adversely affect the results. But in most
4009 * cases, it should work reasonably. And note that this is
4010 * really an illegal situation: using code points above 255
4011 * on a locale where only 0-255 are valid. If two strings
4012 * sort entirely equal, then the sort order for the
4013 * above-255 code points will be in code point order. */
4017 /* If we haven't calculated the code point with the maximum
4018 * collating order for this locale, do so now */
4019 if (! PL_strxfrm_max_cp) {
4022 /* The current transformed string that collates the
4023 * highest (except it also includes the prefixed collation
4025 char * cur_max_x = NULL;
4027 /* Look through all legal code points (NUL isn't) */
4028 for (j = 1; j < 256; j++) {
4031 char cur_source[] = { '\0', '\0' };
4033 /* Create a 1-char string of the current code point */
4034 cur_source[0] = (char) j;
4036 /* Then transform it */
4037 x = _mem_collxfrm(cur_source, 1, &x_len, FALSE);
4039 /* If something went wrong (which it shouldn't), just
4040 * ignore this code point */
4045 /* If this character's transformation is higher than
4046 * the current highest, this one becomes the highest */
4047 if ( cur_max_x == NULL
4048 || strGT(x + COLLXFRM_HDR_LEN,
4049 cur_max_x + COLLXFRM_HDR_LEN))
4051 PL_strxfrm_max_cp = j;
4060 DEBUG_L(PerlIO_printf(Perl_debug_log,
4061 "_mem_collxfrm: Couldn't find any character to"
4062 " replace above-Latin1 chars in locale %s with",
4063 PL_collation_name));
4067 DEBUG_L(PerlIO_printf(Perl_debug_log,
4068 "_mem_collxfrm: highest 1-byte collating character"
4069 " in locale %s is 0x%02X\n",
4071 PL_strxfrm_max_cp));
4073 Safefree(cur_max_x);
4076 /* Here we know which legal code point collates the highest.
4077 * We are ready to construct the non-UTF-8 string. The length
4078 * will be at least 1 byte smaller than the input string
4079 * (because we changed at least one 2-byte character into a
4080 * single byte), but that is eaten up by the trailing NUL */
4086 char * e = (char *) t + len;
4088 for (i = 0; i < len; i+= UTF8SKIP(t + i)) {
4090 if (UTF8_IS_INVARIANT(cur_char)) {
4093 else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(t + i, e)) {
4094 s[d++] = EIGHT_BIT_UTF8_TO_NATIVE(cur_char, t[i+1]);
4096 else { /* Replace illegal cp with highest collating
4098 s[d++] = PL_strxfrm_max_cp;
4102 Renew(s, d, char); /* Free up unused space */
4107 /* Here, we have constructed a modified version of the input. It could
4108 * be that we already had a modified copy before we did this version.
4109 * If so, that copy is no longer needed */
4110 if (t != input_string) {
4115 length_in_chars = (utf8)
4116 ? utf8_length((U8 *) s, (U8 *) s + len)
4119 /* The first element in the output is the collation id, used by
4120 * sv_collxfrm(); then comes the space for the transformed string. The
4121 * equation should give us a good estimate as to how much is needed */
4122 xAlloc = COLLXFRM_HDR_LEN
4124 + (PL_collxfrm_mult * length_in_chars);
4125 Newx(xbuf, xAlloc, char);
4126 if (UNLIKELY(! xbuf)) {
4127 DEBUG_L(PerlIO_printf(Perl_debug_log,
4128 "_mem_collxfrm: Couldn't malloc %zu bytes\n", xAlloc));
4132 /* Store the collation id */
4133 *(U32*)xbuf = PL_collation_ix;
4135 /* Then the transformation of the input. We loop until successful, or we
4139 *xlen = strxfrm(xbuf + COLLXFRM_HDR_LEN, s, xAlloc - COLLXFRM_HDR_LEN);
4141 /* If the transformed string occupies less space than we told strxfrm()
4142 * was available, it means it successfully transformed the whole
4144 if (*xlen < xAlloc - COLLXFRM_HDR_LEN) {
4146 /* Some systems include a trailing NUL in the returned length.
4147 * Ignore it, using a loop in case multiple trailing NULs are
4150 && *(xbuf + COLLXFRM_HDR_LEN + (*xlen) - 1) == '\0')
4155 /* If the first try didn't get it, it means our prediction was low.
4156 * Modify the coefficients so that we predict a larger value in any
4157 * future transformations */
4159 STRLEN needed = *xlen + 1; /* +1 For trailing NUL */
4160 STRLEN computed_guess = PL_collxfrm_base
4161 + (PL_collxfrm_mult * length_in_chars);
4163 /* On zero-length input, just keep current slope instead of
4165 const STRLEN new_m = (length_in_chars != 0)
4166 ? needed / length_in_chars
4169 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
4170 "%s: %d: initial size of %zu bytes for a length "
4171 "%zu string was insufficient, %zu needed\n",
4173 computed_guess, length_in_chars, needed));
4175 /* If slope increased, use it, but discard this result for
4176 * length 1 strings, as we can't be sure that it's a real slope
4178 if (length_in_chars > 1 && new_m > PL_collxfrm_mult) {
4182 STRLEN old_m = PL_collxfrm_mult;
4183 STRLEN old_b = PL_collxfrm_base;
4187 PL_collxfrm_mult = new_m;
4188 PL_collxfrm_base = 1; /* +1 For trailing NUL */
4189 computed_guess = PL_collxfrm_base
4190 + (PL_collxfrm_mult * length_in_chars);
4191 if (computed_guess < needed) {
4192 PL_collxfrm_base += needed - computed_guess;
4195 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
4196 "%s: %d: slope is now %zu; was %zu, base "
4197 "is now %zu; was %zu\n",
4199 PL_collxfrm_mult, old_m,
4200 PL_collxfrm_base, old_b));
4202 else { /* Slope didn't change, but 'b' did */
4203 const STRLEN new_b = needed
4206 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
4207 "%s: %d: base is now %zu; was %zu\n",
4209 new_b, PL_collxfrm_base));
4210 PL_collxfrm_base = new_b;
4217 if (UNLIKELY(*xlen >= PERL_INT_MAX)) {
4218 DEBUG_L(PerlIO_printf(Perl_debug_log,
4219 "_mem_collxfrm: Needed %zu bytes, max permissible is %u\n",
4220 *xlen, PERL_INT_MAX));
4224 /* A well-behaved strxfrm() returns exactly how much space it needs
4225 * (usually not including the trailing NUL) when it fails due to not
4226 * enough space being provided. Assume that this is the case unless
4227 * it's been proven otherwise */
4228 if (LIKELY(PL_strxfrm_is_behaved) && first_time) {
4229 xAlloc = *xlen + COLLXFRM_HDR_LEN + 1;
4231 else { /* Here, either:
4232 * 1) The strxfrm() has previously shown bad behavior; or
4233 * 2) It isn't the first time through the loop, which means
4234 * that the strxfrm() is now showing bad behavior, because
4235 * we gave it what it said was needed in the previous
4236 * iteration, and it came back saying it needed still more.
4237 * (Many versions of cygwin fit this. When the buffer size
4238 * isn't sufficient, they return the input size instead of
4239 * how much is needed.)
4240 * Increase the buffer size by a fixed percentage and try again.
4242 xAlloc += (xAlloc / 4) + 1;
4243 PL_strxfrm_is_behaved = FALSE;
4247 if (DEBUG_Lv_TEST || debug_initialization) {
4248 PerlIO_printf(Perl_debug_log,
4249 "_mem_collxfrm required more space than previously calculated"
4250 " for locale %s, trying again with new guess=%d+%zu\n",
4251 PL_collation_name, (int) COLLXFRM_HDR_LEN,
4252 xAlloc - COLLXFRM_HDR_LEN);
4259 Renew(xbuf, xAlloc, char);
4260 if (UNLIKELY(! xbuf)) {
4261 DEBUG_L(PerlIO_printf(Perl_debug_log,
4262 "_mem_collxfrm: Couldn't realloc %zu bytes\n", xAlloc));
4272 if (DEBUG_Lv_TEST || debug_initialization) {
4274 print_collxfrm_input_and_return(s, s + len, xlen, utf8);
4275 PerlIO_printf(Perl_debug_log, "Its xfrm is:");
4276 PerlIO_printf(Perl_debug_log, "%s\n",
4277 _byte_dump_string((U8 *) xbuf + COLLXFRM_HDR_LEN,
4283 /* Free up unneeded space; retain ehough for trailing NUL */
4284 Renew(xbuf, COLLXFRM_HDR_LEN + *xlen + 1, char);
4286 if (s != input_string) {