Added PE dump capabilities to specmaker and renamed specmaker into
[wine/wine-kai.git] / dlls / msvcrt / locale.c
blob83d8d36ba6dd21733ba5a693ad3bedc35c67ddf9
1 /*
2 * msvcrt.dll locale functions
4 * Copyright 2000 Jon Griffiths
5 */
6 #include "winnt.h"
7 #include "msvcrt.h"
9 DEFAULT_DEBUG_CHANNEL(msvcrt);
11 /* FIXME: Need to hold locale for each LC_* type and aggregate
12 * string to produce lc_all.
14 #define MAX_ELEM_LEN 64 /* Max length of country/language/CP string */
15 #define MAX_LOCALE_LENGTH 256
16 char MSVCRT_current_lc_all[MAX_LOCALE_LENGTH];
17 LCID MSVCRT_current_lc_all_lcid;
18 int MSVCRT_current_lc_all_cp;
20 /* MT */
21 extern CRITICAL_SECTION MSVCRT_locale_cs;
22 #define LOCK_LOCALE EnterCriticalSection(&MSVCRT_locale_cs)
23 #define UNLOCK_LOCALE LeaveCriticalSection(&MSVCRT_locale_cs)
25 /* ctype data modified when the locale changes */
26 extern WORD MSVCRT__ctype [257];
27 extern WORD MSVCRT_current_ctype[257];
28 extern WORD* MSVCRT__pctype;
30 /* mbctype data modified when the locale changes */
31 extern int MSVCRT___mb_cur_max;
32 extern unsigned char MSVCRT_mbctype[257];
34 #define MSVCRT_LEADBYTE 0x8000
36 /* Locales */
37 #define MSVCRT_LC_ALL 0
38 #define MSVCRT_LC_COLLATE 1
39 #define MSVCRT_LC_CTYPE 2
40 #define MSVCRT_LC_MONETARY 3
41 #define MSVCRT_LC_NUMERIC 4
42 #define MSVCRT_LC_TIME 5
43 #define MSVCRT_LC_MIN MSVCRT_LC_ALL
44 #define MSVCRT_LC_MAX MSVCRT_LC_TIME
46 /* Friendly country strings & iso codes for synonym support.
47 * Based on MS documentation for setlocale().
49 static const char* _country_synonyms[] =
51 "Hong Kong","HK",
52 "Hong-Kong","HK",
53 "New Zealand","NZ",
54 "New-Zealand","NZ",
55 "PR China","CN",
56 "PR-China","CN",
57 "United Kingdom","GB",
58 "United-Kingdom","GB",
59 "Britain","GB",
60 "England","GB",
61 "Great Britain","GB",
62 "United States","US",
63 "United-States","US",
64 "America","US"
67 /* INTERNAL: Map a synonym to an ISO code */
68 static void remap_synonym(char *name)
70 size_t i;
71 for (i = 0; i < sizeof(_country_synonyms)/sizeof(char*); i += 2 )
73 if (!strcasecmp(_country_synonyms[i],name))
75 TRACE(":Mapping synonym %s to %s\n",name,_country_synonyms[i+1]);
76 name[0] = _country_synonyms[i+1][0];
77 name[1] = _country_synonyms[i+1][1];
78 name[2] = '\0';
79 return;
84 /* Note: Flags are weighted in order of matching importance */
85 #define FOUND_LANGUAGE 0x4
86 #define FOUND_COUNTRY 0x2
87 #define FOUND_CODEPAGE 0x1
89 typedef struct {
90 char search_language[MAX_ELEM_LEN];
91 char search_country[MAX_ELEM_LEN];
92 char search_codepage[MAX_ELEM_LEN];
93 char found_language[MAX_ELEM_LEN];
94 char found_country[MAX_ELEM_LEN];
95 char found_codepage[MAX_ELEM_LEN];
96 unsigned int match_flags;
97 LANGID found_lang_id;
98 } locale_search_t;
100 #define CONTINUE_LOOKING TRUE
101 #define STOP_LOOKING FALSE
103 /* INTERNAL: Get and compare locale info with a given string */
104 static int compare_info(LCID lcid, DWORD flags, char* buff, const char* cmp)
106 buff[0] = 0;
107 GetLocaleInfoA(lcid, flags|LOCALE_NOUSEROVERRIDE,buff, MAX_ELEM_LEN);
108 if (!buff[0] || !cmp[0])
109 return 0;
110 /* Partial matches are allowed, e.g. "Germ" matches "Germany" */
111 return !strncasecmp(cmp, buff, strlen(cmp));
114 static BOOL CALLBACK
115 find_best_locale_proc(HMODULE hModule WINE_UNUSED, LPCSTR type WINE_UNUSED,
116 LPCSTR name WINE_UNUSED, WORD LangID, LONG lParam)
118 locale_search_t *res = (locale_search_t *)lParam;
119 const LCID lcid = MAKELCID(LangID, SORT_DEFAULT);
120 char buff[MAX_ELEM_LEN];
121 unsigned int flags = 0;
123 if(PRIMARYLANGID(LangID) == LANG_NEUTRAL)
124 return CONTINUE_LOOKING;
126 /* Check Language */
127 if (compare_info(lcid,LOCALE_SISO639LANGNAME,buff,res->search_language) ||
128 compare_info(lcid,LOCALE_SABBREVLANGNAME,buff,res->search_language) ||
129 compare_info(lcid,LOCALE_SENGLANGUAGE,buff,res->search_language))
131 TRACE(":Found language: %s->%s\n", res->search_language, buff);
132 flags |= FOUND_LANGUAGE;
133 memcpy(res->found_language,res->search_language,MAX_ELEM_LEN);
135 else if (res->match_flags & FOUND_LANGUAGE)
137 return CONTINUE_LOOKING;
140 /* Check Country */
141 if (compare_info(lcid,LOCALE_SISO3166CTRYNAME,buff,res->search_country) ||
142 compare_info(lcid,LOCALE_SABBREVCTRYNAME,buff,res->search_country) ||
143 compare_info(lcid,LOCALE_SENGCOUNTRY,buff,res->search_country))
145 TRACE("Found country:%s->%s\n", res->search_country, buff);
146 flags |= FOUND_COUNTRY;
147 memcpy(res->found_country,res->search_country,MAX_ELEM_LEN);
149 else if (res->match_flags & FOUND_COUNTRY)
151 return CONTINUE_LOOKING;
154 /* Check codepage */
155 if (compare_info(lcid,LOCALE_IDEFAULTCODEPAGE,buff,res->search_codepage) ||
156 (compare_info(lcid,LOCALE_IDEFAULTANSICODEPAGE,buff,res->search_codepage)))
158 TRACE("Found codepage:%s->%s\n", res->search_codepage, buff);
159 flags |= FOUND_CODEPAGE;
160 memcpy(res->found_codepage,res->search_codepage,MAX_ELEM_LEN);
162 else if (res->match_flags & FOUND_CODEPAGE)
164 return CONTINUE_LOOKING;
167 if (flags > res->match_flags)
169 /* Found a better match than previously */
170 res->match_flags = flags;
171 res->found_lang_id = LangID;
173 if (flags & (FOUND_LANGUAGE & FOUND_COUNTRY & FOUND_CODEPAGE))
175 TRACE(":found exact locale match\n");
176 return STOP_LOOKING;
178 return CONTINUE_LOOKING;
181 extern int atoi(const char *);
183 /* Internal: Find the LCID for a locale specification */
184 static LCID MSVCRT_locale_to_LCID(locale_search_t* locale)
186 LCID lcid;
187 EnumResourceLanguagesA(GetModuleHandleA("KERNEL32"), RT_STRINGA,
188 (LPCSTR)LOCALE_ILANGUAGE,find_best_locale_proc,
189 (LONG)locale);
191 if (!locale->match_flags)
192 return 0;
194 /* If we were given something that didn't match, fail */
195 if (locale->search_country[0] && !(locale->match_flags & FOUND_COUNTRY))
196 return 0;
198 lcid = MAKELCID(locale->found_lang_id, SORT_DEFAULT);
200 /* Populate partial locale, translating LCID to locale string elements */
201 if (!locale->found_codepage[0])
203 /* Even if a codepage is not enumerated for a locale
204 * it can be set if valid */
205 if (locale->search_codepage[0])
207 if (IsValidCodePage(atoi(locale->search_codepage)))
208 memcpy(locale->found_codepage,locale->search_codepage,MAX_ELEM_LEN);
209 else
211 /* Special codepage values: OEM & ANSI */
212 if (strcasecmp(locale->search_codepage,"OCP"))
214 GetLocaleInfoA(lcid, LOCALE_IDEFAULTCODEPAGE,
215 locale->found_codepage, MAX_ELEM_LEN);
217 if (strcasecmp(locale->search_codepage,"ACP"))
219 GetLocaleInfoA(lcid, LOCALE_IDEFAULTANSICODEPAGE,
220 locale->found_codepage, MAX_ELEM_LEN);
222 else
223 return 0;
225 if (!atoi(locale->found_codepage))
226 return 0;
229 else
231 /* Prefer ANSI codepages if present */
232 GetLocaleInfoA(lcid, LOCALE_IDEFAULTANSICODEPAGE,
233 locale->found_codepage, MAX_ELEM_LEN);
234 if (!locale->found_codepage[0] || !atoi(locale->found_codepage))
235 GetLocaleInfoA(lcid, LOCALE_IDEFAULTCODEPAGE,
236 locale->found_codepage, MAX_ELEM_LEN);
239 GetLocaleInfoA(lcid, LOCALE_SENGLANGUAGE|LOCALE_NOUSEROVERRIDE,
240 locale->found_language, MAX_ELEM_LEN);
241 GetLocaleInfoA(lcid, LOCALE_SENGCOUNTRY|LOCALE_NOUSEROVERRIDE,
242 locale->found_country, MAX_ELEM_LEN);
243 return lcid;
246 extern int snprintf(char *, int, const char *, ...);
248 /* INTERNAL: Set ctype behaviour for a codepage */
249 static void msvcrt_set_ctype(unsigned int codepage, LCID lcid)
251 CPINFO cp;
253 memset(&cp, 0, sizeof(CPINFO));
255 if (GetCPInfo(codepage, &cp))
257 int i;
258 char str[3];
259 unsigned char *traverse = (unsigned char *)cp.LeadByte;
261 memset(MSVCRT_current_ctype, 0, sizeof(MSVCRT__ctype));
262 MSVCRT_current_lc_all_cp = codepage;
264 /* Switch ctype macros to MBCS if needed */
265 MSVCRT___mb_cur_max = cp.MaxCharSize;
267 /* Set remaining ctype flags: FIXME: faster way to do this? */
268 str[1] = str[2] = 0;
269 for (i = 0; i < 256; i++)
271 if (!(MSVCRT__pctype[i] & MSVCRT_LEADBYTE))
273 str[0] = i;
274 GetStringTypeA(lcid, CT_CTYPE1, str, 1, MSVCRT__pctype + i);
278 /* Set leadbyte flags */
279 while (traverse[0] || traverse[1])
281 for( i = traverse[0]; i <= traverse[1]; i++ )
282 MSVCRT_current_ctype[i+1] |= MSVCRT_LEADBYTE;
283 traverse += 2;
289 /*********************************************************************
290 * setlocale (MSVCRT.@)
292 char* MSVCRT_setlocale(int category, const char* locale)
294 LCID lcid = 0;
295 locale_search_t lc;
296 int haveLang, haveCountry, haveCP;
297 char* next;
298 int lc_all = 0;
300 TRACE("(%d %s)\n",category,locale);
302 if (category < MSVCRT_LC_MIN || category > MSVCRT_LC_MAX)
303 return NULL;
305 if (locale == NULL)
307 /* Report the current Locale */
308 return MSVCRT_current_lc_all;
311 LOCK_LOCALE;
313 if (locale[0] == 'L' && locale[1] == 'C' && locale[2] == '_')
315 FIXME(":restore previous locale not implemented!\n");
316 /* FIXME: Easiest way to do this is parse the string and
317 * call this function recursively with its elements,
318 * Where they differ for each lc_ type.
320 UNLOCK_LOCALE;
321 return MSVCRT_current_lc_all;
324 /* Default Locale: Special case handling */
325 if (!strlen(locale) || ((toupper(locale[0]) == 'C') && !locale[1]))
327 MSVCRT_current_lc_all[0] = 'C';
328 MSVCRT_current_lc_all[1] = '\0';
329 MSVCRT_current_lc_all_cp = GetACP();
331 switch (category) {
332 case MSVCRT_LC_ALL:
333 lc_all = 1; /* Fall through all cases ... */
334 case MSVCRT_LC_COLLATE:
335 if (!lc_all) break;
336 case MSVCRT_LC_CTYPE:
337 /* Restore C locale ctype info */
338 MSVCRT___mb_cur_max = 1;
339 memcpy(MSVCRT_current_ctype, MSVCRT__ctype, sizeof(MSVCRT__ctype));
340 memset(MSVCRT_mbctype, 0, sizeof(MSVCRT_mbctype));
341 if (!lc_all) break;
342 case MSVCRT_LC_MONETARY:
343 if (!lc_all) break;
344 case MSVCRT_LC_NUMERIC:
345 if (!lc_all) break;
346 case MSVCRT_LC_TIME:
348 UNLOCK_LOCALE;
349 return MSVCRT_current_lc_all;
352 /* Get locale elements */
353 haveLang = haveCountry = haveCP = 0;
354 memset(&lc,0,sizeof(lc));
356 next = strchr(locale,'_');
357 if (next && next != locale)
359 haveLang = 1;
360 strncpy(lc.search_language,locale,next-locale);
361 locale += next-locale+1;
364 next = strchr(locale,'.');
365 if (next)
367 haveCP = 1;
368 if (next == locale)
370 locale++;
371 strncpy(lc.search_codepage, locale, MAX_ELEM_LEN);
373 else
375 if (haveLang)
377 haveCountry = 1;
378 strncpy(lc.search_country,locale,next-locale);
379 locale += next-locale+1;
381 else
383 haveLang = 1;
384 strncpy(lc.search_language,locale,next-locale);
385 locale += next-locale+1;
387 strncpy(lc.search_codepage, locale, MAX_ELEM_LEN);
390 else
392 if (haveLang)
394 haveCountry = 1;
395 strncpy(lc.search_country, locale, MAX_ELEM_LEN);
397 else
399 haveLang = 1;
400 strncpy(lc.search_language, locale, MAX_ELEM_LEN);
404 if (haveCountry)
405 remap_synonym(lc.search_country);
407 if (haveCP && !haveCountry && !haveLang)
409 FIXME(":Codepage only locale not implemented\n");
410 /* FIXME: Use default lang/country and skip locale_to_LCID()
411 * call below...
413 UNLOCK_LOCALE;
414 return NULL;
417 lcid = MSVCRT_locale_to_LCID(&lc);
419 TRACE(":found LCID %ld\n",lcid);
421 if (lcid == 0)
423 UNLOCK_LOCALE;
424 return NULL;
427 MSVCRT_current_lc_all_lcid = lcid;
429 snprintf(MSVCRT_current_lc_all,MAX_LOCALE_LENGTH,"%s_%s.%s",
430 lc.found_language,lc.found_country,lc.found_codepage);
432 switch (category) {
433 case MSVCRT_LC_ALL:
434 lc_all = 1; /* Fall through all cases ... */
435 case MSVCRT_LC_COLLATE:
436 if (!lc_all) break;
437 case MSVCRT_LC_CTYPE:
438 msvcrt_set_ctype(atoi(lc.found_codepage),lcid);
439 if (!lc_all) break;
440 case MSVCRT_LC_MONETARY:
441 if (!lc_all) break;
442 case MSVCRT_LC_NUMERIC:
443 if (!lc_all) break;
444 case MSVCRT_LC_TIME:
446 UNLOCK_LOCALE;
447 return MSVCRT_current_lc_all;
451 /*********************************************************************
452 * _Getdays (MSVCRT.@)
454 const char* _Getdays(void)
456 static const char *MSVCRT_days = ":Sun:Sunday:Mon:Monday:Tue:Tuesday:Wed:"
457 "Wednesday:Thu:Thursday:Fri:Friday:Sat:Saturday";
458 /* FIXME: Use locale */
459 TRACE("(void) semi-stub\n");
460 return MSVCRT_days;
463 /*********************************************************************
464 * _Getmonths (MSVCRT.@)
466 const char* _Getmonths(void)
468 static const char *MSVCRT_months = ":Jan:January:Feb:February:Mar:March:Apr:"
469 "April:May:May:Jun:June:Jul:July:Aug:August:Sep:September:Oct:"
470 "October:Nov:November:Dec:December";
471 /* FIXME: Use locale */
472 TRACE("(void) semi-stub\n");
473 return MSVCRT_months;
476 /*********************************************************************
477 * _Getnames (MSVCRT.@)
479 const char* _Getnames(void)
481 /* FIXME: */
482 TRACE("(void) stub\n");
483 return "";
486 /*********************************************************************
487 * _Strftime (MSVCRT.@)
489 const char* _Strftime(char *out, unsigned int len, const char *fmt,
490 const void *tm, void *foo)
492 /* FIXME: */
493 TRACE("(%p %d %s %p %p) stub\n", out, len, fmt, tm, foo);
494 return "";
497 /* FIXME: MBCP probably belongs in mbcs.c */
499 /*********************************************************************
500 * _setmbcp (MSVCRT.@)
502 void _setmbcp(int cp)
504 LOCK_LOCALE;
505 if (MSVCRT_current_lc_all_cp != cp)
507 /* FIXME: set ctype behaviour for this cp */
508 MSVCRT_current_lc_all_cp = cp;
510 UNLOCK_LOCALE;
513 /*********************************************************************
514 * _getmbcp (MSVCRT.@)
516 int _getmbcp(void)
518 return MSVCRT_current_lc_all_cp;