This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Use Unicode 12.0
[perl5.git] / locale.c
CommitLineData
98994639
HS
1/* locale.c
2 *
1129b882
NC
3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2005, 2006, 2007, 2008 by Larry Wall and others
98994639
HS
5 *
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.
8 *
9 */
10
11/*
4ac71550 12 * A Elbereth Gilthoniel,
cdad3b53 13 * silivren penna míriel
4ac71550 14 * o menel aglar elenath!
cdad3b53 15 * Na-chaered palan-díriel
4ac71550
TC
16 * o galadhremmin ennorath,
17 * Fanuilos, le linnathon
18 * nef aear, si nef aearon!
19 *
20 * [p.238 of _The Lord of the Rings_, II/i: "Many Meetings"]
98994639
HS
21 */
22
166f8a29
DM
23/* utility functions for handling locale-specific stuff like what
24 * character represents the decimal point.
0d071d52 25 *
7d4bcc4a
KW
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
0d071d52
KW
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
a9ad02a8
KW
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
34 * of 'use locale'.
e9bc6d6b
KW
35 *
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.
166f8a29
DM
44 */
45
98994639
HS
46#include "EXTERN.h"
47#define PERL_IN_LOCALE_C
f7416781 48#include "perl_langinfo.h"
98994639
HS
49#include "perl.h"
50
a4af207c
JH
51#include "reentr.h"
52
0dec74cd
KW
53#ifdef I_WCHAR
54# include <wchar.h>
55#endif
5b64f24c
KW
56#ifdef I_WCTYPE
57# include <wctype.h>
58#endif
0dec74cd 59
2fcc0ca9
KW
60/* If the environment says to, we can output debugging information during
61 * initialization. This is done before option parsing, and before any thread
62 * creation, so can be a file-level static */
5a4b0634
KW
63#if ! defined(DEBUGGING) || defined(PERL_GLOBAL_STRUCT)
64# define debug_initialization 0
65# define DEBUG_INITIALIZATION_set(v)
66#else
2fcc0ca9 67static bool debug_initialization = FALSE;
5a4b0634 68# define DEBUG_INITIALIZATION_set(v) (debug_initialization = v)
2fcc0ca9
KW
69#endif
70
48015184
KW
71
72/* Returns the Unix errno portion; ignoring any others. This is a macro here
73 * instead of putting it into perl.h, because unclear to khw what should be
74 * done generally. */
75#define GET_ERRNO saved_errno
76
291a84fb
KW
77/* strlen() of a literal string constant. We might want this more general,
78 * but using it in just this file for now. A problem with more generality is
79 * the compiler warnings about comparing unlike signs */
ff1b739b
KW
80#define STRLENs(s) (sizeof("" s "") - 1)
81
63e5b0d7
KW
82/* Is the C string input 'name' "C" or "POSIX"? If so, and 'name' is the
83 * return of setlocale(), then this is extremely likely to be the C or POSIX
84 * locale. However, the output of setlocale() is documented to be opaque, but
85 * the odds are extremely small that it would return these two strings for some
86 * other locale. Note that VMS in these two locales includes many non-ASCII
87 * characters as controls and punctuation (below are hex bytes):
88 * cntrl: 84-97 9B-9F
89 * punct: A1-A3 A5 A7-AB B0-B3 B5-B7 B9-BD BF-CF D1-DD DF-EF F1-FD
90 * Oddly, none there are listed as alphas, though some represent alphabetics
91 * http://www.nntp.perl.org/group/perl.perl5.porters/2013/02/msg198753.html */
92#define isNAME_C_OR_POSIX(name) \
93 ( (name) != NULL \
94 && (( *(name) == 'C' && (*(name + 1)) == '\0') \
95 || strEQ((name), "POSIX")))
96
8ef6e574
KW
97#ifdef USE_LOCALE
98
47280b20
KW
99/* This code keeps a LRU cache of the UTF-8ness of the locales it has so-far
100 * looked up. This is in the form of a C string: */
101
102#define UTF8NESS_SEP "\v"
103#define UTF8NESS_PREFIX "\f"
104
105/* So, the string looks like:
98994639 106 *
47280b20 107 * \vC\a0\vPOSIX\a0\vam_ET\a0\vaf_ZA.utf8\a1\ven_US.UTF-8\a1\0
98994639 108 *
47280b20
KW
109 * where the digit 0 after the \a indicates that the locale starting just
110 * after the preceding \v is not UTF-8, and the digit 1 mean it is. */
111
112STATIC_ASSERT_DECL(STRLENs(UTF8NESS_SEP) == 1);
113STATIC_ASSERT_DECL(STRLENs(UTF8NESS_PREFIX) == 1);
114
115#define C_and_POSIX_utf8ness UTF8NESS_SEP "C" UTF8NESS_PREFIX "0" \
116 UTF8NESS_SEP "POSIX" UTF8NESS_PREFIX "0"
117
118/* The cache is initialized to C_and_POSIX_utf8ness at start up. These are
119 * kept there always. The remining portion of the cache is LRU, with the
120 * oldest looked-up locale at the tail end */
121
98994639
HS
122STATIC char *
123S_stdize_locale(pTHX_ char *locs)
124{
47280b20
KW
125 /* Standardize the locale name from a string returned by 'setlocale',
126 * possibly modifying that string.
127 *
128 * The typical return value of setlocale() is either
129 * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL
130 * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL
131 * (the space-separated values represent the various sublocales,
132 * in some unspecified order). This is not handled by this function.
133 *
134 * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n",
135 * which is harmful for further use of the string in setlocale(). This
136 * function removes the trailing new line and everything up through the '='
137 * */
138
7452cf6a 139 const char * const s = strchr(locs, '=');
98994639
HS
140 bool okay = TRUE;
141
7918f24d
NC
142 PERL_ARGS_ASSERT_STDIZE_LOCALE;
143
8772537c
AL
144 if (s) {
145 const char * const t = strchr(s, '.');
98994639 146 okay = FALSE;
8772537c
AL
147 if (t) {
148 const char * const u = strchr(t, '\n');
149 if (u && (u[1] == 0)) {
150 const STRLEN len = u - s;
151 Move(s + 1, locs, len, char);
152 locs[len] = 0;
153 okay = TRUE;
98994639
HS
154 }
155 }
156 }
157
158 if (!okay)
159 Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs);
160
161 return locs;
162}
163
e5f10d49
KW
164/* Two parallel arrays; first the locale categories Perl uses on this system;
165 * the second array is their names. These arrays are in mostly arbitrary
166 * order. */
167
168const int categories[] = {
169
170# ifdef USE_LOCALE_NUMERIC
171 LC_NUMERIC,
172# endif
173# ifdef USE_LOCALE_CTYPE
174 LC_CTYPE,
175# endif
176# ifdef USE_LOCALE_COLLATE
177 LC_COLLATE,
178# endif
179# ifdef USE_LOCALE_TIME
180 LC_TIME,
181# endif
182# ifdef USE_LOCALE_MESSAGES
183 LC_MESSAGES,
184# endif
185# ifdef USE_LOCALE_MONETARY
186 LC_MONETARY,
187# endif
9821811f
KW
188# ifdef USE_LOCALE_ADDRESS
189 LC_ADDRESS,
190# endif
191# ifdef USE_LOCALE_IDENTIFICATION
192 LC_IDENTIFICATION,
193# endif
194# ifdef USE_LOCALE_MEASUREMENT
195 LC_MEASUREMENT,
196# endif
197# ifdef USE_LOCALE_PAPER
198 LC_PAPER,
199# endif
200# ifdef USE_LOCALE_TELEPHONE
201 LC_TELEPHONE,
202# endif
e5f10d49
KW
203# ifdef LC_ALL
204 LC_ALL,
205# endif
206 -1 /* Placeholder because C doesn't allow a
207 trailing comma, and it would get complicated
208 with all the #ifdef's */
209};
210
211/* The top-most real element is LC_ALL */
212
4ef8bdf9 213const char * const category_names[] = {
e5f10d49
KW
214
215# ifdef USE_LOCALE_NUMERIC
216 "LC_NUMERIC",
217# endif
218# ifdef USE_LOCALE_CTYPE
219 "LC_CTYPE",
220# endif
221# ifdef USE_LOCALE_COLLATE
222 "LC_COLLATE",
223# endif
224# ifdef USE_LOCALE_TIME
225 "LC_TIME",
226# endif
227# ifdef USE_LOCALE_MESSAGES
228 "LC_MESSAGES",
229# endif
230# ifdef USE_LOCALE_MONETARY
231 "LC_MONETARY",
232# endif
9821811f
KW
233# ifdef USE_LOCALE_ADDRESS
234 "LC_ADDRESS",
235# endif
236# ifdef USE_LOCALE_IDENTIFICATION
237 "LC_IDENTIFICATION",
238# endif
239# ifdef USE_LOCALE_MEASUREMENT
240 "LC_MEASUREMENT",
241# endif
242# ifdef USE_LOCALE_PAPER
243 "LC_PAPER",
244# endif
245# ifdef USE_LOCALE_TELEPHONE
246 "LC_TELEPHONE",
247# endif
e5f10d49
KW
248# ifdef LC_ALL
249 "LC_ALL",
250# endif
251 NULL /* Placeholder */
252 };
253
254# ifdef LC_ALL
255
256 /* On systems with LC_ALL, it is kept in the highest index position. (-2
257 * to account for the final unused placeholder element.) */
258# define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 2)
259
260# else
261
262 /* On systems without LC_ALL, we pretend it is there, one beyond the real
263 * top element, hence in the unused placeholder element. */
264# define NOMINAL_LC_ALL_INDEX (C_ARRAY_LENGTH(categories) - 1)
265
266# endif
267
268/* Pretending there is an LC_ALL element just above allows us to avoid most
269 * special cases. Most loops through these arrays in the code below are
270 * written like 'for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++)'. They will work
271 * on either type of system. But the code must be written to not access the
948523db
KW
272 * element at 'LC_ALL_INDEX' except on platforms that have it. This can be
273 * checked for at compile time by using the #define LC_ALL_INDEX which is only
274 * defined if we do have LC_ALL. */
e5f10d49 275
b09aaf40
KW
276STATIC const char *
277S_category_name(const int category)
278{
279 unsigned int i;
280
281#ifdef LC_ALL
282
283 if (category == LC_ALL) {
284 return "LC_ALL";
285 }
286
287#endif
288
289 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
290 if (category == categories[i]) {
291 return category_names[i];
292 }
293 }
294
295 {
296 const char suffix[] = " (unknown)";
297 int temp = category;
298 Size_t length = sizeof(suffix) + 1;
299 char * unknown;
300 dTHX;
301
302 if (temp < 0) {
303 length++;
304 temp = - temp;
305 }
306
307 /* Calculate the number of digits */
308 while (temp >= 10) {
309 temp /= 10;
310 length++;
311 }
312
313 Newx(unknown, length, char);
314 my_snprintf(unknown, length, "%d%s", category, suffix);
315 SAVEFREEPV(unknown);
316 return unknown;
317 }
318}
319
948523db
KW
320/* Now create LC_foo_INDEX #defines for just those categories on this system */
321# ifdef USE_LOCALE_NUMERIC
322# define LC_NUMERIC_INDEX 0
323# define _DUMMY_NUMERIC LC_NUMERIC_INDEX
324# else
325# define _DUMMY_NUMERIC -1
326# endif
327# ifdef USE_LOCALE_CTYPE
328# define LC_CTYPE_INDEX _DUMMY_NUMERIC + 1
329# define _DUMMY_CTYPE LC_CTYPE_INDEX
330# else
331# define _DUMMY_CTYPE _DUMMY_NUMERIC
332# endif
333# ifdef USE_LOCALE_COLLATE
334# define LC_COLLATE_INDEX _DUMMY_CTYPE + 1
335# define _DUMMY_COLLATE LC_COLLATE_INDEX
336# else
8203b3c3 337# define _DUMMY_COLLATE _DUMMY_CTYPE
948523db
KW
338# endif
339# ifdef USE_LOCALE_TIME
340# define LC_TIME_INDEX _DUMMY_COLLATE + 1
341# define _DUMMY_TIME LC_TIME_INDEX
342# else
343# define _DUMMY_TIME _DUMMY_COLLATE
344# endif
345# ifdef USE_LOCALE_MESSAGES
346# define LC_MESSAGES_INDEX _DUMMY_TIME + 1
347# define _DUMMY_MESSAGES LC_MESSAGES_INDEX
348# else
349# define _DUMMY_MESSAGES _DUMMY_TIME
350# endif
351# ifdef USE_LOCALE_MONETARY
352# define LC_MONETARY_INDEX _DUMMY_MESSAGES + 1
353# define _DUMMY_MONETARY LC_MONETARY_INDEX
354# else
355# define _DUMMY_MONETARY _DUMMY_MESSAGES
356# endif
9821811f
KW
357# ifdef USE_LOCALE_ADDRESS
358# define LC_ADDRESS_INDEX _DUMMY_MONETARY + 1
359# define _DUMMY_ADDRESS LC_ADDRESS_INDEX
360# else
361# define _DUMMY_ADDRESS _DUMMY_MONETARY
362# endif
363# ifdef USE_LOCALE_IDENTIFICATION
364# define LC_IDENTIFICATION_INDEX _DUMMY_ADDRESS + 1
365# define _DUMMY_IDENTIFICATION LC_IDENTIFICATION_INDEX
366# else
367# define _DUMMY_IDENTIFICATION _DUMMY_ADDRESS
368# endif
369# ifdef USE_LOCALE_MEASUREMENT
370# define LC_MEASUREMENT_INDEX _DUMMY_IDENTIFICATION + 1
371# define _DUMMY_MEASUREMENT LC_MEASUREMENT_INDEX
372# else
373# define _DUMMY_MEASUREMENT _DUMMY_IDENTIFICATION
374# endif
375# ifdef USE_LOCALE_PAPER
376# define LC_PAPER_INDEX _DUMMY_MEASUREMENT + 1
377# define _DUMMY_PAPER LC_PAPER_INDEX
378# else
379# define _DUMMY_PAPER _DUMMY_MEASUREMENT
380# endif
381# ifdef USE_LOCALE_TELEPHONE
382# define LC_TELEPHONE_INDEX _DUMMY_PAPER + 1
383# define _DUMMY_TELEPHONE LC_TELEPHONE_INDEX
384# else
385# define _DUMMY_TELEPHONE _DUMMY_PAPER
386# endif
948523db 387# ifdef LC_ALL
9821811f 388# define LC_ALL_INDEX _DUMMY_TELEPHONE + 1
948523db
KW
389# endif
390#endif /* ifdef USE_LOCALE */
8ef6e574 391
d2b24094 392/* Windows requres a customized base-level setlocale() */
e9bc6d6b
KW
393#ifdef WIN32
394# define my_setlocale(cat, locale) win32_setlocale(cat, locale)
395#else
396# define my_setlocale(cat, locale) setlocale(cat, locale)
397#endif
398
399#ifndef USE_POSIX_2008_LOCALE
400
401/* "do_setlocale_c" is intended to be called when the category is a constant
402 * known at compile time; "do_setlocale_r", not known until run time */
403# define do_setlocale_c(cat, locale) my_setlocale(cat, locale)
404# define do_setlocale_r(cat, locale) my_setlocale(cat, locale)
405
406#else /* Below uses POSIX 2008 */
407
408/* We emulate setlocale with our own function. LC_foo is not valid for the
409 * POSIX 2008 functions. Instead LC_foo_MASK is used, which we use an array
410 * lookup to convert to. At compile time we have defined LC_foo_INDEX as the
411 * proper offset into the array 'category_masks[]'. At runtime, we have to
412 * search through the array (as the actual numbers may not be small contiguous
413 * positive integers which would lend themselves to array lookup). */
414# define do_setlocale_c(cat, locale) \
415 emulate_setlocale(cat, locale, cat ## _INDEX, TRUE)
416# define do_setlocale_r(cat, locale) emulate_setlocale(cat, locale, 0, FALSE)
417
418/* A third array, parallel to the ones above to map from category to its
419 * equivalent mask */
420const int category_masks[] = {
421# ifdef USE_LOCALE_NUMERIC
422 LC_NUMERIC_MASK,
423# endif
424# ifdef USE_LOCALE_CTYPE
425 LC_CTYPE_MASK,
426# endif
427# ifdef USE_LOCALE_COLLATE
428 LC_COLLATE_MASK,
429# endif
430# ifdef USE_LOCALE_TIME
431 LC_TIME_MASK,
432# endif
433# ifdef USE_LOCALE_MESSAGES
434 LC_MESSAGES_MASK,
435# endif
436# ifdef USE_LOCALE_MONETARY
437 LC_MONETARY_MASK,
438# endif
439# ifdef USE_LOCALE_ADDRESS
440 LC_ADDRESS_MASK,
441# endif
442# ifdef USE_LOCALE_IDENTIFICATION
443 LC_IDENTIFICATION_MASK,
444# endif
445# ifdef USE_LOCALE_MEASUREMENT
446 LC_MEASUREMENT_MASK,
447# endif
448# ifdef USE_LOCALE_PAPER
449 LC_PAPER_MASK,
450# endif
451# ifdef USE_LOCALE_TELEPHONE
452 LC_TELEPHONE_MASK,
453# endif
454 /* LC_ALL can't be turned off by a Configure
455 * option, and in Posix 2008, should always be
456 * here, so compile it in unconditionally.
457 * This could catch some glitches at compile
458 * time */
459 LC_ALL_MASK
460 };
461
462STATIC const char *
463S_emulate_setlocale(const int category,
464 const char * locale,
465 unsigned int index,
466 const bool is_index_valid
467 )
468{
469 /* This function effectively performs a setlocale() on just the current
470 * thread; thus it is thread-safe. It does this by using the POSIX 2008
471 * locale functions to emulate the behavior of setlocale(). Similar to
472 * regular setlocale(), the return from this function points to memory that
473 * can be overwritten by other system calls, so needs to be copied
474 * immediately if you need to retain it. The difference here is that
475 * system calls besides another setlocale() can overwrite it.
476 *
477 * By doing this, most locale-sensitive functions become thread-safe. The
478 * exceptions are mostly those that return a pointer to static memory.
479 *
480 * This function takes the same parameters, 'category' and 'locale', that
481 * the regular setlocale() function does, but it also takes two additional
482 * ones. This is because the 2008 functions don't use a category; instead
483 * they use a corresponding mask. Because this function operates in both
484 * worlds, it may need one or the other or both. This function can
485 * calculate the mask from the input category, but to avoid this
486 * calculation, if the caller knows at compile time what the mask is, it
487 * can pass it, setting 'is_index_valid' to TRUE; otherwise the mask
488 * parameter is ignored.
489 *
490 * POSIX 2008, for some sick reason, chose not to provide a method to find
491 * the category name of a locale. Some vendors have created a
492 * querylocale() function to do just that. This function is a lot simpler
493 * to implement on systems that have this. Otherwise, we have to keep
494 * track of what the locale has been set to, so that we can return its
495 * name to emulate setlocale(). It's also possible for C code in some
496 * library to change the locale without us knowing it, though as of
497 * September 2017, there are no occurrences in CPAN of uselocale(). Some
498 * libraries do use setlocale(), but that changes the global locale, and
499 * threads using per-thread locales will just ignore those changes.
500 * Another problem is that without querylocale(), we have to guess at what
501 * was meant by setting a locale of "". We handle this by not actually
502 * ever setting to "" (unless querylocale exists), but to emulate what we
503 * think should happen for "".
504 */
505
506 int mask;
507 locale_t old_obj;
508 locale_t new_obj;
509 dTHX;
510
511# ifdef DEBUGGING
512
513 if (DEBUG_Lv_TEST || debug_initialization) {
514 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);
515 }
516
517# endif
518
519 /* If the input mask might be incorrect, calculate the correct one */
520 if (! is_index_valid) {
521 unsigned int i;
522
523# ifdef DEBUGGING
524
525 if (DEBUG_Lv_TEST || debug_initialization) {
526 PerlIO_printf(Perl_debug_log, "%s:%d: finding index of category %d (%s)\n", __FILE__, __LINE__, category, category_name(category));
527 }
528
529# endif
530
531 for (i = 0; i <= LC_ALL_INDEX; i++) {
532 if (category == categories[i]) {
533 index = i;
534 goto found_index;
535 }
536 }
537
538 /* Here, we don't know about this category, so can't handle it.
539 * Fallback to the early POSIX usages */
540 Perl_warner(aTHX_ packWARN(WARN_LOCALE),
541 "Unknown locale category %d; can't set it to %s\n",
542 category, locale);
543 return NULL;
544
545 found_index: ;
546
547# ifdef DEBUGGING
548
549 if (DEBUG_Lv_TEST || debug_initialization) {
550 PerlIO_printf(Perl_debug_log, "%s:%d: index is %d for %s\n", __FILE__, __LINE__, index, category_name(category));
551 }
552
553# endif
554
555 }
556
557 mask = category_masks[index];
558
559# ifdef DEBUGGING
560
561 if (DEBUG_Lv_TEST || debug_initialization) {
562 PerlIO_printf(Perl_debug_log, "%s:%d: category name is %s; mask is 0x%x\n", __FILE__, __LINE__, category_names[index], mask);
563 }
564
565# endif
566
567 /* If just querying what the existing locale is ... */
568 if (locale == NULL) {
569 locale_t cur_obj = uselocale((locale_t) 0);
570
571# ifdef DEBUGGING
572
573 if (DEBUG_Lv_TEST || debug_initialization) {
574 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale querying %p\n", __FILE__, __LINE__, cur_obj);
575 }
576
577# endif
578
579 if (cur_obj == LC_GLOBAL_LOCALE) {
580 return my_setlocale(category, NULL);
581 }
582
583# ifdef HAS_QUERYLOCALE
584
585 return (char *) querylocale(mask, cur_obj);
586
d2b24094 587# else
ecdda939
KW
588
589 /* If this assert fails, adjust the size of curlocales in intrpvar.h */
590 STATIC_ASSERT_STMT(C_ARRAY_LENGTH(PL_curlocales) > LC_ALL_INDEX);
591
8e13243a
KW
592# if defined(_NL_LOCALE_NAME) \
593 && defined(DEBUGGING) \
594 && ! defined(SETLOCALE_ACCEPTS_ANY_LOCALE_NAME)
595 /* On systems that accept any locale name, the real underlying locale
596 * is often returned by this internal function, so we can't use it */
e9bc6d6b
KW
597 {
598 /* Internal glibc for querylocale(), but doesn't handle
599 * empty-string ("") locale properly; who knows what other
3a732259 600 * glitches. Check for it now, under debug. */
e9bc6d6b
KW
601
602 char * temp_name = nl_langinfo_l(_NL_LOCALE_NAME(category),
603 uselocale((locale_t) 0));
604 /*
605 PerlIO_printf(Perl_debug_log, "%s:%d: temp_name=%s\n", __FILE__, __LINE__, temp_name ? temp_name : "NULL");
606 PerlIO_printf(Perl_debug_log, "%s:%d: index=%d\n", __FILE__, __LINE__, index);
607 PerlIO_printf(Perl_debug_log, "%s:%d: PL_curlocales[index]=%s\n", __FILE__, __LINE__, PL_curlocales[index]);
608 */
609 if (temp_name && PL_curlocales[index] && strNE(temp_name, "")) {
610 if ( strNE(PL_curlocales[index], temp_name)
611 && ! ( isNAME_C_OR_POSIX(temp_name)
612 && isNAME_C_OR_POSIX(PL_curlocales[index]))) {
613
614# ifdef USE_C_BACKTRACE
615
616 dump_c_backtrace(Perl_debug_log, 20, 1);
617
618# endif
619
620 Perl_croak(aTHX_ "panic: Mismatch between what Perl thinks %s is"
621 " (%s) and what internal glibc thinks"
622 " (%s)\n", category_names[index],
623 PL_curlocales[index], temp_name);
624 }
625
626 return temp_name;
627 }
628 }
629
630# endif
631
632 /* Without querylocale(), we have to use our record-keeping we've
633 * done. */
634
635 if (category != LC_ALL) {
636
637# ifdef DEBUGGING
638
639 if (DEBUG_Lv_TEST || debug_initialization) {
640 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, PL_curlocales[index]);
641 }
642
643# endif
644
645 return PL_curlocales[index];
646 }
647 else { /* For LC_ALL */
648 unsigned int i;
649 Size_t names_len = 0;
650 char * all_string;
7c93a471 651 bool are_all_categories_the_same_locale = TRUE;
e9bc6d6b
KW
652
653 /* If we have a valid LC_ALL value, just return it */
654 if (PL_curlocales[LC_ALL_INDEX]) {
655
656# ifdef DEBUGGING
657
658 if (DEBUG_Lv_TEST || debug_initialization) {
659 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, PL_curlocales[LC_ALL_INDEX]);
660 }
661
662# endif
663
664 return PL_curlocales[LC_ALL_INDEX];
665 }
666
667 /* Otherwise, we need to construct a string of name=value pairs.
668 * We use the glibc syntax, like
669 * LC_NUMERIC=C;LC_TIME=en_US.UTF-8;...
7c93a471
KW
670 * First calculate the needed size. Along the way, check if all
671 * the locale names are the same */
e9bc6d6b
KW
672 for (i = 0; i < LC_ALL_INDEX; i++) {
673
674# ifdef DEBUGGING
675
676 if (DEBUG_Lv_TEST || debug_initialization) {
677 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]);
678 }
679
680# endif
681
682 names_len += strlen(category_names[i])
683 + 1 /* '=' */
684 + strlen(PL_curlocales[i])
685 + 1; /* ';' */
7c93a471
KW
686
687 if (i > 0 && strNE(PL_curlocales[i], PL_curlocales[i-1])) {
688 are_all_categories_the_same_locale = FALSE;
689 }
690 }
691
692 /* If they are the same, we don't actually have to construct the
693 * string; we just make the entry in LC_ALL_INDEX valid, and be
694 * that single name */
695 if (are_all_categories_the_same_locale) {
696 PL_curlocales[LC_ALL_INDEX] = savepv(PL_curlocales[0]);
697 return PL_curlocales[LC_ALL_INDEX];
e9bc6d6b 698 }
7c93a471 699
e9bc6d6b
KW
700 names_len++; /* Trailing '\0' */
701 SAVEFREEPV(Newx(all_string, names_len, char));
702 *all_string = '\0';
703
704 /* Then fill in the string */
705 for (i = 0; i < LC_ALL_INDEX; i++) {
706
707# ifdef DEBUGGING
708
709 if (DEBUG_Lv_TEST || debug_initialization) {
710 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]);
711 }
712
713# endif
714
715 my_strlcat(all_string, category_names[i], names_len);
716 my_strlcat(all_string, "=", names_len);
717 my_strlcat(all_string, PL_curlocales[i], names_len);
718 my_strlcat(all_string, ";", names_len);
719 }
720
721# ifdef DEBUGGING
722
723 if (DEBUG_L_TEST || debug_initialization) {
724 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale returning %s\n", __FILE__, __LINE__, all_string);
725 }
726
727 #endif
728
729 return all_string;
730 }
731
732# ifdef EINVAL
733
734 SETERRNO(EINVAL, LIB_INVARG);
735
736# endif
737
738 return NULL;
739
d2b24094
KW
740# endif
741
e9bc6d6b
KW
742 }
743
f8115d60 744 /* Here, we are switching locales. */
e9bc6d6b
KW
745
746# ifndef HAS_QUERYLOCALE
747
748 if (strEQ(locale, "")) {
749
750 /* For non-querylocale() systems, we do the setting of "" ourselves to
751 * be sure that we really know what's going on. We follow the Linux
752 * documented behavior (but if that differs from the actual behavior,
753 * this won't work exactly as the OS implements). We go out and
754 * examine the environment based on our understanding of how the system
755 * works, and use that to figure things out */
756
757 const char * const lc_all = PerlEnv_getenv("LC_ALL");
758
759 /* Use any "LC_ALL" environment variable, as it overrides everything
760 * else. */
761 if (lc_all && strNE(lc_all, "")) {
762 locale = lc_all;
763 }
764 else {
765
766 /* Otherwise, we need to dig deeper. Unless overridden, the
767 * default is the LANG environment variable; if it doesn't exist,
768 * then "C" */
769
770 const char * default_name;
771
772 /* To minimize other threads messing with the environment, we copy
773 * the variable, making it a temporary. But this doesn't work upon
774 * program initialization before any scopes are created, and at
775 * this time, there's nothing else going on that would interfere.
776 * So skip the copy in that case */
777 if (PL_scopestack_ix == 0) {
778 default_name = PerlEnv_getenv("LANG");
779 }
780 else {
781 default_name = savepv(PerlEnv_getenv("LANG"));
782 }
783
784 if (! default_name || strEQ(default_name, "")) {
929a7f8c 785 default_name = "C";
e9bc6d6b
KW
786 }
787 else if (PL_scopestack_ix != 0) {
788 SAVEFREEPV(default_name);
789 }
790
791 if (category != LC_ALL) {
792 const char * const name = PerlEnv_getenv(category_names[index]);
793
794 /* Here we are setting a single category. Assume will have the
795 * default name */
796 locale = default_name;
797
798 /* But then look for an overriding environment variable */
799 if (name && strNE(name, "")) {
800 locale = name;
801 }
802 }
803 else {
804 bool did_override = FALSE;
805 unsigned int i;
806
807 /* Here, we are getting LC_ALL. Any categories that don't have
808 * a corresponding environment variable set should be set to
809 * LANG, or to "C" if there is no LANG. If no individual
810 * categories differ from this, we can just set LC_ALL. This
811 * is buggy on systems that have extra categories that we don't
812 * know about. If there is an environment variable that sets
813 * that category, we won't know to look for it, and so our use
814 * of LANG or "C" improperly overrides it. On the other hand,
815 * if we don't do what is done here, and there is no
816 * environment variable, the category's locale should be set to
817 * LANG or "C". So there is no good solution. khw thinks the
818 * best is to look at systems to see what categories they have,
819 * and include them, and then to assume that we know the
820 * complete set */
821
822 for (i = 0; i < LC_ALL_INDEX; i++) {
823 const char * const env_override
824 = savepv(PerlEnv_getenv(category_names[i]));
825 const char * this_locale = ( env_override
826 && strNE(env_override, ""))
827 ? env_override
828 : default_name;
6435f98d
KW
829 if (! emulate_setlocale(categories[i], this_locale, i, TRUE))
830 {
831 Safefree(env_override);
832 return NULL;
833 }
e9bc6d6b
KW
834
835 if (strNE(this_locale, default_name)) {
836 did_override = TRUE;
837 }
838
839 Safefree(env_override);
840 }
841
842 /* If all the categories are the same, we can set LC_ALL to
843 * that */
844 if (! did_override) {
845 locale = default_name;
846 }
847 else {
848
849 /* Here, LC_ALL is no longer valid, as some individual
850 * categories don't match it. We call ourselves
851 * recursively, as that will execute the code that
852 * generates the proper locale string for this situation.
853 * We don't do the remainder of this function, as that is
854 * to update our records, and we've just done that for the
855 * individual categories in the loop above, and doing so
856 * would cause LC_ALL to be done as well */
857 return emulate_setlocale(LC_ALL, NULL, LC_ALL_INDEX, TRUE);
858 }
859 }
860 }
861 }
862 else if (strchr(locale, ';')) {
863
864 /* LC_ALL may actually incude a conglomeration of various categories.
865 * Without querylocale, this code uses the glibc (as of this writing)
866 * syntax for representing that, but that is not a stable API, and
867 * other platforms do it differently, so we have to handle all cases
868 * ourselves */
869
f0023d47 870 unsigned int i;
e9bc6d6b
KW
871 const char * s = locale;
872 const char * e = locale + strlen(locale);
873 const char * p = s;
874 const char * category_end;
875 const char * name_start;
876 const char * name_end;
877
f0023d47
KW
878 /* If the string that gives what to set doesn't include all categories,
879 * the omitted ones get set to "C". To get this behavior, first set
880 * all the individual categories to "C", and override the furnished
881 * ones below */
882 for (i = 0; i < LC_ALL_INDEX; i++) {
883 if (! emulate_setlocale(categories[i], "C", i, TRUE)) {
884 return NULL;
885 }
886 }
887
e9bc6d6b 888 while (s < e) {
e9bc6d6b
KW
889
890 /* Parse through the category */
891 while (isWORDCHAR(*p)) {
892 p++;
893 }
894 category_end = p;
895
896 if (*p++ != '=') {
897 Perl_croak(aTHX_
898 "panic: %s: %d: Unexpected character in locale name '%02X",
899 __FILE__, __LINE__, *(p-1));
900 }
901
902 /* Parse through the locale name */
903 name_start = p;
bee74f4b
KW
904 while (p < e && *p != ';') {
905 if (! isGRAPH(*p)) {
906 Perl_croak(aTHX_
907 "panic: %s: %d: Unexpected character in locale name '%02X",
908 __FILE__, __LINE__, *(p-1));
909 }
e9bc6d6b
KW
910 p++;
911 }
912 name_end = p;
913
bee74f4b
KW
914 /* Space past the semi-colon */
915 if (p < e) {
916 p++;
e9bc6d6b
KW
917 }
918
919 /* Find the index of the category name in our lists */
920 for (i = 0; i < LC_ALL_INDEX; i++) {
3c76a412 921 char * individ_locale;
e9bc6d6b
KW
922
923 /* Keep going if this isn't the index. The strnNE() avoids a
924 * Perl_form(), but would fail if ever a category name could be
925 * a substring of another one, like if there were a
926 * "LC_TIME_DATE" */
927 if strnNE(s, category_names[i], category_end - s) {
928 continue;
929 }
930
931 /* If this index is for the single category we're changing, we
932 * have found the locale to set it to. */
933 if (category == categories[i]) {
934 locale = Perl_form(aTHX_ "%.*s",
935 (int) (name_end - name_start),
936 name_start);
937 goto ready_to_set;
938 }
939
3c76a412 940 assert(category == LC_ALL);
bee74f4b
KW
941 individ_locale = Perl_form(aTHX_ "%.*s",
942 (int) (name_end - name_start), name_start);
6435f98d
KW
943 if (! emulate_setlocale(categories[i], individ_locale, i, TRUE))
944 {
945 return NULL;
946 }
e9bc6d6b
KW
947 }
948
949 s = p;
950 }
951
952 /* Here we have set all the individual categories by recursive calls.
953 * These collectively should have fixed up LC_ALL, so can just query
954 * what that now is */
955 assert(category == LC_ALL);
956
957 return do_setlocale_c(LC_ALL, NULL);
958 }
959
960 ready_to_set: ;
961
f8115d60
KW
962 /* Here at the end of having to deal with the absence of querylocale().
963 * Some cases have already been fully handled by recursive calls to this
964 * function. But at this point, we haven't dealt with those, but are now
965 * prepared to, knowing what the locale name to set this category to is.
966 * This would have come for free if this system had had querylocale() */
967
e9bc6d6b
KW
968# endif /* end of ! querylocale */
969
f8115d60
KW
970 assert(PL_C_locale_obj);
971
972 /* Switching locales generally entails freeing the current one's space (at
973 * the C library's discretion). We need to stop using that locale before
974 * the switch. So switch to a known locale object that we don't otherwise
975 * mess with. This returns the locale object in effect at the time of the
976 * switch. */
977 old_obj = uselocale(PL_C_locale_obj);
978
979# ifdef DEBUGGING
980
981 if (DEBUG_Lv_TEST || debug_initialization) {
982 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale was using %p\n", __FILE__, __LINE__, old_obj);
983 }
984
985# endif
986
987 if (! old_obj) {
988
989# ifdef DEBUGGING
990
991 if (DEBUG_L_TEST || debug_initialization) {
992 dSAVE_ERRNO;
993 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale switching to C failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
994 RESTORE_ERRNO;
995 }
996
997# endif
998
999 return NULL;
1000 }
1001
1002# ifdef DEBUGGING
1003
1004 if (DEBUG_Lv_TEST || debug_initialization) {
1005 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale now using %p\n", __FILE__, __LINE__, PL_C_locale_obj);
1006 }
1007
1008# endif
1009
1010 /* If we weren't in a thread safe locale, set so that newlocale() below
1011 which uses 'old_obj', uses an empty one. Same for our reserved C object.
1012 The latter is defensive coding, so that, even if there is some bug, we
1013 will never end up trying to modify either of these, as if passed to
1014 newlocale(), they can be. */
1015 if (old_obj == LC_GLOBAL_LOCALE || old_obj == PL_C_locale_obj) {
1016 old_obj = (locale_t) 0;
1017 }
1018
e9bc6d6b
KW
1019 /* Ready to create a new locale by modification of the exising one */
1020 new_obj = newlocale(mask, locale, old_obj);
1021
1022 if (! new_obj) {
1023 dSAVE_ERRNO;
1024
1025# ifdef DEBUGGING
1026
1027 if (DEBUG_L_TEST || debug_initialization) {
1028 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale creating new object failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1029 }
1030
1031# endif
1032
1033 if (! uselocale(old_obj)) {
e9bc6d6b
KW
1034
1035# ifdef DEBUGGING
1036
1037 if (DEBUG_L_TEST || debug_initialization) {
1038 PerlIO_printf(Perl_debug_log, "%s:%d: switching back failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1039 }
1040
1041# endif
1042
1043 }
1044 RESTORE_ERRNO;
1045 return NULL;
1046 }
1047
1048# ifdef DEBUGGING
1049
1050 if (DEBUG_Lv_TEST || debug_initialization) {
d15b6e8b 1051 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale created %p; should have freed %p\n", __FILE__, __LINE__, new_obj, old_obj);
e9bc6d6b
KW
1052 }
1053
1054# endif
1055
1056 /* And switch into it */
1057 if (! uselocale(new_obj)) {
1058 dSAVE_ERRNO;
1059
1060# ifdef DEBUGGING
1061
1062 if (DEBUG_L_TEST || debug_initialization) {
1063 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale switching to new object failed\n", __FILE__, __LINE__);
1064 }
1065
1066# endif
1067
1068 if (! uselocale(old_obj)) {
1069
1070# ifdef DEBUGGING
1071
1072 if (DEBUG_L_TEST || debug_initialization) {
1073 PerlIO_printf(Perl_debug_log, "%s:%d: switching back failed: %d\n", __FILE__, __LINE__, GET_ERRNO);
1074 }
1075
1076# endif
1077
1078 }
1079 freelocale(new_obj);
1080 RESTORE_ERRNO;
1081 return NULL;
1082 }
1083
1084# ifdef DEBUGGING
1085
1086 if (DEBUG_Lv_TEST || debug_initialization) {
1087 PerlIO_printf(Perl_debug_log, "%s:%d: emulate_setlocale now using %p\n", __FILE__, __LINE__, new_obj);
1088 }
1089
1090# endif
1091
1092 /* We are done, except for updating our records (if the system doesn't keep
1093 * them) and in the case of locale "", we don't actually know what the
1094 * locale that got switched to is, as it came from the environment. So
1095 * have to find it */
1096
1097# ifdef HAS_QUERYLOCALE
1098
1099 if (strEQ(locale, "")) {
1100 locale = querylocale(mask, new_obj);
1101 }
1102
1103# else
1104
1105 /* Here, 'locale' is the return value */
1106
1107 /* Without querylocale(), we have to update our records */
1108
1109 if (category == LC_ALL) {
1110 unsigned int i;
1111
1112 /* For LC_ALL, we change all individual categories to correspond */
1113 /* PL_curlocales is a parallel array, so has same
1114 * length as 'categories' */
1115 for (i = 0; i <= LC_ALL_INDEX; i++) {
1116 Safefree(PL_curlocales[i]);
1117 PL_curlocales[i] = savepv(locale);
1118 }
1119 }
1120 else {
1121
1122 /* For a single category, if it's not the same as the one in LC_ALL, we
1123 * nullify LC_ALL */
1124
1125 if (PL_curlocales[LC_ALL_INDEX] && strNE(PL_curlocales[LC_ALL_INDEX], locale)) {
1126 Safefree(PL_curlocales[LC_ALL_INDEX]);
1127 PL_curlocales[LC_ALL_INDEX] = NULL;
1128 }
1129
1130 /* Then update the category's record */
1131 Safefree(PL_curlocales[index]);
1132 PL_curlocales[index] = savepv(locale);
1133 }
1134
1135# endif
1136
1137 return locale;
1138}
1139
1140#endif /* USE_POSIX_2008_LOCALE */
1141
1142#if 0 /* Code that was to emulate thread-safe locales on platforms that
1143 didn't natively support them */
1144
1145/* The way this would work is that we would keep a per-thread list of the
1146 * correct locale for that thread. Any operation that was locale-sensitive
1147 * would have to be changed so that it would look like this:
1148 *
1149 * LOCALE_LOCK;
1150 * setlocale to the correct locale for this operation
1151 * do operation
1152 * LOCALE_UNLOCK
1153 *
1154 * This leaves the global locale in the most recently used operation's, but it
1155 * was locked long enough to get the result. If that result is static, it
1156 * needs to be copied before the unlock.
1157 *
1158 * Macros could be written like SETUP_LOCALE_DEPENDENT_OP(category) that did
1159 * the setup, but are no-ops when not needed, and similarly,
1160 * END_LOCALE_DEPENDENT_OP for the tear-down
1161 *
1162 * But every call to a locale-sensitive function would have to be changed, and
1163 * if a module didn't cooperate by using the mutex, things would break.
1164 *
1165 * This code was abandoned before being completed or tested, and is left as-is
1166*/
1167
1168# define do_setlocale_c(cat, locale) locking_setlocale(cat, locale, cat ## _INDEX, TRUE)
1169# define do_setlocale_r(cat, locale) locking_setlocale(cat, locale, 0, FALSE)
1170
1171STATIC char *
1172S_locking_setlocale(pTHX_
1173 const int category,
1174 const char * locale,
1175 int index,
1176 const bool is_index_valid
1177 )
1178{
1179 /* This function kind of performs a setlocale() on just the current thread;
1180 * thus it is kind of thread-safe. It does this by keeping a thread-level
1181 * array of the current locales for each category. Every time a locale is
1182 * switched to, it does the switch globally, but updates the thread's
1183 * array. A query as to what the current locale is just returns the
1184 * appropriate element from the array, and doesn't actually call the system
1185 * setlocale(). The saving into the array is done in an uninterruptible
1186 * section of code, so is unaffected by whatever any other threads might be
1187 * doing.
1188 *
1189 * All locale-sensitive operations must work by first starting a critical
1190 * section, then switching to the thread's locale as kept by this function,
1191 * and then doing the operation, then ending the critical section. Thus,
1192 * each gets done in the appropriate locale. simulating thread-safety.
1193 *
1194 * This function takes the same parameters, 'category' and 'locale', that
1195 * the regular setlocale() function does, but it also takes two additional
1196 * ones. This is because as described earlier. If we know on input the
1197 * index corresponding to the category into the array where we store the
1198 * current locales, we don't have to calculate it. If the caller knows at
1199 * compile time what the index is, it it can pass it, setting
1200 * 'is_index_valid' to TRUE; otherwise the index parameter is ignored.
1201 *
1202 */
1203
1204 /* If the input index might be incorrect, calculate the correct one */
1205 if (! is_index_valid) {
1206 unsigned int i;
1207
1208 if (DEBUG_Lv_TEST || debug_initialization) {
1209 PerlIO_printf(Perl_debug_log, "%s:%d: converting category %d to index\n", __FILE__, __LINE__, category);
1210 }
1211
1212 for (i = 0; i <= LC_ALL_INDEX; i++) {
1213 if (category == categories[i]) {
1214 index = i;
1215 goto found_index;
1216 }
1217 }
1218
1219 /* Here, we don't know about this category, so can't handle it.
1220 * XXX best we can do is to unsafely set this
1221 * XXX warning */
1222
1223 return my_setlocale(category, locale);
1224
1225 found_index: ;
1226
1227 if (DEBUG_Lv_TEST || debug_initialization) {
1228 PerlIO_printf(Perl_debug_log, "%s:%d: index is 0x%x\n", __FILE__, __LINE__, index);
1229 }
1230 }
1231
1232 /* For a query, just return what's in our records */
1233 if (new_locale == NULL) {
1234 return curlocales[index];
1235 }
1236
1237
1238 /* Otherwise, we need to do the switch, and save the result, all in a
1239 * critical section */
1240
1241 Safefree(curlocales[[index]]);
1242
1243 /* It might be that this is called from an already-locked section of code.
1244 * We would have to detect and skip the LOCK/UNLOCK if so */
1245 LOCALE_LOCK;
1246
1247 curlocales[index] = savepv(my_setlocale(category, new_locale));
1248
1249 if (strEQ(new_locale, "")) {
1250
1251#ifdef LC_ALL
1252
1253 /* The locale values come from the environment, and may not all be the
1254 * same, so for LC_ALL, we have to update all the others, while the
1255 * mutex is still locked */
1256
1257 if (category == LC_ALL) {
1258 unsigned int i;
1259 for (i = 0; i < LC_ALL_INDEX) {
1260 curlocales[i] = my_setlocale(categories[i], NULL);
1261 }
1262 }
1263 }
1264
1265#endif
1266
1267 LOCALE_UNLOCK;
1268
1269 return curlocales[index];
1270}
1271
1272#endif
d36adde0 1273#ifdef USE_LOCALE
837ce802 1274
a4f00dcc 1275STATIC void
86799d2d 1276S_set_numeric_radix(pTHX_ const bool use_locale)
98994639 1277{
86799d2d
KW
1278 /* If 'use_locale' is FALSE, set to use a dot for the radix character. If
1279 * TRUE, use the radix character derived from the current locale */
7d4bcc4a 1280
86799d2d
KW
1281#if defined(USE_LOCALE_NUMERIC) && ( defined(HAS_LOCALECONV) \
1282 || defined(HAS_NL_LANGINFO))
98994639 1283
87f8e8e7 1284 const char * radix = (use_locale)
4e6826bf 1285 ? my_nl_langinfo(RADIXCHAR, FALSE)
87f8e8e7
KW
1286 /* FALSE => already in dest locale */
1287 : ".";
2213a3be 1288
87f8e8e7 1289 sv_setpv(PL_numeric_radix_sv, radix);
86799d2d 1290
87f8e8e7
KW
1291 /* If this is valid UTF-8 that isn't totally ASCII, and we are in
1292 * a UTF-8 locale, then mark the radix as being in UTF-8 */
1293 if (is_utf8_non_invariant_string((U8 *) SvPVX(PL_numeric_radix_sv),
7a393424 1294 SvCUR(PL_numeric_radix_sv))
87f8e8e7
KW
1295 && _is_cur_LC_category_utf8(LC_NUMERIC))
1296 {
1297 SvUTF8_on(PL_numeric_radix_sv);
1298 }
86799d2d
KW
1299
1300# ifdef DEBUGGING
7d4bcc4a 1301
2fcc0ca9
KW
1302 if (DEBUG_L_TEST || debug_initialization) {
1303 PerlIO_printf(Perl_debug_log, "Locale radix is '%s', ?UTF-8=%d\n",
3ca88433
KW
1304 SvPVX(PL_numeric_radix_sv),
1305 cBOOL(SvUTF8(PL_numeric_radix_sv)));
2fcc0ca9 1306 }
69014004 1307
86799d2d 1308# endif
d36adde0
KW
1309#else
1310
1311 PERL_UNUSED_ARG(use_locale);
1312
86799d2d 1313#endif /* USE_LOCALE_NUMERIC and can find the radix char */
7d4bcc4a 1314
98994639
HS
1315}
1316
398eeea9
KW
1317STATIC void
1318S_new_numeric(pTHX_ const char *newnum)
98994639 1319{
7d4bcc4a
KW
1320
1321#ifndef USE_LOCALE_NUMERIC
1322
1323 PERL_UNUSED_ARG(newnum);
1324
1325#else
0d071d52 1326
291a84fb 1327 /* Called after each libc setlocale() call affecting LC_NUMERIC, to tell
0d071d52
KW
1328 * core Perl this and that 'newnum' is the name of the new locale.
1329 * It installs this locale as the current underlying default.
1330 *
1331 * The default locale and the C locale can be toggled between by use of the
5792c642
KW
1332 * set_numeric_underlying() and set_numeric_standard() functions, which
1333 * should probably not be called directly, but only via macros like
0d071d52
KW
1334 * SET_NUMERIC_STANDARD() in perl.h.
1335 *
1336 * The toggling is necessary mainly so that a non-dot radix decimal point
1337 * character can be output, while allowing internal calculations to use a
1338 * dot.
1339 *
1340 * This sets several interpreter-level variables:
bb304765 1341 * PL_numeric_name The underlying locale's name: a copy of 'newnum'
892e6465 1342 * PL_numeric_underlying A boolean indicating if the toggled state is such
7738054c
KW
1343 * that the current locale is the program's underlying
1344 * locale
1345 * PL_numeric_standard An int indicating if the toggled state is such
4c68b815
KW
1346 * that the current locale is the C locale or
1347 * indistinguishable from the C locale. If non-zero, it
1348 * is in C; if > 1, it means it may not be toggled away
7738054c 1349 * from C.
4c68b815
KW
1350 * PL_numeric_underlying_is_standard A bool kept by this function
1351 * indicating that the underlying locale and the standard
1352 * C locale are indistinguishable for the purposes of
1353 * LC_NUMERIC. This happens when both of the above two
1354 * variables are true at the same time. (Toggling is a
1355 * no-op under these circumstances.) This variable is
1356 * used to avoid having to recalculate.
398eeea9 1357 */
0d071d52 1358
b03f34cf 1359 char *save_newnum;
98994639
HS
1360
1361 if (! newnum) {
43c5f42d
NC
1362 Safefree(PL_numeric_name);
1363 PL_numeric_name = NULL;
98994639 1364 PL_numeric_standard = TRUE;
892e6465 1365 PL_numeric_underlying = TRUE;
4c68b815 1366 PL_numeric_underlying_is_standard = TRUE;
98994639
HS
1367 return;
1368 }
1369
b03f34cf 1370 save_newnum = stdize_locale(savepv(newnum));
892e6465 1371 PL_numeric_underlying = TRUE;
4c68b815
KW
1372 PL_numeric_standard = isNAME_C_OR_POSIX(save_newnum);
1373
69c5e0db
KW
1374#ifndef TS_W32_BROKEN_LOCALECONV
1375
4c68b815 1376 /* If its name isn't C nor POSIX, it could still be indistinguishable from
69c5e0db
KW
1377 * them. But on broken Windows systems calling my_nl_langinfo() for
1378 * THOUSEP can currently (but rarely) cause a race, so avoid doing that,
1379 * and just always change the locale if not C nor POSIX on those systems */
4c68b815 1380 if (! PL_numeric_standard) {
4e6826bf 1381 PL_numeric_standard = cBOOL(strEQ(".", my_nl_langinfo(RADIXCHAR,
4c68b815 1382 FALSE /* Don't toggle locale */ ))
4e6826bf 1383 && strEQ("", my_nl_langinfo(THOUSEP, FALSE)));
4c68b815 1384 }
abe1abcf 1385
69c5e0db
KW
1386#endif
1387
4c68b815 1388 /* Save the new name if it isn't the same as the previous one, if any */
b03f34cf 1389 if (! PL_numeric_name || strNE(PL_numeric_name, save_newnum)) {
98994639 1390 Safefree(PL_numeric_name);
b03f34cf 1391 PL_numeric_name = save_newnum;
b03f34cf 1392 }
abe1abcf
KW
1393 else {
1394 Safefree(save_newnum);
1395 }
4c28b29c 1396
4c68b815
KW
1397 PL_numeric_underlying_is_standard = PL_numeric_standard;
1398
7e5377f7 1399# ifdef HAS_POSIX_2008_LOCALE
e1aa2579
KW
1400
1401 PL_underlying_numeric_obj = newlocale(LC_NUMERIC_MASK,
1402 PL_numeric_name,
1403 PL_underlying_numeric_obj);
1404
1405#endif
1406
4c68b815
KW
1407 if (DEBUG_L_TEST || debug_initialization) {
1408 PerlIO_printf(Perl_debug_log, "Called new_numeric with %s, PL_numeric_name=%s\n", newnum, PL_numeric_name);
1409 }
1410
4c28b29c
KW
1411 /* Keep LC_NUMERIC in the C locale. This is for XS modules, so they don't
1412 * have to worry about the radix being a non-dot. (Core operations that
1413 * need the underlying locale change to it temporarily). */
84f1d29f
KW
1414 if (PL_numeric_standard) {
1415 set_numeric_radix(0);
1416 }
1417 else {
1418 set_numeric_standard();
1419 }
4c28b29c 1420
98994639 1421#endif /* USE_LOCALE_NUMERIC */
7d4bcc4a 1422
98994639
HS
1423}
1424
1425void
1426Perl_set_numeric_standard(pTHX)
1427{
7d4bcc4a 1428
98994639 1429#ifdef USE_LOCALE_NUMERIC
7d4bcc4a 1430
28c1bf33
KW
1431 /* Toggle the LC_NUMERIC locale to C. Most code should use the macros like
1432 * SET_NUMERIC_STANDARD() in perl.h instead of calling this directly. The
1433 * macro avoids calling this routine if toggling isn't necessary according
1434 * to our records (which could be wrong if some XS code has changed the
1435 * locale behind our back) */
0d071d52 1436
7d4bcc4a
KW
1437# ifdef DEBUGGING
1438
2fcc0ca9
KW
1439 if (DEBUG_L_TEST || debug_initialization) {
1440 PerlIO_printf(Perl_debug_log,
7bb8f702 1441 "Setting LC_NUMERIC locale to standard C\n");
2fcc0ca9 1442 }
98994639 1443
7d4bcc4a 1444# endif
7bb8f702
KW
1445
1446 do_setlocale_c(LC_NUMERIC, "C");
1447 PL_numeric_standard = TRUE;
1448 PL_numeric_underlying = PL_numeric_underlying_is_standard;
1449 set_numeric_radix(0);
1450
98994639 1451#endif /* USE_LOCALE_NUMERIC */
7d4bcc4a 1452
98994639
HS
1453}
1454
1455void
5792c642 1456Perl_set_numeric_underlying(pTHX)
98994639 1457{
7d4bcc4a 1458
98994639 1459#ifdef USE_LOCALE_NUMERIC
7d4bcc4a 1460
28c1bf33 1461 /* Toggle the LC_NUMERIC locale to the current underlying default. Most
7d4bcc4a
KW
1462 * code should use the macros like SET_NUMERIC_UNDERLYING() in perl.h
1463 * instead of calling this directly. The macro avoids calling this routine
1464 * if toggling isn't necessary according to our records (which could be
1465 * wrong if some XS code has changed the locale behind our back) */
a9b8c0d8 1466
7d4bcc4a
KW
1467# ifdef DEBUGGING
1468
2fcc0ca9
KW
1469 if (DEBUG_L_TEST || debug_initialization) {
1470 PerlIO_printf(Perl_debug_log,
7bb8f702 1471 "Setting LC_NUMERIC locale to %s\n",
2fcc0ca9
KW
1472 PL_numeric_name);
1473 }
98994639 1474
7d4bcc4a 1475# endif
7bb8f702
KW
1476
1477 do_setlocale_c(LC_NUMERIC, PL_numeric_name);
1478 PL_numeric_standard = PL_numeric_underlying_is_standard;
1479 PL_numeric_underlying = TRUE;
1480 set_numeric_radix(! PL_numeric_standard);
1481
98994639 1482#endif /* USE_LOCALE_NUMERIC */
7d4bcc4a 1483
98994639
HS
1484}
1485
1486/*
1487 * Set up for a new ctype locale.
1488 */
a4f00dcc
KW
1489STATIC void
1490S_new_ctype(pTHX_ const char *newctype)
98994639 1491{
7d4bcc4a
KW
1492
1493#ifndef USE_LOCALE_CTYPE
1494
7d4bcc4a
KW
1495 PERL_UNUSED_ARG(newctype);
1496 PERL_UNUSED_CONTEXT;
1497
1498#else
0d071d52 1499
291a84fb 1500 /* Called after each libc setlocale() call affecting LC_CTYPE, to tell
0d071d52
KW
1501 * core Perl this and that 'newctype' is the name of the new locale.
1502 *
1503 * This function sets up the folding arrays for all 256 bytes, assuming
1504 * that tofold() is tolc() since fold case is not a concept in POSIX,
1505 *
1506 * Any code changing the locale (outside this file) should use
9aac5db8
KW
1507 * Perl_setlocale or POSIX::setlocale, which call this function. Therefore
1508 * this function should be called directly only from this file and from
0d071d52
KW
1509 * POSIX::setlocale() */
1510
27da23d5 1511 dVAR;
013f4e03 1512 unsigned int i;
98994639 1513
8b7358b9
KW
1514 /* Don't check for problems if we are suppressing the warnings */
1515 bool check_for_problems = ckWARN_d(WARN_LOCALE) || UNLIKELY(DEBUG_L_TEST);
30d8090d 1516 bool maybe_utf8_turkic = FALSE;
8b7358b9 1517
7918f24d
NC
1518 PERL_ARGS_ASSERT_NEW_CTYPE;
1519
215c5139
KW
1520 /* We will replace any bad locale warning with 1) nothing if the new one is
1521 * ok; or 2) a new warning for the bad new locale */
1522 if (PL_warn_locale) {
1523 SvREFCNT_dec_NN(PL_warn_locale);
1524 PL_warn_locale = NULL;
1525 }
1526
c1284011 1527 PL_in_utf8_CTYPE_locale = _is_cur_LC_category_utf8(LC_CTYPE);
31f05a37
KW
1528
1529 /* A UTF-8 locale gets standard rules. But note that code still has to
1530 * handle this specially because of the three problematic code points */
1531 if (PL_in_utf8_CTYPE_locale) {
1532 Copy(PL_fold_latin1, PL_fold_locale, 256, U8);
30d8090d
KW
1533
1534 /* UTF-8 locales can have special handling for 'I' and 'i' if they are
1535 * Turkic. Make sure these two are the only anomalies. (We don't use
1536 * towupper and towlower because they aren't in C89.) */
5b64f24c
KW
1537
1538#if defined(HAS_TOWUPPER) && defined (HAS_TOWLOWER)
1539
1540 if (towupper('i') == 0x130 && towlower('I') == 0x131) {
1541
1542#else
1543
30d8090d 1544 if (toupper('i') == 'i' && tolower('I') == 'I') {
5b64f24c
KW
1545
1546#endif
30d8090d
KW
1547 check_for_problems = TRUE;
1548 maybe_utf8_turkic = TRUE;
1549 }
31f05a37 1550 }
8b7358b9
KW
1551
1552 /* We don't populate the other lists if a UTF-8 locale, but do check that
1553 * everything works as expected, unless checking turned off */
1554 if (check_for_problems || ! PL_in_utf8_CTYPE_locale) {
8c6180a9
KW
1555 /* Assume enough space for every character being bad. 4 spaces each
1556 * for the 94 printable characters that are output like "'x' "; and 5
1557 * spaces each for "'\\' ", "'\t' ", and "'\n' "; plus a terminating
1558 * NUL */
8b7358b9 1559 char bad_chars_list[ (94 * 4) + (3 * 5) + 1 ] = { '\0' };
8c6180a9
KW
1560 bool multi_byte_locale = FALSE; /* Assume is a single-byte locale
1561 to start */
1562 unsigned int bad_count = 0; /* Count of bad characters */
1563
baa60164 1564 for (i = 0; i < 256; i++) {
8b7358b9 1565 if (! PL_in_utf8_CTYPE_locale) {
bd6d0898
KW
1566 if (isupper(i))
1567 PL_fold_locale[i] = (U8) tolower(i);
1568 else if (islower(i))
1569 PL_fold_locale[i] = (U8) toupper(i);
1570 else
1571 PL_fold_locale[i] = (U8) i;
8b7358b9 1572 }
8c6180a9
KW
1573
1574 /* If checking for locale problems, see if the native ASCII-range
1575 * printables plus \n and \t are in their expected categories in
1576 * the new locale. If not, this could mean big trouble, upending
1577 * Perl's and most programs' assumptions, like having a
1578 * metacharacter with special meaning become a \w. Fortunately,
1579 * it's very rare to find locales that aren't supersets of ASCII
1580 * nowadays. It isn't a problem for most controls to be changed
1581 * into something else; we check only \n and \t, though perhaps \r
1582 * could be an issue as well. */
7d4bcc4a 1583 if ( check_for_problems
8c6180a9
KW
1584 && (isGRAPH_A(i) || isBLANK_A(i) || i == '\n'))
1585 {
8b7358b9 1586 bool is_bad = FALSE;
6726b4f4 1587 char name[4] = { '\0' };
8b7358b9
KW
1588
1589 /* Convert the name into a string */
6726b4f4 1590 if (isGRAPH_A(i)) {
8b7358b9
KW
1591 name[0] = i;
1592 name[1] = '\0';
1593 }
1594 else if (i == '\n') {
6726b4f4
KW
1595 my_strlcpy(name, "\\n", sizeof(name));
1596 }
1597 else if (i == '\t') {
1598 my_strlcpy(name, "\\t", sizeof(name));
8b7358b9
KW
1599 }
1600 else {
6726b4f4
KW
1601 assert(i == ' ');
1602 my_strlcpy(name, "' '", sizeof(name));
8b7358b9
KW
1603 }
1604
1605 /* Check each possibe class */
1606 if (UNLIKELY(cBOOL(isalnum(i)) != cBOOL(isALPHANUMERIC_A(i)))) {
1607 is_bad = TRUE;
1608 DEBUG_L(PerlIO_printf(Perl_debug_log,
1609 "isalnum('%s') unexpectedly is %d\n",
1610 name, cBOOL(isalnum(i))));
1611 }
1612 if (UNLIKELY(cBOOL(isalpha(i)) != cBOOL(isALPHA_A(i)))) {
1613 is_bad = TRUE;
1614 DEBUG_L(PerlIO_printf(Perl_debug_log,
1615 "isalpha('%s') unexpectedly is %d\n",
1616 name, cBOOL(isalpha(i))));
1617 }
1618 if (UNLIKELY(cBOOL(isdigit(i)) != cBOOL(isDIGIT_A(i)))) {
1619 is_bad = TRUE;
1620 DEBUG_L(PerlIO_printf(Perl_debug_log,
1621 "isdigit('%s') unexpectedly is %d\n",
1622 name, cBOOL(isdigit(i))));
1623 }
1624 if (UNLIKELY(cBOOL(isgraph(i)) != cBOOL(isGRAPH_A(i)))) {
1625 is_bad = TRUE;
1626 DEBUG_L(PerlIO_printf(Perl_debug_log,
1627 "isgraph('%s') unexpectedly is %d\n",
1628 name, cBOOL(isgraph(i))));
1629 }
1630 if (UNLIKELY(cBOOL(islower(i)) != cBOOL(isLOWER_A(i)))) {
1631 is_bad = TRUE;
1632 DEBUG_L(PerlIO_printf(Perl_debug_log,
1633 "islower('%s') unexpectedly is %d\n",
1634 name, cBOOL(islower(i))));
1635 }
1636 if (UNLIKELY(cBOOL(isprint(i)) != cBOOL(isPRINT_A(i)))) {
1637 is_bad = TRUE;
1638 DEBUG_L(PerlIO_printf(Perl_debug_log,
1639 "isprint('%s') unexpectedly is %d\n",
1640 name, cBOOL(isprint(i))));
1641 }
1642 if (UNLIKELY(cBOOL(ispunct(i)) != cBOOL(isPUNCT_A(i)))) {
1643 is_bad = TRUE;
1644 DEBUG_L(PerlIO_printf(Perl_debug_log,
1645 "ispunct('%s') unexpectedly is %d\n",
1646 name, cBOOL(ispunct(i))));
1647 }
1648 if (UNLIKELY(cBOOL(isspace(i)) != cBOOL(isSPACE_A(i)))) {
1649 is_bad = TRUE;
1650 DEBUG_L(PerlIO_printf(Perl_debug_log,
1651 "isspace('%s') unexpectedly is %d\n",
1652 name, cBOOL(isspace(i))));
1653 }
1654 if (UNLIKELY(cBOOL(isupper(i)) != cBOOL(isUPPER_A(i)))) {
1655 is_bad = TRUE;
1656 DEBUG_L(PerlIO_printf(Perl_debug_log,
1657 "isupper('%s') unexpectedly is %d\n",
1658 name, cBOOL(isupper(i))));
1659 }
1660 if (UNLIKELY(cBOOL(isxdigit(i))!= cBOOL(isXDIGIT_A(i)))) {
1661 is_bad = TRUE;
1662 DEBUG_L(PerlIO_printf(Perl_debug_log,
1663 "isxdigit('%s') unexpectedly is %d\n",
1664 name, cBOOL(isxdigit(i))));
1665 }
1666 if (UNLIKELY(tolower(i) != (int) toLOWER_A(i))) {
1667 is_bad = TRUE;
1668 DEBUG_L(PerlIO_printf(Perl_debug_log,
1669 "tolower('%s')=0x%x instead of the expected 0x%x\n",
1670 name, tolower(i), (int) toLOWER_A(i)));
1671 }
1672 if (UNLIKELY(toupper(i) != (int) toUPPER_A(i))) {
1673 is_bad = TRUE;
1674 DEBUG_L(PerlIO_printf(Perl_debug_log,
1675 "toupper('%s')=0x%x instead of the expected 0x%x\n",
1676 name, toupper(i), (int) toUPPER_A(i)));
1677 }
1678 if (UNLIKELY((i == '\n' && ! isCNTRL_LC(i)))) {
1679 is_bad = TRUE;
1680 DEBUG_L(PerlIO_printf(Perl_debug_log,
1681 "'\\n' (=%02X) is not a control\n", (int) i));
1682 }
1683
1684 /* Add to the list; Separate multiple entries with a blank */
1685 if (is_bad) {
1686 if (bad_count) {
1687 my_strlcat(bad_chars_list, " ", sizeof(bad_chars_list));
8c6180a9 1688 }
8b7358b9
KW
1689 my_strlcat(bad_chars_list, name, sizeof(bad_chars_list));
1690 bad_count++;
8c6180a9
KW
1691 }
1692 }
1693 }
1694
30d8090d
KW
1695 if (bad_count == 2 && maybe_utf8_turkic) {
1696 bad_count = 0;
1697 *bad_chars_list = '\0';
1698 PL_fold_locale['I'] = 'I';
1699 PL_fold_locale['i'] = 'i';
1700 PL_in_utf8_turkic_locale = TRUE;
1701 DEBUG_L(PerlIO_printf(Perl_debug_log, "%s:%d: %s is turkic\n",
1702 __FILE__, __LINE__, newctype));
1703 }
1704 else {
b8df1494 1705 PL_in_utf8_turkic_locale = FALSE;
30d8090d 1706 }
b8df1494 1707
7d4bcc4a
KW
1708# ifdef MB_CUR_MAX
1709
8c6180a9 1710 /* We only handle single-byte locales (outside of UTF-8 ones; so if
d35fca5f 1711 * this locale requires more than one byte, there are going to be
8c6180a9 1712 * problems. */
9c8a6dc2
KW
1713 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
1714 "%s:%d: check_for_problems=%d, MB_CUR_MAX=%d\n",
1715 __FILE__, __LINE__, check_for_problems, (int) MB_CUR_MAX));
1716
8b7358b9
KW
1717 if ( check_for_problems && MB_CUR_MAX > 1
1718 && ! PL_in_utf8_CTYPE_locale
ba1a4362
KW
1719
1720 /* Some platforms return MB_CUR_MAX > 1 for even the "C"
1721 * locale. Just assume that the implementation for them (plus
1722 * for POSIX) is correct and the > 1 value is spurious. (Since
1723 * these are specially handled to never be considered UTF-8
1724 * locales, as long as this is the only problem, everything
1725 * should work fine */
1726 && strNE(newctype, "C") && strNE(newctype, "POSIX"))
1727 {
8c6180a9
KW
1728 multi_byte_locale = TRUE;
1729 }
7d4bcc4a
KW
1730
1731# endif
8c6180a9 1732
30d8090d
KW
1733 /* If we found problems and we want them output, do so */
1734 if ( (UNLIKELY(bad_count) || UNLIKELY(multi_byte_locale))
1735 && (LIKELY(ckWARN_d(WARN_LOCALE)) || UNLIKELY(DEBUG_L_TEST)))
1736 {
8b7358b9
KW
1737 if (UNLIKELY(bad_count) && PL_in_utf8_CTYPE_locale) {
1738 PL_warn_locale = Perl_newSVpvf(aTHX_
1739 "Locale '%s' contains (at least) the following characters"
578a6a87
KW
1740 " which have\nunexpected meanings: %s\nThe Perl program"
1741 " will use the expected meanings",
8b7358b9 1742 newctype, bad_chars_list);
8b7358b9
KW
1743 }
1744 else {
1745 PL_warn_locale = Perl_newSVpvf(aTHX_
8c6180a9 1746 "Locale '%s' may not work well.%s%s%s\n",
780fcc9f 1747 newctype,
8c6180a9
KW
1748 (multi_byte_locale)
1749 ? " Some characters in it are not recognized by"
1750 " Perl."
1751 : "",
1752 (bad_count)
1753 ? "\nThe following characters (and maybe others)"
1754 " may not have the same meaning as the Perl"
1755 " program expects:\n"
1756 : "",
1757 (bad_count)
1758 ? bad_chars_list
1759 : ""
1760 );
8b7358b9
KW
1761 }
1762
b119c2be
KW
1763# ifdef HAS_NL_LANGINFO
1764
1765 Perl_sv_catpvf(aTHX_ PL_warn_locale, "; codeset=%s",
1766 /* parameter FALSE is a don't care here */
4e6826bf 1767 my_nl_langinfo(CODESET, FALSE));
b119c2be
KW
1768
1769# endif
1770
8b7358b9
KW
1771 Perl_sv_catpvf(aTHX_ PL_warn_locale, "\n");
1772
cc9eaeb0 1773 /* If we are actually in the scope of the locale or are debugging,
bddebb56
KW
1774 * output the message now. If not in that scope, we save the
1775 * message to be output at the first operation using this locale,
1776 * if that actually happens. Most programs don't use locales, so
1777 * they are immune to bad ones. */
cc9eaeb0 1778 if (IN_LC(LC_CTYPE) || UNLIKELY(DEBUG_L_TEST)) {
780fcc9f 1779
780fcc9f
KW
1780 /* The '0' below suppresses a bogus gcc compiler warning */
1781 Perl_warner(aTHX_ packWARN(WARN_LOCALE), SvPVX(PL_warn_locale), 0);
bddebb56 1782
bddebb56
KW
1783 if (IN_LC(LC_CTYPE)) {
1784 SvREFCNT_dec_NN(PL_warn_locale);
1785 PL_warn_locale = NULL;
1786 }
780fcc9f 1787 }
baa60164 1788 }
31f05a37 1789 }
98994639
HS
1790
1791#endif /* USE_LOCALE_CTYPE */
7d4bcc4a 1792
98994639
HS
1793}
1794
98994639 1795void
2726666d
KW
1796Perl__warn_problematic_locale()
1797{
2726666d
KW
1798
1799#ifdef USE_LOCALE_CTYPE
1800
5f04a188
KW
1801 dTHX;
1802
1803 /* Internal-to-core function that outputs the message in PL_warn_locale,
1804 * and then NULLS it. Should be called only through the macro
1805 * _CHECK_AND_WARN_PROBLEMATIC_LOCALE */
1806
2726666d 1807 if (PL_warn_locale) {
2726666d
KW
1808 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
1809 SvPVX(PL_warn_locale),
1810 0 /* dummy to avoid compiler warning */ );
2726666d
KW
1811 SvREFCNT_dec_NN(PL_warn_locale);
1812 PL_warn_locale = NULL;
1813 }
1814
1815#endif
1816
1817}
1818
a4f00dcc
KW
1819STATIC void
1820S_new_collate(pTHX_ const char *newcoll)
98994639 1821{
7d4bcc4a
KW
1822
1823#ifndef USE_LOCALE_COLLATE
1824
1825 PERL_UNUSED_ARG(newcoll);
1826 PERL_UNUSED_CONTEXT;
1827
1828#else
0d071d52 1829
291a84fb 1830 /* Called after each libc setlocale() call affecting LC_COLLATE, to tell
0d071d52
KW
1831 * core Perl this and that 'newcoll' is the name of the new locale.
1832 *
d35fca5f
KW
1833 * The design of locale collation is that every locale change is given an
1834 * index 'PL_collation_ix'. The first time a string particpates in an
1835 * operation that requires collation while locale collation is active, it
1836 * is given PERL_MAGIC_collxfrm magic (via sv_collxfrm_flags()). That
1837 * magic includes the collation index, and the transformation of the string
1838 * by strxfrm(), q.v. That transformation is used when doing comparisons,
1839 * instead of the string itself. If a string changes, the magic is
1840 * cleared. The next time the locale changes, the index is incremented,
1841 * and so we know during a comparison that the transformation is not
1842 * necessarily still valid, and so is recomputed. Note that if the locale
1843 * changes enough times, the index could wrap (a U32), and it is possible
1844 * that a transformation would improperly be considered valid, leading to
1845 * an unlikely bug */
0d071d52 1846
98994639
HS
1847 if (! newcoll) {
1848 if (PL_collation_name) {
1849 ++PL_collation_ix;
1850 Safefree(PL_collation_name);
1851 PL_collation_name = NULL;
1852 }
1853 PL_collation_standard = TRUE;
00bf60ca 1854 is_standard_collation:
98994639
HS
1855 PL_collxfrm_base = 0;
1856 PL_collxfrm_mult = 2;
165a1c52 1857 PL_in_utf8_COLLATE_locale = FALSE;
f28f4d2a 1858 PL_strxfrm_NUL_replacement = '\0';
a4a439fb 1859 PL_strxfrm_max_cp = 0;
98994639
HS
1860 return;
1861 }
1862
d35fca5f 1863 /* If this is not the same locale as currently, set the new one up */
98994639
HS
1864 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
1865 ++PL_collation_ix;
1866 Safefree(PL_collation_name);
1867 PL_collation_name = stdize_locale(savepv(newcoll));
a39edc4c 1868 PL_collation_standard = isNAME_C_OR_POSIX(newcoll);
00bf60ca
KW
1869 if (PL_collation_standard) {
1870 goto is_standard_collation;
1871 }
98994639 1872
165a1c52 1873 PL_in_utf8_COLLATE_locale = _is_cur_LC_category_utf8(LC_COLLATE);
f28f4d2a 1874 PL_strxfrm_NUL_replacement = '\0';
a4a439fb 1875 PL_strxfrm_max_cp = 0;
165a1c52 1876
59c018b9
KW
1877 /* A locale collation definition includes primary, secondary, tertiary,
1878 * etc. weights for each character. To sort, the primary weights are
1879 * used, and only if they compare equal, then the secondary weights are
1880 * used, and only if they compare equal, then the tertiary, etc.
1881 *
1882 * strxfrm() works by taking the input string, say ABC, and creating an
1883 * output transformed string consisting of first the primary weights,
1884 * A¹B¹C¹ followed by the secondary ones, A²B²C²; and then the
1885 * tertiary, etc, yielding A¹B¹C¹ A²B²C² A³B³C³ .... Some characters
1886 * may not have weights at every level. In our example, let's say B
1887 * doesn't have a tertiary weight, and A doesn't have a secondary
1888 * weight. The constructed string is then going to be
1889 * A¹B¹C¹ B²C² A³C³ ....
1890 * This has the desired effect that strcmp() will look at the secondary
1891 * or tertiary weights only if the strings compare equal at all higher
1892 * priority weights. The spaces shown here, like in
c342d20e 1893 * "A¹B¹C¹ A²B²C² "
59c018b9
KW
1894 * are not just for readability. In the general case, these must
1895 * actually be bytes, which we will call here 'separator weights'; and
1896 * they must be smaller than any other weight value, but since these
1897 * are C strings, only the terminating one can be a NUL (some
1898 * implementations may include a non-NUL separator weight just before
1899 * the NUL). Implementations tend to reserve 01 for the separator
1900 * weights. They are needed so that a shorter string's secondary
1901 * weights won't be misconstrued as primary weights of a longer string,
1902 * etc. By making them smaller than any other weight, the shorter
1903 * string will sort first. (Actually, if all secondary weights are
1904 * smaller than all primary ones, there is no need for a separator
1905 * weight between those two levels, etc.)
1906 *
1907 * The length of the transformed string is roughly a linear function of
1908 * the input string. It's not exactly linear because some characters
1909 * don't have weights at all levels. When we call strxfrm() we have to
1910 * allocate some memory to hold the transformed string. The
1911 * calculations below try to find coefficients 'm' and 'b' for this
1912 * locale so that m*x + b equals how much space we need, given the size
1913 * of the input string in 'x'. If we calculate too small, we increase
1914 * the size as needed, and call strxfrm() again, but it is better to
1915 * get it right the first time to avoid wasted expensive string
1916 * transformations. */
1917
98994639 1918 {
79f120c8
KW
1919 /* We use the string below to find how long the tranformation of it
1920 * is. Almost all locales are supersets of ASCII, or at least the
1921 * ASCII letters. We use all of them, half upper half lower,
1922 * because if we used fewer, we might hit just the ones that are
1923 * outliers in a particular locale. Most of the strings being
1924 * collated will contain a preponderance of letters, and even if
1925 * they are above-ASCII, they are likely to have the same number of
1926 * weight levels as the ASCII ones. It turns out that digits tend
1927 * to have fewer levels, and some punctuation has more, but those
1928 * are relatively sparse in text, and khw believes this gives a
1929 * reasonable result, but it could be changed if experience so
1930 * dictates. */
1931 const char longer[] = "ABCDEFGHIJKLMnopqrstuvwxyz";
1932 char * x_longer; /* Transformed 'longer' */
1933 Size_t x_len_longer; /* Length of 'x_longer' */
1934
1935 char * x_shorter; /* We also transform a substring of 'longer' */
1936 Size_t x_len_shorter;
1937
a4a439fb 1938 /* _mem_collxfrm() is used get the transformation (though here we
79f120c8
KW
1939 * are interested only in its length). It is used because it has
1940 * the intelligence to handle all cases, but to work, it needs some
1941 * values of 'm' and 'b' to get it started. For the purposes of
1942 * this calculation we use a very conservative estimate of 'm' and
1943 * 'b'. This assumes a weight can be multiple bytes, enough to
1944 * hold any UV on the platform, and there are 5 levels, 4 weight
1945 * bytes, and a trailing NUL. */
1946 PL_collxfrm_base = 5;
1947 PL_collxfrm_mult = 5 * sizeof(UV);
1948
1949 /* Find out how long the transformation really is */
a4a439fb
KW
1950 x_longer = _mem_collxfrm(longer,
1951 sizeof(longer) - 1,
1952 &x_len_longer,
1953
1954 /* We avoid converting to UTF-8 in the
1955 * called function by telling it the
1956 * string is in UTF-8 if the locale is a
1957 * UTF-8 one. Since the string passed
1958 * here is invariant under UTF-8, we can
1959 * claim it's UTF-8 even though it isn't.
1960 * */
1961 PL_in_utf8_COLLATE_locale);
79f120c8
KW
1962 Safefree(x_longer);
1963
1964 /* Find out how long the transformation of a substring of 'longer'
1965 * is. Together the lengths of these transformations are
1966 * sufficient to calculate 'm' and 'b'. The substring is all of
1967 * 'longer' except the first character. This minimizes the chances
1968 * of being swayed by outliers */
a4a439fb 1969 x_shorter = _mem_collxfrm(longer + 1,
79f120c8 1970 sizeof(longer) - 2,
a4a439fb
KW
1971 &x_len_shorter,
1972 PL_in_utf8_COLLATE_locale);
79f120c8
KW
1973 Safefree(x_shorter);
1974
1975 /* If the results are nonsensical for this simple test, the whole
1976 * locale definition is suspect. Mark it so that locale collation
1977 * is not active at all for it. XXX Should we warn? */
1978 if ( x_len_shorter == 0
1979 || x_len_longer == 0
1980 || x_len_shorter >= x_len_longer)
1981 {
1982 PL_collxfrm_mult = 0;
1983 PL_collxfrm_base = 0;
1984 }
1985 else {
1986 SSize_t base; /* Temporary */
1987
1988 /* We have both: m * strlen(longer) + b = x_len_longer
1989 * m * strlen(shorter) + b = x_len_shorter;
1990 * subtracting yields:
1991 * m * (strlen(longer) - strlen(shorter))
1992 * = x_len_longer - x_len_shorter
1993 * But we have set things up so that 'shorter' is 1 byte smaller
1994 * than 'longer'. Hence:
1995 * m = x_len_longer - x_len_shorter
1996 *
1997 * But if something went wrong, make sure the multiplier is at
1998 * least 1.
1999 */
2000 if (x_len_longer > x_len_shorter) {
2001 PL_collxfrm_mult = (STRLEN) x_len_longer - x_len_shorter;
2002 }
2003 else {
2004 PL_collxfrm_mult = 1;
2005 }
2006
2007 /* mx + b = len
2008 * so: b = len - mx
2009 * but in case something has gone wrong, make sure it is
2010 * non-negative */
2011 base = x_len_longer - PL_collxfrm_mult * (sizeof(longer) - 1);
2012 if (base < 0) {
2013 base = 0;
2014 }
2015
2016 /* Add 1 for the trailing NUL */
2017 PL_collxfrm_base = base + 1;
2018 }
58eebef2 2019
7d4bcc4a
KW
2020# ifdef DEBUGGING
2021
58eebef2
KW
2022 if (DEBUG_L_TEST || debug_initialization) {
2023 PerlIO_printf(Perl_debug_log,
b07929e4
KW
2024 "%s:%d: ?UTF-8 locale=%d; x_len_shorter=%zu, "
2025 "x_len_longer=%zu,"
2026 " collate multipler=%zu, collate base=%zu\n",
58eebef2
KW
2027 __FILE__, __LINE__,
2028 PL_in_utf8_COLLATE_locale,
2029 x_len_shorter, x_len_longer,
2030 PL_collxfrm_mult, PL_collxfrm_base);
2031 }
7d4bcc4a
KW
2032# endif
2033
98994639
HS
2034 }
2035 }
2036
2037#endif /* USE_LOCALE_COLLATE */
7d4bcc4a 2038
98994639
HS
2039}
2040
d36adde0
KW
2041#endif
2042
d2b24094 2043#ifdef WIN32
b8cc575c 2044
a4f00dcc 2045STATIC char *
b8cc575c 2046S_win32_setlocale(pTHX_ int category, const char* locale)
b385bb4d
KW
2047{
2048 /* This, for Windows, emulates POSIX setlocale() behavior. There is no
7d4bcc4a
KW
2049 * difference between the two unless the input locale is "", which normally
2050 * means on Windows to get the machine default, which is set via the
2051 * computer's "Regional and Language Options" (or its current equivalent).
2052 * In POSIX, it instead means to find the locale from the user's
2053 * environment. This routine changes the Windows behavior to first look in
2054 * the environment, and, if anything is found, use that instead of going to
2055 * the machine default. If there is no environment override, the machine
2056 * default is used, by calling the real setlocale() with "".
2057 *
2058 * The POSIX behavior is to use the LC_ALL variable if set; otherwise to
2059 * use the particular category's variable if set; otherwise to use the LANG
2060 * variable. */
b385bb4d 2061
175c4cf9 2062 bool override_LC_ALL = FALSE;
89f7b9aa 2063 char * result;
e5f10d49 2064 unsigned int i;
89f7b9aa 2065
b385bb4d 2066 if (locale && strEQ(locale, "")) {
7d4bcc4a
KW
2067
2068# ifdef LC_ALL
2069
b385bb4d
KW
2070 locale = PerlEnv_getenv("LC_ALL");
2071 if (! locale) {
e5f10d49
KW
2072 if (category == LC_ALL) {
2073 override_LC_ALL = TRUE;
2074 }
2075 else {
7d4bcc4a
KW
2076
2077# endif
7d4bcc4a 2078
e5f10d49
KW
2079 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
2080 if (category == categories[i]) {
2081 locale = PerlEnv_getenv(category_names[i]);
2082 goto found_locale;
2083 }
2084 }
7d4bcc4a 2085
b385bb4d 2086 locale = PerlEnv_getenv("LANG");
481465ea 2087 if (! locale) {
b385bb4d
KW
2088 locale = "";
2089 }
e5f10d49
KW
2090
2091 found_locale: ;
7d4bcc4a
KW
2092
2093# ifdef LC_ALL
2094
e5f10d49 2095 }
b385bb4d 2096 }
7d4bcc4a
KW
2097
2098# endif
2099
b385bb4d
KW
2100 }
2101
89f7b9aa 2102 result = setlocale(category, locale);
48015184
KW
2103 DEBUG_L(STMT_START {
2104 dSAVE_ERRNO;
2105 PerlIO_printf(Perl_debug_log, "%s:%d: %s\n", __FILE__, __LINE__,
2106 setlocale_debug_string(category, locale, result));
2107 RESTORE_ERRNO;
2108 } STMT_END);
89f7b9aa 2109
481465ea 2110 if (! override_LC_ALL) {
89f7b9aa
KW
2111 return result;
2112 }
2113
dfd77d7a 2114 /* Here the input category was LC_ALL, and we have set it to what is in the
481465ea
KW
2115 * LANG variable or the system default if there is no LANG. But these have
2116 * lower priority than the other LC_foo variables, so override it for each
2117 * one that is set. (If they are set to "", it means to use the same thing
2118 * we just set LC_ALL to, so can skip) */
7d4bcc4a 2119
948523db 2120 for (i = 0; i < LC_ALL_INDEX; i++) {
e5f10d49
KW
2121 result = PerlEnv_getenv(category_names[i]);
2122 if (result && strNE(result, "")) {
2123 setlocale(categories[i], result);
2124 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
2125 __FILE__, __LINE__,
2126 setlocale_debug_string(categories[i], result, "not captured")));
2127 }
89f7b9aa 2128 }
7d4bcc4a 2129
bbc98134 2130 result = setlocale(LC_ALL, NULL);
48015184
KW
2131 DEBUG_L(STMT_START {
2132 dSAVE_ERRNO;
2133 PerlIO_printf(Perl_debug_log, "%s:%d: %s\n",
bbc98134 2134 __FILE__, __LINE__,
48015184
KW
2135 setlocale_debug_string(LC_ALL, NULL, result));
2136 RESTORE_ERRNO;
2137 } STMT_END);
89f7b9aa 2138
bbc98134 2139 return result;
b385bb4d
KW
2140}
2141
2142#endif
2143
9aac5db8
KW
2144/*
2145
2146=head1 Locale-related functions and macros
2147
2148=for apidoc Perl_setlocale
2149
2150This is an (almost) drop-in replacement for the system L<C<setlocale(3)>>,
2151taking the same parameters, and returning the same information, except that it
9487427b
KW
2152returns the correct underlying C<LC_NUMERIC> locale. Regular C<setlocale> will
2153instead return C<C> if the underlying locale has a non-dot decimal point
2154character, or a non-empty thousands separator for displaying floating point
2155numbers. This is because perl keeps that locale category such that it has a
2156dot and empty separator, changing the locale briefly during the operations
2157where the underlying one is required. C<Perl_setlocale> knows about this, and
2158compensates; regular C<setlocale> doesn't.
9aac5db8 2159
e9bc6d6b 2160Another reason it isn't completely a drop-in replacement is that it is
9aac5db8 2161declared to return S<C<const char *>>, whereas the system setlocale omits the
163deff3
KW
2162C<const> (presumably because its API was specified long ago, and can't be
2163updated; it is illegal to change the information C<setlocale> returns; doing
2164so leads to segfaults.)
9aac5db8 2165
e9bc6d6b
KW
2166Finally, C<Perl_setlocale> works under all circumstances, whereas plain
2167C<setlocale> can be completely ineffective on some platforms under some
2168configurations.
2169
9aac5db8 2170C<Perl_setlocale> should not be used to change the locale except on systems
e9bc6d6b
KW
2171where the predefined variable C<${^SAFE_LOCALES}> is 1. On some such systems,
2172the system C<setlocale()> is ineffective, returning the wrong information, and
2173failing to actually change the locale. C<Perl_setlocale>, however works
2174properly in all circumstances.
9aac5db8
KW
2175
2176The return points to a per-thread static buffer, which is overwritten the next
2177time C<Perl_setlocale> is called from the same thread.
2178
2179=cut
2180
2181*/
2182
2183const char *
2184Perl_setlocale(const int category, const char * locale)
a4f00dcc
KW
2185{
2186 /* This wraps POSIX::setlocale() */
2187
d36adde0
KW
2188#ifdef NO_LOCALE
2189
2190 PERL_UNUSED_ARG(category);
2191 PERL_UNUSED_ARG(locale);
2192
2193 return "C";
2194
2195#else
2196
9aac5db8
KW
2197 const char * retval;
2198 const char * newlocale;
2199 dSAVEDERRNO;
a4f00dcc 2200 dTHX;
d36adde0 2201 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
a4f00dcc 2202
a4f00dcc
KW
2203#ifdef USE_LOCALE_NUMERIC
2204
291a84fb
KW
2205 /* A NULL locale means only query what the current one is. We have the
2206 * LC_NUMERIC name saved, because we are normally switched into the C
9487427b
KW
2207 * (or equivalent) locale for it. For an LC_ALL query, switch back to get
2208 * the correct results. All other categories don't require special
2209 * handling */
a4f00dcc
KW
2210 if (locale == NULL) {
2211 if (category == LC_NUMERIC) {
9aac5db8
KW
2212
2213 /* We don't have to copy this return value, as it is a per-thread
2214 * variable, and won't change until a future setlocale */
2215 return PL_numeric_name;
a4f00dcc
KW
2216 }
2217
7d4bcc4a 2218# ifdef LC_ALL
a4f00dcc 2219
9aac5db8
KW
2220 else if (category == LC_ALL) {
2221 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
a4f00dcc
KW
2222 }
2223
7d4bcc4a 2224# endif
a4f00dcc
KW
2225
2226 }
2227
2228#endif
2229
33e5a354
KW
2230 retval = save_to_buffer(do_setlocale_r(category, locale),
2231 &PL_setlocale_buf, &PL_setlocale_bufsize, 0);
9aac5db8
KW
2232 SAVE_ERRNO;
2233
2234#if defined(USE_LOCALE_NUMERIC) && defined(LC_ALL)
2235
2236 if (locale == NULL && category == LC_ALL) {
2237 RESTORE_LC_NUMERIC();
2238 }
2239
2240#endif
a4f00dcc
KW
2241
2242 DEBUG_L(PerlIO_printf(Perl_debug_log,
2243 "%s:%d: %s\n", __FILE__, __LINE__,
2244 setlocale_debug_string(category, locale, retval)));
7d4bcc4a 2245
9aac5db8
KW
2246 RESTORE_ERRNO;
2247
2248 if (! retval) {
a4f00dcc
KW
2249 return NULL;
2250 }
2251
9aac5db8 2252 /* If locale == NULL, we are just querying the state */
a4f00dcc 2253 if (locale == NULL) {
a4f00dcc
KW
2254 return retval;
2255 }
a4f00dcc 2256
1159483a
KW
2257 /* Now that have switched locales, we have to update our records to
2258 * correspond. */
a4f00dcc 2259
1159483a 2260 switch (category) {
a4f00dcc 2261
1159483a 2262#ifdef USE_LOCALE_CTYPE
a4f00dcc 2263
1159483a
KW
2264 case LC_CTYPE:
2265 new_ctype(retval);
2266 break;
a4f00dcc 2267
1159483a 2268#endif
a4f00dcc
KW
2269#ifdef USE_LOCALE_COLLATE
2270
1159483a
KW
2271 case LC_COLLATE:
2272 new_collate(retval);
2273 break;
a4f00dcc 2274
1159483a 2275#endif
a4f00dcc
KW
2276#ifdef USE_LOCALE_NUMERIC
2277
1159483a
KW
2278 case LC_NUMERIC:
2279 new_numeric(retval);
2280 break;
a4f00dcc 2281
1159483a
KW
2282#endif
2283#ifdef LC_ALL
a4f00dcc 2284
1159483a 2285 case LC_ALL:
a4f00dcc 2286
1159483a
KW
2287 /* LC_ALL updates all the things we care about. The values may not
2288 * be the same as 'retval', as the locale "" may have set things
2289 * individually */
a4f00dcc 2290
1159483a 2291# ifdef USE_LOCALE_CTYPE
a4f00dcc 2292
b0bde642 2293 newlocale = savepv(do_setlocale_c(LC_CTYPE, NULL));
1159483a 2294 new_ctype(newlocale);
b0bde642 2295 Safefree(newlocale);
a4f00dcc 2296
1159483a
KW
2297# endif /* USE_LOCALE_CTYPE */
2298# ifdef USE_LOCALE_COLLATE
2299
b0bde642 2300 newlocale = savepv(do_setlocale_c(LC_COLLATE, NULL));
1159483a 2301 new_collate(newlocale);
b0bde642 2302 Safefree(newlocale);
a4f00dcc 2303
7d4bcc4a 2304# endif
1159483a 2305# ifdef USE_LOCALE_NUMERIC
a4f00dcc 2306
b0bde642 2307 newlocale = savepv(do_setlocale_c(LC_NUMERIC, NULL));
1159483a 2308 new_numeric(newlocale);
b0bde642 2309 Safefree(newlocale);
a4f00dcc 2310
1159483a
KW
2311# endif /* USE_LOCALE_NUMERIC */
2312#endif /* LC_ALL */
a4f00dcc 2313
1159483a
KW
2314 default:
2315 break;
a4f00dcc
KW
2316 }
2317
2318 return retval;
2319
d36adde0
KW
2320#endif
2321
f7416781
KW
2322}
2323
2324PERL_STATIC_INLINE const char *
2325S_save_to_buffer(const char * string, char **buf, Size_t *buf_size, const Size_t offset)
2326{
2327 /* Copy the NUL-terminated 'string' to 'buf' + 'offset'. 'buf' has size 'buf_size',
2328 * growing it if necessary */
2329
0b6697c5 2330 Size_t string_size;
f7416781
KW
2331
2332 PERL_ARGS_ASSERT_SAVE_TO_BUFFER;
2333
0b6697c5
KW
2334 if (! string) {
2335 return NULL;
2336 }
2337
2338 string_size = strlen(string) + offset + 1;
2339
f7416781
KW
2340 if (*buf_size == 0) {
2341 Newx(*buf, string_size, char);
2342 *buf_size = string_size;
2343 }
2344 else if (string_size > *buf_size) {
2345 Renew(*buf, string_size, char);
2346 *buf_size = string_size;
2347 }
2348
2349 Copy(string, *buf + offset, string_size - offset, char);
2350 return *buf;
2351}
2352
2353/*
2354
f7416781
KW
2355=for apidoc Perl_langinfo
2356
ce181bf6 2357This is an (almost) drop-in replacement for the system C<L<nl_langinfo(3)>>,
f7416781
KW
2358taking the same C<item> parameter values, and returning the same information.
2359But it is more thread-safe than regular C<nl_langinfo()>, and hides the quirks
2360of Perl's locale handling from your code, and can be used on systems that lack
2361a native C<nl_langinfo>.
2362
2363Expanding on these:
2364
2365=over
2366
2367=item *
2368
ce181bf6
KW
2369The reason it isn't quite a drop-in replacement is actually an advantage. The
2370only difference is that it returns S<C<const char *>>, whereas plain
2371C<nl_langinfo()> returns S<C<char *>>, but you are (only by documentation)
2372forbidden to write into the buffer. By declaring this C<const>, the compiler
2373enforces this restriction, so if it is violated, you know at compilation time,
2374rather than getting segfaults at runtime.
2375
2376=item *
2377
69e2275e 2378It delivers the correct results for the C<RADIXCHAR> and C<THOUSEP> items,
f7416781
KW
2379without you having to write extra code. The reason for the extra code would be
2380because these are from the C<LC_NUMERIC> locale category, which is normally
9487427b
KW
2381kept set by Perl so that the radix is a dot, and the separator is the empty
2382string, no matter what the underlying locale is supposed to be, and so to get
2383the expected results, you have to temporarily toggle into the underlying
2384locale, and later toggle back. (You could use plain C<nl_langinfo> and
2385C<L</STORE_LC_NUMERIC_FORCE_TO_UNDERLYING>> for this but then you wouldn't get
2386the other advantages of C<Perl_langinfo()>; not keeping C<LC_NUMERIC> in the C
2387(or equivalent) locale would break a lot of CPAN, which is expecting the radix
2388(decimal point) character to be a dot.)
ce181bf6
KW
2389
2390=item *
2391
2392The system function it replaces can have its static return buffer trashed,
2393not only by a subesequent call to that function, but by a C<freelocale>,
2394C<setlocale>, or other locale change. The returned buffer of this function is
2395not changed until the next call to it, so the buffer is never in a trashed
2396state.
f7416781
KW
2397
2398=item *
2399
ce181bf6
KW
2400Its return buffer is per-thread, so it also is never overwritten by a call to
2401this function from another thread; unlike the function it replaces.
2402
2403=item *
2404
2405But most importantly, it works on systems that don't have C<nl_langinfo>, such
2406as Windows, hence makes your code more portable. Of the fifty-some possible
2407items specified by the POSIX 2008 standard,
f7416781 2408L<http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/langinfo.h.html>,
8d72e74e
KW
2409only one is completely unimplemented, though on non-Windows platforms, another
2410significant one is also not implemented). It uses various techniques to
2411recover the other items, including calling C<L<localeconv(3)>>, and
2412C<L<strftime(3)>>, both of which are specified in C89, so should be always be
2413available. Later C<strftime()> versions have additional capabilities; C<""> is
2414returned for those not available on your system.
ce181bf6
KW
2415
2416It is important to note that when called with an item that is recovered by
2417using C<localeconv>, the buffer from any previous explicit call to
2418C<localeconv> will be overwritten. This means you must save that buffer's
c3997e39
KW
2419contents if you need to access them after a call to this function. (But note
2420that you might not want to be using C<localeconv()> directly anyway, because of
2421issues like the ones listed in the second item of this list (above) for
2422C<RADIXCHAR> and C<THOUSEP>. You can use the methods given in L<perlcall> to
2423call L<POSIX/localeconv> and avoid all the issues, but then you have a hash to
2424unpack).
9f0bc911 2425
6201c220
KW
2426The details for those items which may deviate from what this emulation returns
2427and what a native C<nl_langinfo()> would return are specified in
2428L<I18N::Langinfo>.
f7416781 2429
ce181bf6
KW
2430=back
2431
f7416781
KW
2432When using C<Perl_langinfo> on systems that don't have a native
2433C<nl_langinfo()>, you must
2434
2435 #include "perl_langinfo.h"
2436
2437before the C<perl.h> C<#include>. You can replace your C<langinfo.h>
2438C<#include> with this one. (Doing it this way keeps out the symbols that plain
c3997e39
KW
2439C<langinfo.h> would try to import into the namespace for code that doesn't need
2440it.)
f7416781 2441
f7416781
KW
2442The original impetus for C<Perl_langinfo()> was so that code that needs to
2443find out the current currency symbol, floating point radix character, or digit
2444grouping separator can use, on all systems, the simpler and more
2445thread-friendly C<nl_langinfo> API instead of C<L<localeconv(3)>> which is a
2446pain to make thread-friendly. For other fields returned by C<localeconv>, it
2447is better to use the methods given in L<perlcall> to call
2448L<C<POSIX::localeconv()>|POSIX/localeconv>, which is thread-friendly.
2449
2450=cut
2451
2452*/
2453
2454const char *
2455#ifdef HAS_NL_LANGINFO
2456Perl_langinfo(const nl_item item)
2457#else
2458Perl_langinfo(const int item)
2459#endif
2460{
f61748ac
KW
2461 return my_nl_langinfo(item, TRUE);
2462}
2463
59a15af0 2464STATIC const char *
f61748ac
KW
2465#ifdef HAS_NL_LANGINFO
2466S_my_nl_langinfo(const nl_item item, bool toggle)
2467#else
2468S_my_nl_langinfo(const int item, bool toggle)
2469#endif
2470{
ae74815b 2471 dTHX;
0b6697c5 2472 const char * retval;
f7416781 2473
d36adde0
KW
2474#ifdef USE_LOCALE_NUMERIC
2475
5a854ab3
KW
2476 /* We only need to toggle into the underlying LC_NUMERIC locale for these
2477 * two items, and only if not already there */
4e6826bf 2478 if (toggle && (( item != RADIXCHAR && item != THOUSEP)
5a854ab3 2479 || PL_numeric_underlying))
d36adde0
KW
2480
2481#endif /* No toggling needed if not using LC_NUMERIC */
2482
5a854ab3 2483 toggle = FALSE;
5a854ab3 2484
ab340fff 2485#if defined(HAS_NL_LANGINFO) /* nl_langinfo() is available. */
ee90eb2d 2486# if ! defined(HAS_THREAD_SAFE_NL_LANGINFO_L) \
80306bb6
KW
2487 || ! defined(HAS_POSIX_2008_LOCALE) \
2488 || ! defined(DUPLOCALE)
f7416781 2489
ab340fff 2490 /* Here, use plain nl_langinfo(), switching to the underlying LC_NUMERIC
ae74815b
KW
2491 * for those items dependent on it. This must be copied to a buffer before
2492 * switching back, as some systems destroy the buffer when setlocale() is
2493 * called */
f7416781 2494
038d3702
KW
2495 {
2496 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
2497
b2fee59c 2498 if (toggle) {
038d3702 2499 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
b2fee59c 2500 }
f7416781 2501
5acc4454
KW
2502 LOCALE_LOCK; /* Prevent interference from another thread executing
2503 this code section (the only call to nl_langinfo in
2504 the core) */
2505
ee90eb2d 2506
628ff75a
KW
2507 /* Copy to a per-thread buffer, which is also one that won't be
2508 * destroyed by a subsequent setlocale(), such as the
2509 * RESTORE_LC_NUMERIC may do just below. */
0b6697c5
KW
2510 retval = save_to_buffer(nl_langinfo(item),
2511 &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
f7416781 2512
5acc4454
KW
2513 LOCALE_UNLOCK;
2514
b2fee59c 2515 if (toggle) {
038d3702 2516 RESTORE_LC_NUMERIC();
b2fee59c 2517 }
f7416781
KW
2518 }
2519
ab340fff
KW
2520# else /* Use nl_langinfo_l(), avoiding both a mutex and changing the locale */
2521
5a854ab3 2522 {
b2fee59c
KW
2523 bool do_free = FALSE;
2524 locale_t cur = uselocale((locale_t) 0);
ab340fff 2525
b2fee59c
KW
2526 if (cur == LC_GLOBAL_LOCALE) {
2527 cur = duplocale(LC_GLOBAL_LOCALE);
2528 do_free = TRUE;
2529 }
ab340fff 2530
d36adde0
KW
2531# ifdef USE_LOCALE_NUMERIC
2532
b2fee59c 2533 if (toggle) {
e1aa2579
KW
2534 if (PL_underlying_numeric_obj) {
2535 cur = PL_underlying_numeric_obj;
2536 }
2537 else {
2538 cur = newlocale(LC_NUMERIC_MASK, PL_numeric_name, cur);
2539 do_free = TRUE;
2540 }
b2fee59c 2541 }
ab340fff 2542
d36adde0
KW
2543# endif
2544
628ff75a
KW
2545 /* We have to save it to a buffer, because the freelocale() just below
2546 * can invalidate the internal one */
0b6697c5
KW
2547 retval = save_to_buffer(nl_langinfo_l(item, cur),
2548 &PL_langinfo_buf, &PL_langinfo_bufsize, 0);
ee90eb2d 2549
b2fee59c
KW
2550 if (do_free) {
2551 freelocale(cur);
2552 }
5a854ab3 2553 }
ab340fff 2554
c1566110
KW
2555# endif
2556
0b6697c5 2557 if (strEQ(retval, "")) {
4e6826bf 2558 if (item == YESSTR) {
c1566110
KW
2559 return "yes";
2560 }
4e6826bf 2561 if (item == NOSTR) {
c1566110
KW
2562 return "no";
2563 }
2564 }
2565
0b6697c5 2566 return retval;
ab340fff 2567
f7416781 2568#else /* Below, emulate nl_langinfo as best we can */
43dd6b15
KW
2569
2570 {
2571
f7416781
KW
2572# ifdef HAS_LOCALECONV
2573
43dd6b15 2574 const struct lconv* lc;
628ff75a 2575 const char * temp;
038d3702 2576 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
f7416781 2577
69c5e0db
KW
2578# ifdef TS_W32_BROKEN_LOCALECONV
2579
2580 const char * save_global;
2581 const char * save_thread;
2582 int needed_size;
2583 char * ptr;
2584 char * e;
2585 char * item_start;
2586
2587# endif
f7416781
KW
2588# endif
2589# ifdef HAS_STRFTIME
2590
43dd6b15
KW
2591 struct tm tm;
2592 bool return_format = FALSE; /* Return the %format, not the value */
2593 const char * format;
f7416781
KW
2594
2595# endif
2596
43dd6b15
KW
2597 /* We copy the results to a per-thread buffer, even if not
2598 * multi-threaded. This is in part to simplify this code, and partly
2599 * because we need a buffer anyway for strftime(), and partly because a
2600 * call of localeconv() could otherwise wipe out the buffer, and the
2601 * programmer would not be expecting this, as this is a nl_langinfo()
2602 * substitute after all, so s/he might be thinking their localeconv()
2603 * is safe until another localeconv() call. */
f7416781 2604
43dd6b15
KW
2605 switch (item) {
2606 Size_t len;
f7416781 2607
8d72e74e 2608 /* This is unimplemented */
4e6826bf 2609 case ERA: /* For use with strftime() %E modifier */
f7416781 2610
43dd6b15
KW
2611 default:
2612 return "";
f7416781 2613
43dd6b15 2614 /* We use only an English set, since we don't know any more */
4e6826bf
KW
2615 case YESEXPR: return "^[+1yY]";
2616 case YESSTR: return "yes";
2617 case NOEXPR: return "^[-0nN]";
2618 case NOSTR: return "no";
2619
8d72e74e
KW
2620 case CODESET:
2621
2622# ifndef WIN32
2623
2624 /* On non-windows, this is unimplemented, in part because of
2625 * inconsistencies between vendors. The Darwin native
2626 * nl_langinfo() implementation simply looks at everything past
2627 * any dot in the name, but that doesn't work for other
2628 * vendors. Many Linux locales that don't have UTF-8 in their
2629 * names really are UTF-8, for example; z/OS locales that do
2630 * have UTF-8 in their names, aren't really UTF-8 */
2631 return "";
2632
2633# else
2634
2635 { /* But on Windows, the name does seem to be consistent, so
2636 use that. */
2637 const char * p;
2638 const char * first;
2639 Size_t offset = 0;
2640 const char * name = my_setlocale(LC_CTYPE, NULL);
2641
2642 if (isNAME_C_OR_POSIX(name)) {
2643 return "ANSI_X3.4-1968";
2644 }
2645
2646 /* Find the dot in the locale name */
2647 first = (const char *) strchr(name, '.');
2648 if (! first) {
2649 first = name;
2650 goto has_nondigit;
2651 }
2652
2653 /* Look at everything past the dot */
2654 first++;
2655 p = first;
2656
2657 while (*p) {
2658 if (! isDIGIT(*p)) {
2659 goto has_nondigit;
2660 }
2661
2662 p++;
2663 }
2664
2665 /* Here everything past the dot is a digit. Treat it as a
2666 * code page */
18503cbd 2667 retval = save_to_buffer("CP", &PL_langinfo_buf,
32a62865 2668 &PL_langinfo_bufsize, 0);
8d72e74e 2669 offset = STRLENs("CP");
f7416781 2670
8d72e74e
KW
2671 has_nondigit:
2672
2673 retval = save_to_buffer(first, &PL_langinfo_buf,
2674 &PL_langinfo_bufsize, offset);
2675 }
2676
2677 break;
2678
2679# endif
f7416781
KW
2680# ifdef HAS_LOCALECONV
2681
4e6826bf 2682 case CRNCYSTR:
f7416781 2683
43dd6b15
KW
2684 /* We don't bother with localeconv_l() because any system that
2685 * has it is likely to also have nl_langinfo() */
291a84fb 2686
69c5e0db
KW
2687 LOCALE_LOCK_V; /* Prevent interference with other threads
2688 using localeconv() */
2689
2690# ifdef TS_W32_BROKEN_LOCALECONV
2691
2692 /* This is a workaround for a Windows bug prior to VS 15.
2693 * What we do here is, while locked, switch to the global
2694 * locale so localeconv() works; then switch back just before
2695 * the unlock. This can screw things up if some thread is
2696 * already using the global locale while assuming no other is.
2697 * A different workaround would be to call GetCurrencyFormat on
2698 * a known value, and parse it; patches welcome
2699 *
2700 * We have to use LC_ALL instead of LC_MONETARY because of
2701 * another bug in Windows */
2702
2703 save_thread = savepv(my_setlocale(LC_ALL, NULL));
2704 _configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
2705 save_global= savepv(my_setlocale(LC_ALL, NULL));
2706 my_setlocale(LC_ALL, save_thread);
2707
2708# endif
5acc4454 2709
43dd6b15
KW
2710 lc = localeconv();
2711 if ( ! lc
2712 || ! lc->currency_symbol
2713 || strEQ("", lc->currency_symbol))
2714 {
69c5e0db 2715 LOCALE_UNLOCK_V;
43dd6b15
KW
2716 return "";
2717 }
f7416781 2718
43dd6b15 2719 /* Leave the first spot empty to be filled in below */
0b6697c5
KW
2720 retval = save_to_buffer(lc->currency_symbol, &PL_langinfo_buf,
2721 &PL_langinfo_bufsize, 1);
43dd6b15
KW
2722 if (lc->mon_decimal_point && strEQ(lc->mon_decimal_point, ""))
2723 { /* khw couldn't figure out how the localedef specifications
2724 would show that the $ should replace the radix; this is
2725 just a guess as to how it might work.*/
a34edee3 2726 PL_langinfo_buf[0] = '.';
43dd6b15
KW
2727 }
2728 else if (lc->p_cs_precedes) {
a34edee3 2729 PL_langinfo_buf[0] = '-';
43dd6b15
KW
2730 }
2731 else {
a34edee3 2732 PL_langinfo_buf[0] = '+';
43dd6b15 2733 }
f7416781 2734
69c5e0db
KW
2735# ifdef TS_W32_BROKEN_LOCALECONV
2736
2737 my_setlocale(LC_ALL, save_global);
2738 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
2739 my_setlocale(LC_ALL, save_thread);
2740 Safefree(save_global);
2741 Safefree(save_thread);
2742
2743# endif
2744
2745 LOCALE_UNLOCK_V;
43dd6b15 2746 break;
f7416781 2747
69c5e0db
KW
2748# ifdef TS_W32_BROKEN_LOCALECONV
2749
4e6826bf 2750 case RADIXCHAR:
69c5e0db
KW
2751
2752 /* For this, we output a known simple floating point number to
2753 * a buffer, and parse it, looking for the radix */
2754
2755 if (toggle) {
2756 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
2757 }
2758
2759 if (PL_langinfo_bufsize < 10) {
2760 PL_langinfo_bufsize = 10;
2761 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
2762 }
2763
2764 needed_size = my_snprintf(PL_langinfo_buf, PL_langinfo_bufsize,
2765 "%.1f", 1.5);
2766 if (needed_size >= (int) PL_langinfo_bufsize) {
2767 PL_langinfo_bufsize = needed_size + 1;
2768 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
2769 needed_size = my_snprintf(PL_langinfo_buf, PL_langinfo_bufsize,
2770 "%.1f", 1.5);
2771 assert(needed_size < (int) PL_langinfo_bufsize);
2772 }
2773
2774 ptr = PL_langinfo_buf;
2775 e = PL_langinfo_buf + PL_langinfo_bufsize;
2776
2777 /* Find the '1' */
2778 while (ptr < e && *ptr != '1') {
2779 ptr++;
2780 }
2781 ptr++;
2782
2783 /* Find the '5' */
2784 item_start = ptr;
2785 while (ptr < e && *ptr != '5') {
2786 ptr++;
2787 }
2788
2789 /* Everything in between is the radix string */
2790 if (ptr >= e) {
2791 PL_langinfo_buf[0] = '?';
2792 PL_langinfo_buf[1] = '\0';
2793 }
2794 else {
2795 *ptr = '\0';
2796 Move(item_start, PL_langinfo_buf, ptr - PL_langinfo_buf, char);
2797 }
2798
2799 if (toggle) {
2800 RESTORE_LC_NUMERIC();
2801 }
2802
2803 retval = PL_langinfo_buf;
2804 break;
2805
2806# else
2807
2808 case RADIXCHAR: /* No special handling needed */
2809
2810# endif
2811
4e6826bf 2812 case THOUSEP:
f7416781 2813
43dd6b15 2814 if (toggle) {
038d3702 2815 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
c0d737a8 2816 }
f7416781 2817
69c5e0db
KW
2818 LOCALE_LOCK_V; /* Prevent interference with other threads
2819 using localeconv() */
2820
2821# ifdef TS_W32_BROKEN_LOCALECONV
2822
2823 /* This should only be for the thousands separator. A
2824 * different work around would be to use GetNumberFormat on a
2825 * known value and parse the result to find the separator */
2826 save_thread = savepv(my_setlocale(LC_ALL, NULL));
2827 _configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
2828 save_global = savepv(my_setlocale(LC_ALL, NULL));
2829 my_setlocale(LC_ALL, save_thread);
2830# if 0
2831 /* This is the start of code that for broken Windows replaces
2832 * the above and below code, and instead calls
2833 * GetNumberFormat() and then would parse that to find the
2834 * thousands separator. It needs to handle UTF-16 vs -8
2835 * issues. */
2836
2837 needed_size = GetNumberFormatEx(PL_numeric_name, 0, "1234.5", NULL, PL_langinfo_buf, PL_langinfo_bufsize);
2838 DEBUG_L(PerlIO_printf(Perl_debug_log,
2839 "%s: %d: return from GetNumber, count=%d, val=%s\n",
2840 __FILE__, __LINE__, needed_size, PL_langinfo_buf));
2841
2842# endif
2843# endif
5acc4454 2844
43dd6b15
KW
2845 lc = localeconv();
2846 if (! lc) {
628ff75a 2847 temp = "";
33394adc 2848 }
43dd6b15 2849 else {
4e6826bf 2850 temp = (item == RADIXCHAR)
43dd6b15
KW
2851 ? lc->decimal_point
2852 : lc->thousands_sep;
628ff75a
KW
2853 if (! temp) {
2854 temp = "";
43dd6b15
KW
2855 }
2856 }
f7416781 2857
0b6697c5
KW
2858 retval = save_to_buffer(temp, &PL_langinfo_buf,
2859 &PL_langinfo_bufsize, 0);
f7416781 2860
69c5e0db
KW
2861# ifdef TS_W32_BROKEN_LOCALECONV
2862
2863 my_setlocale(LC_ALL, save_global);
2864 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
2865 my_setlocale(LC_ALL, save_thread);
2866 Safefree(save_global);
2867 Safefree(save_thread);
2868
2869# endif
2870
2871 LOCALE_UNLOCK_V;
5acc4454 2872
43dd6b15 2873 if (toggle) {
038d3702 2874 RESTORE_LC_NUMERIC();
43dd6b15 2875 }
f7416781 2876
43dd6b15 2877 break;
f7416781
KW
2878
2879# endif
2880# ifdef HAS_STRFTIME
2881
43dd6b15
KW
2882 /* These are defined by C89, so we assume that strftime supports
2883 * them, and so are returned unconditionally; they may not be what
2884 * the locale actually says, but should give good enough results
2885 * for someone using them as formats (as opposed to trying to parse
2886 * them to figure out what the locale says). The other format
2887 * items are actually tested to verify they work on the platform */
4e6826bf
KW
2888 case D_FMT: return "%x";
2889 case T_FMT: return "%X";
2890 case D_T_FMT: return "%c";
43dd6b15
KW
2891
2892 /* These formats are only available in later strfmtime's */
4e6826bf 2893 case ERA_D_FMT: case ERA_T_FMT: case ERA_D_T_FMT: case T_FMT_AMPM:
43dd6b15
KW
2894
2895 /* The rest can be gotten from most versions of strftime(). */
4e6826bf
KW
2896 case ABDAY_1: case ABDAY_2: case ABDAY_3:
2897 case ABDAY_4: case ABDAY_5: case ABDAY_6: case ABDAY_7:
2898 case ALT_DIGITS:
2899 case AM_STR: case PM_STR:
2900 case ABMON_1: case ABMON_2: case ABMON_3: case ABMON_4:
2901 case ABMON_5: case ABMON_6: case ABMON_7: case ABMON_8:
2902 case ABMON_9: case ABMON_10: case ABMON_11: case ABMON_12:
2903 case DAY_1: case DAY_2: case DAY_3: case DAY_4:
2904 case DAY_5: case DAY_6: case DAY_7:
2905 case MON_1: case MON_2: case MON_3: case MON_4:
2906 case MON_5: case MON_6: case MON_7: case MON_8:
2907 case MON_9: case MON_10: case MON_11: case MON_12:
43dd6b15
KW
2908
2909 LOCALE_LOCK;
2910
2911 init_tm(&tm); /* Precaution against core dumps */
2912 tm.tm_sec = 30;
2913 tm.tm_min = 30;
2914 tm.tm_hour = 6;
2915 tm.tm_year = 2017 - 1900;
2916 tm.tm_wday = 0;
2917 tm.tm_mon = 0;
2918 switch (item) {
2919 default:
2920 LOCALE_UNLOCK;
2921 Perl_croak(aTHX_
2922 "panic: %s: %d: switch case: %d problem",
2923 __FILE__, __LINE__, item);
2924 NOT_REACHED; /* NOTREACHED */
2925
4e6826bf
KW
2926 case PM_STR: tm.tm_hour = 18;
2927 case AM_STR:
43dd6b15
KW
2928 format = "%p";
2929 break;
2930
4e6826bf
KW
2931 case ABDAY_7: tm.tm_wday++;
2932 case ABDAY_6: tm.tm_wday++;
2933 case ABDAY_5: tm.tm_wday++;
2934 case ABDAY_4: tm.tm_wday++;
2935 case ABDAY_3: tm.tm_wday++;
2936 case ABDAY_2: tm.tm_wday++;
2937 case ABDAY_1:
43dd6b15
KW
2938 format = "%a";
2939 break;
2940
4e6826bf
KW
2941 case DAY_7: tm.tm_wday++;
2942 case DAY_6: tm.tm_wday++;
2943 case DAY_5: tm.tm_wday++;
2944 case DAY_4: tm.tm_wday++;
2945 case DAY_3: tm.tm_wday++;
2946 case DAY_2: tm.tm_wday++;
2947 case DAY_1:
43dd6b15
KW
2948 format = "%A";
2949 break;
2950
4e6826bf
KW
2951 case ABMON_12: tm.tm_mon++;
2952 case ABMON_11: tm.tm_mon++;
2953 case ABMON_10: tm.tm_mon++;
2954 case ABMON_9: tm.tm_mon++;
2955 case ABMON_8: tm.tm_mon++;
2956 case ABMON_7: tm.tm_mon++;
2957 case ABMON_6: tm.tm_mon++;
2958 case ABMON_5: tm.tm_mon++;
2959 case ABMON_4: tm.tm_mon++;
2960 case ABMON_3: tm.tm_mon++;
2961 case ABMON_2: tm.tm_mon++;
2962 case ABMON_1:
43dd6b15
KW
2963 format = "%b";
2964 break;
2965
4e6826bf
KW
2966 case MON_12: tm.tm_mon++;
2967 case MON_11: tm.tm_mon++;
2968 case MON_10: tm.tm_mon++;
2969 case MON_9: tm.tm_mon++;
2970 case MON_8: tm.tm_mon++;
2971 case MON_7: tm.tm_mon++;
2972 case MON_6: tm.tm_mon++;
2973 case MON_5: tm.tm_mon++;
2974 case MON_4: tm.tm_mon++;
2975 case MON_3: tm.tm_mon++;
2976 case MON_2: tm.tm_mon++;
2977 case MON_1:
43dd6b15
KW
2978 format = "%B";
2979 break;
2980
4e6826bf 2981 case T_FMT_AMPM:
43dd6b15
KW
2982 format = "%r";
2983 return_format = TRUE;
2984 break;
2985
4e6826bf 2986 case ERA_D_FMT:
43dd6b15
KW
2987 format = "%Ex";
2988 return_format = TRUE;
2989 break;
2990
4e6826bf 2991 case ERA_T_FMT:
43dd6b15
KW
2992 format = "%EX";
2993 return_format = TRUE;
2994 break;
2995
4e6826bf 2996 case ERA_D_T_FMT:
43dd6b15
KW
2997 format = "%Ec";
2998 return_format = TRUE;
2999 break;
3000
4e6826bf 3001 case ALT_DIGITS:
43dd6b15
KW
3002 tm.tm_wday = 0;
3003 format = "%Ow"; /* Find the alternate digit for 0 */
3004 break;
3005 }
f7416781 3006
43dd6b15
KW
3007 /* We can't use my_strftime() because it doesn't look at
3008 * tm_wday */
3009 while (0 == strftime(PL_langinfo_buf, PL_langinfo_bufsize,
3010 format, &tm))
3011 {
3012 /* A zero return means one of:
3013 * a) there wasn't enough space in PL_langinfo_buf
3014 * b) the format, like a plain %p, returns empty
3015 * c) it was an illegal format, though some
3016 * implementations of strftime will just return the
3017 * illegal format as a plain character sequence.
3018 *
3019 * To quickly test for case 'b)', try again but precede
3020 * the format with a plain character. If that result is
3021 * still empty, the problem is either 'a)' or 'c)' */
3022
3023 Size_t format_size = strlen(format) + 1;
3024 Size_t mod_size = format_size + 1;
3025 char * mod_format;
3026 char * temp_result;
3027
3028 Newx(mod_format, mod_size, char);
3029 Newx(temp_result, PL_langinfo_bufsize, char);
6873aa47 3030 *mod_format = ' ';
43dd6b15
KW
3031 my_strlcpy(mod_format + 1, format, mod_size);
3032 len = strftime(temp_result,
3033 PL_langinfo_bufsize,
3034 mod_format, &tm);
3035 Safefree(mod_format);
3036 Safefree(temp_result);
3037
3038 /* If 'len' is non-zero, it means that we had a case like
3039 * %p which means the current locale doesn't use a.m. or
3040 * p.m., and that is valid */
3041 if (len == 0) {
3042
3043 /* Here, still didn't work. If we get well beyond a
3044 * reasonable size, bail out to prevent an infinite
3045 * loop. */
3046
3047 if (PL_langinfo_bufsize > 100 * format_size) {
3048 *PL_langinfo_buf = '\0';
3049 }
3050 else {
3051 /* Double the buffer size to retry; Add 1 in case
3052 * original was 0, so we aren't stuck at 0. */
3053 PL_langinfo_bufsize *= 2;
3054 PL_langinfo_bufsize++;
3055 Renew(PL_langinfo_buf, PL_langinfo_bufsize, char);
3056 continue;
3057 }
3058 }
f7416781 3059
f7416781 3060 break;
43dd6b15 3061 }
f7416781 3062
43dd6b15
KW
3063 /* Here, we got a result.
3064 *
3065 * If the item is 'ALT_DIGITS', PL_langinfo_buf contains the
3066 * alternate format for wday 0. If the value is the same as
3067 * the normal 0, there isn't an alternate, so clear the buffer.
3068 * */
4e6826bf 3069 if ( item == ALT_DIGITS
43dd6b15
KW
3070 && strEQ(PL_langinfo_buf, "0"))
3071 {
3072 *PL_langinfo_buf = '\0';
3073 }
f7416781 3074
43dd6b15
KW
3075 /* ALT_DIGITS is problematic. Experiments on it showed that
3076 * strftime() did not always work properly when going from
3077 * alt-9 to alt-10. Only a few locales have this item defined,
3078 * and in all of them on Linux that khw was able to find,
3079 * nl_langinfo() merely returned the alt-0 character, possibly
3080 * doubled. Most Unicode digits are in blocks of 10
3081 * consecutive code points, so that is sufficient information
3082 * for those scripts, as we can infer alt-1, alt-2, .... But
3083 * for a Japanese locale, a CJK ideographic 0 is returned, and
3084 * the CJK digits are not in code point order, so you can't
3085 * really infer anything. The localedef for this locale did
3086 * specify the succeeding digits, so that strftime() works
3087 * properly on them, without needing to infer anything. But
3088 * the nl_langinfo() return did not give sufficient information
3089 * for the caller to understand what's going on. So until
3090 * there is evidence that it should work differently, this
3091 * returns the alt-0 string for ALT_DIGITS.
3092 *
3093 * wday was chosen because its range is all a single digit.
3094 * Things like tm_sec have two digits as the minimum: '00' */
f7416781 3095
43dd6b15 3096 LOCALE_UNLOCK;
f7416781 3097
d1b150d9
KW
3098 retval = PL_langinfo_buf;
3099
43dd6b15
KW
3100 /* If to return the format, not the value, overwrite the buffer
3101 * with it. But some strftime()s will keep the original format
3102 * if illegal, so change those to "" */
3103 if (return_format) {
3104 if (strEQ(PL_langinfo_buf, format)) {
f7416781
KW
3105 *PL_langinfo_buf = '\0';
3106 }
43dd6b15 3107 else {
0b6697c5
KW
3108 retval = save_to_buffer(format, &PL_langinfo_buf,
3109 &PL_langinfo_bufsize, 0);
f7416781
KW
3110 }
3111 }
3112
3113 break;
f7416781
KW
3114
3115# endif
3116
43dd6b15 3117 }
f7416781
KW
3118 }
3119
0b6697c5 3120 return retval;
f7416781
KW
3121
3122#endif
3123
a4f00dcc 3124}
b385bb4d 3125
98994639
HS
3126/*
3127 * Initialize locale awareness.
3128 */
3129int
3130Perl_init_i18nl10n(pTHX_ int printwarn)
3131{
0e92a118
KW
3132 /* printwarn is
3133 *
3134 * 0 if not to output warning when setup locale is bad
3135 * 1 if to output warning based on value of PERL_BADLANG
3136 * >1 if to output regardless of PERL_BADLANG
3137 *
3138 * returns
98994639 3139 * 1 = set ok or not applicable,
0e92a118
KW
3140 * 0 = fallback to a locale of lower priority
3141 * -1 = fallback to all locales failed, not even to the C locale
6b058d42
KW
3142 *
3143 * Under -DDEBUGGING, if the environment variable PERL_DEBUG_LOCALE_INIT is
3144 * set, debugging information is output.
3145 *
3146 * This looks more complicated than it is, mainly due to the #ifdefs.
3147 *
3148 * We try to set LC_ALL to the value determined by the environment. If
3149 * there is no LC_ALL on this platform, we try the individual categories we
3150 * know about. If this works, we are done.
3151 *
3152 * But if it doesn't work, we have to do something else. We search the
3153 * environment variables ourselves instead of relying on the system to do
3154 * it. We look at, in order, LC_ALL, LANG, a system default locale (if we
3155 * think there is one), and the ultimate fallback "C". This is all done in
3156 * the same loop as above to avoid duplicating code, but it makes things
7d4bcc4a
KW
3157 * more complex. The 'trial_locales' array is initialized with just one
3158 * element; it causes the behavior described in the paragraph above this to
3159 * happen. If that fails, we add elements to 'trial_locales', and do extra
3160 * loop iterations to cause the behavior described in this paragraph.
6b058d42
KW
3161 *
3162 * On Ultrix, the locale MUST come from the environment, so there is
3163 * preliminary code to set it. I (khw) am not sure that it is necessary,
3164 * and that this couldn't be folded into the loop, but barring any real
3165 * platforms to test on, it's staying as-is
3166 *
3167 * A slight complication is that in embedded Perls, the locale may already
3168 * be set-up, and we don't want to get it from the normal environment
3169 * variables. This is handled by having a special environment variable
3170 * indicate we're in this situation. We simply set setlocale's 2nd
3171 * parameter to be a NULL instead of "". That indicates to setlocale that
3172 * it is not to change anything, but to return the current value,
3173 * effectively initializing perl's db to what the locale already is.
3174 *
3175 * We play the same trick with NULL if a LC_ALL succeeds. We call
3176 * setlocale() on the individual categores with NULL to get their existing
3177 * values for our db, instead of trying to change them.
3178 * */
98994639 3179
1565c085
DM
3180 dVAR;
3181
0e92a118
KW
3182 int ok = 1;
3183
7d4bcc4a
KW
3184#ifndef USE_LOCALE
3185
3186 PERL_UNUSED_ARG(printwarn);
3187
3188#else /* USE_LOCALE */
7d4bcc4a
KW
3189# ifdef __GLIBC__
3190
175c4cf9 3191 const char * const language = savepv(PerlEnv_getenv("LANGUAGE"));
7d4bcc4a
KW
3192
3193# endif
65ebb059 3194
ccd65d51
KW
3195 /* NULL uses the existing already set up locale */
3196 const char * const setlocale_init = (PerlEnv_getenv("PERL_SKIP_LOCALE_INIT"))
3197 ? NULL
3198 : "";
c3fcd832
KW
3199 const char* trial_locales[5]; /* 5 = 1 each for "", LC_ALL, LANG, "", C */
3200 unsigned int trial_locales_count;
175c4cf9
KW
3201 const char * const lc_all = savepv(PerlEnv_getenv("LC_ALL"));
3202 const char * const lang = savepv(PerlEnv_getenv("LANG"));
98994639 3203 bool setlocale_failure = FALSE;
65ebb059 3204 unsigned int i;
175c4cf9
KW
3205
3206 /* A later getenv() could zap this, so only use here */
3207 const char * const bad_lang_use_once = PerlEnv_getenv("PERL_BADLANG");
3208
3209 const bool locwarn = (printwarn > 1
e5f10d49
KW
3210 || ( printwarn
3211 && ( ! bad_lang_use_once
22ff3130 3212 || (
e5f10d49
KW
3213 /* disallow with "" or "0" */
3214 *bad_lang_use_once
3215 && strNE("0", bad_lang_use_once)))));
ea92aad8 3216
291a84fb 3217 /* setlocale() return vals; not copied so must be looked at immediately */
8de4332b 3218 const char * sl_result[NOMINAL_LC_ALL_INDEX + 1];
291a84fb
KW
3219
3220 /* current locale for given category; should have been copied so aren't
3221 * volatile */
8de4332b 3222 const char * curlocales[NOMINAL_LC_ALL_INDEX + 1];
291a84fb 3223
7d4bcc4a
KW
3224# ifdef WIN32
3225
6bce99ee
JH
3226 /* In some systems you can find out the system default locale
3227 * and use that as the fallback locale. */
7d4bcc4a
KW
3228# define SYSTEM_DEFAULT_LOCALE
3229# endif
3230# ifdef SYSTEM_DEFAULT_LOCALE
3231
65ebb059 3232 const char *system_default_locale = NULL;
98994639 3233
7d4bcc4a 3234# endif
948523db
KW
3235
3236# ifndef DEBUGGING
3237# define DEBUG_LOCALE_INIT(a,b,c)
3238# else
7d4bcc4a 3239
8298454c 3240 DEBUG_INITIALIZATION_set(cBOOL(PerlEnv_getenv("PERL_DEBUG_LOCALE_INIT")));
7d4bcc4a
KW
3241
3242# define DEBUG_LOCALE_INIT(category, locale, result) \
2fcc0ca9
KW
3243 STMT_START { \
3244 if (debug_initialization) { \
3245 PerlIO_printf(Perl_debug_log, \
3246 "%s:%d: %s\n", \
3247 __FILE__, __LINE__, \
a4f00dcc 3248 setlocale_debug_string(category, \
2fcc0ca9
KW
3249 locale, \
3250 result)); \
3251 } \
3252 } STMT_END
2fcc0ca9 3253
948523db
KW
3254/* Make sure the parallel arrays are properly set up */
3255# ifdef USE_LOCALE_NUMERIC
3256 assert(categories[LC_NUMERIC_INDEX] == LC_NUMERIC);
3257 assert(strEQ(category_names[LC_NUMERIC_INDEX], "LC_NUMERIC"));
e9bc6d6b
KW
3258# ifdef USE_POSIX_2008_LOCALE
3259 assert(category_masks[LC_NUMERIC_INDEX] == LC_NUMERIC_MASK);
3260# endif
948523db
KW
3261# endif
3262# ifdef USE_LOCALE_CTYPE
3263 assert(categories[LC_CTYPE_INDEX] == LC_CTYPE);
3264 assert(strEQ(category_names[LC_CTYPE_INDEX], "LC_CTYPE"));
e9bc6d6b
KW
3265# ifdef USE_POSIX_2008_LOCALE
3266 assert(category_masks[LC_CTYPE_INDEX] == LC_CTYPE_MASK);
3267# endif
948523db
KW
3268# endif
3269# ifdef USE_LOCALE_COLLATE
3270 assert(categories[LC_COLLATE_INDEX] == LC_COLLATE);
3271 assert(strEQ(category_names[LC_COLLATE_INDEX], "LC_COLLATE"));
e9bc6d6b
KW
3272# ifdef USE_POSIX_2008_LOCALE
3273 assert(category_masks[LC_COLLATE_INDEX] == LC_COLLATE_MASK);
3274# endif
948523db
KW
3275# endif
3276# ifdef USE_LOCALE_TIME
3277 assert(categories[LC_TIME_INDEX] == LC_TIME);
3278 assert(strEQ(category_names[LC_TIME_INDEX], "LC_TIME"));
e9bc6d6b
KW
3279# ifdef USE_POSIX_2008_LOCALE
3280 assert(category_masks[LC_TIME_INDEX] == LC_TIME_MASK);
3281# endif
948523db
KW
3282# endif
3283# ifdef USE_LOCALE_MESSAGES
3284 assert(categories[LC_MESSAGES_INDEX] == LC_MESSAGES);
3285 assert(strEQ(category_names[LC_MESSAGES_INDEX], "LC_MESSAGES"));
e9bc6d6b
KW
3286# ifdef USE_POSIX_2008_LOCALE
3287 assert(category_masks[LC_MESSAGES_INDEX] == LC_MESSAGES_MASK);
3288# endif
948523db
KW
3289# endif
3290# ifdef USE_LOCALE_MONETARY
3291 assert(categories[LC_MONETARY_INDEX] == LC_MONETARY);
3292 assert(strEQ(category_names[LC_MONETARY_INDEX], "LC_MONETARY"));
e9bc6d6b
KW
3293# ifdef USE_POSIX_2008_LOCALE
3294 assert(category_masks[LC_MONETARY_INDEX] == LC_MONETARY_MASK);
3295# endif
948523db 3296# endif
9821811f
KW
3297# ifdef USE_LOCALE_ADDRESS
3298 assert(categories[LC_ADDRESS_INDEX] == LC_ADDRESS);
3299 assert(strEQ(category_names[LC_ADDRESS_INDEX], "LC_ADDRESS"));
e9bc6d6b
KW
3300# ifdef USE_POSIX_2008_LOCALE
3301 assert(category_masks[LC_ADDRESS_INDEX] == LC_ADDRESS_MASK);
3302# endif
9821811f
KW
3303# endif
3304# ifdef USE_LOCALE_IDENTIFICATION
3305 assert(categories[LC_IDENTIFICATION_INDEX] == LC_IDENTIFICATION);
3306 assert(strEQ(category_names[LC_IDENTIFICATION_INDEX], "LC_IDENTIFICATION"));
e9bc6d6b
KW
3307# ifdef USE_POSIX_2008_LOCALE
3308 assert(category_masks[LC_IDENTIFICATION_INDEX] == LC_IDENTIFICATION_MASK);
3309# endif
9821811f
KW
3310# endif
3311# ifdef USE_LOCALE_MEASUREMENT
3312 assert(categories[LC_MEASUREMENT_INDEX] == LC_MEASUREMENT);
3313 assert(strEQ(category_names[LC_MEASUREMENT_INDEX], "LC_MEASUREMENT"));
e9bc6d6b
KW
3314# ifdef USE_POSIX_2008_LOCALE
3315 assert(category_masks[LC_MEASUREMENT_INDEX] == LC_MEASUREMENT_MASK);
3316# endif
9821811f
KW
3317# endif
3318# ifdef USE_LOCALE_PAPER
3319 assert(categories[LC_PAPER_INDEX] == LC_PAPER);
3320 assert(strEQ(category_names[LC_PAPER_INDEX], "LC_PAPER"));
e9bc6d6b
KW
3321# ifdef USE_POSIX_2008_LOCALE
3322 assert(category_masks[LC_PAPER_INDEX] == LC_PAPER_MASK);
3323# endif
9821811f
KW
3324# endif
3325# ifdef USE_LOCALE_TELEPHONE
3326 assert(categories[LC_TELEPHONE_INDEX] == LC_TELEPHONE);
3327 assert(strEQ(category_names[LC_TELEPHONE_INDEX], "LC_TELEPHONE"));
e9bc6d6b
KW
3328# ifdef USE_POSIX_2008_LOCALE
3329 assert(category_masks[LC_TELEPHONE_INDEX] == LC_TELEPHONE_MASK);
3330# endif
9821811f 3331# endif
948523db
KW
3332# ifdef LC_ALL
3333 assert(categories[LC_ALL_INDEX] == LC_ALL);
3334 assert(strEQ(category_names[LC_ALL_INDEX], "LC_ALL"));
3335 assert(NOMINAL_LC_ALL_INDEX == LC_ALL_INDEX);
e9bc6d6b
KW
3336# ifdef USE_POSIX_2008_LOCALE
3337 assert(category_masks[LC_ALL_INDEX] == LC_ALL_MASK);
3338# endif
948523db
KW
3339# endif
3340# endif /* DEBUGGING */
47280b20
KW
3341
3342 /* Initialize the cache of the program's UTF-8ness for the always known
3343 * locales C and POSIX */
3344 my_strlcpy(PL_locale_utf8ness, C_and_POSIX_utf8ness,
3345 sizeof(PL_locale_utf8ness));
3346
e9bc6d6b
KW
3347# ifdef USE_THREAD_SAFE_LOCALE
3348# ifdef WIN32
3349
3350 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
3351
3352# endif
3353# endif
39e69e77 3354# ifdef USE_POSIX_2008_LOCALE
e9bc6d6b
KW
3355
3356 PL_C_locale_obj = newlocale(LC_ALL_MASK, "C", (locale_t) 0);
3357 if (! PL_C_locale_obj) {
3358 Perl_croak_nocontext(
3359 "panic: Cannot create POSIX 2008 C locale object; errno=%d", errno);
3360 }
3361 if (DEBUG_Lv_TEST || debug_initialization) {
3362 PerlIO_printf(Perl_debug_log, "%s:%d: created C object %p\n", __FILE__, __LINE__, PL_C_locale_obj);
3363 }
3364
3365# endif
3366
78f7c09f
KW
3367# ifdef USE_LOCALE_NUMERIC
3368
3ca88433
KW
3369 PL_numeric_radix_sv = newSVpvs(".");
3370
78f7c09f
KW
3371# endif
3372
e9bc6d6b
KW
3373# if defined(USE_POSIX_2008_LOCALE) && ! defined(HAS_QUERYLOCALE)
3374
3375 /* Initialize our records. If we have POSIX 2008, we have LC_ALL */
3376 do_setlocale_c(LC_ALL, my_setlocale(LC_ALL, NULL));
3377
3378# endif
b56c4436 3379# ifdef LOCALE_ENVIRON_REQUIRED
98994639
HS
3380
3381 /*
3382 * Ultrix setlocale(..., "") fails if there are no environment
3383 * variables from which to get a locale name.
3384 */
3385
b56c4436
KW
3386# ifndef LC_ALL
3387# error Ultrix without LC_ALL not implemented
3388# else
7d4bcc4a 3389
b56c4436
KW
3390 {
3391 bool done = FALSE;
ea92aad8
KW
3392 if (lang) {
3393 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, setlocale_init);
3394 DEBUG_LOCALE_INIT(LC_ALL, setlocale_init, sl_result[LC_ALL_INDEX]);
3395 if (sl_result[LC_ALL_INDEX])
3396 done = TRUE;
3397 else
e5f10d49 3398 setlocale_failure = TRUE;
ea92aad8
KW
3399 }
3400 if (! setlocale_failure) {
3401 const char * locale_param;
3402 for (i = 0; i < LC_ALL_INDEX; i++) {
3403 locale_param = (! done && (lang || PerlEnv_getenv(category_names[i])))
3404 ? setlocale_init
3405 : NULL;
3406 sl_result[i] = do_setlocale_r(categories[i], locale_param);
3407 if (! sl_result[i]) {
3408 setlocale_failure = TRUE;
3409 }
3410 DEBUG_LOCALE_INIT(categories[i], locale_param, sl_result[i]);
e5f10d49 3411 }
c835d6be 3412 }
7d4bcc4a
KW
3413 }
3414
3415# endif /* LC_ALL */
e5f10d49 3416# endif /* LOCALE_ENVIRON_REQUIRED */
98994639 3417
65ebb059 3418 /* We try each locale in the list until we get one that works, or exhaust
20a240df
KW
3419 * the list. Normally the loop is executed just once. But if setting the
3420 * locale fails, inside the loop we add fallback trials to the array and so
3421 * will execute the loop multiple times */
c3fcd832
KW
3422 trial_locales[0] = setlocale_init;
3423 trial_locales_count = 1;
7d4bcc4a 3424
65ebb059
KW
3425 for (i= 0; i < trial_locales_count; i++) {
3426 const char * trial_locale = trial_locales[i];
3427
3428 if (i > 0) {
3429
3430 /* XXX This is to preserve old behavior for LOCALE_ENVIRON_REQUIRED
3431 * when i==0, but I (khw) don't think that behavior makes much
3432 * sense */
3433 setlocale_failure = FALSE;
3434
7d4bcc4a 3435# ifdef SYSTEM_DEFAULT_LOCALE
291a84fb 3436# ifdef WIN32 /* Note that assumes Win32 has LC_ALL */
7d4bcc4a 3437
65ebb059
KW
3438 /* On Windows machines, an entry of "" after the 0th means to use
3439 * the system default locale, which we now proceed to get. */
3440 if (strEQ(trial_locale, "")) {
3441 unsigned int j;
3442
3443 /* Note that this may change the locale, but we are going to do
3444 * that anyway just below */
837ce802 3445 system_default_locale = do_setlocale_c(LC_ALL, "");
5d1187d1 3446 DEBUG_LOCALE_INIT(LC_ALL, "", system_default_locale);
65ebb059 3447
7d4bcc4a 3448 /* Skip if invalid or if it's already on the list of locales to
65ebb059
KW
3449 * try */
3450 if (! system_default_locale) {
3451 goto next_iteration;
3452 }
3453 for (j = 0; j < trial_locales_count; j++) {
3454 if (strEQ(system_default_locale, trial_locales[j])) {
3455 goto next_iteration;
3456 }
3457 }
3458
3459 trial_locale = system_default_locale;
3460 }
ec0202b5
KW
3461# else
3462# error SYSTEM_DEFAULT_LOCALE only implemented for Win32
3463# endif
7d4bcc4a 3464# endif /* SYSTEM_DEFAULT_LOCALE */
291a84fb
KW
3465
3466 } /* For i > 0 */
65ebb059 3467
7d4bcc4a
KW
3468# ifdef LC_ALL
3469
948523db
KW
3470 sl_result[LC_ALL_INDEX] = do_setlocale_c(LC_ALL, trial_locale);
3471 DEBUG_LOCALE_INIT(LC_ALL, trial_locale, sl_result[LC_ALL_INDEX]);
3472 if (! sl_result[LC_ALL_INDEX]) {
49c85077 3473 setlocale_failure = TRUE;
7cd8b568
KW
3474 }
3475 else {
3476 /* Since LC_ALL succeeded, it should have changed all the other
3477 * categories it can to its value; so we massage things so that the
3478 * setlocales below just return their category's current values.
3479 * This adequately handles the case in NetBSD where LC_COLLATE may
3480 * not be defined for a locale, and setting it individually will
7d4bcc4a 3481 * fail, whereas setting LC_ALL succeeds, leaving LC_COLLATE set to
7cd8b568
KW
3482 * the POSIX locale. */
3483 trial_locale = NULL;
3484 }
7d4bcc4a
KW
3485
3486# endif /* LC_ALL */
98994639 3487
e5f10d49
KW
3488 if (! setlocale_failure) {
3489 unsigned int j;
3490 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3491 curlocales[j]
3492 = savepv(do_setlocale_r(categories[j], trial_locale));
3493 if (! curlocales[j]) {
3494 setlocale_failure = TRUE;
3495 }
3496 DEBUG_LOCALE_INIT(categories[j], trial_locale, curlocales[j]);
3497 }
c835d6be 3498
e5f10d49
KW
3499 if (! setlocale_failure) { /* All succeeded */
3500 break; /* Exit trial_locales loop */
49c85077 3501 }
65ebb059 3502 }
98994639 3503
49c85077
KW
3504 /* Here, something failed; will need to try a fallback. */
3505 ok = 0;
65ebb059 3506
49c85077
KW
3507 if (i == 0) {
3508 unsigned int j;
98994639 3509
65ebb059 3510 if (locwarn) { /* Output failure info only on the first one */
7d4bcc4a
KW
3511
3512# ifdef LC_ALL
98994639 3513
49c85077
KW
3514 PerlIO_printf(Perl_error_log,
3515 "perl: warning: Setting locale failed.\n");
98994639 3516
7d4bcc4a 3517# else /* !LC_ALL */
98994639 3518
49c85077
KW
3519 PerlIO_printf(Perl_error_log,
3520 "perl: warning: Setting locale failed for the categories:\n\t");
7d4bcc4a 3521
e5f10d49
KW
3522 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3523 if (! curlocales[j]) {
3524 PerlIO_printf(Perl_error_log, category_names[j]);
3525 }
3526 else {
3527 Safefree(curlocales[j]);
3528 }
3529 }
7d4bcc4a 3530
7d4bcc4a 3531# endif /* LC_ALL */
98994639 3532
49c85077
KW
3533 PerlIO_printf(Perl_error_log,
3534 "perl: warning: Please check that your locale settings:\n");
98994639 3535
7d4bcc4a
KW
3536# ifdef __GLIBC__
3537
49c85077
KW
3538 PerlIO_printf(Perl_error_log,
3539 "\tLANGUAGE = %c%s%c,\n",
3540 language ? '"' : '(',
3541 language ? language : "unset",
3542 language ? '"' : ')');
7d4bcc4a 3543# endif
98994639 3544
49c85077
KW
3545 PerlIO_printf(Perl_error_log,
3546 "\tLC_ALL = %c%s%c,\n",
3547 lc_all ? '"' : '(',
3548 lc_all ? lc_all : "unset",
3549 lc_all ? '"' : ')');
98994639 3550
7d4bcc4a
KW
3551# if defined(USE_ENVIRON_ARRAY)
3552
49c85077 3553 {
cd999af9 3554 char **e;
d5e32b93
KW
3555
3556 /* Look through the environment for any variables of the
3557 * form qr/ ^ LC_ [A-Z]+ = /x, except LC_ALL which was
3558 * already handled above. These are assumed to be locale
3559 * settings. Output them and their values. */
cd999af9 3560 for (e = environ; *e; e++) {
d5e32b93
KW
3561 const STRLEN prefix_len = sizeof("LC_") - 1;
3562 STRLEN uppers_len;
3563
cd999af9 3564 if ( strBEGINs(*e, "LC_")
c8b388b0 3565 && ! strBEGINs(*e, "LC_ALL=")
d5e32b93
KW
3566 && (uppers_len = strspn(*e + prefix_len,
3567 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
3568 && ((*e)[prefix_len + uppers_len] == '='))
cd999af9
KW
3569 {
3570 PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n",
d5e32b93
KW
3571 (int) (prefix_len + uppers_len), *e,
3572 *e + prefix_len + uppers_len + 1);
cd999af9
KW
3573 }
3574 }
49c85077 3575 }
7d4bcc4a
KW
3576
3577# else
3578
49c85077
KW
3579 PerlIO_printf(Perl_error_log,
3580 "\t(possibly more locale environment variables)\n");
7d4bcc4a
KW
3581
3582# endif
98994639 3583
49c85077
KW
3584 PerlIO_printf(Perl_error_log,
3585 "\tLANG = %c%s%c\n",
3586 lang ? '"' : '(',
3587 lang ? lang : "unset",
3588 lang ? '"' : ')');
98994639 3589
49c85077
KW
3590 PerlIO_printf(Perl_error_log,
3591 " are supported and installed on your system.\n");
3592 }
98994639 3593
65ebb059 3594 /* Calculate what fallback locales to try. We have avoided this
f6bab5f6 3595 * until we have to, because failure is quite unlikely. This will
65ebb059
KW
3596 * usually change the upper bound of the loop we are in.
3597 *
3598 * Since the system's default way of setting the locale has not
3599 * found one that works, We use Perl's defined ordering: LC_ALL,
3600 * LANG, and the C locale. We don't try the same locale twice, so
3601 * don't add to the list if already there. (On POSIX systems, the
3602 * LC_ALL element will likely be a repeat of the 0th element "",
6b058d42
KW
3603 * but there's no harm done by doing it explicitly.
3604 *
3605 * Note that this tries the LC_ALL environment variable even on
3606 * systems which have no LC_ALL locale setting. This may or may
3607 * not have been originally intentional, but there's no real need
3608 * to change the behavior. */
65ebb059
KW
3609 if (lc_all) {
3610 for (j = 0; j < trial_locales_count; j++) {
3611 if (strEQ(lc_all, trial_locales[j])) {
3612 goto done_lc_all;
3613 }
3614 }
3615 trial_locales[trial_locales_count++] = lc_all;
3616 }
3617 done_lc_all:
98994639 3618
65ebb059
KW
3619 if (lang) {
3620 for (j = 0; j < trial_locales_count; j++) {
3621 if (strEQ(lang, trial_locales[j])) {
3622 goto done_lang;
3623 }
3624 }
3625 trial_locales[trial_locales_count++] = lang;
3626 }
3627 done_lang:
3628
7d4bcc4a
KW
3629# if defined(WIN32) && defined(LC_ALL)
3630
65ebb059
KW
3631 /* For Windows, we also try the system default locale before "C".
3632 * (If there exists a Windows without LC_ALL we skip this because
3633 * it gets too complicated. For those, the "C" is the next
3634 * fallback possibility). The "" is the same as the 0th element of
3635 * the array, but the code at the loop above knows to treat it
3636 * differently when not the 0th */
3637 trial_locales[trial_locales_count++] = "";
7d4bcc4a
KW
3638
3639# endif
65ebb059
KW
3640
3641 for (j = 0; j < trial_locales_count; j++) {
3642 if (strEQ("C", trial_locales[j])) {
3643 goto done_C;
3644 }
3645 }
3646 trial_locales[trial_locales_count++] = "C";
98994639 3647
65ebb059
KW
3648 done_C: ;
3649 } /* end of first time through the loop */
98994639 3650
7d4bcc4a
KW
3651# ifdef WIN32
3652
65ebb059 3653 next_iteration: ;
7d4bcc4a
KW
3654
3655# endif
65ebb059
KW
3656
3657 } /* end of looping through the trial locales */
3658
3659 if (ok < 1) { /* If we tried to fallback */
3660 const char* msg;
3661 if (! setlocale_failure) { /* fallback succeeded */
3662 msg = "Falling back to";
3663 }
3664 else { /* fallback failed */
e5f10d49 3665 unsigned int j;
98994639 3666
65ebb059
KW
3667 /* We dropped off the end of the loop, so have to decrement i to
3668 * get back to the value the last time through */
3669 i--;
98994639 3670
65ebb059
KW
3671 ok = -1;
3672 msg = "Failed to fall back to";
3673
3674 /* To continue, we should use whatever values we've got */
7d4bcc4a 3675
e5f10d49
KW
3676 for (j = 0; j < NOMINAL_LC_ALL_INDEX; j++) {
3677 Safefree(curlocales[j]);
3678 curlocales[j] = savepv(do_setlocale_r(categories[j], NULL));
3679 DEBUG_LOCALE_INIT(categories[j], NULL, curlocales[j]);
3680 }
65ebb059
KW
3681 }
3682
3683 if (locwarn) {
3684 const char * description;
3685 const char * name = "";
3686 if (strEQ(trial_locales[i], "C")) {
3687 description = "the standard locale";
3688 name = "C";
3689 }
7d4bcc4a
KW
3690
3691# ifdef SYSTEM_DEFAULT_LOCALE
3692
65ebb059
KW
3693 else if (strEQ(trial_locales[i], "")) {
3694 description = "the system default locale";
3695 if (system_default_locale) {
3696 name = system_default_locale;
3697 }
3698 }
7d4bcc4a
KW
3699
3700# endif /* SYSTEM_DEFAULT_LOCALE */
3701
65ebb059
KW
3702 else {
3703 description = "a fallback locale";
3704 name = trial_locales[i];
3705 }
3706 if (name && strNE(name, "")) {
3707 PerlIO_printf(Perl_error_log,
3708 "perl: warning: %s %s (\"%s\").\n", msg, description, name);
3709 }
3710 else {
3711 PerlIO_printf(Perl_error_log,
3712 "perl: warning: %s %s.\n", msg, description);
3713 }
3714 }
3715 } /* End of tried to fallback */
98994639 3716
e5f10d49
KW
3717 /* Done with finding the locales; update our records */
3718
7d4bcc4a
KW
3719# ifdef USE_LOCALE_CTYPE
3720
948523db 3721 new_ctype(curlocales[LC_CTYPE_INDEX]);
98994639 3722
e5f10d49 3723# endif
7d4bcc4a
KW
3724# ifdef USE_LOCALE_COLLATE
3725
948523db 3726 new_collate(curlocales[LC_COLLATE_INDEX]);
98994639 3727
e5f10d49 3728# endif
7d4bcc4a
KW
3729# ifdef USE_LOCALE_NUMERIC
3730
948523db 3731 new_numeric(curlocales[LC_NUMERIC_INDEX]);
e5f10d49
KW
3732
3733# endif
3734
948523db 3735 for (i = 0; i < NOMINAL_LC_ALL_INDEX; i++) {
47280b20 3736
e9bc6d6b 3737# if defined(USE_ITHREADS) && ! defined(USE_THREAD_SAFE_LOCALE)
47280b20
KW
3738
3739 /* This caches whether each category's locale is UTF-8 or not. This
3740 * may involve changing the locale. It is ok to do this at
e9bc6d6b
KW
3741 * initialization time before any threads have started, but not later
3742 * unless thread-safe operations are used.
47280b20
KW
3743 * Caching means that if the program heeds our dictate not to change
3744 * locales in threaded applications, this data will remain valid, and
9de6fe47
KW
3745 * it may get queried without having to change locales. If the
3746 * environment is such that all categories have the same locale, this
3747 * isn't needed, as the code will not change the locale; but this
3748 * handles the uncommon case where the environment has disparate
3749 * locales for the categories */
47280b20
KW
3750 (void) _is_cur_LC_category_utf8(categories[i]);
3751
3752# endif
3753
e5f10d49
KW
3754 Safefree(curlocales[i]);
3755 }
b310b053 3756
7d4bcc4a
KW
3757# if defined(USE_PERLIO) && defined(USE_LOCALE_CTYPE)
3758
49c85077 3759 /* Set PL_utf8locale to TRUE if using PerlIO _and_ the current LC_CTYPE
50bf02bd
KW
3760 * locale is UTF-8. The call to new_ctype() just above has already
3761 * calculated the latter value and saved it in PL_in_utf8_CTYPE_locale. If
3762 * both PL_utf8locale and PL_unicode (set by -C or by $ENV{PERL_UNICODE})
3763 * are true, perl.c:S_parse_body() will turn on the PerlIO :utf8 layer on
3764 * STDIN, STDOUT, STDERR, _and_ the default open discipline. */
3765 PL_utf8locale = PL_in_utf8_CTYPE_locale;
49c85077 3766
a05d7ebb 3767 /* Set PL_unicode to $ENV{PERL_UNICODE} if using PerlIO.
fde18df1
JH
3768 This is an alternative to using the -C command line switch
3769 (the -C if present will override this). */
3770 {
dd374669 3771 const char *p = PerlEnv_getenv("PERL_UNICODE");
a05d7ebb 3772 PL_unicode = p ? parse_unicode_opts(&p) : 0;
5a22a2bb
NC
3773 if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG)
3774 PL_utf8cache = -1;
b310b053
JH
3775 }
3776
7d4bcc4a 3777# endif
7d4bcc4a
KW
3778# ifdef __GLIBC__
3779
175c4cf9 3780 Safefree(language);
7d4bcc4a
KW
3781
3782# endif
175c4cf9
KW
3783
3784 Safefree(lc_all);
3785 Safefree(lang);
3786
e3305790 3787#endif /* USE_LOCALE */
2fcc0ca9 3788#ifdef DEBUGGING
7d4bcc4a 3789
2fcc0ca9 3790 /* So won't continue to output stuff */
27cdc72e 3791 DEBUG_INITIALIZATION_set(FALSE);
7d4bcc4a 3792
2fcc0ca9
KW
3793#endif
3794
98994639
HS
3795 return ok;
3796}
3797
98994639
HS
3798#ifdef USE_LOCALE_COLLATE
3799
a4a439fb 3800char *
a4a439fb
KW
3801Perl__mem_collxfrm(pTHX_ const char *input_string,
3802 STRLEN len, /* Length of 'input_string' */
3803 STRLEN *xlen, /* Set to length of returned string
3804 (not including the collation index
3805 prefix) */
3806 bool utf8 /* Is the input in UTF-8? */
6696cfa7 3807 )
98994639 3808{
a4a439fb
KW
3809
3810 /* _mem_collxfrm() is a bit like strxfrm() but with two important
3811 * differences. First, it handles embedded NULs. Second, it allocates a bit
3812 * more memory than needed for the transformed data itself. The real
55e5378d 3813 * transformed data begins at offset COLLXFRM_HDR_LEN. *xlen is set to
a4a439fb
KW
3814 * the length of that, and doesn't include the collation index size.
3815 * Please see sv_collxfrm() to see how this is used. */
3816
55e5378d
KW
3817#define COLLXFRM_HDR_LEN sizeof(PL_collation_ix)
3818
6696cfa7
KW
3819 char * s = (char *) input_string;
3820 STRLEN s_strlen = strlen(input_string);
79f120c8 3821 char *xbuf = NULL;
55e5378d 3822 STRLEN xAlloc; /* xalloc is a reserved word in VC */
17f41037 3823 STRLEN length_in_chars;
c664130f 3824 bool first_time = TRUE; /* Cleared after first loop iteration */
98994639 3825
a4a439fb
KW
3826 PERL_ARGS_ASSERT__MEM_COLLXFRM;
3827
3828 /* Must be NUL-terminated */
3829 assert(*(input_string + len) == '\0');
7918f24d 3830
79f120c8
KW
3831 /* If this locale has defective collation, skip */
3832 if (PL_collxfrm_base == 0 && PL_collxfrm_mult == 0) {
c7202dee
KW
3833 DEBUG_L(PerlIO_printf(Perl_debug_log,
3834 "_mem_collxfrm: locale's collation is defective\n"));
79f120c8
KW
3835 goto bad;
3836 }
3837
6696cfa7
KW
3838 /* Replace any embedded NULs with the control that sorts before any others.
3839 * This will give as good as possible results on strings that don't
3840 * otherwise contain that character, but otherwise there may be
3841 * less-than-perfect results with that character and NUL. This is
fdc080f3 3842 * unavoidable unless we replace strxfrm with our own implementation. */
fd43f63c
KW
3843 if (UNLIKELY(s_strlen < len)) { /* Only execute if there is an embedded
3844 NUL */
6696cfa7
KW
3845 char * e = s + len;
3846 char * sans_nuls;
fdc080f3 3847 STRLEN sans_nuls_len;
94762aa0 3848 int try_non_controls;
afc4976f
KW
3849 char this_replacement_char[] = "?\0"; /* Room for a two-byte string,
3850 making sure 2nd byte is NUL.
3851 */
3852 STRLEN this_replacement_len;
3853
1e4c9676
KW
3854 /* If we don't know what non-NUL control character sorts lowest for
3855 * this locale, find it */
f28f4d2a 3856 if (PL_strxfrm_NUL_replacement == '\0') {
6696cfa7 3857 int j;
afc4976f 3858 char * cur_min_x = NULL; /* The min_char's xfrm, (except it also
6696cfa7
KW
3859 includes the collation index
3860 prefixed. */
3861
91c0e2e0 3862 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "Looking to replace NUL\n"));
94762aa0
KW
3863
3864 /* Unlikely, but it may be that no control will work to replace
1e4c9676
KW
3865 * NUL, in which case we instead look for any character. Controls
3866 * are preferred because collation order is, in general, context
3867 * sensitive, with adjoining characters affecting the order, and
3868 * controls are less likely to have such interactions, allowing the
3869 * NUL-replacement to stand on its own. (Another way to look at it
3870 * is to imagine what would happen if the NUL were replaced by a
3871 * combining character; it wouldn't work out all that well.) */
94762aa0
KW
3872 for (try_non_controls = 0;
3873 try_non_controls < 2;
3874 try_non_controls++)
3875 {
d4ff9586
KW
3876 /* Look through all legal code points (NUL isn't) */
3877 for (j = 1; j < 256; j++) {
3878 char * x; /* j's xfrm plus collation index */
3879 STRLEN x_len; /* length of 'x' */
3880 STRLEN trial_len = 1;
736a4fed 3881 char cur_source[] = { '\0', '\0' };
d4ff9586 3882
736a4fed
KW
3883 /* Skip non-controls the first time through the loop. The
3884 * controls in a UTF-8 locale are the L1 ones */
afc4976f
KW
3885 if (! try_non_controls && (PL_in_utf8_COLLATE_locale)
3886 ? ! isCNTRL_L1(j)
3887 : ! isCNTRL_LC(j))
3888 {
d4ff9586 3889 continue;
6696cfa7 3890 }
6696cfa7 3891
736a4fed
KW
3892 /* Create a 1-char string of the current code point */
3893 cur_source[0] = (char) j;
3894
d4ff9586
KW
3895 /* Then transform it */
3896 x = _mem_collxfrm(cur_source, trial_len, &x_len,
afc4976f 3897 0 /* The string is not in UTF-8 */);
6696cfa7 3898
1e4c9676 3899 /* Ignore any character that didn't successfully transform.
d4ff9586
KW
3900 * */
3901 if (! x) {
3902 continue;
3903 }
6696cfa7 3904
d4ff9586
KW
3905 /* If this character's transformation is lower than
3906 * the current lowest, this one becomes the lowest */
3907 if ( cur_min_x == NULL
3908 || strLT(x + COLLXFRM_HDR_LEN,
3909 cur_min_x + COLLXFRM_HDR_LEN))
3910 {
f28f4d2a 3911 PL_strxfrm_NUL_replacement = j;
d4ff9586 3912 cur_min_x = x;
d4ff9586
KW
3913 }
3914 else {
3915 Safefree(x);
3916 }
1e4c9676 3917 } /* end of loop through all 255 characters */
6696cfa7 3918
1e4c9676 3919 /* Stop looking if found */
94762aa0
KW
3920 if (cur_min_x) {
3921 break;
3922 }
3923
3924 /* Unlikely, but possible, if there aren't any controls that
3925 * work in the locale, repeat the loop, looking for any
3926 * character that works */
3927 DEBUG_L(PerlIO_printf(Perl_debug_log,
3928 "_mem_collxfrm: No control worked. Trying non-controls\n"));
1e4c9676 3929 } /* End of loop to try first the controls, then any char */
6696cfa7 3930
94762aa0
KW
3931 if (! cur_min_x) {
3932 DEBUG_L(PerlIO_printf(Perl_debug_log,
3933 "_mem_collxfrm: Couldn't find any character to replace"
3934 " embedded NULs in locale %s with", PL_collation_name));
3935 goto bad;
58eebef2
KW
3936 }
3937
94762aa0
KW
3938 DEBUG_L(PerlIO_printf(Perl_debug_log,
3939 "_mem_collxfrm: Replacing embedded NULs in locale %s with "
f28f4d2a 3940 "0x%02X\n", PL_collation_name, PL_strxfrm_NUL_replacement));
94762aa0 3941
6696cfa7 3942 Safefree(cur_min_x);
1e4c9676 3943 } /* End of determining the character that is to replace NULs */
afc4976f
KW
3944
3945 /* If the replacement is variant under UTF-8, it must match the
291a84fb 3946 * UTF8-ness of the original */
f28f4d2a
KW
3947 if ( ! UVCHR_IS_INVARIANT(PL_strxfrm_NUL_replacement) && utf8) {
3948 this_replacement_char[0] =
3949 UTF8_EIGHT_BIT_HI(PL_strxfrm_NUL_replacement);
3950 this_replacement_char[1] =
3951 UTF8_EIGHT_BIT_LO(PL_strxfrm_NUL_replacement);
afc4976f
KW
3952 this_replacement_len = 2;
3953 }
3954 else {
f28f4d2a 3955 this_replacement_char[0] = PL_strxfrm_NUL_replacement;
afc4976f
KW
3956 /* this_replacement_char[1] = '\0' was done at initialization */
3957 this_replacement_len = 1;
6696cfa7
KW
3958 }
3959
3960 /* The worst case length for the replaced string would be if every
3961 * character in it is NUL. Multiply that by the length of each
3962 * replacement, and allow for a trailing NUL */
afc4976f 3963 sans_nuls_len = (len * this_replacement_len) + 1;
fdc080f3 3964 Newx(sans_nuls, sans_nuls_len, char);
6696cfa7
KW
3965 *sans_nuls = '\0';
3966
6696cfa7
KW
3967 /* Replace each NUL with the lowest collating control. Loop until have
3968 * exhausted all the NULs */
3969 while (s + s_strlen < e) {
6069d6c5 3970 my_strlcat(sans_nuls, s, sans_nuls_len);
6696cfa7
KW
3971
3972 /* Do the actual replacement */
6069d6c5 3973 my_strlcat(sans_nuls, this_replacement_char, sans_nuls_len);
6696cfa7
KW
3974
3975 /* Move past the input NUL */
3976 s += s_strlen + 1;
3977 s_strlen = strlen(s);
3978 }
3979
3980 /* And add anything that trails the final NUL */
6069d6c5 3981 my_strlcat(sans_nuls, s, sans_nuls_len);
6696cfa7
KW
3982
3983 /* Switch so below we transform this modified string */
3984 s = sans_nuls;
3985 len = strlen(s);
1e4c9676 3986 } /* End of replacing NULs */
6696cfa7 3987
a4a439fb
KW
3988 /* Make sure the UTF8ness of the string and locale match */
3989 if (utf8 != PL_in_utf8_COLLATE_locale) {
9de6fe47 3990 /* XXX convert above Unicode to 10FFFF? */
a4a439fb
KW
3991 const char * const t = s; /* Temporary so we can later find where the
3992 input was */
3993
3994 /* Here they don't match. Change the string's to be what the locale is
3995 * expecting */
3996
3997 if (! utf8) { /* locale is UTF-8, but input isn't; upgrade the input */
3998 s = (char *) bytes_to_utf8((const U8 *) s, &len);
3999 utf8 = TRUE;
4000 }
4001 else { /* locale is not UTF-8; but input is; downgrade the input */
4002
4003 s = (char *) bytes_from_utf8((const U8 *) s, &len, &utf8);
4004
4005 /* If the downgrade was successful we are done, but if the input
4006 * contains things that require UTF-8 to represent, have to do
4007 * damage control ... */
4008 if (UNLIKELY(utf8)) {
4009
4010 /* What we do is construct a non-UTF-8 string with
4011 * 1) the characters representable by a single byte converted
4012 * to be so (if necessary);
4013 * 2) and the rest converted to collate the same as the
4014 * highest collating representable character. That makes
4015 * them collate at the end. This is similar to how we
4016 * handle embedded NULs, but we use the highest collating
4017 * code point instead of the smallest. Like the NUL case,
4018 * this isn't perfect, but is the best we can reasonably
4019 * do. Every above-255 code point will sort the same as
4020 * the highest-sorting 0-255 code point. If that code
4021 * point can combine in a sequence with some other code
4022 * points for weight calculations, us changing something to
4023 * be it can adversely affect the results. But in most
4024 * cases, it should work reasonably. And note that this is
4025 * really an illegal situation: using code points above 255
4026 * on a locale where only 0-255 are valid. If two strings
4027 * sort entirely equal, then the sort order for the
4028 * above-255 code points will be in code point order. */
4029
4030 utf8 = FALSE;
4031
4032 /* If we haven't calculated the code point with the maximum
4033 * collating order for this locale, do so now */
4034 if (! PL_strxfrm_max_cp) {
4035 int j;
4036
4037 /* The current transformed string that collates the
4038 * highest (except it also includes the prefixed collation
4039 * index. */
4040 char * cur_max_x = NULL;
4041
4042 /* Look through all legal code points (NUL isn't) */
4043 for (j = 1; j < 256; j++) {
4044 char * x;
4045 STRLEN x_len;
736a4fed 4046 char cur_source[] = { '\0', '\0' };
a4a439fb 4047
736a4fed
KW
4048 /* Create a 1-char string of the current code point */
4049 cur_source[0] = (char) j;
a4a439fb
KW
4050
4051 /* Then transform it */
4052 x = _mem_collxfrm(cur_source, 1, &x_len, FALSE);
4053
4054 /* If something went wrong (which it shouldn't), just
4055 * ignore this code point */
94762aa0 4056 if (! x) {
a4a439fb
KW
4057 continue;
4058 }
4059
4060 /* If this character's transformation is higher than
4061 * the current highest, this one becomes the highest */
4062 if ( cur_max_x == NULL
55e5378d
KW
4063 || strGT(x + COLLXFRM_HDR_LEN,
4064 cur_max_x + COLLXFRM_HDR_LEN))
a4a439fb
KW
4065 {
4066 PL_strxfrm_max_cp = j;
4067 cur_max_x = x;
4068 }
4069 else {
4070 Safefree(x);
4071 }
4072 }
4073
94762aa0
KW
4074 if (! cur_max_x) {
4075 DEBUG_L(PerlIO_printf(Perl_debug_log,
4076 "_mem_collxfrm: Couldn't find any character to"
4077 " replace above-Latin1 chars in locale %s with",
4078 PL_collation_name));
4079 goto bad;
4080 }
4081
58eebef2
KW
4082 DEBUG_L(PerlIO_printf(Perl_debug_log,
4083 "_mem_collxfrm: highest 1-byte collating character"
4084 " in locale %s is 0x%02X\n",
4085 PL_collation_name,
4086 PL_strxfrm_max_cp));
58eebef2 4087
a4a439fb
KW
4088 Safefree(cur_max_x);
4089 }
4090
4091 /* Here we know which legal code point collates the highest.
4092 * We are ready to construct the non-UTF-8 string. The length
4093 * will be at least 1 byte smaller than the input string
4094 * (because we changed at least one 2-byte character into a
4095 * single byte), but that is eaten up by the trailing NUL */
4096 Newx(s, len, char);
4097
4098 {
4099 STRLEN i;
4100 STRLEN d= 0;
042d9e50 4101 char * e = (char *) t + len;
a4a439fb
KW
4102
4103 for (i = 0; i < len; i+= UTF8SKIP(t + i)) {
4104 U8 cur_char = t[i];
4105 if (UTF8_IS_INVARIANT(cur_char)) {
4106 s[d++] = cur_char;
4107 }
042d9e50 4108 else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(t + i, e)) {
a4a439fb
KW
4109 s[d++] = EIGHT_BIT_UTF8_TO_NATIVE(cur_char, t[i+1]);
4110 }
4111 else { /* Replace illegal cp with highest collating
4112 one */
4113 s[d++] = PL_strxfrm_max_cp;
4114 }
4115 }
4116 s[d++] = '\0';
4117 Renew(s, d, char); /* Free up unused space */
4118 }
4119 }
4120 }
4121
4122 /* Here, we have constructed a modified version of the input. It could
4123 * be that we already had a modified copy before we did this version.
4124 * If so, that copy is no longer needed */
4125 if (t != input_string) {
4126 Safefree(t);
4127 }
4128 }
4129
17f41037
KW
4130 length_in_chars = (utf8)
4131 ? utf8_length((U8 *) s, (U8 *) s + len)
4132 : len;
4133
59c018b9
KW
4134 /* The first element in the output is the collation id, used by
4135 * sv_collxfrm(); then comes the space for the transformed string. The
4136 * equation should give us a good estimate as to how much is needed */
55e5378d 4137 xAlloc = COLLXFRM_HDR_LEN
a4a439fb 4138 + PL_collxfrm_base
17f41037 4139 + (PL_collxfrm_mult * length_in_chars);
a02a5408 4140 Newx(xbuf, xAlloc, char);
c7202dee
KW
4141 if (UNLIKELY(! xbuf)) {
4142 DEBUG_L(PerlIO_printf(Perl_debug_log,
4143 "_mem_collxfrm: Couldn't malloc %zu bytes\n", xAlloc));
98994639 4144 goto bad;
c7202dee 4145 }
98994639 4146
d35fca5f 4147 /* Store the collation id */
98994639 4148 *(U32*)xbuf = PL_collation_ix;
d35fca5f
KW
4149
4150 /* Then the transformation of the input. We loop until successful, or we
4151 * give up */
4ebeff16 4152 for (;;) {
1adab0a7 4153
55e5378d 4154 *xlen = strxfrm(xbuf + COLLXFRM_HDR_LEN, s, xAlloc - COLLXFRM_HDR_LEN);
4ebeff16
KW
4155
4156 /* If the transformed string occupies less space than we told strxfrm()
4157 * was available, it means it successfully transformed the whole
4158 * string. */
55e5378d 4159 if (*xlen < xAlloc - COLLXFRM_HDR_LEN) {
17f41037 4160
1adab0a7
KW
4161 /* Some systems include a trailing NUL in the returned length.
4162 * Ignore it, using a loop in case multiple trailing NULs are
4163 * returned. */
4164 while ( (*xlen) > 0
4165 && *(xbuf + COLLXFRM_HDR_LEN + (*xlen) - 1) == '\0')
4166 {
4167 (*xlen)--;
4168 }
4169
17f41037
KW
4170 /* If the first try didn't get it, it means our prediction was low.
4171 * Modify the coefficients so that we predict a larger value in any
4172 * future transformations */
4173 if (! first_time) {
4174 STRLEN needed = *xlen + 1; /* +1 For trailing NUL */
4175 STRLEN computed_guess = PL_collxfrm_base
4176 + (PL_collxfrm_mult * length_in_chars);
e1c30f0c
KW
4177
4178 /* On zero-length input, just keep current slope instead of
4179 * dividing by 0 */
4180 const STRLEN new_m = (length_in_chars != 0)
4181 ? needed / length_in_chars
4182 : PL_collxfrm_mult;
17f41037
KW
4183
4184 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
b07929e4
KW
4185 "%s: %d: initial size of %zu bytes for a length "
4186 "%zu string was insufficient, %zu needed\n",
17f41037 4187 __FILE__, __LINE__,
b07929e4 4188 computed_guess, length_in_chars, needed));
17f41037
KW
4189
4190 /* If slope increased, use it, but discard this result for
4191 * length 1 strings, as we can't be sure that it's a real slope
4192 * change */
4193 if (length_in_chars > 1 && new_m > PL_collxfrm_mult) {
7d4bcc4a
KW
4194
4195# ifdef DEBUGGING
4196
17f41037
KW
4197 STRLEN old_m = PL_collxfrm_mult;
4198 STRLEN old_b = PL_collxfrm_base;
7d4bcc4a
KW
4199
4200# endif
4201
17f41037
KW
4202 PL_collxfrm_mult = new_m;
4203 PL_collxfrm_base = 1; /* +1 For trailing NUL */
4204 computed_guess = PL_collxfrm_base
4205 + (PL_collxfrm_mult * length_in_chars);
4206 if (computed_guess < needed) {
4207 PL_collxfrm_base += needed - computed_guess;
4208 }
4209
4210 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
b07929e4
KW
4211 "%s: %d: slope is now %zu; was %zu, base "
4212 "is now %zu; was %zu\n",
17f41037 4213 __FILE__, __LINE__,
b07929e4
KW
4214 PL_collxfrm_mult, old_m,
4215 PL_collxfrm_base, old_b));
17f41037
KW
4216 }
4217 else { /* Slope didn't change, but 'b' did */
4218 const STRLEN new_b = needed
4219 - computed_guess
4220 + PL_collxfrm_base;
4221 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
b07929e4 4222 "%s: %d: base is now %zu; was %zu\n",
17f41037 4223 __FILE__, __LINE__,
b07929e4 4224 new_b, PL_collxfrm_base));
17f41037
KW
4225 PL_collxfrm_base = new_b;
4226 }
4227 }
4228
4ebeff16
KW
4229 break;
4230 }
bb0f664e 4231
c7202dee
KW
4232 if (UNLIKELY(*xlen >= PERL_INT_MAX)) {
4233 DEBUG_L(PerlIO_printf(Perl_debug_log,
4234 "_mem_collxfrm: Needed %zu bytes, max permissible is %u\n",
4235 *xlen, PERL_INT_MAX));
4ebeff16 4236 goto bad;
c7202dee 4237 }
d35fca5f 4238
c664130f 4239 /* A well-behaved strxfrm() returns exactly how much space it needs
1adab0a7
KW
4240 * (usually not including the trailing NUL) when it fails due to not
4241 * enough space being provided. Assume that this is the case unless
4242 * it's been proven otherwise */
c664130f 4243 if (LIKELY(PL_strxfrm_is_behaved) && first_time) {
55e5378d 4244 xAlloc = *xlen + COLLXFRM_HDR_LEN + 1;
c664130f
KW
4245 }
4246 else { /* Here, either:
4247 * 1) The strxfrm() has previously shown bad behavior; or
4248 * 2) It isn't the first time through the loop, which means
4249 * that the strxfrm() is now showing bad behavior, because
4250 * we gave it what it said was needed in the previous
4251 * iteration, and it came back saying it needed still more.
4252 * (Many versions of cygwin fit this. When the buffer size
4253 * isn't sufficient, they return the input size instead of
4254 * how much is needed.)
d4ff9586
KW
4255 * Increase the buffer size by a fixed percentage and try again.
4256 * */
6ddd902c 4257 xAlloc += (xAlloc / 4) + 1;
c664130f 4258 PL_strxfrm_is_behaved = FALSE;
c664130f 4259
7d4bcc4a
KW
4260# ifdef DEBUGGING
4261
58eebef2
KW
4262 if (DEBUG_Lv_TEST || debug_initialization) {
4263 PerlIO_printf(Perl_debug_log,
4264 "_mem_collxfrm required more space than previously calculated"
b07929e4 4265 " for locale %s, trying again with new guess=%d+%zu\n",
58eebef2 4266 PL_collation_name, (int) COLLXFRM_HDR_LEN,
b07929e4 4267 xAlloc - COLLXFRM_HDR_LEN);
58eebef2 4268 }
7d4bcc4a
KW
4269
4270# endif
4271
58eebef2 4272 }
c664130f 4273
4ebeff16 4274 Renew(xbuf, xAlloc, char);
c7202dee
KW
4275 if (UNLIKELY(! xbuf)) {
4276 DEBUG_L(PerlIO_printf(Perl_debug_log,
4277 "_mem_collxfrm: Couldn't realloc %zu bytes\n", xAlloc));
4ebeff16 4278 goto bad;
c7202dee 4279 }
c664130f
KW
4280
4281 first_time = FALSE;
4ebeff16 4282 }
98994639 4283
6696cfa7 4284
7d4bcc4a
KW
4285# ifdef DEBUGGING
4286
58eebef2 4287 if (DEBUG_Lv_TEST || debug_initialization) {
c7202dee
KW
4288
4289 print_collxfrm_input_and_return(s, s + len, xlen, utf8);
4290 PerlIO_printf(Perl_debug_log, "Its xfrm is:");
7e2f38b2
KW
4291 PerlIO_printf(Perl_debug_log, "%s\n",
4292 _byte_dump_string((U8 *) xbuf + COLLXFRM_HDR_LEN,
4293 *xlen, 1));
58eebef2 4294 }
7d4bcc4a
KW
4295
4296# endif
58eebef2 4297
3c5f993e 4298 /* Free up unneeded space; retain ehough for trailing NUL */
55e5378d 4299 Renew(xbuf, COLLXFRM_HDR_LEN + *xlen + 1, char);
98994639 4300
6696cfa7
KW
4301 if (s != input_string) {
4302 Safefree(s);
98994639
HS
4303 }
4304
98994639
HS
4305 return xbuf;
4306
4307 bad:
4308 Safefree(xbuf);
6696cfa7
KW
4309 if (s != input_string) {
4310 Safefree(s);
4311 }
98994639 4312 *xlen = 0;
7d4bcc4a
KW
4313
4314# ifdef DEBUGGING
4315
58eebef2 4316 if (DEBUG_Lv_TEST || debug_initialization) {
c7202dee 4317 print_collxfrm_input_and_return(s, s + len, NULL, utf8);
58eebef2 4318 }
7d4bcc4a
KW
4319
4320# endif
4321
98994639
HS
4322 return NULL;
4323}
4324
7d4bcc4a 4325# ifdef DEBUGGING
c7202dee 4326
4cbaac56 4327STATIC void
c7202dee
KW
4328S_print_collxfrm_input_and_return(pTHX_
4329 const char * const s,
4330 const char * const e,
4331 const STRLEN * const xlen,
4332 const bool is_utf8)
4333{
c7202dee
KW
4334
4335 PERL_ARGS_ASSERT_PRINT_COLLXFRM_INPUT_AND_RETURN;
4336
511e4ff7
DM
4337 PerlIO_printf(Perl_debug_log, "_mem_collxfrm[%" UVuf "]: returning ",
4338 (UV)PL_collation_ix);
c7202dee 4339 if (xlen) {
08b6dc1d 4340 PerlIO_printf(Perl_debug_log, "%zu", *xlen);
c7202dee
KW
4341 }
4342 else {
4343 PerlIO_printf(Perl_debug_log, "NULL");
4344 }
4345 PerlIO_printf(Perl_debug_log, " for locale '%s', string='",
4346 PL_collation_name);
9c8a6dc2
KW
4347 print_bytes_for_locale(s, e, is_utf8);
4348
4349 PerlIO_printf(Perl_debug_log, "'\n");
4350}
4351
4d9252fd
KW
4352# endif /* DEBUGGING */
4353#endif /* USE_LOCALE_COLLATE */
1c0e67b5
KW
4354#ifdef USE_LOCALE
4355# ifdef DEBUGGING
4d9252fd 4356
9c8a6dc2
KW
4357STATIC void
4358S_print_bytes_for_locale(pTHX_
4359 const char * const s,
4360 const char * const e,
4361 const bool is_utf8)
4362{
4363 const char * t = s;
4364 bool prev_was_printable = TRUE;
4365 bool first_time = TRUE;
4366
4367 PERL_ARGS_ASSERT_PRINT_BYTES_FOR_LOCALE;
c7202dee
KW
4368
4369 while (t < e) {
4370 UV cp = (is_utf8)
4371 ? utf8_to_uvchr_buf((U8 *) t, e, NULL)
4372 : * (U8 *) t;
4373 if (isPRINT(cp)) {
4374 if (! prev_was_printable) {
4375 PerlIO_printf(Perl_debug_log, " ");
4376 }
4377 PerlIO_printf(Perl_debug_log, "%c", (U8) cp);
4378 prev_was_printable = TRUE;
4379 }
4380 else {
4381 if (! first_time) {
4382 PerlIO_printf(Perl_debug_log, " ");
4383 }
147e3846 4384 PerlIO_printf(Perl_debug_log, "%02" UVXf, cp);
c7202dee
KW
4385 prev_was_printable = FALSE;
4386 }
4387 t += (is_utf8) ? UTF8SKIP(t) : 1;
4388 first_time = FALSE;
4389 }
c7202dee
KW
4390}
4391
1c0e67b5 4392# endif /* #ifdef DEBUGGING */
8ef6e574 4393
962aa53f
KW
4394STATIC const char *
4395S_switch_category_locale_to_template(pTHX_ const int switch_category, const int template_category, const char * template_locale)
4396{
4397 /* Changes the locale for LC_'switch_category" to that of
4398 * LC_'template_category', if they aren't already the same. If not NULL,
4399 * 'template_locale' is the locale that 'template_category' is in.
4400 *
9de6fe47
KW
4401 * Returns a copy of the name of the original locale for 'switch_category'
4402 * so can be switched back to with the companion function
4403 * restore_switched_locale(), (NULL if no restoral is necessary.) */
962aa53f
KW
4404
4405 char * restore_to_locale = NULL;
4406
4407 if (switch_category == template_category) { /* No changes needed */
4408 return NULL;
4409 }
4410
4411 /* Find the original locale of the category we may need to change, so that
4412 * it can be restored to later */
d6189047
KW
4413 restore_to_locale = stdize_locale(savepv(do_setlocale_r(switch_category,
4414 NULL)));
962aa53f
KW
4415 if (! restore_to_locale) {
4416 Perl_croak(aTHX_
4417 "panic: %s: %d: Could not find current %s locale, errno=%d\n",
4418 __FILE__, __LINE__, category_name(switch_category), errno);
4419 }
962aa53f
KW
4420
4421 /* If the locale of the template category wasn't passed in, find it now */
4422 if (template_locale == NULL) {
4423 template_locale = do_setlocale_r(template_category, NULL);
4424 if (! template_locale) {
4425 Perl_croak(aTHX_
4426 "panic: %s: %d: Could not find current %s locale, errno=%d\n",
4427 __FILE__, __LINE__, category_name(template_category), errno);
4428 }
4429 }
4430
4431 /* It the locales are the same, there's nothing to do */
4432 if (strEQ(restore_to_locale, template_locale)) {
4433 Safefree(restore_to_locale);
4434
4435 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s locale unchanged as %s\n",
4436 category_name(switch_category), restore_to_locale));
4437
4438 return NULL;
4439 }
4440
4441 /* Finally, change the locale to the template one */
4442 if (! do_setlocale_r(switch_category, template_locale)) {
4443 Perl_croak(aTHX_
4444 "panic: %s: %d: Could not change %s locale to %s, errno=%d\n",
4445 __FILE__, __LINE__, category_name(switch_category),
4446 template_locale, errno);
4447 }
4448
4449 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s locale switched to %s\n",
4450 category_name(switch_category), template_locale));
4451
4452 return restore_to_locale;
4453}
4454
4455STATIC void
4456S_restore_switched_locale(pTHX_ const int category, const char * const original_locale)
4457{
9de6fe47
KW
4458 /* Restores the locale for LC_'category' to 'original_locale' (which is a
4459 * copy that will be freed by this function), or do nothing if the latter
4460 * parameter is NULL */
962aa53f
KW
4461
4462 if (original_locale == NULL) {
4463 return;
4464 }
4465
4466 if (! do_setlocale_r(category, original_locale)) {
4467 Perl_croak(aTHX_
4468 "panic: %s: %d: setlocale %s restore to %s failed, errno=%d\n",
4469 __FILE__, __LINE__,
4470 category_name(category), original_locale, errno);
4471 }
4472
4473 Safefree(original_locale);
4474}
4475
51332242
N
4476/* is_cur_LC_category_utf8 uses a small char buffer to avoid malloc/free */
4477#define CUR_LC_BUFFER_SIZE 64
4478
c1284011
KW
4479bool
4480Perl__is_cur_LC_category_utf8(pTHX_ int category)
7d74bb61
KW
4481{
4482 /* Returns TRUE if the current locale for 'category' is UTF-8; FALSE
4483 * otherwise. 'category' may not be LC_ALL. If the platform doesn't have
119ee68b 4484 * nl_langinfo(), nor MB_CUR_MAX, this employs a heuristic, which hence
609548d2
KW
4485 * could give the wrong result. The result will very likely be correct for
4486 * languages that have commonly used non-ASCII characters, but for notably
4487 * English, it comes down to if the locale's name ends in something like
9de6fe47
KW
4488 * "UTF-8". It errs on the side of not being a UTF-8 locale.
4489 *
4490 * If the platform is early C89, not containing mbtowc(), or we are
4491 * compiled to not pay attention to LC_CTYPE, this employs heuristics.
4492 * These work very well for non-Latin locales or those whose currency
4493 * symbol isn't a '$' nor plain ASCII text. But without LC_CTYPE and at
4494 * least MB_CUR_MAX, English locales with an ASCII currency symbol depend
4495 * on the name containing UTF-8 or not. */
7d74bb61 4496
47280b20 4497 /* Name of current locale corresponding to the input category */
8de4332b 4498 const char *save_input_locale = NULL;
47280b20
KW
4499
4500 bool is_utf8 = FALSE; /* The return value */
7d74bb61 4501
47280b20
KW
4502 /* The variables below are for the cache of previous lookups using this
4503 * function. The cache is a C string, described at the definition for
4504 * 'C_and_POSIX_utf8ness'.
4505 *
4506 * The first part of the cache is fixed, for the C and POSIX locales. The
4507 * varying part starts just after them. */
4508 char * utf8ness_cache = PL_locale_utf8ness + STRLENs(C_and_POSIX_utf8ness);
4509
4510 Size_t utf8ness_cache_size; /* Size of the varying portion */
4511 Size_t input_name_len; /* Length in bytes of save_input_locale */
4512 Size_t input_name_len_with_overhead; /* plus extra chars used to store
4513 the name in the cache */
4514 char * delimited; /* The name plus the delimiters used to store
4515 it in the cache */
51332242 4516 char buffer[CUR_LC_BUFFER_SIZE]; /* small buffer */
47280b20
KW
4517 char * name_pos; /* position of 'delimited' in the cache, or 0
4518 if not there */
4519
4520
7d4bcc4a
KW
4521# ifdef LC_ALL
4522
7d74bb61 4523 assert(category != LC_ALL);
7d4bcc4a
KW
4524
4525# endif
7d74bb61 4526
47280b20 4527 /* Get the desired category's locale */
d6189047 4528 save_input_locale = stdize_locale(savepv(do_setlocale_r(category, NULL)));
7d74bb61 4529 if (! save_input_locale) {
47280b20 4530 Perl_croak(aTHX_
d707d779
KW
4531 "panic: %s: %d: Could not find current %s locale, errno=%d\n",
4532 __FILE__, __LINE__, category_name(category), errno);
7d74bb61 4533 }
47280b20 4534
47280b20
KW
4535 DEBUG_L(PerlIO_printf(Perl_debug_log,
4536 "Current locale for %s is %s\n",
4537 category_name(category), save_input_locale));
4538
4539 input_name_len = strlen(save_input_locale);
4540
4541 /* In our cache, each name is accompanied by two delimiters and a single
4542 * utf8ness digit */
4543 input_name_len_with_overhead = input_name_len + 3;
4544
51332242
N
4545 if ( input_name_len_with_overhead <= CUR_LC_BUFFER_SIZE ) {
4546 /* we can use the buffer, avoid a malloc */
4547 delimited = buffer;
4548 } else { /* need a malloc */
4549 /* Allocate and populate space for a copy of the name surrounded by the
4550 * delimiters */
4551 Newx(delimited, input_name_len_with_overhead, char);
4552 }
4553
47280b20
KW
4554 delimited[0] = UTF8NESS_SEP[0];
4555 Copy(save_input_locale, delimited + 1, input_name_len, char);
4556 delimited[input_name_len+1] = UTF8NESS_PREFIX[0];
4557 delimited[input_name_len+2] = '\0';
4558
4559 /* And see if that is in the cache */
4560 name_pos = instr(PL_locale_utf8ness, delimited);
4561 if (name_pos) {
4562 is_utf8 = *(name_pos + input_name_len_with_overhead - 1) - '0';
4563
4564# ifdef DEBUGGING
4565
4566 if (DEBUG_Lv_TEST || debug_initialization) {
4567 PerlIO_printf(Perl_debug_log, "UTF8ness for locale %s=%d, \n",
4568 save_input_locale, is_utf8);
4569 }
4570
4571# endif
4572
4573 /* And, if not already in that position, move it to the beginning of
4574 * the non-constant portion of the list, since it is the most recently
4575 * used. (We don't have to worry about overflow, since just moving
4576 * existing names around) */
4577 if (name_pos > utf8ness_cache) {
4578 Move(utf8ness_cache,
4579 utf8ness_cache + input_name_len_with_overhead,
4580 name_pos - utf8ness_cache, char);
4581 Copy(delimited,
4582 utf8ness_cache,
4583 input_name_len_with_overhead - 1, char);
4584 utf8ness_cache[input_name_len_with_overhead - 1] = is_utf8 + '0';
4585 }
4586
51332242
N
4587 /* free only when not using the buffer */
4588 if ( delimited != buffer ) Safefree(delimited);
b07fffd1 4589 Safefree(save_input_locale);
47280b20 4590 return is_utf8;
7d74bb61
KW
4591 }
4592
47280b20
KW
4593 /* Here we don't have stored the utf8ness for the input locale. We have to
4594 * calculate it */
4595
94646a69 4596# if defined(USE_LOCALE_CTYPE) \
6201c220 4597 && ( defined(HAS_NL_LANGINFO) \
94646a69 4598 || (defined(HAS_MBTOWC) || defined(HAS_MBRTOWC)))
7d74bb61 4599
0dec74cd 4600 {
962aa53f
KW
4601 const char *original_ctype_locale
4602 = switch_category_locale_to_template(LC_CTYPE,
4603 category,
4604 save_input_locale);
69014004 4605
7d74bb61 4606 /* Here the current LC_CTYPE is set to the locale of the category whose
0dec74cd 4607 * information is desired. This means that nl_langinfo() and mbtowc()
1d958db2 4608 * should give the correct results */
119ee68b 4609
0dec74cd
KW
4610# ifdef MB_CUR_MAX /* But we can potentially rule out UTF-8ness, avoiding
4611 calling the functions if we have this */
4612
4613 /* Standard UTF-8 needs at least 4 bytes to represent the maximum
4614 * Unicode code point. */
4615
de3a3072
KW
4616 DEBUG_L(PerlIO_printf(Perl_debug_log, "%s: %d: MB_CUR_MAX=%d\n",
4617 __FILE__, __LINE__, (int) MB_CUR_MAX));
0dec74cd
KW
4618 if ((unsigned) MB_CUR_MAX < STRLENs(MAX_UNICODE_UTF8)) {
4619 is_utf8 = FALSE;
b5b2847c
KW
4620 restore_switched_locale(LC_CTYPE, original_ctype_locale);
4621 goto finish_and_return;
0dec74cd
KW
4622 }
4623
4624# endif
6201c220 4625# if defined(HAS_NL_LANGINFO)
7d4bcc4a 4626
0dec74cd
KW
4627 { /* The task is easiest if the platform has this POSIX 2001 function.
4628 Except on some platforms it can wrongly return "", so have to have
4629 a fallback. And it can return that it's UTF-8, even if there are
4630 variances from that. For example, Turkish locales may use the
4631 alternate dotted I rules, and sometimes it appears to be a
4632 defective locale definition. XXX We should probably check for
9de6fe47
KW
4633 these in the Latin1 range and warn (but on glibc, requires
4634 iswalnum() etc. due to their not handling 80-FF correctly */
4e6826bf 4635 const char *codeset = my_nl_langinfo(CODESET, FALSE);
c70a3e68 4636 /* FALSE => already in dest locale */
119ee68b 4637
af84e886 4638 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
c70a3e68
KW
4639 "\tnllanginfo returned CODESET '%s'\n", codeset));
4640
4641 if (codeset && strNE(codeset, "")) {
1d958db2 4642
1d075173
KW
4643 /* If the implementation of foldEQ() somehow were
4644 * to change to not go byte-by-byte, this could
4645 * read past end of string, as only one length is
4646 * checked. But currently, a premature NUL will
4647 * compare false, and it will stop there */
4648 is_utf8 = cBOOL( foldEQ(codeset, STR_WITH_LEN("UTF-8"))
4649 || foldEQ(codeset, STR_WITH_LEN("UTF8")));
1d958db2 4650
69014004
KW
4651 DEBUG_L(PerlIO_printf(Perl_debug_log,
4652 "\tnllanginfo returned CODESET '%s'; ?UTF8 locale=%d\n",
4653 codeset, is_utf8));
b5b2847c
KW
4654 restore_switched_locale(LC_CTYPE, original_ctype_locale);
4655 goto finish_and_return;
1d958db2 4656 }
119ee68b
KW
4657 }
4658
7d4bcc4a 4659# endif
94646a69 4660# if defined(HAS_MBTOWC) || defined(HAS_MBRTOWC)
0dec74cd
KW
4661 /* We can see if this is a UTF-8-like locale if have mbtowc(). It was a
4662 * late adder to C89, so very likely to have it. However, testing has
4663 * shown that, like nl_langinfo() above, there are locales that are not
4664 * strictly UTF-8 that this will return that they are */
69014004 4665
0dec74cd 4666 {
119ee68b 4667 wchar_t wc;
51fc4b19 4668 int len;
48015184 4669 dSAVEDERRNO;
51fc4b19 4670
94646a69
KW
4671# if defined(HAS_MBRTOWC) && defined(USE_ITHREADS)
4672
4673 mbstate_t ps;
4674
4675# endif
4676
4677 /* mbrtowc() and mbtowc() convert a byte string to a wide
4678 * character. Feed a byte string to one of them and check that the
4679 * result is the expected Unicode code point */
4680
4681# if defined(HAS_MBRTOWC) && defined(USE_ITHREADS)
4682 /* Prefer this function if available, as it's reentrant */
4683
4684 memset(&ps, 0, sizeof(ps));;
4685 PERL_UNUSED_RESULT(mbrtowc(&wc, NULL, 0, &ps)); /* Reset any shift
4686 state */
48015184 4687 SETERRNO(0, 0);
94646a69 4688 len = mbrtowc(&wc, STR_WITH_LEN(REPLACEMENT_CHARACTER_UTF8), &ps);
48015184 4689 SAVE_ERRNO;
94646a69
KW
4690
4691# else
0dec74cd 4692
5a91a58b 4693 LOCALE_LOCK;
856b881c 4694 PERL_UNUSED_RESULT(mbtowc(&wc, NULL, 0));/* Reset any shift state */
48015184 4695 SETERRNO(0, 0);
b1d4925c 4696 len = mbtowc(&wc, STR_WITH_LEN(REPLACEMENT_CHARACTER_UTF8));
48015184 4697 SAVE_ERRNO;
5a91a58b 4698 LOCALE_UNLOCK;
51fc4b19 4699
94646a69
KW
4700# endif
4701
48015184 4702 RESTORE_ERRNO;
af84e886 4703 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
0dec74cd 4704 "\treturn from mbtowc; len=%d; code_point=%x; errno=%d\n",
48015184 4705 len, (unsigned int) wc, GET_ERRNO));
b1d4925c 4706
0dec74cd
KW
4707 is_utf8 = cBOOL( len == STRLENs(REPLACEMENT_CHARACTER_UTF8)
4708 && wc == (wchar_t) UNICODE_REPLACEMENT);
119ee68b 4709 }
7d4bcc4a 4710
17dd77cd
FP
4711# endif
4712
962aa53f 4713 restore_switched_locale(LC_CTYPE, original_ctype_locale);
47280b20 4714 goto finish_and_return;
7d74bb61 4715 }
119ee68b 4716
0dec74cd 4717# else
7d74bb61 4718
0dec74cd
KW
4719 /* Here, we must have a C89 compiler that doesn't have mbtowc(). Next
4720 * try looking at the currency symbol to see if it disambiguates
4721 * things. Often that will be in the native script, and if the symbol
4722 * isn't in UTF-8, we know that the locale isn't. If it is non-ASCII
4723 * UTF-8, we infer that the locale is too, as the odds of a non-UTF8
4724 * string being valid UTF-8 are quite small */
fa9b773e 4725
660ee27b
KW
4726# ifdef USE_LOCALE_MONETARY
4727
4728 /* If have LC_MONETARY, we can look at the currency symbol. Often that
4729 * will be in the native script. We do this one first because there is
4730 * just one string to examine, so potentially avoids work */
7d4bcc4a 4731
9db16864
KW
4732 {
4733 const char *original_monetary_locale
660ee27b
KW
4734 = switch_category_locale_to_template(LC_MONETARY,
4735 category,
4736 save_input_locale);
9db16864 4737 bool only_ascii = FALSE;
660ee27b 4738 const U8 * currency_string
4e6826bf 4739 = (const U8 *) my_nl_langinfo(CRNCYSTR, FALSE);
660ee27b
KW
4740 /* 2nd param not relevant for this item */
4741 const U8 * first_variant;
fa9b773e 4742
660ee27b
KW
4743 assert( *currency_string == '-'
4744 || *currency_string == '+'
4745 || *currency_string == '.');
97f4de96 4746
660ee27b 4747 currency_string++;
fa9b773e 4748
660ee27b 4749 if (is_utf8_invariant_string_loc(currency_string, 0, &first_variant))
9db16864
KW
4750 {
4751 DEBUG_L(PerlIO_printf(Perl_debug_log, "Couldn't get currency symbol for %s, or contains only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
4752 only_ascii = TRUE;
4753 }
4754 else {
660ee27b 4755 is_utf8 = is_strict_utf8_string(first_variant, 0);
9db16864 4756 }
fa9b773e 4757
9db16864 4758 restore_switched_locale(LC_MONETARY, original_monetary_locale);
fa9b773e 4759
9db16864 4760 if (! only_ascii) {
fa9b773e 4761
9db16864
KW
4762 /* It isn't a UTF-8 locale if the symbol is not legal UTF-8;
4763 * otherwise assume the locale is UTF-8 if and only if the symbol
4764 * is non-ascii UTF-8. */
af84e886 4765 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "\t?Currency symbol for %s is UTF-8=%d\n",
9db16864
KW
4766 save_input_locale, is_utf8));
4767 goto finish_and_return;
4768 }
13542a67 4769 }
fa9b773e 4770
660ee27b 4771# endif /* USE_LOCALE_MONETARY */
7d4bcc4a 4772# if defined(HAS_STRFTIME) && defined(USE_LOCALE_TIME)
15f7e74e 4773
9db16864
KW
4774 /* Still haven't found a non-ASCII string to disambiguate UTF-8 or not. Try
4775 * the names of the months and weekdays, timezone, and am/pm indicator */
4776 {
4777 const char *original_time_locale
4778 = switch_category_locale_to_template(LC_TIME,
4779 category,
4780 save_input_locale);
4781 int hour = 10;
4782 bool is_dst = FALSE;
4783 int dom = 1;
4784 int month = 0;
4785 int i;
4786 char * formatted_time;
4787
4788 /* Here the current LC_TIME is set to the locale of the category
4789 * whose information is desired. Look at all the days of the week and
4790 * month names, and the timezone and am/pm indicator for UTF-8 variant
4791 * characters. The first such a one found will tell us if the locale
4792 * is UTF-8 or not */
4793
4794 for (i = 0; i < 7 + 12; i++) { /* 7 days; 12 months */
4795 formatted_time = my_strftime("%A %B %Z %p",
4796 0, 0, hour, dom, month, 2012 - 1900, 0, 0, is_dst);
4797 if ( ! formatted_time
4798 || is_utf8_invariant_string((U8 *) formatted_time, 0))
4799 {
15f7e74e 4800
9db16864
KW
4801 /* Here, we didn't find a non-ASCII. Try the next time through
4802 * with the complemented dst and am/pm, and try with the next
4803 * weekday. After we have gotten all weekdays, try the next
4804 * month */
4805 is_dst = ! is_dst;
4806 hour = (hour + 12) % 24;
4807 dom++;
4808 if (i > 6) {
4809 month++;
4810 }
4811 continue;
15f7e74e 4812 }
9db16864
KW
4813
4814 /* Here, we have a non-ASCII. Return TRUE is it is valid UTF8;
4815 * false otherwise. But first, restore LC_TIME to its original
4816 * locale if we changed it */
4817 restore_switched_locale(LC_TIME, original_time_locale);
4818
af84e886 4819 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "\t?time-related strings for %s are UTF-8=%d\n",
9db16864
KW
4820 save_input_locale,
4821 is_utf8_string((U8 *) formatted_time, 0)));
4822 is_utf8 = is_utf8_string((U8 *) formatted_time, 0);
4823 goto finish_and_return;
15f7e74e
KW
4824 }
4825
9db16864
KW
4826 /* Falling off the end of the loop indicates all the names were just
4827 * ASCII. Go on to the next test. If we changed it, restore LC_TIME
4828 * to its original locale */
962aa53f 4829 restore_switched_locale(LC_TIME, original_time_locale);
af84e886 4830 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "All time-related words for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
15f7e74e
KW
4831 }
4832
7d4bcc4a 4833# endif
15f7e74e 4834
7d4bcc4a 4835# if 0 && defined(USE_LOCALE_MESSAGES) && defined(HAS_SYS_ERRLIST)
855aeb93 4836
9db16864
KW
4837 /* This code is ifdefd out because it was found to not be necessary in testing
4838 * on our dromedary test machine, which has over 700 locales. There, this
4839 * added no value to looking at the currency symbol and the time strings. I
4840 * left it in so as to avoid rewriting it if real-world experience indicates
4841 * that dromedary is an outlier. Essentially, instead of returning abpve if we
4842 * haven't found illegal utf8, we continue on and examine all the strerror()
4843 * messages on the platform for utf8ness. If all are ASCII, we still don't
4844 * know the answer; but otherwise we have a pretty good indication of the
4845 * utf8ness. The reason this doesn't help much is that the messages may not
4846 * have been translated into the locale. The currency symbol and time strings
4847 * are much more likely to have been translated. */
4848 {
4849 int e;
4850 bool non_ascii = FALSE;
4851 const char *original_messages_locale
4852 = switch_category_locale_to_template(LC_MESSAGES,
4853 category,
4854 save_input_locale);
4855 const char * errmsg = NULL;
4856
4857 /* Here the current LC_MESSAGES is set to the locale of the category
4858 * whose information is desired. Look through all the messages. We
4859 * can't use Strerror() here because it may expand to code that
4860 * segfaults in miniperl */
4861
4862 for (e = 0; e <= sys_nerr; e++) {
4863 errno = 0;
4864 errmsg = sys_errlist[e];
4865 if (errno || !errmsg) {
4866 break;
4867 }
4868 errmsg = savepv(errmsg);
4869 if (! is_utf8_invariant_string((U8 *) errmsg, 0)) {
4870 non_ascii = TRUE;
4871 is_utf8 = is_utf8_string((U8 *) errmsg, 0);
4872 break;
4873 }
855aeb93 4874 }
9db16864 4875 Safefree(errmsg);
855aeb93 4876
9db16864 4877 restore_switched_locale(LC_MESSAGES, original_messages_locale);
855aeb93 4878
9db16864 4879 if (non_ascii) {
5857e934 4880
9db16864
KW
4881 /* Any non-UTF-8 message means not a UTF-8 locale; if all are valid,
4882 * any non-ascii means it is one; otherwise we assume it isn't */
af84e886 4883 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "\t?error messages for %s are UTF-8=%d\n",
9db16864
KW
4884 save_input_locale,
4885 is_utf8));
4886 goto finish_and_return;
4887 }
855aeb93 4888
9db16864
KW
4889 DEBUG_L(PerlIO_printf(Perl_debug_log, "All error messages for %s contain only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale));
4890 }
855aeb93 4891
7d4bcc4a 4892# endif
0dec74cd 4893# ifndef EBCDIC /* On os390, even if the name ends with "UTF-8', it isn't a
92c0a900 4894 UTF-8 locale */
7d4bcc4a 4895
97f4de96
KW
4896 /* As a last resort, look at the locale name to see if it matches
4897 * qr/UTF -? * 8 /ix, or some other common locale names. This "name", the
4898 * return of setlocale(), is actually defined to be opaque, so we can't
4899 * really rely on the absence of various substrings in the name to indicate
4900 * its UTF-8ness, but if it has UTF8 in the name, it is extremely likely to
4901 * be a UTF-8 locale. Similarly for the other common names */
4902
0dec74cd 4903 {
c36d8df8 4904 const Size_t final_pos = strlen(save_input_locale) - 1;
0dec74cd 4905
c36d8df8
KW
4906 if (final_pos >= 3) {
4907 const char *name = save_input_locale;
97f4de96 4908
c36d8df8
KW
4909 /* Find next 'U' or 'u' and look from there */
4910 while ((name += strcspn(name, "Uu") + 1)
4911 <= save_input_locale + final_pos - 2)
97f4de96 4912 {
c36d8df8
KW
4913 if ( isALPHA_FOLD_NE(*name, 't')
4914 || isALPHA_FOLD_NE(*(name + 1), 'f'))
4915 {
4916 continue;
4917 }
4918 name += 2;
4919 if (*(name) == '-') {
4920 if ((name > save_input_locale + final_pos - 1)) {
4921 break;
4922 }
4923 name++;
4924 }
4925 if (*(name) == '8') {
4926 DEBUG_L(PerlIO_printf(Perl_debug_log,
4927 "Locale %s ends with UTF-8 in name\n",
4928 save_input_locale));
4929 is_utf8 = TRUE;
4930 goto finish_and_return;
97f4de96 4931 }
97f4de96 4932 }
c36d8df8
KW
4933 DEBUG_L(PerlIO_printf(Perl_debug_log,
4934 "Locale %s doesn't end with UTF-8 in name\n",
4935 save_input_locale));
97f4de96 4936 }
97f4de96 4937
4d8d465a 4938# ifdef WIN32
7d4bcc4a 4939
c36d8df8
KW
4940 /* http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756.aspx */
4941 if (memENDs(save_input_locale, final_pos, "65001")) {
4942 DEBUG_L(PerlIO_printf(Perl_debug_log,
8a0832a1 4943 "Locale %s ends with 65001 in name, is UTF-8 locale\n",
97f4de96 4944 save_input_locale));
c36d8df8
KW
4945 is_utf8 = TRUE;
4946 goto finish_and_return;
4947 }
7d4bcc4a 4948
4d8d465a 4949# endif
17dd77cd 4950 }
4d8d465a 4951# endif
97f4de96
KW
4952
4953 /* Other common encodings are the ISO 8859 series, which aren't UTF-8. But
4954 * since we are about to return FALSE anyway, there is no point in doing
4955 * this extra work */
7d4bcc4a 4956
0dec74cd 4957# if 0
97f4de96
KW
4958 if (instr(save_input_locale, "8859")) {
4959 DEBUG_L(PerlIO_printf(Perl_debug_log,
4960 "Locale %s has 8859 in name, not UTF-8 locale\n",
4961 save_input_locale));
47280b20
KW
4962 is_utf8 = FALSE;
4963 goto finish_and_return;
97f4de96 4964 }
0dec74cd 4965# endif
97f4de96 4966
69014004
KW
4967 DEBUG_L(PerlIO_printf(Perl_debug_log,
4968 "Assuming locale %s is not a UTF-8 locale\n",
4969 save_input_locale));
47280b20
KW
4970 is_utf8 = FALSE;
4971
0dec74cd
KW
4972# endif /* the code that is compiled when no modern LC_CTYPE */
4973
47280b20
KW
4974 finish_and_return:
4975
4976 /* Cache this result so we don't have to go through all this next time. */
4977 utf8ness_cache_size = sizeof(PL_locale_utf8ness)
4978 - (utf8ness_cache - PL_locale_utf8ness);
4979
4980 /* But we can't save it if it is too large for the total space available */
4981 if (LIKELY(input_name_len_with_overhead < utf8ness_cache_size)) {
4982 Size_t utf8ness_cache_len = strlen(utf8ness_cache);
4983
4984 /* Here it can fit, but we may need to clear out the oldest cached
4985 * result(s) to do so. Check */
4986 if (utf8ness_cache_len + input_name_len_with_overhead
4987 >= utf8ness_cache_size)
4988 {
4989 /* Here we have to clear something out to make room for this.
4990 * Start looking at the rightmost place where it could fit and find
4991 * the beginning of the entry that extends past that. */
4992 char * cutoff = (char *) my_memrchr(utf8ness_cache,
4993 UTF8NESS_SEP[0],
4994 utf8ness_cache_size
4995 - input_name_len_with_overhead);
4996
4997 assert(cutoff);
4998 assert(cutoff >= utf8ness_cache);
4999
5000 /* This and all subsequent entries must be removed */
5001 *cutoff = '\0';
5002 utf8ness_cache_len = strlen(utf8ness_cache);
5003 }
5004
5005 /* Make space for the new entry */
5006 Move(utf8ness_cache,
5007 utf8ness_cache + input_name_len_with_overhead,
5008 utf8ness_cache_len + 1 /* Incl. trailing NUL */, char);
5009
5010 /* And insert it */
5011 Copy(delimited, utf8ness_cache, input_name_len_with_overhead - 1, char);
5012 utf8ness_cache[input_name_len_with_overhead - 1] = is_utf8 + '0';
5013
5014 if ((PL_locale_utf8ness[strlen(PL_locale_utf8ness)-1]
5015 & (PERL_UINTMAX_T) ~1) != '0')
5016 {
5017 Perl_croak(aTHX_
7fcf9272
KW
5018 "panic: %s: %d: Corrupt utf8ness_cache=%s\nlen=%zu,"
5019 " inserted_name=%s, its_len=%zu\n",
47280b20
KW
5020 __FILE__, __LINE__,
5021 PL_locale_utf8ness, strlen(PL_locale_utf8ness),
5022 delimited, input_name_len_with_overhead);
5023 }
5024 }
5025
5026# ifdef DEBUGGING
5027
de3a3072
KW
5028 if (DEBUG_Lv_TEST) {
5029 const char * s = PL_locale_utf8ness;
5030
5031 /* Audit the structure */
5032 while (s < PL_locale_utf8ness + strlen(PL_locale_utf8ness)) {
5033 const char *e;
5034
5035 if (*s != UTF8NESS_SEP[0]) {
5036 Perl_croak(aTHX_
5037 "panic: %s: %d: Corrupt utf8ness_cache: missing"
5038 " separator %.*s<-- HERE %s\n",
5039 __FILE__, __LINE__,
fe301c93 5040 (int) (s - PL_locale_utf8ness), PL_locale_utf8ness,
de3a3072
KW
5041 s);
5042 }
5043 s++;
5044 e = strchr(s, UTF8NESS_PREFIX[0]);
5045 if (! e) {
5046 Perl_croak(aTHX_
5047 "panic: %s: %d: Corrupt utf8ness_cache: missing"
5048 " separator %.*s<-- HERE %s\n",
5049 __FILE__, __LINE__,
fe301c93 5050 (int) (e - PL_locale_utf8ness), PL_locale_utf8ness,
de3a3072
KW
5051 e);
5052 }
5053 e++;
5054 if (*e != '0' && *e != '1') {
5055 Perl_croak(aTHX_
5056 "panic: %s: %d: Corrupt utf8ness_cache: utf8ness"
5057 " must be [01] %.*s<-- HERE %s\n",
5058 __FILE__, __LINE__,
fe301c93
KW
5059 (int) (e + 1 - PL_locale_utf8ness),
5060 PL_locale_utf8ness, e + 1);
de3a3072
KW
5061 }
5062 if (ninstr(PL_locale_utf8ness, s, s-1, e)) {
5063 Perl_croak(aTHX_
5064 "panic: %s: %d: Corrupt utf8ness_cache: entry"
5065 " has duplicate %.*s<-- HERE %s\n",
5066 __FILE__, __LINE__,
fe301c93 5067 (int) (e - PL_locale_utf8ness), PL_locale_utf8ness,
de3a3072
KW
5068 e);
5069 }
5070 s = e + 1;
5071 }
5072 }
5073
47280b20 5074 if (DEBUG_Lv_TEST || debug_initialization) {
de3a3072 5075
47280b20
KW
5076 PerlIO_printf(Perl_debug_log,
5077 "PL_locale_utf8ness is now %s; returning %d\n",
5078 PL_locale_utf8ness, is_utf8);
5079 }
5080
5081# endif
5082
51332242
N
5083 /* free only when not using the buffer */
5084 if ( delimited != buffer ) Safefree(delimited);
fa9b773e 5085 Safefree(save_input_locale);
47280b20 5086 return is_utf8;
7d74bb61
KW
5087}
5088
8ef6e574 5089#endif
7d74bb61 5090
d6ded950
KW
5091bool
5092Perl__is_in_locale_category(pTHX_ const bool compiling, const int category)
5093{
1a4f13e1 5094 dVAR;
d6ded950
KW
5095 /* Internal function which returns if we are in the scope of a pragma that
5096 * enables the locale category 'category'. 'compiling' should indicate if
5097 * this is during the compilation phase (TRUE) or not (FALSE). */
5098
5099 const COP * const cop = (compiling) ? &PL_compiling : PL_curcop;
5100
363d7d4a
JK
5101 SV *these_categories = cop_hints_fetch_pvs(cop, "locale", 0);
5102 if (! these_categories || these_categories == &PL_sv_placeholder) {
d6ded950
KW
5103 return FALSE;
5104 }
5105
5106 /* The pseudo-category 'not_characters' is -1, so just add 1 to each to get
5107 * a valid unsigned */
5108 assert(category >= -1);
363d7d4a 5109 return cBOOL(SvUV(these_categories) & (1U << (category + 1)));
d6ded950
KW
5110}
5111
2c6ee1a7 5112char *
6ebbc862
KW
5113Perl_my_strerror(pTHX_ const int errnum)
5114{
5115 /* Returns a mortalized copy of the text of the error message associated
5116 * with 'errnum'. It uses the current locale's text unless the platform
5117 * doesn't have the LC_MESSAGES category or we are not being called from
5118 * within the scope of 'use locale'. In the former case, it uses whatever
5119 * strerror returns; in the latter case it uses the text from the C locale.
5120 *
5121 * The function just calls strerror(), but temporarily switches, if needed,
5122 * to the C locale */
5123
5124 char *errstr;
52770946 5125 dVAR;
6ebbc862 5126
52770946 5127#ifndef USE_LOCALE_MESSAGES
6ebbc862 5128
52770946
KW
5129 /* If platform doesn't have messages category, we don't do any switching to
5130 * the C locale; we just use whatever strerror() returns */
5131
5132 errstr = savepv(Strerror(errnum));
5133
5134#else /* Has locale messages */
5135
5136 const bool within_locale_scope = IN_LC(LC_MESSAGES);
2c6ee1a7 5137
39e69e77 5138# ifndef USE_ITHREADS
7aaa36b1 5139
39e69e77
KW
5140 /* This function is trivial without threads. */
5141 if (within_locale_scope) {
5142 errstr = savepv(strerror(errnum));
5143 }
5144 else {
b0bde642 5145 const char * save_locale = savepv(do_setlocale_c(LC_MESSAGES, NULL));
39e69e77
KW
5146
5147 do_setlocale_c(LC_MESSAGES, "C");
5148 errstr = savepv(strerror(errnum));
5149 do_setlocale_c(LC_MESSAGES, save_locale);
b0bde642 5150 Safefree(save_locale);
39e69e77
KW
5151 }
5152
80306bb6
KW
5153# elif defined(HAS_POSIX_2008_LOCALE) \
5154 && defined(HAS_STRERROR_L) \
5155 && defined(HAS_DUPLOCALE)
39e69e77
KW
5156
5157 /* This function is also trivial if we don't have to worry about thread
5158 * safety and have strerror_l(), as it handles the switch of locales so we
5159 * don't have to deal with that. We don't have to worry about thread
5160 * safety if strerror_r() is also available. Both it and strerror_l() are
5161 * thread-safe. Plain strerror() isn't thread safe. But on threaded
5162 * builds when strerror_r() is available, the apparent call to strerror()
5163 * below is actually a macro that behind-the-scenes calls strerror_r(). */
43cb6651 5164
39e69e77 5165# ifdef HAS_STRERROR_R
7aaa36b1
KW
5166
5167 if (within_locale_scope) {
4eb27fc5 5168 errstr = savepv(strerror(errnum));
7aaa36b1
KW
5169 }
5170 else {
4eb27fc5 5171 errstr = savepv(strerror_l(errnum, PL_C_locale_obj));
7aaa36b1
KW
5172 }
5173
43cb6651
KW
5174# else
5175
5176 /* Here we have strerror_l(), but not strerror_r() and we are on a
5177 * threaded-build. We use strerror_l() for everything, constructing a
5178 * locale to pass to it if necessary */
5179
5180 bool do_free = FALSE;
5181 locale_t locale_to_use;
5182
5183 if (within_locale_scope) {
5184 locale_to_use = uselocale((locale_t) 0);
5185 if (locale_to_use == LC_GLOBAL_LOCALE) {
5186 locale_to_use = duplocale(LC_GLOBAL_LOCALE);
5187 do_free = TRUE;
5188 }
5189 }
5190 else { /* Use C locale if not within 'use locale' scope */
5191 locale_to_use = PL_C_locale_obj;
5192 }
5193
5194 errstr = savepv(strerror_l(errnum, locale_to_use));
5195
5196 if (do_free) {
5197 freelocale(locale_to_use);
5198 }
5199
5200# endif
5201# else /* Doesn't have strerror_l() */
7aaa36b1 5202
8de4332b 5203 const char * save_locale = NULL;
c9dda6da 5204 bool locale_is_C = FALSE;
2c6ee1a7 5205
9de6fe47 5206 /* We have a critical section to prevent another thread from executing this
e9bc6d6b 5207 * same code at the same time. (On thread-safe perls, the LOCK is a
9de6fe47
KW
5208 * no-op.) Since this is the only place in core that changes LC_MESSAGES
5209 * (unless the user has called setlocale(), this works to prevent races. */
6ebbc862
KW
5210 LOCALE_LOCK;
5211
9c8a6dc2
KW
5212 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
5213 "my_strerror called with errnum %d\n", errnum));
6ebbc862 5214 if (! within_locale_scope) {
837ce802 5215 save_locale = do_setlocale_c(LC_MESSAGES, NULL);
c9dda6da 5216 if (! save_locale) {
d707d779
KW
5217 Perl_croak(aTHX_
5218 "panic: %s: %d: Could not find current LC_MESSAGES locale,"
5219 " errno=%d\n", __FILE__, __LINE__, errno);
c9dda6da
KW
5220 }
5221 else {
5222 locale_is_C = isNAME_C_OR_POSIX(save_locale);
2c6ee1a7 5223
c9dda6da
KW
5224 /* Switch to the C locale if not already in it */
5225 if (! locale_is_C) {
2c6ee1a7 5226
c9dda6da
KW
5227 /* The setlocale() just below likely will zap 'save_locale', so
5228 * create a copy. */
5229 save_locale = savepv(save_locale);
837ce802 5230 do_setlocale_c(LC_MESSAGES, "C");
c9dda6da 5231 }
6ebbc862 5232 }
6ebbc862 5233 } /* end of ! within_locale_scope */
9c8a6dc2
KW
5234 else {
5235 DEBUG_Lv(PerlIO_printf(Perl_debug_log, "%s: %d: WITHIN locale scope\n",
5236 __FILE__, __LINE__));
5237 }
a0b53297 5238
9c8a6dc2
KW
5239 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
5240 "Any locale change has been done; about to call Strerror\n"));
52770946 5241 errstr = savepv(Strerror(errnum));
6ebbc862
KW
5242
5243 if (! within_locale_scope) {
c9dda6da 5244 if (save_locale && ! locale_is_C) {
837ce802 5245 if (! do_setlocale_c(LC_MESSAGES, save_locale)) {
d707d779
KW
5246 Perl_croak(aTHX_
5247 "panic: %s: %d: setlocale restore failed, errno=%d\n",
5248 __FILE__, __LINE__, errno);
c9dda6da 5249 }
6ebbc862
KW
5250 Safefree(save_locale);
5251 }
5252 }
5253
5254 LOCALE_UNLOCK;
5255
7aaa36b1 5256# endif /* End of doesn't have strerror_l */
d36adde0 5257# ifdef DEBUGGING
6affbbf0
KW
5258
5259 if (DEBUG_Lv_TEST) {
5260 PerlIO_printf(Perl_debug_log, "Strerror returned; saving a copy: '");
5261 print_bytes_for_locale(errstr, errstr + strlen(errstr), 0);
5262 PerlIO_printf(Perl_debug_log, "'\n");
5263 }
5264
d36adde0
KW
5265# endif
5266#endif /* End of does have locale messages */
2c6ee1a7 5267
52770946 5268 SAVEFREEPV(errstr);
6ebbc862 5269 return errstr;
2c6ee1a7
KW
5270}
5271
66610fdd 5272/*
747c467a 5273
58e641fb
KW
5274=for apidoc switch_to_global_locale
5275
5276On systems without locale support, or on single-threaded builds, or on
5277platforms that do not support per-thread locale operations, this function does
5278nothing. On such systems that do have locale support, only a locale global to
5279the whole program is available.
5280
5281On multi-threaded builds on systems that do have per-thread locale operations,
5282this function converts the thread it is running in to use the global locale.
5283This is for code that has not yet or cannot be updated to handle multi-threaded
5284locale operation. As long as only a single thread is so-converted, everything
5285works fine, as all the other threads continue to ignore the global one, so only
5286this thread looks at it.
5287
69c5e0db
KW
5288However, on Windows systems this isn't quite true prior to Visual Studio 15,
5289at which point Microsoft fixed a bug. A race can occur if you use the
5290following operations on earlier Windows platforms:
5291
5292=over
5293
5294=item L<POSIX::localeconv|POSIX/localeconv>
5295
5296=item L<I18N::Langinfo>, items C<CRNCYSTR> and C<THOUSEP>
5297
5298=item L<perlapi/Perl_langinfo>, items C<CRNCYSTR> and C<THOUSEP>
5299
5300=back
5301
5302The first item is not fixable (except by upgrading to a later Visual Studio
5303release), but it would be possible to work around the latter two items by using
5304the Windows API functions C<GetNumberFormat> and C<GetCurrencyFormat>; patches
5305welcome.
5306
58e641fb
KW
5307Without this function call, threads that use the L<C<setlocale(3)>> system
5308function will not work properly, as all the locale-sensitive functions will
5309look at the per-thread locale, and C<setlocale> will have no effect on this
5310thread.
5311
5312Perl code should convert to either call
5313L<C<Perl_setlocale>|perlapi/Perl_setlocale> (which is a drop-in for the system
5314C<setlocale>) or use the methods given in L<perlcall> to call
5315L<C<POSIX::setlocale>|POSIX/setlocale>. Either one will transparently properly
5316handle all cases of single- vs multi-thread, POSIX 2008-supported or not.
5317
5318Non-Perl libraries, such as C<gtk>, that call the system C<setlocale> can
5319continue to work if this function is called before transferring control to the
5320library.
5321
5322Upon return from the code that needs to use the global locale,
5323L<C<sync_locale()>|perlapi/sync_locale> should be called to restore the safe
5324multi-thread operation.
5325
5326=cut
5327*/
5328
5329void
5330Perl_switch_to_global_locale()
5331{
5332
5333#ifdef USE_THREAD_SAFE_LOCALE
5334# ifdef WIN32
5335
5336 _configthreadlocale(_DISABLE_PER_THREAD_LOCALE);
5337
5338# else
5339# ifdef HAS_QUERYLOCALE
5340
5341 setlocale(LC_ALL, querylocale(LC_ALL_MASK, uselocale((locale_t) 0)));
5342
5343# else
5344
5345 {
5346 unsigned int i;
5347
5348 for (i = 0; i < LC_ALL_INDEX; i++) {
5349 setlocale(categories[i], do_setlocale_r(categories[i], NULL));
5350 }
5351 }
5352
5353# endif
5354
5355 uselocale(LC_GLOBAL_LOCALE);
5356
5357# endif
5358#endif
5359
5360}
5361
5362/*
5363
747c467a
KW
5364=for apidoc sync_locale
5365
b2e9ba0c
KW
5366L<C<Perl_setlocale>|perlapi/Perl_setlocale> can be used at any time to query or
5367change the locale (though changing the locale is antisocial and dangerous on
5368multi-threaded systems that don't have multi-thread safe locale operations.
5369(See L<perllocale/Multi-threaded operation>). Using the system
5370L<C<setlocale(3)>> should be avoided. Nevertheless, certain non-Perl libraries
5371called from XS, such as C<Gtk> do so, and this can't be changed. When the
5372locale is changed by XS code that didn't use
5373L<C<Perl_setlocale>|perlapi/Perl_setlocale>, Perl needs to be told that the
5374locale has changed. Use this function to do so, before returning to Perl.
5375
5376The return value is a boolean: TRUE if the global locale at the time of call
5377was in effect; and FALSE if a per-thread locale was in effect. This can be
5378used by the caller that needs to restore things as-they-were to decide whether
5379or not to call
5380L<C<Perl_switch_to_global_locale>|perlapi/switch_to_global_locale>.
747c467a
KW
5381
5382=cut
5383*/
5384
b2e9ba0c
KW
5385bool
5386Perl_sync_locale()
747c467a 5387{
d36adde0
KW
5388
5389#ifndef USE_LOCALE
5390
5391 return TRUE;
5392
5393#else
5394
e9bc6d6b 5395 const char * newlocale;
b2e9ba0c
KW
5396 dTHX;
5397
d36adde0 5398# ifdef USE_POSIX_2008_LOCALE
b2e9ba0c
KW
5399
5400 bool was_in_global_locale = FALSE;
5401 locale_t cur_obj = uselocale((locale_t) 0);
5402
5403 /* On Windows, unless the foreign code has turned off the thread-safe
5404 * locale setting, any plain setlocale() will have affected what we see, so
5405 * no need to worry. Otherwise, If the foreign code has done a plain
5406 * setlocale(), it will only affect the global locale on POSIX systems, but
5407 * will affect the */
5408 if (cur_obj == LC_GLOBAL_LOCALE) {
5409
d36adde0 5410# ifdef HAS_QUERY_LOCALE
b2e9ba0c
KW
5411
5412 do_setlocale_c(LC_ALL, setlocale(LC_ALL, NULL));
5413
d36adde0 5414# else
b2e9ba0c
KW
5415
5416 unsigned int i;
5417
5418 /* We can't trust that we can read the LC_ALL format on the
5419 * platform, so do them individually */
5420 for (i = 0; i < LC_ALL_INDEX; i++) {
5421 do_setlocale_r(categories[i], setlocale(categories[i], NULL));
5422 }
747c467a 5423
d36adde0 5424# endif
b2e9ba0c
KW
5425
5426 was_in_global_locale = TRUE;
5427 }
5428
d36adde0 5429# else
b2e9ba0c
KW
5430
5431 bool was_in_global_locale = TRUE;
5432
d36adde0
KW
5433# endif
5434# ifdef USE_LOCALE_CTYPE
7d4bcc4a 5435
b0bde642 5436 newlocale = savepv(do_setlocale_c(LC_CTYPE, NULL));
9f82ea3e
KW
5437 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
5438 "%s:%d: %s\n", __FILE__, __LINE__,
5439 setlocale_debug_string(LC_CTYPE, NULL, newlocale)));
5440 new_ctype(newlocale);
b0bde642 5441 Safefree(newlocale);
747c467a 5442
d36adde0
KW
5443# endif /* USE_LOCALE_CTYPE */
5444# ifdef USE_LOCALE_COLLATE
7d4bcc4a 5445
b0bde642 5446 newlocale = savepv(do_setlocale_c(LC_COLLATE, NULL));
9f82ea3e
KW
5447 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
5448 "%s:%d: %s\n", __FILE__, __LINE__,
5449 setlocale_debug_string(LC_COLLATE, NULL, newlocale)));
5450 new_collate(newlocale);
b0bde642 5451 Safefree(newlocale);
747c467a 5452
d36adde0
KW
5453# endif
5454# ifdef USE_LOCALE_NUMERIC
7d4bcc4a 5455
b0bde642 5456 newlocale = savepv(do_setlocale_c(LC_NUMERIC, NULL));
9f82ea3e
KW
5457 DEBUG_Lv(PerlIO_printf(Perl_debug_log,
5458 "%s:%d: %s\n", __FILE__, __LINE__,
5459 setlocale_debug_string(LC_NUMERIC, NULL, newlocale)));
5460 new_numeric(newlocale);
b0bde642 5461 Safefree(newlocale);
7d4bcc4a 5462
d36adde0 5463# endif /* USE_LOCALE_NUMERIC */
747c467a 5464
b2e9ba0c 5465 return was_in_global_locale;
d36adde0
KW
5466
5467#endif
5468
747c467a
KW
5469}
5470
5d1187d1
KW
5471#if defined(DEBUGGING) && defined(USE_LOCALE)
5472
a4f00dcc
KW
5473STATIC char *
5474S_setlocale_debug_string(const int category, /* category number,
5d1187d1
KW
5475 like LC_ALL */
5476 const char* const locale, /* locale name */
5477
5478 /* return value from setlocale() when attempting to
5479 * set 'category' to 'locale' */
5480 const char* const retval)
5481{
5482 /* Returns a pointer to a NUL-terminated string in static storage with
5483 * added text about the info passed in. This is not thread safe and will
5484 * be overwritten by the next call, so this should be used just to
fa07b8e5 5485 * formulate a string to immediately print or savepv() on. */
5d1187d1 5486
398a990f
DM
5487 /* initialise to a non-null value to keep it out of BSS and so keep
5488 * -DPERL_GLOBAL_STRUCT_PRIVATE happy */
8773126a 5489 static char ret[256] = "If you can read this, thank your buggy C"
60b45a7d
KW
5490 " library strlcpy(), and change your hints file"
5491 " to undef it";
7d4bcc4a 5492
e5f10d49 5493 my_strlcpy(ret, "setlocale(", sizeof(ret));
b09aaf40 5494 my_strlcat(ret, category_name(category), sizeof(ret));
fa07b8e5 5495 my_strlcat(ret, ", ", sizeof(ret));
5d1187d1
KW
5496
5497 if (locale) {
fa07b8e5
KW
5498 my_strlcat(ret, "\"", sizeof(ret));
5499 my_strlcat(ret, locale, sizeof(ret));
5500 my_strlcat(ret, "\"", sizeof(ret));
5d1187d1
KW
5501 }
5502 else {
fa07b8e5 5503 my_strlcat(ret, "NULL", sizeof(ret));
5d1187d1
KW
5504 }
5505
fa07b8e5 5506 my_strlcat(ret, ") returned ", sizeof(ret));
5d1187d1
KW
5507
5508 if (retval) {
fa07b8e5
KW
5509 my_strlcat(ret, "\"", sizeof(ret));
5510 my_strlcat(ret, retval, sizeof(ret));
5511 my_strlcat(ret, "\"", sizeof(ret));
5d1187d1
KW
5512 }
5513 else {
fa07b8e5 5514 my_strlcat(ret, "NULL", sizeof(ret));
5d1187d1
KW
5515 }
5516
5517 assert(strlen(ret) < sizeof(ret));
5518
5519 return ret;
5520}
5521
5522#endif
747c467a 5523
e9bc6d6b
KW
5524void
5525Perl_thread_locale_init()
5526{
5527 /* Called from a thread on startup*/
5528
5529#ifdef USE_THREAD_SAFE_LOCALE
5530
5531 dTHX_DEBUGGING;
5532
5533 /* C starts the new thread in the global C locale. If we are thread-safe,
5534 * we want to not be in the global locale */
5535
5536 DEBUG_L(PerlIO_printf(Perl_debug_log,
5537 "%s:%d: new thread, initial locale is %s; calling setlocale\n",
5538 __FILE__, __LINE__, setlocale(LC_ALL, NULL)));
5539
5540# ifdef WIN32
5541
5542 _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
5543
5544# else
5545
5546 Perl_setlocale(LC_ALL, "C");
5547
5548# endif
5549#endif
5550
5551}
5552
5553void
5554Perl_thread_locale_term()
5555{
5556 /* Called from a thread as it gets ready to terminate */
5557
5558#ifdef USE_THREAD_SAFE_LOCALE
5559
5560 /* C starts the new thread in the global C locale. If we are thread-safe,
5561 * we want to not be in the global locale */
5562
5563# ifndef WIN32
5564
5565 { /* Free up */
5566 locale_t cur_obj = uselocale(LC_GLOBAL_LOCALE);
5567 if (cur_obj != LC_GLOBAL_LOCALE) {
5568 freelocale(cur_obj);
5569 }
5570 }
5571
5572# endif
5573#endif
5574
5575}
747c467a
KW
5576
5577/*
14d04a33 5578 * ex: set ts=8 sts=4 sw=4 et:
37442d52 5579 */