Commit | Line | Data |
---|---|---|
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 KW |
25 | * |
26 | * All C programs have an underlying locale. Perl generally doesn't pay any | |
27 | * attention to it except within the scope of a 'use locale'. For most | |
28 | * categories, it accomplishes this by just using different operations if it is | |
29 | * in such scope than if not. However, various libc functions called by Perl | |
30 | * are affected by the LC_NUMERIC category, so there are macros in perl.h that | |
31 | * are used to toggle between the current locale and the C locale depending on | |
32 | * the desired behavior of those functions at the moment. | |
166f8a29 DM |
33 | */ |
34 | ||
98994639 HS |
35 | #include "EXTERN.h" |
36 | #define PERL_IN_LOCALE_C | |
37 | #include "perl.h" | |
38 | ||
b310b053 JH |
39 | #ifdef I_LANGINFO |
40 | # include <langinfo.h> | |
41 | #endif | |
42 | ||
a4af207c JH |
43 | #include "reentr.h" |
44 | ||
8ef6e574 KW |
45 | #ifdef USE_LOCALE |
46 | ||
98994639 | 47 | /* |
0d071d52 KW |
48 | * Standardize the locale name from a string returned by 'setlocale', possibly |
49 | * modifying that string. | |
98994639 | 50 | * |
0ef2a2b2 | 51 | * The typical return value of setlocale() is either |
98994639 HS |
52 | * (1) "xx_YY" if the first argument of setlocale() is not LC_ALL |
53 | * (2) "xa_YY xb_YY ..." if the first argument of setlocale() is LC_ALL | |
54 | * (the space-separated values represent the various sublocales, | |
0ef2a2b2 | 55 | * in some unspecified order). This is not handled by this function. |
98994639 HS |
56 | * |
57 | * In some platforms it has a form like "LC_SOMETHING=Lang_Country.866\n", | |
0ef2a2b2 KW |
58 | * which is harmful for further use of the string in setlocale(). This |
59 | * function removes the trailing new line and everything up through the '=' | |
98994639 HS |
60 | * |
61 | */ | |
62 | STATIC char * | |
63 | S_stdize_locale(pTHX_ char *locs) | |
64 | { | |
7452cf6a | 65 | const char * const s = strchr(locs, '='); |
98994639 HS |
66 | bool okay = TRUE; |
67 | ||
7918f24d NC |
68 | PERL_ARGS_ASSERT_STDIZE_LOCALE; |
69 | ||
8772537c AL |
70 | if (s) { |
71 | const char * const t = strchr(s, '.'); | |
98994639 | 72 | okay = FALSE; |
8772537c AL |
73 | if (t) { |
74 | const char * const u = strchr(t, '\n'); | |
75 | if (u && (u[1] == 0)) { | |
76 | const STRLEN len = u - s; | |
77 | Move(s + 1, locs, len, char); | |
78 | locs[len] = 0; | |
79 | okay = TRUE; | |
98994639 HS |
80 | } |
81 | } | |
82 | } | |
83 | ||
84 | if (!okay) | |
85 | Perl_croak(aTHX_ "Can't fix broken locale name \"%s\"", locs); | |
86 | ||
87 | return locs; | |
88 | } | |
89 | ||
8ef6e574 KW |
90 | #endif |
91 | ||
98994639 HS |
92 | void |
93 | Perl_set_numeric_radix(pTHX) | |
94 | { | |
95 | #ifdef USE_LOCALE_NUMERIC | |
97aff369 | 96 | dVAR; |
98994639 | 97 | # ifdef HAS_LOCALECONV |
7452cf6a | 98 | const struct lconv* const lc = localeconv(); |
98994639 | 99 | |
98994639 HS |
100 | if (lc && lc->decimal_point) { |
101 | if (lc->decimal_point[0] == '.' && lc->decimal_point[1] == 0) { | |
102 | SvREFCNT_dec(PL_numeric_radix_sv); | |
a0714e2c | 103 | PL_numeric_radix_sv = NULL; |
98994639 HS |
104 | } |
105 | else { | |
106 | if (PL_numeric_radix_sv) | |
107 | sv_setpv(PL_numeric_radix_sv, lc->decimal_point); | |
108 | else | |
109 | PL_numeric_radix_sv = newSVpv(lc->decimal_point, 0); | |
28acfe03 KW |
110 | if (! is_ascii_string((U8 *) lc->decimal_point, 0) |
111 | && is_utf8_string((U8 *) lc->decimal_point, 0) | |
112 | && is_cur_LC_category_utf8(LC_NUMERIC)) | |
113 | { | |
114 | SvUTF8_on(PL_numeric_radix_sv); | |
115 | } | |
98994639 HS |
116 | } |
117 | } | |
118 | else | |
a0714e2c | 119 | PL_numeric_radix_sv = NULL; |
69014004 KW |
120 | |
121 | DEBUG_L(PerlIO_printf(Perl_debug_log, "Locale radix is %s\n", | |
122 | (PL_numeric_radix_sv) | |
123 | ? lc->decimal_point | |
124 | : "NULL")); | |
125 | ||
98994639 HS |
126 | # endif /* HAS_LOCALECONV */ |
127 | #endif /* USE_LOCALE_NUMERIC */ | |
128 | } | |
129 | ||
98994639 | 130 | void |
8772537c | 131 | Perl_new_numeric(pTHX_ const char *newnum) |
98994639 HS |
132 | { |
133 | #ifdef USE_LOCALE_NUMERIC | |
0d071d52 KW |
134 | |
135 | /* Called after all libc setlocale() calls affecting LC_NUMERIC, to tell | |
136 | * core Perl this and that 'newnum' is the name of the new locale. | |
137 | * It installs this locale as the current underlying default. | |
138 | * | |
139 | * The default locale and the C locale can be toggled between by use of the | |
140 | * set_numeric_local() and set_numeric_standard() functions, which should | |
141 | * probably not be called directly, but only via macros like | |
142 | * SET_NUMERIC_STANDARD() in perl.h. | |
143 | * | |
144 | * The toggling is necessary mainly so that a non-dot radix decimal point | |
145 | * character can be output, while allowing internal calculations to use a | |
146 | * dot. | |
147 | * | |
148 | * This sets several interpreter-level variables: | |
149 | * PL_numeric_name The default locale's name: a copy of 'newnum' | |
150 | * PL_numeric_local A boolean indicating if the toggled state is such | |
151 | * that the current locale is the default locale | |
152 | * PL_numeric_standard A boolean indicating if the toggled state is such | |
153 | * that the current locale is the C locale | |
154 | * Note that both of the last two variables can be true at the same time, | |
155 | * if the underlying locale is C. (Toggling is a no-op under these | |
156 | * circumstances.) | |
157 | * | |
158 | * Any code changing the locale (outside this file) should use | |
159 | * POSIX::setlocale, which calls this function. Therefore this function | |
160 | * should be called directly only from this file and from | |
161 | * POSIX::setlocale() */ | |
162 | ||
b03f34cf | 163 | char *save_newnum; |
97aff369 | 164 | dVAR; |
98994639 HS |
165 | |
166 | if (! newnum) { | |
43c5f42d NC |
167 | Safefree(PL_numeric_name); |
168 | PL_numeric_name = NULL; | |
98994639 HS |
169 | PL_numeric_standard = TRUE; |
170 | PL_numeric_local = TRUE; | |
171 | return; | |
172 | } | |
173 | ||
b03f34cf KW |
174 | save_newnum = stdize_locale(savepv(newnum)); |
175 | if (! PL_numeric_name || strNE(PL_numeric_name, save_newnum)) { | |
98994639 | 176 | Safefree(PL_numeric_name); |
b03f34cf | 177 | PL_numeric_name = save_newnum; |
b03f34cf | 178 | } |
98994639 | 179 | |
e19f01cb KW |
180 | PL_numeric_standard = ((*save_newnum == 'C' && save_newnum[1] == '\0') |
181 | || strEQ(save_newnum, "POSIX")); | |
182 | PL_numeric_local = TRUE; | |
183 | set_numeric_radix(); | |
6959d69d | 184 | |
98994639 HS |
185 | #endif /* USE_LOCALE_NUMERIC */ |
186 | } | |
187 | ||
188 | void | |
189 | Perl_set_numeric_standard(pTHX) | |
190 | { | |
191 | #ifdef USE_LOCALE_NUMERIC | |
97aff369 | 192 | dVAR; |
98994639 | 193 | |
0d071d52 KW |
194 | /* Toggle the LC_NUMERIC locale to C, if not already there. Probably |
195 | * should use the macros like SET_NUMERIC_STANDARD() in perl.h instead of | |
196 | * calling this directly. */ | |
197 | ||
98994639 HS |
198 | if (! PL_numeric_standard) { |
199 | setlocale(LC_NUMERIC, "C"); | |
200 | PL_numeric_standard = TRUE; | |
201 | PL_numeric_local = FALSE; | |
202 | set_numeric_radix(); | |
203 | } | |
69014004 KW |
204 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
205 | "Underlying LC_NUMERIC locale now is C\n")); | |
98994639 HS |
206 | |
207 | #endif /* USE_LOCALE_NUMERIC */ | |
208 | } | |
209 | ||
210 | void | |
211 | Perl_set_numeric_local(pTHX) | |
212 | { | |
213 | #ifdef USE_LOCALE_NUMERIC | |
97aff369 | 214 | dVAR; |
98994639 | 215 | |
0d071d52 KW |
216 | /* Toggle the LC_NUMERIC locale to the current underlying default, if not |
217 | * already there. Probably should use the macros like SET_NUMERIC_LOCAL() | |
218 | * in perl.h instead of calling this directly. */ | |
219 | ||
98994639 HS |
220 | if (! PL_numeric_local) { |
221 | setlocale(LC_NUMERIC, PL_numeric_name); | |
222 | PL_numeric_standard = FALSE; | |
223 | PL_numeric_local = TRUE; | |
224 | set_numeric_radix(); | |
225 | } | |
69014004 KW |
226 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
227 | "Underlying LC_NUMERIC locale now is %s\n", | |
228 | PL_numeric_name)); | |
98994639 HS |
229 | |
230 | #endif /* USE_LOCALE_NUMERIC */ | |
231 | } | |
232 | ||
233 | /* | |
234 | * Set up for a new ctype locale. | |
235 | */ | |
236 | void | |
8772537c | 237 | Perl_new_ctype(pTHX_ const char *newctype) |
98994639 HS |
238 | { |
239 | #ifdef USE_LOCALE_CTYPE | |
0d071d52 KW |
240 | |
241 | /* Called after all libc setlocale() calls affecting LC_CTYPE, to tell | |
242 | * core Perl this and that 'newctype' is the name of the new locale. | |
243 | * | |
244 | * This function sets up the folding arrays for all 256 bytes, assuming | |
245 | * that tofold() is tolc() since fold case is not a concept in POSIX, | |
246 | * | |
247 | * Any code changing the locale (outside this file) should use | |
248 | * POSIX::setlocale, which calls this function. Therefore this function | |
249 | * should be called directly only from this file and from | |
250 | * POSIX::setlocale() */ | |
251 | ||
27da23d5 | 252 | dVAR; |
68067e4e | 253 | UV i; |
98994639 | 254 | |
7918f24d NC |
255 | PERL_ARGS_ASSERT_NEW_CTYPE; |
256 | ||
31f05a37 KW |
257 | PL_in_utf8_CTYPE_locale = is_cur_LC_category_utf8(LC_CTYPE); |
258 | ||
259 | /* A UTF-8 locale gets standard rules. But note that code still has to | |
260 | * handle this specially because of the three problematic code points */ | |
261 | if (PL_in_utf8_CTYPE_locale) { | |
262 | Copy(PL_fold_latin1, PL_fold_locale, 256, U8); | |
263 | } | |
264 | else { | |
baa60164 KW |
265 | for (i = 0; i < 256; i++) { |
266 | if (isUPPER_LC((U8) i)) | |
267 | PL_fold_locale[i] = (U8) toLOWER_LC((U8) i); | |
268 | else if (isLOWER_LC((U8) i)) | |
269 | PL_fold_locale[i] = (U8) toUPPER_LC((U8) i); | |
270 | else | |
271 | PL_fold_locale[i] = (U8) i; | |
272 | } | |
31f05a37 | 273 | } |
98994639 HS |
274 | |
275 | #endif /* USE_LOCALE_CTYPE */ | |
7918f24d | 276 | PERL_ARGS_ASSERT_NEW_CTYPE; |
8772537c | 277 | PERL_UNUSED_ARG(newctype); |
96a5add6 | 278 | PERL_UNUSED_CONTEXT; |
98994639 HS |
279 | } |
280 | ||
98994639 | 281 | void |
8772537c | 282 | Perl_new_collate(pTHX_ const char *newcoll) |
98994639 HS |
283 | { |
284 | #ifdef USE_LOCALE_COLLATE | |
0d071d52 KW |
285 | |
286 | /* Called after all libc setlocale() calls affecting LC_COLLATE, to tell | |
287 | * core Perl this and that 'newcoll' is the name of the new locale. | |
288 | * | |
289 | * Any code changing the locale (outside this file) should use | |
290 | * POSIX::setlocale, which calls this function. Therefore this function | |
291 | * should be called directly only from this file and from | |
292 | * POSIX::setlocale() */ | |
293 | ||
97aff369 | 294 | dVAR; |
98994639 HS |
295 | |
296 | if (! newcoll) { | |
297 | if (PL_collation_name) { | |
298 | ++PL_collation_ix; | |
299 | Safefree(PL_collation_name); | |
300 | PL_collation_name = NULL; | |
301 | } | |
302 | PL_collation_standard = TRUE; | |
303 | PL_collxfrm_base = 0; | |
304 | PL_collxfrm_mult = 2; | |
305 | return; | |
306 | } | |
307 | ||
308 | if (! PL_collation_name || strNE(PL_collation_name, newcoll)) { | |
309 | ++PL_collation_ix; | |
310 | Safefree(PL_collation_name); | |
311 | PL_collation_name = stdize_locale(savepv(newcoll)); | |
770526c1 NC |
312 | PL_collation_standard = ((*newcoll == 'C' && newcoll[1] == '\0') |
313 | || strEQ(newcoll, "POSIX")); | |
98994639 HS |
314 | |
315 | { | |
316 | /* 2: at most so many chars ('a', 'b'). */ | |
317 | /* 50: surely no system expands a char more. */ | |
318 | #define XFRMBUFSIZE (2 * 50) | |
319 | char xbuf[XFRMBUFSIZE]; | |
8772537c AL |
320 | const Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE); |
321 | const Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE); | |
322 | const SSize_t mult = fb - fa; | |
e0601d3c | 323 | if (mult < 1 && !(fa == 0 && fb == 0)) |
ad49ad39 NC |
324 | Perl_croak(aTHX_ "panic: strxfrm() gets absurd - a => %"UVuf", ab => %"UVuf, |
325 | (UV) fa, (UV) fb); | |
eb160463 | 326 | PL_collxfrm_base = (fa > (Size_t)mult) ? (fa - mult) : 0; |
98994639 HS |
327 | PL_collxfrm_mult = mult; |
328 | } | |
329 | } | |
330 | ||
331 | #endif /* USE_LOCALE_COLLATE */ | |
332 | } | |
333 | ||
b385bb4d KW |
334 | #ifdef WIN32 |
335 | ||
336 | char * | |
337 | Perl_my_setlocale(pTHX_ int category, const char* locale) | |
338 | { | |
339 | /* This, for Windows, emulates POSIX setlocale() behavior. There is no | |
340 | * difference unless the input locale is "", which means on Windows to get | |
341 | * the machine default, which is set via the computer's "Regional and | |
342 | * Language Options" (or its current equivalent). In POSIX, it instead | |
343 | * means to find the locale from the user's environment. This routine | |
344 | * looks in the environment, and, if anything is found, uses that instead | |
345 | * of going to the machine default. If there is no environment override, | |
346 | * the machine default is used, as normal, by calling the real setlocale() | |
347 | * with "". The POSIX behavior is to use the LC_ALL variable if set; | |
348 | * otherwise to use the particular category's variable if set; otherwise to | |
349 | * use the LANG variable. */ | |
350 | ||
351 | if (locale && strEQ(locale, "")) { | |
352 | # ifdef LC_ALL | |
353 | locale = PerlEnv_getenv("LC_ALL"); | |
354 | if (! locale) { | |
355 | #endif | |
356 | switch (category) { | |
357 | # ifdef LC_ALL | |
358 | case LC_ALL: | |
359 | break; /* We already know its variable isn't set */ | |
360 | # endif | |
361 | # ifdef USE_LOCALE_TIME | |
362 | case LC_TIME: | |
363 | locale = PerlEnv_getenv("LC_TIME"); | |
364 | break; | |
365 | # endif | |
366 | # ifdef USE_LOCALE_CTYPE | |
367 | case LC_CTYPE: | |
368 | locale = PerlEnv_getenv("LC_CTYPE"); | |
369 | break; | |
370 | # endif | |
371 | # ifdef USE_LOCALE_COLLATE | |
372 | case LC_COLLATE: | |
373 | locale = PerlEnv_getenv("LC_COLLATE"); | |
374 | break; | |
375 | # endif | |
376 | # ifdef USE_LOCALE_MONETARY | |
377 | case LC_MONETARY: | |
378 | locale = PerlEnv_getenv("LC_MONETARY"); | |
379 | break; | |
380 | # endif | |
381 | # ifdef USE_LOCALE_NUMERIC | |
382 | case LC_NUMERIC: | |
383 | locale = PerlEnv_getenv("LC_NUMERIC"); | |
384 | break; | |
385 | # endif | |
386 | # ifdef USE_LOCALE_MESSAGES | |
387 | case LC_MESSAGES: | |
388 | locale = PerlEnv_getenv("LC_MESSAGES"); | |
389 | break; | |
390 | # endif | |
391 | default: | |
392 | /* This is a category, like PAPER_SIZE that we don't | |
393 | * know about; and so can't provide a wrapper. */ | |
394 | break; | |
395 | } | |
396 | if (! locale) { | |
397 | locale = PerlEnv_getenv("LANG"); | |
398 | if (! locale) { | |
399 | locale = ""; | |
400 | } | |
401 | } | |
402 | # ifdef LC_ALL | |
403 | } | |
404 | # endif | |
405 | } | |
406 | ||
407 | return setlocale(category, locale); | |
408 | } | |
409 | ||
410 | #endif | |
411 | ||
412 | ||
98994639 HS |
413 | /* |
414 | * Initialize locale awareness. | |
415 | */ | |
416 | int | |
417 | Perl_init_i18nl10n(pTHX_ int printwarn) | |
418 | { | |
0e92a118 KW |
419 | /* printwarn is |
420 | * | |
421 | * 0 if not to output warning when setup locale is bad | |
422 | * 1 if to output warning based on value of PERL_BADLANG | |
423 | * >1 if to output regardless of PERL_BADLANG | |
424 | * | |
425 | * returns | |
98994639 | 426 | * 1 = set ok or not applicable, |
0e92a118 KW |
427 | * 0 = fallback to a locale of lower priority |
428 | * -1 = fallback to all locales failed, not even to the C locale | |
98994639 HS |
429 | */ |
430 | ||
0e92a118 KW |
431 | int ok = 1; |
432 | ||
98994639 | 433 | #if defined(USE_LOCALE) |
97aff369 | 434 | dVAR; |
98994639 HS |
435 | |
436 | #ifdef USE_LOCALE_CTYPE | |
437 | char *curctype = NULL; | |
438 | #endif /* USE_LOCALE_CTYPE */ | |
439 | #ifdef USE_LOCALE_COLLATE | |
440 | char *curcoll = NULL; | |
441 | #endif /* USE_LOCALE_COLLATE */ | |
442 | #ifdef USE_LOCALE_NUMERIC | |
443 | char *curnum = NULL; | |
444 | #endif /* USE_LOCALE_NUMERIC */ | |
445 | #ifdef __GLIBC__ | |
7452cf6a | 446 | char * const language = PerlEnv_getenv("LANGUAGE"); |
65ebb059 KW |
447 | #else |
448 | const char * const language = NULL; | |
98994639 | 449 | #endif |
65ebb059 | 450 | |
ccd65d51 KW |
451 | /* NULL uses the existing already set up locale */ |
452 | const char * const setlocale_init = (PerlEnv_getenv("PERL_SKIP_LOCALE_INIT")) | |
453 | ? NULL | |
454 | : ""; | |
65ebb059 KW |
455 | const char* trial_locales[5] = { setlocale_init }; /* 5 = 1 each for "", |
456 | LC_ALL, LANG, "", C | |
457 | */ | |
458 | unsigned int trial_locales_count = 1; | |
7452cf6a AL |
459 | char * const lc_all = PerlEnv_getenv("LC_ALL"); |
460 | char * const lang = PerlEnv_getenv("LANG"); | |
98994639 | 461 | bool setlocale_failure = FALSE; |
65ebb059 KW |
462 | unsigned int i; |
463 | char *p; | |
464 | const bool locwarn = (printwarn > 1 || | |
465 | (printwarn && | |
466 | (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)))); | |
0e92a118 | 467 | bool done = FALSE; |
65ebb059 KW |
468 | const char *description; |
469 | const char *system_default_locale = NULL; | |
0e92a118 | 470 | |
98994639 | 471 | |
0e92a118 KW |
472 | #ifndef LOCALE_ENVIRON_REQUIRED |
473 | PERL_UNUSED_VAR(done); | |
474 | #else | |
98994639 HS |
475 | |
476 | /* | |
477 | * Ultrix setlocale(..., "") fails if there are no environment | |
478 | * variables from which to get a locale name. | |
479 | */ | |
480 | ||
b3e384bf | 481 | # ifdef LC_ALL |
98994639 | 482 | if (lang) { |
b385bb4d | 483 | if (my_setlocale(LC_ALL, setlocale_init)) |
98994639 HS |
484 | done = TRUE; |
485 | else | |
486 | setlocale_failure = TRUE; | |
487 | } | |
488 | if (!setlocale_failure) { | |
b3e384bf | 489 | # ifdef USE_LOCALE_CTYPE |
56279a21 | 490 | Safefree(curctype); |
98994639 | 491 | if (! (curctype = |
b385bb4d | 492 | my_setlocale(LC_CTYPE, |
98994639 | 493 | (!done && (lang || PerlEnv_getenv("LC_CTYPE"))) |
ccd65d51 | 494 | ? setlocale_init : NULL))) |
98994639 HS |
495 | setlocale_failure = TRUE; |
496 | else | |
497 | curctype = savepv(curctype); | |
b3e384bf KW |
498 | # endif /* USE_LOCALE_CTYPE */ |
499 | # ifdef USE_LOCALE_COLLATE | |
56279a21 | 500 | Safefree(curcoll); |
98994639 | 501 | if (! (curcoll = |
b385bb4d | 502 | my_setlocale(LC_COLLATE, |
98994639 | 503 | (!done && (lang || PerlEnv_getenv("LC_COLLATE"))) |
ccd65d51 | 504 | ? setlocale_init : NULL))) |
98994639 HS |
505 | setlocale_failure = TRUE; |
506 | else | |
507 | curcoll = savepv(curcoll); | |
b3e384bf KW |
508 | # endif /* USE_LOCALE_COLLATE */ |
509 | # ifdef USE_LOCALE_NUMERIC | |
56279a21 | 510 | Safefree(curnum); |
98994639 | 511 | if (! (curnum = |
b385bb4d | 512 | my_setlocale(LC_NUMERIC, |
98994639 | 513 | (!done && (lang || PerlEnv_getenv("LC_NUMERIC"))) |
ccd65d51 | 514 | ? setlocale_init : NULL))) |
98994639 HS |
515 | setlocale_failure = TRUE; |
516 | else | |
517 | curnum = savepv(curnum); | |
b3e384bf | 518 | # endif /* USE_LOCALE_NUMERIC */ |
a782673d KW |
519 | # ifdef USE_LOCALE_MESSAGES |
520 | if (! my_setlocale(LC_MESSAGES, | |
521 | (!done && (lang || PerlEnv_getenv("LC_MESSAGES"))) | |
522 | ? setlocale_init : NULL)) | |
523 | { | |
524 | setlocale_failure = TRUE; | |
525 | } | |
526 | # endif /* USE_LOCALE_MESSAGES */ | |
c835d6be KW |
527 | # ifdef USE_LOCALE_MONETARY |
528 | if (! my_setlocale(LC_MONETARY, | |
529 | (!done && (lang || PerlEnv_getenv("LC_MONETARY"))) | |
530 | ? setlocale_init : NULL)) | |
531 | { | |
532 | setlocale_failure = TRUE; | |
533 | } | |
534 | # endif /* USE_LOCALE_MONETARY */ | |
98994639 HS |
535 | } |
536 | ||
b3e384bf | 537 | # endif /* LC_ALL */ |
98994639 HS |
538 | |
539 | #endif /* !LOCALE_ENVIRON_REQUIRED */ | |
540 | ||
65ebb059 KW |
541 | /* We try each locale in the list until we get one that works, or exhaust |
542 | * the list */ | |
543 | for (i= 0; i < trial_locales_count; i++) { | |
544 | const char * trial_locale = trial_locales[i]; | |
545 | ||
546 | if (i > 0) { | |
547 | ||
548 | /* XXX This is to preserve old behavior for LOCALE_ENVIRON_REQUIRED | |
549 | * when i==0, but I (khw) don't think that behavior makes much | |
550 | * sense */ | |
551 | setlocale_failure = FALSE; | |
552 | ||
553 | #ifdef WIN32 | |
554 | ||
555 | /* On Windows machines, an entry of "" after the 0th means to use | |
556 | * the system default locale, which we now proceed to get. */ | |
557 | if (strEQ(trial_locale, "")) { | |
558 | unsigned int j; | |
559 | ||
560 | /* Note that this may change the locale, but we are going to do | |
561 | * that anyway just below */ | |
562 | system_default_locale = setlocale(LC_ALL, ""); | |
563 | ||
564 | /* Skip if invalid or it's already on the list of locales to | |
565 | * try */ | |
566 | if (! system_default_locale) { | |
567 | goto next_iteration; | |
568 | } | |
569 | for (j = 0; j < trial_locales_count; j++) { | |
570 | if (strEQ(system_default_locale, trial_locales[j])) { | |
571 | goto next_iteration; | |
572 | } | |
573 | } | |
574 | ||
575 | trial_locale = system_default_locale; | |
576 | } | |
577 | #endif | |
578 | } | |
579 | ||
98994639 | 580 | #ifdef LC_ALL |
49c85077 KW |
581 | if (! my_setlocale(LC_ALL, trial_locale)) |
582 | setlocale_failure = TRUE; | |
98994639 HS |
583 | #endif /* LC_ALL */ |
584 | ||
49c85077 | 585 | if (!setlocale_failure) { |
98994639 | 586 | #ifdef USE_LOCALE_CTYPE |
49c85077 KW |
587 | Safefree(curctype); |
588 | if (! (curctype = my_setlocale(LC_CTYPE, trial_locale))) | |
589 | setlocale_failure = TRUE; | |
590 | else | |
591 | curctype = savepv(curctype); | |
98994639 HS |
592 | #endif /* USE_LOCALE_CTYPE */ |
593 | #ifdef USE_LOCALE_COLLATE | |
49c85077 KW |
594 | Safefree(curcoll); |
595 | if (! (curcoll = my_setlocale(LC_COLLATE, trial_locale))) | |
596 | setlocale_failure = TRUE; | |
597 | else | |
598 | curcoll = savepv(curcoll); | |
98994639 HS |
599 | #endif /* USE_LOCALE_COLLATE */ |
600 | #ifdef USE_LOCALE_NUMERIC | |
49c85077 KW |
601 | Safefree(curnum); |
602 | if (! (curnum = my_setlocale(LC_NUMERIC, trial_locale))) | |
603 | setlocale_failure = TRUE; | |
604 | else | |
605 | curnum = savepv(curnum); | |
98994639 | 606 | #endif /* USE_LOCALE_NUMERIC */ |
a782673d KW |
607 | #ifdef USE_LOCALE_MESSAGES |
608 | if (! (my_setlocale(LC_MESSAGES, trial_locale))) | |
609 | setlocale_failure = TRUE; | |
610 | #endif /* USE_LOCALE_MESSAGES */ | |
c835d6be KW |
611 | #ifdef USE_LOCALE_MONETARY |
612 | if (! (my_setlocale(LC_MONETARY, trial_locale))) | |
613 | setlocale_failure = TRUE; | |
614 | #endif /* USE_LOCALE_MONETARY */ | |
615 | ||
49c85077 KW |
616 | if (! setlocale_failure) { /* Success */ |
617 | break; | |
618 | } | |
65ebb059 | 619 | } |
98994639 | 620 | |
49c85077 KW |
621 | /* Here, something failed; will need to try a fallback. */ |
622 | ok = 0; | |
65ebb059 | 623 | |
49c85077 KW |
624 | if (i == 0) { |
625 | unsigned int j; | |
98994639 | 626 | |
65ebb059 | 627 | if (locwarn) { /* Output failure info only on the first one */ |
98994639 HS |
628 | #ifdef LC_ALL |
629 | ||
49c85077 KW |
630 | PerlIO_printf(Perl_error_log, |
631 | "perl: warning: Setting locale failed.\n"); | |
98994639 HS |
632 | |
633 | #else /* !LC_ALL */ | |
634 | ||
49c85077 KW |
635 | PerlIO_printf(Perl_error_log, |
636 | "perl: warning: Setting locale failed for the categories:\n\t"); | |
98994639 | 637 | #ifdef USE_LOCALE_CTYPE |
49c85077 KW |
638 | if (! curctype) |
639 | PerlIO_printf(Perl_error_log, "LC_CTYPE "); | |
98994639 HS |
640 | #endif /* USE_LOCALE_CTYPE */ |
641 | #ifdef USE_LOCALE_COLLATE | |
49c85077 KW |
642 | if (! curcoll) |
643 | PerlIO_printf(Perl_error_log, "LC_COLLATE "); | |
98994639 HS |
644 | #endif /* USE_LOCALE_COLLATE */ |
645 | #ifdef USE_LOCALE_NUMERIC | |
49c85077 KW |
646 | if (! curnum) |
647 | PerlIO_printf(Perl_error_log, "LC_NUMERIC "); | |
98994639 | 648 | #endif /* USE_LOCALE_NUMERIC */ |
a782673d | 649 | PerlIO_printf(Perl_error_log, "and possibly others\n"); |
98994639 HS |
650 | |
651 | #endif /* LC_ALL */ | |
652 | ||
49c85077 KW |
653 | PerlIO_printf(Perl_error_log, |
654 | "perl: warning: Please check that your locale settings:\n"); | |
98994639 HS |
655 | |
656 | #ifdef __GLIBC__ | |
49c85077 KW |
657 | PerlIO_printf(Perl_error_log, |
658 | "\tLANGUAGE = %c%s%c,\n", | |
659 | language ? '"' : '(', | |
660 | language ? language : "unset", | |
661 | language ? '"' : ')'); | |
98994639 HS |
662 | #endif |
663 | ||
49c85077 KW |
664 | PerlIO_printf(Perl_error_log, |
665 | "\tLC_ALL = %c%s%c,\n", | |
666 | lc_all ? '"' : '(', | |
667 | lc_all ? lc_all : "unset", | |
668 | lc_all ? '"' : ')'); | |
98994639 HS |
669 | |
670 | #if defined(USE_ENVIRON_ARRAY) | |
49c85077 KW |
671 | { |
672 | char **e; | |
673 | for (e = environ; *e; e++) { | |
674 | if (strnEQ(*e, "LC_", 3) | |
675 | && strnNE(*e, "LC_ALL=", 7) | |
676 | && (p = strchr(*e, '='))) | |
677 | PerlIO_printf(Perl_error_log, "\t%.*s = \"%s\",\n", | |
678 | (int)(p - *e), *e, p + 1); | |
679 | } | |
680 | } | |
98994639 | 681 | #else |
49c85077 KW |
682 | PerlIO_printf(Perl_error_log, |
683 | "\t(possibly more locale environment variables)\n"); | |
98994639 HS |
684 | #endif |
685 | ||
49c85077 KW |
686 | PerlIO_printf(Perl_error_log, |
687 | "\tLANG = %c%s%c\n", | |
688 | lang ? '"' : '(', | |
689 | lang ? lang : "unset", | |
690 | lang ? '"' : ')'); | |
98994639 | 691 | |
49c85077 KW |
692 | PerlIO_printf(Perl_error_log, |
693 | " are supported and installed on your system.\n"); | |
694 | } | |
98994639 | 695 | |
65ebb059 KW |
696 | /* Calculate what fallback locales to try. We have avoided this |
697 | * until we have to, becuase failure is quite unlikely. This will | |
698 | * usually change the upper bound of the loop we are in. | |
699 | * | |
700 | * Since the system's default way of setting the locale has not | |
701 | * found one that works, We use Perl's defined ordering: LC_ALL, | |
702 | * LANG, and the C locale. We don't try the same locale twice, so | |
703 | * don't add to the list if already there. (On POSIX systems, the | |
704 | * LC_ALL element will likely be a repeat of the 0th element "", | |
705 | * but there's no harm done by doing it explicitly */ | |
706 | if (lc_all) { | |
707 | for (j = 0; j < trial_locales_count; j++) { | |
708 | if (strEQ(lc_all, trial_locales[j])) { | |
709 | goto done_lc_all; | |
710 | } | |
711 | } | |
712 | trial_locales[trial_locales_count++] = lc_all; | |
713 | } | |
714 | done_lc_all: | |
98994639 | 715 | |
65ebb059 KW |
716 | if (lang) { |
717 | for (j = 0; j < trial_locales_count; j++) { | |
718 | if (strEQ(lang, trial_locales[j])) { | |
719 | goto done_lang; | |
720 | } | |
721 | } | |
722 | trial_locales[trial_locales_count++] = lang; | |
723 | } | |
724 | done_lang: | |
725 | ||
726 | #if defined(WIN32) && defined(LC_ALL) | |
727 | /* For Windows, we also try the system default locale before "C". | |
728 | * (If there exists a Windows without LC_ALL we skip this because | |
729 | * it gets too complicated. For those, the "C" is the next | |
730 | * fallback possibility). The "" is the same as the 0th element of | |
731 | * the array, but the code at the loop above knows to treat it | |
732 | * differently when not the 0th */ | |
733 | trial_locales[trial_locales_count++] = ""; | |
734 | #endif | |
735 | ||
736 | for (j = 0; j < trial_locales_count; j++) { | |
737 | if (strEQ("C", trial_locales[j])) { | |
738 | goto done_C; | |
739 | } | |
740 | } | |
741 | trial_locales[trial_locales_count++] = "C"; | |
98994639 | 742 | |
65ebb059 KW |
743 | done_C: ; |
744 | } /* end of first time through the loop */ | |
98994639 | 745 | |
65ebb059 KW |
746 | #ifdef WIN32 |
747 | next_iteration: ; | |
748 | #endif | |
749 | ||
750 | } /* end of looping through the trial locales */ | |
751 | ||
752 | if (ok < 1) { /* If we tried to fallback */ | |
753 | const char* msg; | |
754 | if (! setlocale_failure) { /* fallback succeeded */ | |
755 | msg = "Falling back to"; | |
756 | } | |
757 | else { /* fallback failed */ | |
98994639 | 758 | |
65ebb059 KW |
759 | /* We dropped off the end of the loop, so have to decrement i to |
760 | * get back to the value the last time through */ | |
761 | i--; | |
98994639 | 762 | |
65ebb059 KW |
763 | ok = -1; |
764 | msg = "Failed to fall back to"; | |
765 | ||
766 | /* To continue, we should use whatever values we've got */ | |
98994639 | 767 | #ifdef USE_LOCALE_CTYPE |
49c85077 KW |
768 | Safefree(curctype); |
769 | curctype = savepv(setlocale(LC_CTYPE, NULL)); | |
98994639 HS |
770 | #endif /* USE_LOCALE_CTYPE */ |
771 | #ifdef USE_LOCALE_COLLATE | |
49c85077 KW |
772 | Safefree(curcoll); |
773 | curcoll = savepv(setlocale(LC_COLLATE, NULL)); | |
98994639 HS |
774 | #endif /* USE_LOCALE_COLLATE */ |
775 | #ifdef USE_LOCALE_NUMERIC | |
49c85077 KW |
776 | Safefree(curnum); |
777 | curnum = savepv(setlocale(LC_NUMERIC, NULL)); | |
98994639 | 778 | #endif /* USE_LOCALE_NUMERIC */ |
65ebb059 KW |
779 | } |
780 | ||
781 | if (locwarn) { | |
782 | const char * description; | |
783 | const char * name = ""; | |
784 | if (strEQ(trial_locales[i], "C")) { | |
785 | description = "the standard locale"; | |
786 | name = "C"; | |
787 | } | |
788 | else if (strEQ(trial_locales[i], "")) { | |
789 | description = "the system default locale"; | |
790 | if (system_default_locale) { | |
791 | name = system_default_locale; | |
792 | } | |
793 | } | |
794 | else { | |
795 | description = "a fallback locale"; | |
796 | name = trial_locales[i]; | |
797 | } | |
798 | if (name && strNE(name, "")) { | |
799 | PerlIO_printf(Perl_error_log, | |
800 | "perl: warning: %s %s (\"%s\").\n", msg, description, name); | |
801 | } | |
802 | else { | |
803 | PerlIO_printf(Perl_error_log, | |
804 | "perl: warning: %s %s.\n", msg, description); | |
805 | } | |
806 | } | |
807 | } /* End of tried to fallback */ | |
98994639 HS |
808 | |
809 | #ifdef USE_LOCALE_CTYPE | |
810 | new_ctype(curctype); | |
811 | #endif /* USE_LOCALE_CTYPE */ | |
812 | ||
813 | #ifdef USE_LOCALE_COLLATE | |
814 | new_collate(curcoll); | |
815 | #endif /* USE_LOCALE_COLLATE */ | |
816 | ||
817 | #ifdef USE_LOCALE_NUMERIC | |
818 | new_numeric(curnum); | |
819 | #endif /* USE_LOCALE_NUMERIC */ | |
b310b053 | 820 | |
8ef6e574 | 821 | #if defined(USE_PERLIO) && defined(USE_LOCALE_CTYPE) |
49c85077 KW |
822 | /* Set PL_utf8locale to TRUE if using PerlIO _and_ the current LC_CTYPE |
823 | * locale is UTF-8. If PL_utf8locale and PL_unicode (set by -C or by | |
824 | * $ENV{PERL_UNICODE}) are true, perl.c:S_parse_body() will turn on the | |
825 | * PerlIO :utf8 layer on STDIN, STDOUT, STDERR, _and_ the default open | |
826 | * discipline. */ | |
827 | PL_utf8locale = is_cur_LC_category_utf8(LC_CTYPE); | |
828 | ||
a05d7ebb | 829 | /* Set PL_unicode to $ENV{PERL_UNICODE} if using PerlIO. |
fde18df1 JH |
830 | This is an alternative to using the -C command line switch |
831 | (the -C if present will override this). */ | |
832 | { | |
dd374669 | 833 | const char *p = PerlEnv_getenv("PERL_UNICODE"); |
a05d7ebb | 834 | PL_unicode = p ? parse_unicode_opts(&p) : 0; |
5a22a2bb NC |
835 | if (PL_unicode & PERL_UNICODE_UTF8CACHEASSERT_FLAG) |
836 | PL_utf8cache = -1; | |
b310b053 | 837 | } |
ec71e770 | 838 | #endif |
b310b053 | 839 | |
98994639 | 840 | #ifdef USE_LOCALE_CTYPE |
43c5f42d | 841 | Safefree(curctype); |
98994639 HS |
842 | #endif /* USE_LOCALE_CTYPE */ |
843 | #ifdef USE_LOCALE_COLLATE | |
43c5f42d | 844 | Safefree(curcoll); |
98994639 HS |
845 | #endif /* USE_LOCALE_COLLATE */ |
846 | #ifdef USE_LOCALE_NUMERIC | |
43c5f42d | 847 | Safefree(curnum); |
98994639 | 848 | #endif /* USE_LOCALE_NUMERIC */ |
8ef6e574 KW |
849 | |
850 | #endif /* USE_LOCALE */ | |
851 | ||
98994639 HS |
852 | return ok; |
853 | } | |
854 | ||
49c85077 | 855 | |
98994639 HS |
856 | #ifdef USE_LOCALE_COLLATE |
857 | ||
858 | /* | |
859 | * mem_collxfrm() is a bit like strxfrm() but with two important | |
860 | * differences. First, it handles embedded NULs. Second, it allocates | |
861 | * a bit more memory than needed for the transformed data itself. | |
862 | * The real transformed data begins at offset sizeof(collationix). | |
863 | * Please see sv_collxfrm() to see how this is used. | |
864 | */ | |
166f8a29 | 865 | |
98994639 HS |
866 | char * |
867 | Perl_mem_collxfrm(pTHX_ const char *s, STRLEN len, STRLEN *xlen) | |
868 | { | |
97aff369 | 869 | dVAR; |
98994639 HS |
870 | char *xbuf; |
871 | STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */ | |
872 | ||
7918f24d NC |
873 | PERL_ARGS_ASSERT_MEM_COLLXFRM; |
874 | ||
98994639 HS |
875 | /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */ |
876 | /* the +1 is for the terminating NUL. */ | |
877 | ||
878 | xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1; | |
a02a5408 | 879 | Newx(xbuf, xAlloc, char); |
98994639 HS |
880 | if (! xbuf) |
881 | goto bad; | |
882 | ||
883 | *(U32*)xbuf = PL_collation_ix; | |
884 | xout = sizeof(PL_collation_ix); | |
885 | for (xin = 0; xin < len; ) { | |
224e8ef5 | 886 | Size_t xused; |
98994639 HS |
887 | |
888 | for (;;) { | |
889 | xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout); | |
224e8ef5 | 890 | if (xused >= PERL_INT_MAX) |
98994639 | 891 | goto bad; |
eb160463 | 892 | if ((STRLEN)xused < xAlloc - xout) |
98994639 HS |
893 | break; |
894 | xAlloc = (2 * xAlloc) + 1; | |
895 | Renew(xbuf, xAlloc, char); | |
896 | if (! xbuf) | |
897 | goto bad; | |
898 | } | |
899 | ||
900 | xin += strlen(s + xin) + 1; | |
901 | xout += xused; | |
902 | ||
903 | /* Embedded NULs are understood but silently skipped | |
904 | * because they make no sense in locale collation. */ | |
905 | } | |
906 | ||
907 | xbuf[xout] = '\0'; | |
908 | *xlen = xout - sizeof(PL_collation_ix); | |
909 | return xbuf; | |
910 | ||
911 | bad: | |
912 | Safefree(xbuf); | |
913 | *xlen = 0; | |
914 | return NULL; | |
915 | } | |
916 | ||
917 | #endif /* USE_LOCALE_COLLATE */ | |
918 | ||
8ef6e574 KW |
919 | #ifdef USE_LOCALE |
920 | ||
637917bb | 921 | STATIC bool |
7d74bb61 KW |
922 | S_is_cur_LC_category_utf8(pTHX_ int category) |
923 | { | |
924 | /* Returns TRUE if the current locale for 'category' is UTF-8; FALSE | |
925 | * otherwise. 'category' may not be LC_ALL. If the platform doesn't have | |
119ee68b KW |
926 | * nl_langinfo(), nor MB_CUR_MAX, this employs a heuristic, which hence |
927 | * could give the wrong result. It errs on the side of not being a UTF-8 | |
928 | * locale. */ | |
7d74bb61 KW |
929 | |
930 | char *save_input_locale = NULL; | |
7d74bb61 KW |
931 | STRLEN final_pos; |
932 | ||
8ef6e574 | 933 | #ifdef LC_ALL |
7d74bb61 | 934 | assert(category != LC_ALL); |
8ef6e574 | 935 | #endif |
7d74bb61 KW |
936 | |
937 | /* First dispose of the trivial cases */ | |
b07fffd1 | 938 | save_input_locale = setlocale(category, NULL); |
7d74bb61 | 939 | if (! save_input_locale) { |
69014004 KW |
940 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
941 | "Could not find current locale for category %d\n", | |
942 | category)); | |
7d74bb61 KW |
943 | return FALSE; /* XXX maybe should croak */ |
944 | } | |
b07fffd1 | 945 | save_input_locale = stdize_locale(savepv(save_input_locale)); |
7d74bb61 KW |
946 | if ((*save_input_locale == 'C' && save_input_locale[1] == '\0') |
947 | || strEQ(save_input_locale, "POSIX")) | |
948 | { | |
69014004 KW |
949 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
950 | "Current locale for category %d is %s\n", | |
951 | category, save_input_locale)); | |
b07fffd1 | 952 | Safefree(save_input_locale); |
7d74bb61 KW |
953 | return FALSE; |
954 | } | |
955 | ||
1d958db2 KW |
956 | #if defined(USE_LOCALE_CTYPE) \ |
957 | && (defined(MB_CUR_MAX) || (defined(HAS_NL_LANGINFO) && defined(CODESET))) | |
7d74bb61 | 958 | |
1d958db2 | 959 | { /* Next try nl_langinfo or MB_CUR_MAX if available */ |
7d74bb61 KW |
960 | |
961 | char *save_ctype_locale = NULL; | |
119ee68b | 962 | bool is_utf8; |
7d74bb61 | 963 | |
119ee68b | 964 | if (category != LC_CTYPE) { /* These work only on LC_CTYPE */ |
7d74bb61 KW |
965 | |
966 | /* Get the current LC_CTYPE locale */ | |
967 | save_ctype_locale = stdize_locale(savepv(setlocale(LC_CTYPE, NULL))); | |
968 | if (! save_ctype_locale) { | |
69014004 KW |
969 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
970 | "Could not find current locale for LC_CTYPE\n")); | |
7d74bb61 KW |
971 | goto cant_use_nllanginfo; |
972 | } | |
973 | ||
974 | /* If LC_CTYPE and the desired category use the same locale, this | |
975 | * means that finding the value for LC_CTYPE is the same as finding | |
976 | * the value for the desired category. Otherwise, switch LC_CTYPE | |
977 | * to the desired category's locale */ | |
978 | if (strEQ(save_ctype_locale, save_input_locale)) { | |
979 | Safefree(save_ctype_locale); | |
980 | save_ctype_locale = NULL; | |
981 | } | |
982 | else if (! setlocale(LC_CTYPE, save_input_locale)) { | |
69014004 KW |
983 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
984 | "Could not change LC_CTYPE locale to %s\n", | |
985 | save_input_locale)); | |
7d74bb61 KW |
986 | Safefree(save_ctype_locale); |
987 | goto cant_use_nllanginfo; | |
988 | } | |
989 | } | |
990 | ||
69014004 KW |
991 | DEBUG_L(PerlIO_printf(Perl_debug_log, "Current LC_CTYPE locale=%s\n", |
992 | save_input_locale)); | |
993 | ||
7d74bb61 | 994 | /* Here the current LC_CTYPE is set to the locale of the category whose |
1d958db2 KW |
995 | * information is desired. This means that nl_langinfo() and MB_CUR_MAX |
996 | * should give the correct results */ | |
119ee68b | 997 | |
1d958db2 KW |
998 | # if defined(HAS_NL_LANGINFO) && defined(CODESET) |
999 | { | |
1000 | char *codeset = savepv(nl_langinfo(CODESET)); | |
1001 | if (codeset && strNE(codeset, "")) { | |
119ee68b | 1002 | |
1d958db2 KW |
1003 | /* If we switched LC_CTYPE, switch back */ |
1004 | if (save_ctype_locale) { | |
1005 | setlocale(LC_CTYPE, save_ctype_locale); | |
1006 | Safefree(save_ctype_locale); | |
1007 | } | |
1008 | ||
1009 | is_utf8 = foldEQ(codeset, STR_WITH_LEN("UTF-8")) | |
1010 | || foldEQ(codeset, STR_WITH_LEN("UTF8")); | |
1011 | ||
69014004 KW |
1012 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1013 | "\tnllanginfo returned CODESET '%s'; ?UTF8 locale=%d\n", | |
1014 | codeset, is_utf8)); | |
1d958db2 KW |
1015 | Safefree(codeset); |
1016 | Safefree(save_input_locale); | |
1017 | return is_utf8; | |
1018 | } | |
119ee68b KW |
1019 | } |
1020 | ||
1d958db2 KW |
1021 | # endif |
1022 | # ifdef MB_CUR_MAX | |
1023 | ||
1024 | /* Here, either we don't have nl_langinfo, or it didn't return a | |
1025 | * codeset. Try MB_CUR_MAX */ | |
1026 | ||
119ee68b KW |
1027 | /* Standard UTF-8 needs at least 4 bytes to represent the maximum |
1028 | * Unicode code point. Since UTF-8 is the only non-single byte | |
1029 | * encoding we handle, we just say any such encoding is UTF-8, and if | |
1030 | * turns out to be wrong, other things will fail */ | |
1031 | is_utf8 = MB_CUR_MAX >= 4; | |
1032 | ||
69014004 KW |
1033 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1034 | "\tMB_CUR_MAX=%d; ?UTF8 locale=%d\n", | |
1035 | (int) MB_CUR_MAX, is_utf8)); | |
1036 | ||
119ee68b KW |
1037 | Safefree(save_input_locale); |
1038 | ||
1039 | # ifdef HAS_MBTOWC | |
1040 | ||
1041 | /* ... But, most system that have MB_CUR_MAX will also have mbtowc(), | |
1042 | * since they are both in the C99 standard. We can feed a known byte | |
1043 | * string to the latter function, and check that it gives the expected | |
1044 | * result */ | |
1045 | if (is_utf8) { | |
1046 | wchar_t wc; | |
a6715020 | 1047 | GCC_DIAG_IGNORE(-Wunused-result); |
1d958db2 | 1048 | (void) mbtowc(&wc, NULL, 0); /* Reset any shift state */ |
a6715020 | 1049 | GCC_DIAG_RESTORE; |
69014004 | 1050 | errno = 0; |
119ee68b KW |
1051 | if (mbtowc(&wc, HYPHEN_UTF8, strlen(HYPHEN_UTF8)) |
1052 | != strlen(HYPHEN_UTF8) | |
1053 | || wc != (wchar_t) 0x2010) | |
1054 | { | |
1055 | is_utf8 = FALSE; | |
69014004 KW |
1056 | DEBUG_L(PerlIO_printf(Perl_debug_log, "\thyphen=U+%x\n", wc)); |
1057 | DEBUG_L(PerlIO_printf(Perl_debug_log, | |
1058 | "\treturn from mbtowc=%d; errno=%d; ?UTF8 locale=0\n", | |
1059 | mbtowc(&wc, HYPHEN_UTF8, strlen(HYPHEN_UTF8)), errno)); | |
119ee68b KW |
1060 | } |
1061 | } | |
119ee68b KW |
1062 | # endif |
1063 | ||
1d958db2 KW |
1064 | /* If we switched LC_CTYPE, switch back */ |
1065 | if (save_ctype_locale) { | |
1066 | setlocale(LC_CTYPE, save_ctype_locale); | |
1067 | Safefree(save_ctype_locale); | |
119ee68b | 1068 | } |
7d74bb61 | 1069 | |
1d958db2 | 1070 | return is_utf8; |
119ee68b | 1071 | # endif |
7d74bb61 | 1072 | } |
119ee68b | 1073 | |
7d74bb61 KW |
1074 | cant_use_nllanginfo: |
1075 | ||
1076 | #endif /* HAS_NL_LANGINFO etc */ | |
1077 | ||
1078 | /* nl_langinfo not available or failed somehow. Look at the locale name to | |
751e9426 | 1079 | * see if it matches qr/UTF -? 8 /ix */ |
7d74bb61 KW |
1080 | |
1081 | final_pos = strlen(save_input_locale) - 1; | |
751e9426 KW |
1082 | if (final_pos >= 3) { |
1083 | char *name = save_input_locale; | |
1084 | ||
1085 | /* Find next 'U' or 'u' and look from there */ | |
1086 | while ((name += strcspn(name, "Uu") + 1) | |
1087 | <= save_input_locale + final_pos - 2) | |
7d74bb61 | 1088 | { |
751e9426 KW |
1089 | if (toFOLD(*(name)) != 't' |
1090 | || toFOLD(*(name + 1)) != 'f') | |
1091 | { | |
1092 | continue; | |
1093 | } | |
1094 | name += 2; | |
1095 | if (*(name) == '-') { | |
1096 | if ((name > save_input_locale + final_pos - 1)) { | |
1097 | break; | |
1098 | } | |
1099 | name++; | |
1100 | } | |
1101 | if (*(name) == '8') { | |
1102 | Safefree(save_input_locale); | |
69014004 KW |
1103 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1104 | "Locale %s ends with UTF-8 in name\n", | |
1105 | save_input_locale)); | |
751e9426 KW |
1106 | return TRUE; |
1107 | } | |
7d74bb61 | 1108 | } |
69014004 KW |
1109 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1110 | "Locale %s doesn't end with UTF-8 in name\n", | |
1111 | save_input_locale)); | |
7d74bb61 KW |
1112 | } |
1113 | ||
1114 | #ifdef WIN32 | |
1115 | /* http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756.aspx */ | |
1116 | if (final_pos >= 4 | |
1117 | && *(save_input_locale + final_pos - 0) == '1' | |
1118 | && *(save_input_locale + final_pos - 1) == '0' | |
1119 | && *(save_input_locale + final_pos - 2) == '0' | |
1120 | && *(save_input_locale + final_pos - 3) == '5' | |
1121 | && *(save_input_locale + final_pos - 4) == '6') | |
1122 | { | |
1123 | Safefree(save_input_locale); | |
69014004 KW |
1124 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1125 | "Locale %s ends with 10056 in name, is UTF-8 locale\n", | |
1126 | save_input_locale)); | |
7d74bb61 KW |
1127 | return TRUE; |
1128 | } | |
1129 | #endif | |
1130 | ||
fa9b773e KW |
1131 | /* Other common encodings are the ISO 8859 series, which aren't UTF-8 */ |
1132 | if (instr(save_input_locale, "8859")) { | |
1133 | Safefree(save_input_locale); | |
69014004 KW |
1134 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1135 | "Locale %s has 8859 in name, not UTF-8 locale\n", | |
1136 | save_input_locale)); | |
fa9b773e KW |
1137 | return FALSE; |
1138 | } | |
1139 | ||
1140 | #ifdef HAS_LOCALECONV | |
1141 | ||
1142 | # ifdef USE_LOCALE_MONETARY | |
1143 | ||
1144 | /* Here, there is nothing in the locale name to indicate whether the locale | |
1145 | * is UTF-8 or not. This "name", the return of setlocale(), is actually | |
1146 | * defined to be opaque, so we can't really rely on the absence of various | |
1147 | * substrings in the name to indicate its UTF-8ness. Look at the locale's | |
1148 | * currency symbol. Often that will be in the native script, and if the | |
1149 | * symbol isn't in UTF-8, we know that the locale isn't. If it is | |
1150 | * non-ASCII UTF-8, we infer that the locale is too. | |
1151 | * To do this, like above for LC_CTYPE, we first set LC_MONETARY to the | |
1152 | * locale of the desired category, if it isn't that locale already */ | |
1153 | ||
1154 | { | |
1155 | char *save_monetary_locale = NULL; | |
1156 | bool illegal_utf8 = FALSE; | |
1157 | bool only_ascii = FALSE; | |
1158 | const struct lconv* const lc = localeconv(); | |
1159 | ||
1160 | if (category != LC_MONETARY) { | |
1161 | ||
1162 | save_monetary_locale = stdize_locale(savepv(setlocale(LC_MONETARY, | |
1163 | NULL))); | |
1164 | if (! save_monetary_locale) { | |
69014004 KW |
1165 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1166 | "Could not find current locale for LC_MONETARY\n")); | |
fa9b773e KW |
1167 | goto cant_use_monetary; |
1168 | } | |
1169 | ||
1170 | if (strNE(save_monetary_locale, save_input_locale)) { | |
1171 | if (! setlocale(LC_MONETARY, save_input_locale)) { | |
69014004 KW |
1172 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1173 | "Could not change LC_MONETARY locale to %s\n", | |
1174 | save_input_locale)); | |
fa9b773e KW |
1175 | Safefree(save_monetary_locale); |
1176 | goto cant_use_monetary; | |
1177 | } | |
1178 | } | |
1179 | } | |
1180 | ||
1181 | /* Here the current LC_MONETARY is set to the locale of the category | |
1182 | * whose information is desired. */ | |
1183 | ||
1184 | if (lc && lc->currency_symbol) { | |
1185 | if (! is_utf8_string((U8 *) lc->currency_symbol, 0)) { | |
69014004 KW |
1186 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1187 | "Currency symbol for %s is not legal UTF-8\n", | |
1188 | save_input_locale)); | |
fa9b773e KW |
1189 | illegal_utf8 = TRUE; |
1190 | } | |
1191 | else if (is_ascii_string((U8 *) lc->currency_symbol, 0)) { | |
69014004 | 1192 | DEBUG_L(PerlIO_printf(Perl_debug_log, "Currency symbol for %s contains only ASCII; can't use for determining if UTF-8 locale\n", save_input_locale)); |
fa9b773e KW |
1193 | only_ascii = TRUE; |
1194 | } | |
1195 | } | |
1196 | ||
1197 | /* If we changed it, restore LC_MONETARY to its original locale */ | |
1198 | if (save_monetary_locale) { | |
1199 | setlocale(LC_MONETARY, save_monetary_locale); | |
1200 | Safefree(save_monetary_locale); | |
1201 | } | |
1202 | ||
1203 | Safefree(save_input_locale); | |
1204 | ||
1205 | /* It isn't a UTF-8 locale if the symbol is not legal UTF-8; otherwise | |
1206 | * assume the locale is UTF-8 if and only if the symbol is non-ascii | |
1207 | * UTF-8. (We can't really tell if the locale is UTF-8 or not if the | |
1208 | * symbol is just a '$', so we err on the side of it not being UTF-8) | |
1209 | * */ | |
69014004 KW |
1210 | DEBUG_L(PerlIO_printf(Perl_debug_log, "\tis_utf8=%d\n", (illegal_utf8) |
1211 | ? FALSE | |
1212 | : ! only_ascii)); | |
fa9b773e KW |
1213 | return (illegal_utf8) |
1214 | ? FALSE | |
1215 | : ! only_ascii; | |
1216 | ||
1217 | } | |
1218 | cant_use_monetary: | |
1219 | ||
1220 | # endif /* USE_LOCALE_MONETARY */ | |
1221 | #endif /* HAS_LOCALECONV */ | |
1222 | ||
1223 | #if 0 && defined(HAS_STRERROR) && defined(USE_LOCALE_MESSAGES) | |
1224 | ||
1225 | /* This code is ifdefd out because it was found to not be necessary in testing | |
1226 | * on our dromedary test machine, which has over 700 locales. There, looking | |
1227 | * at just the currency symbol gave essentially the same results as doing this | |
1228 | * extra work. Executing this also caused segfaults in miniperl. I left it in | |
1229 | * so as to avoid rewriting it if real-world experience indicates that | |
1230 | * dromedary is an outlier. Essentially, instead of returning abpve if we | |
1231 | * haven't found illegal utf8, we continue on and examine all the strerror() | |
1232 | * messages on the platform for utf8ness. If all are ASCII, we still don't | |
1233 | * know the answer; but otherwise we have a pretty good indication of the | |
1234 | * utf8ness. The reason this doesn't necessarily help much is that the | |
1235 | * messages may not have been translated into the locale. The currency symbol | |
1236 | * is much more likely to have been translated. The code below would need to | |
1237 | * be altered somewhat to just be a continuation of testing the currency | |
1238 | * symbol. */ | |
1239 | int e; | |
1240 | unsigned int failures = 0, non_ascii = 0; | |
1241 | char *save_messages_locale = NULL; | |
1242 | ||
1243 | /* Like above for LC_CTYPE, we set LC_MESSAGES to the locale of the | |
1244 | * desired category, if it isn't that locale already */ | |
1245 | ||
1246 | if (category != LC_MESSAGES) { | |
1247 | ||
1248 | save_messages_locale = stdize_locale(savepv(setlocale(LC_MESSAGES, | |
1249 | NULL))); | |
1250 | if (! save_messages_locale) { | |
1251 | goto cant_use_messages; | |
1252 | } | |
1253 | ||
1254 | if (strEQ(save_messages_locale, save_input_locale)) { | |
1255 | Safefree(save_input_locale); | |
1256 | } | |
1257 | else if (! setlocale(LC_MESSAGES, save_input_locale)) { | |
1258 | Safefree(save_messages_locale); | |
1259 | goto cant_use_messages; | |
1260 | } | |
1261 | } | |
1262 | ||
1263 | /* Here the current LC_MESSAGES is set to the locale of the category | |
1264 | * whose information is desired. Look through all the messages */ | |
1265 | ||
1266 | for (e = 0; | |
1267 | #ifdef HAS_SYS_ERRLIST | |
1268 | e <= sys_nerr | |
1269 | #endif | |
1270 | ; e++) | |
1271 | { | |
1272 | const U8* const errmsg = (U8 *) Strerror(e) ; | |
1273 | if (!errmsg) | |
1274 | break; | |
1275 | if (! is_utf8_string(errmsg, 0)) { | |
1276 | failures++; | |
1277 | break; | |
1278 | } | |
1279 | else if (! is_ascii_string(errmsg, 0)) { | |
1280 | non_ascii++; | |
1281 | } | |
1282 | } | |
1283 | ||
1284 | /* And, if we changed it, restore LC_MESSAGES to its original locale */ | |
1285 | if (save_messages_locale) { | |
1286 | setlocale(LC_MESSAGES, save_messages_locale); | |
1287 | Safefree(save_messages_locale); | |
1288 | } | |
1289 | ||
1290 | /* Any non-UTF-8 message means not a UTF-8 locale; if all are valid, | |
1291 | * any non-ascii means it is one; otherwise we assume it isn't */ | |
1292 | return (failures) ? FALSE : non_ascii; | |
1293 | ||
1294 | } | |
1295 | cant_use_messages: | |
1296 | ||
1297 | #endif | |
1298 | ||
69014004 KW |
1299 | DEBUG_L(PerlIO_printf(Perl_debug_log, |
1300 | "Assuming locale %s is not a UTF-8 locale\n", | |
1301 | save_input_locale)); | |
fa9b773e | 1302 | Safefree(save_input_locale); |
7d74bb61 KW |
1303 | return FALSE; |
1304 | } | |
1305 | ||
8ef6e574 | 1306 | #endif |
7d74bb61 | 1307 | |
66610fdd RGS |
1308 | /* |
1309 | * Local variables: | |
1310 | * c-indentation-style: bsd | |
1311 | * c-basic-offset: 4 | |
14d04a33 | 1312 | * indent-tabs-mode: nil |
66610fdd RGS |
1313 | * End: |
1314 | * | |
14d04a33 | 1315 | * ex: set ts=8 sts=4 sw=4 et: |
37442d52 | 1316 | */ |