2 * msvcrt.dll locale functions
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
29 #include "msvcrt/locale.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt
);
36 /* FIXME: Need to hold locale for each LC_* type and aggregate
37 * string to produce lc_all.
39 #define MAX_ELEM_LEN 64 /* Max length of country/language/CP string */
40 #define MAX_LOCALE_LENGTH 256
41 char MSVCRT_current_lc_all
[MAX_LOCALE_LENGTH
];
42 LCID MSVCRT_current_lc_all_lcid
;
43 int MSVCRT_current_lc_all_cp
;
46 #define LOCK_LOCALE _mlock(_SETLOCALE_LOCK);
47 #define UNLOCK_LOCALE _munlock(_SETLOCALE_LOCK);
49 /* ctype data modified when the locale changes */
50 extern WORD MSVCRT__ctype
[257];
51 extern WORD MSVCRT_current_ctype
[257];
52 extern WORD
* MSVCRT__pctype
;
54 /* mbctype data modified when the locale changes */
55 extern int MSVCRT___mb_cur_max
;
56 extern unsigned char MSVCRT_mbctype
[257];
58 #define MSVCRT_LEADBYTE 0x8000
60 /* Friendly country strings & iso codes for synonym support.
61 * Based on MS documentation for setlocale().
63 static const char* _country_synonyms
[] =
71 "United Kingdom","GB",
72 "United-Kingdom","GB",
81 /* INTERNAL: Map a synonym to an ISO code */
82 static void remap_synonym(char *name
)
85 for (i
= 0; i
< sizeof(_country_synonyms
)/sizeof(char*); i
+= 2 )
87 if (!strcasecmp(_country_synonyms
[i
],name
))
89 TRACE(":Mapping synonym %s to %s\n",name
,_country_synonyms
[i
+1]);
90 name
[0] = _country_synonyms
[i
+1][0];
91 name
[1] = _country_synonyms
[i
+1][1];
98 /* Note: Flags are weighted in order of matching importance */
99 #define FOUND_LANGUAGE 0x4
100 #define FOUND_COUNTRY 0x2
101 #define FOUND_CODEPAGE 0x1
104 char search_language
[MAX_ELEM_LEN
];
105 char search_country
[MAX_ELEM_LEN
];
106 char search_codepage
[MAX_ELEM_LEN
];
107 char found_language
[MAX_ELEM_LEN
];
108 char found_country
[MAX_ELEM_LEN
];
109 char found_codepage
[MAX_ELEM_LEN
];
110 unsigned int match_flags
;
111 LANGID found_lang_id
;
114 #define CONTINUE_LOOKING TRUE
115 #define STOP_LOOKING FALSE
117 /* INTERNAL: Get and compare locale info with a given string */
118 static int compare_info(LCID lcid
, DWORD flags
, char* buff
, const char* cmp
)
121 GetLocaleInfoA(lcid
, flags
|LOCALE_NOUSEROVERRIDE
,buff
, MAX_ELEM_LEN
);
122 if (!buff
[0] || !cmp
[0])
124 /* Partial matches are allowed, e.g. "Germ" matches "Germany" */
125 return !strncasecmp(cmp
, buff
, strlen(cmp
));
129 find_best_locale_proc(HMODULE hModule WINE_UNUSED
, LPCSTR type WINE_UNUSED
,
130 LPCSTR name WINE_UNUSED
, WORD LangID
, LONG lParam
)
132 locale_search_t
*res
= (locale_search_t
*)lParam
;
133 const LCID lcid
= MAKELCID(LangID
, SORT_DEFAULT
);
134 char buff
[MAX_ELEM_LEN
];
135 unsigned int flags
= 0;
137 if(PRIMARYLANGID(LangID
) == LANG_NEUTRAL
)
138 return CONTINUE_LOOKING
;
141 if (compare_info(lcid
,LOCALE_SISO639LANGNAME
,buff
,res
->search_language
) ||
142 compare_info(lcid
,LOCALE_SABBREVLANGNAME
,buff
,res
->search_language
) ||
143 compare_info(lcid
,LOCALE_SENGLANGUAGE
,buff
,res
->search_language
))
145 TRACE(":Found language: %s->%s\n", res
->search_language
, buff
);
146 flags
|= FOUND_LANGUAGE
;
147 memcpy(res
->found_language
,res
->search_language
,MAX_ELEM_LEN
);
149 else if (res
->match_flags
& FOUND_LANGUAGE
)
151 return CONTINUE_LOOKING
;
155 if (compare_info(lcid
,LOCALE_SISO3166CTRYNAME
,buff
,res
->search_country
) ||
156 compare_info(lcid
,LOCALE_SABBREVCTRYNAME
,buff
,res
->search_country
) ||
157 compare_info(lcid
,LOCALE_SENGCOUNTRY
,buff
,res
->search_country
))
159 TRACE("Found country:%s->%s\n", res
->search_country
, buff
);
160 flags
|= FOUND_COUNTRY
;
161 memcpy(res
->found_country
,res
->search_country
,MAX_ELEM_LEN
);
163 else if (res
->match_flags
& FOUND_COUNTRY
)
165 return CONTINUE_LOOKING
;
169 if (compare_info(lcid
,LOCALE_IDEFAULTCODEPAGE
,buff
,res
->search_codepage
) ||
170 (compare_info(lcid
,LOCALE_IDEFAULTANSICODEPAGE
,buff
,res
->search_codepage
)))
172 TRACE("Found codepage:%s->%s\n", res
->search_codepage
, buff
);
173 flags
|= FOUND_CODEPAGE
;
174 memcpy(res
->found_codepage
,res
->search_codepage
,MAX_ELEM_LEN
);
176 else if (res
->match_flags
& FOUND_CODEPAGE
)
178 return CONTINUE_LOOKING
;
181 if (flags
> res
->match_flags
)
183 /* Found a better match than previously */
184 res
->match_flags
= flags
;
185 res
->found_lang_id
= LangID
;
187 if (flags
& (FOUND_LANGUAGE
& FOUND_COUNTRY
& FOUND_CODEPAGE
))
189 TRACE(":found exact locale match\n");
192 return CONTINUE_LOOKING
;
195 extern int atoi(const char *);
197 /* Internal: Find the LCID for a locale specification */
198 static LCID
MSVCRT_locale_to_LCID(locale_search_t
* locale
)
201 EnumResourceLanguagesA(GetModuleHandleA("KERNEL32"), RT_STRINGA
,
202 (LPCSTR
)LOCALE_ILANGUAGE
,find_best_locale_proc
,
205 if (!locale
->match_flags
)
208 /* If we were given something that didn't match, fail */
209 if (locale
->search_country
[0] && !(locale
->match_flags
& FOUND_COUNTRY
))
212 lcid
= MAKELCID(locale
->found_lang_id
, SORT_DEFAULT
);
214 /* Populate partial locale, translating LCID to locale string elements */
215 if (!locale
->found_codepage
[0])
217 /* Even if a codepage is not enumerated for a locale
218 * it can be set if valid */
219 if (locale
->search_codepage
[0])
221 if (IsValidCodePage(atoi(locale
->search_codepage
)))
222 memcpy(locale
->found_codepage
,locale
->search_codepage
,MAX_ELEM_LEN
);
225 /* Special codepage values: OEM & ANSI */
226 if (strcasecmp(locale
->search_codepage
,"OCP"))
228 GetLocaleInfoA(lcid
, LOCALE_IDEFAULTCODEPAGE
,
229 locale
->found_codepage
, MAX_ELEM_LEN
);
231 if (strcasecmp(locale
->search_codepage
,"ACP"))
233 GetLocaleInfoA(lcid
, LOCALE_IDEFAULTANSICODEPAGE
,
234 locale
->found_codepage
, MAX_ELEM_LEN
);
239 if (!atoi(locale
->found_codepage
))
245 /* Prefer ANSI codepages if present */
246 GetLocaleInfoA(lcid
, LOCALE_IDEFAULTANSICODEPAGE
,
247 locale
->found_codepage
, MAX_ELEM_LEN
);
248 if (!locale
->found_codepage
[0] || !atoi(locale
->found_codepage
))
249 GetLocaleInfoA(lcid
, LOCALE_IDEFAULTCODEPAGE
,
250 locale
->found_codepage
, MAX_ELEM_LEN
);
253 GetLocaleInfoA(lcid
, LOCALE_SENGLANGUAGE
|LOCALE_NOUSEROVERRIDE
,
254 locale
->found_language
, MAX_ELEM_LEN
);
255 GetLocaleInfoA(lcid
, LOCALE_SENGCOUNTRY
|LOCALE_NOUSEROVERRIDE
,
256 locale
->found_country
, MAX_ELEM_LEN
);
260 extern int snprintf(char *, int, const char *, ...);
262 /* INTERNAL: Set ctype behaviour for a codepage */
263 static void msvcrt_set_ctype(unsigned int codepage
, LCID lcid
)
267 memset(&cp
, 0, sizeof(CPINFO
));
269 if (GetCPInfo(codepage
, &cp
))
273 unsigned char *traverse
= (unsigned char *)cp
.LeadByte
;
275 memset(MSVCRT_current_ctype
, 0, sizeof(MSVCRT__ctype
));
276 MSVCRT_current_lc_all_cp
= codepage
;
278 /* Switch ctype macros to MBCS if needed */
279 MSVCRT___mb_cur_max
= cp
.MaxCharSize
;
281 /* Set remaining ctype flags: FIXME: faster way to do this? */
283 for (i
= 0; i
< 256; i
++)
285 if (!(MSVCRT__pctype
[i
] & MSVCRT_LEADBYTE
))
288 GetStringTypeA(lcid
, CT_CTYPE1
, str
, 1, MSVCRT__pctype
+ i
);
292 /* Set leadbyte flags */
293 while (traverse
[0] || traverse
[1])
295 for( i
= traverse
[0]; i
<= traverse
[1]; i
++ )
296 MSVCRT_current_ctype
[i
+1] |= MSVCRT_LEADBYTE
;
303 /*********************************************************************
304 * setlocale (MSVCRT.@)
306 char* MSVCRT_setlocale(int category
, const char* locale
)
310 int haveLang
, haveCountry
, haveCP
;
314 TRACE("(%d %s)\n",category
,locale
);
316 if (category
< MSVCRT_LC_MIN
|| category
> MSVCRT_LC_MAX
)
321 /* Report the current Locale */
322 return MSVCRT_current_lc_all
;
327 if (locale
[0] == 'L' && locale
[1] == 'C' && locale
[2] == '_')
329 FIXME(":restore previous locale not implemented!\n");
330 /* FIXME: Easiest way to do this is parse the string and
331 * call this function recursively with its elements,
332 * Where they differ for each lc_ type.
335 return MSVCRT_current_lc_all
;
338 /* Default Locale: Special case handling */
339 if (!strlen(locale
) || ((toupper(locale
[0]) == 'C') && !locale
[1]))
341 MSVCRT_current_lc_all
[0] = 'C';
342 MSVCRT_current_lc_all
[1] = '\0';
343 MSVCRT_current_lc_all_cp
= GetACP();
347 lc_all
= 1; /* Fall through all cases ... */
348 case MSVCRT_LC_COLLATE
:
350 case MSVCRT_LC_CTYPE
:
351 /* Restore C locale ctype info */
352 MSVCRT___mb_cur_max
= 1;
353 memcpy(MSVCRT_current_ctype
, MSVCRT__ctype
, sizeof(MSVCRT__ctype
));
354 memset(MSVCRT_mbctype
, 0, sizeof(MSVCRT_mbctype
));
356 case MSVCRT_LC_MONETARY
:
358 case MSVCRT_LC_NUMERIC
:
364 return MSVCRT_current_lc_all
;
367 /* Get locale elements */
368 haveLang
= haveCountry
= haveCP
= 0;
369 memset(&lc
,0,sizeof(lc
));
371 next
= strchr(locale
,'_');
372 if (next
&& next
!= locale
)
375 strncpy(lc
.search_language
,locale
,next
-locale
);
376 locale
+= next
-locale
+1;
379 next
= strchr(locale
,'.');
386 strncpy(lc
.search_codepage
, locale
, MAX_ELEM_LEN
);
393 strncpy(lc
.search_country
,locale
,next
-locale
);
394 locale
+= next
-locale
+1;
399 strncpy(lc
.search_language
,locale
,next
-locale
);
400 locale
+= next
-locale
+1;
402 strncpy(lc
.search_codepage
, locale
, MAX_ELEM_LEN
);
410 strncpy(lc
.search_country
, locale
, MAX_ELEM_LEN
);
415 strncpy(lc
.search_language
, locale
, MAX_ELEM_LEN
);
420 remap_synonym(lc
.search_country
);
422 if (haveCP
&& !haveCountry
&& !haveLang
)
424 FIXME(":Codepage only locale not implemented\n");
425 /* FIXME: Use default lang/country and skip locale_to_LCID()
432 lcid
= MSVCRT_locale_to_LCID(&lc
);
434 TRACE(":found LCID %ld\n",lcid
);
442 MSVCRT_current_lc_all_lcid
= lcid
;
444 snprintf(MSVCRT_current_lc_all
,MAX_LOCALE_LENGTH
,"%s_%s.%s",
445 lc
.found_language
,lc
.found_country
,lc
.found_codepage
);
449 lc_all
= 1; /* Fall through all cases ... */
450 case MSVCRT_LC_COLLATE
:
452 case MSVCRT_LC_CTYPE
:
453 msvcrt_set_ctype(atoi(lc
.found_codepage
),lcid
);
455 case MSVCRT_LC_MONETARY
:
457 case MSVCRT_LC_NUMERIC
:
463 return MSVCRT_current_lc_all
;
467 /*********************************************************************
468 * _Getdays (MSVCRT.@)
470 const char* _Getdays(void)
472 static const char *MSVCRT_days
= ":Sun:Sunday:Mon:Monday:Tue:Tuesday:Wed:"
473 "Wednesday:Thu:Thursday:Fri:Friday:Sat:Saturday";
474 /* FIXME: Use locale */
475 TRACE("(void) semi-stub\n");
479 /*********************************************************************
480 * _Getmonths (MSVCRT.@)
482 const char* _Getmonths(void)
484 static const char *MSVCRT_months
= ":Jan:January:Feb:February:Mar:March:Apr:"
485 "April:May:May:Jun:June:Jul:July:Aug:August:Sep:September:Oct:"
486 "October:Nov:November:Dec:December";
487 /* FIXME: Use locale */
488 TRACE("(void) semi-stub\n");
489 return MSVCRT_months
;
492 /*********************************************************************
493 * _Getnames (MSVCRT.@)
495 const char* _Getnames(void)
498 TRACE("(void) stub\n");
502 /*********************************************************************
503 * _Strftime (MSVCRT.@)
505 const char* _Strftime(char *out
, unsigned int len
, const char *fmt
,
506 const void *tm
, void *foo
)
509 TRACE("(%p %d %s %p %p) stub\n", out
, len
, fmt
, tm
, foo
);
513 /* FIXME: MBCP probably belongs in mbcs.c */
515 /*********************************************************************
516 * _setmbcp (MSVCRT.@)
518 void _setmbcp(int cp
)
521 if (MSVCRT_current_lc_all_cp
!= cp
)
523 /* FIXME: set ctype behaviour for this cp */
524 MSVCRT_current_lc_all_cp
= cp
;
529 /*********************************************************************
530 * _getmbcp (MSVCRT.@)
534 return MSVCRT_current_lc_all_cp
;