1 | /* $Id: RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp 69219 2017-10-24 15:01:30Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTLocaleQueryNormalizedBaseLocaleName, ring-3 generic.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/locale.h>
|
---|
32 | #include "internal/iprt.h"
|
---|
33 |
|
---|
34 | #include <iprt/ctype.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 |
|
---|
38 |
|
---|
39 | /*
|
---|
40 | * Note! Code duplicated in r3/win/RTLocaleQueryNormalizedBaseLocaleName-win.cpp (adds fallback).
|
---|
41 | */
|
---|
42 | RTDECL(int) RTLocaleQueryNormalizedBaseLocaleName(char *pszName, size_t cbName)
|
---|
43 | {
|
---|
44 | char szLocale[_1K];
|
---|
45 | int rc = RTLocaleQueryLocaleName(szLocale, sizeof(szLocale));
|
---|
46 | if (RT_SUCCESS(rc))
|
---|
47 | {
|
---|
48 | /*
|
---|
49 | * May return some complicated "LC_XXX=yyy;LC.." sequence if
|
---|
50 | * partially set (like IPRT does). Try get xx_YY sequence first
|
---|
51 | * because 'C' or 'POSIX' may be LC_xxx variants that haven't been
|
---|
52 | * set yet.
|
---|
53 | *
|
---|
54 | * ASSUMES complicated locale mangling is done in a certain way...
|
---|
55 | */
|
---|
56 | const char *pszLocale = strchr(szLocale, '=');
|
---|
57 | if (!pszLocale)
|
---|
58 | pszLocale = szLocale;
|
---|
59 | else
|
---|
60 | pszLocale++;
|
---|
61 | bool fSeenC = false;
|
---|
62 | bool fSeenPOSIX = false;
|
---|
63 | do
|
---|
64 | {
|
---|
65 | const char *pszEnd = strchr(pszLocale, ';');
|
---|
66 |
|
---|
67 | if ( RTLOCALE_IS_LANGUAGE2_UNDERSCORE_COUNTRY2(pszLocale)
|
---|
68 | && ( pszLocale[5] == '\0'
|
---|
69 | || RT_C_IS_PUNCT(pszLocale[5])) )
|
---|
70 | return RTStrCopyEx(pszName, cbName, pszLocale, 5);
|
---|
71 |
|
---|
72 | if ( pszLocale[0] == 'C'
|
---|
73 | && ( pszLocale[1] == '\0'
|
---|
74 | || RT_C_IS_PUNCT(pszLocale[1])) )
|
---|
75 | fSeenC = true;
|
---|
76 | else if ( strncmp(pszLocale, "POSIX", 5) == 0
|
---|
77 | && ( pszLocale[5] == '\0'
|
---|
78 | || RT_C_IS_PUNCT(pszLocale[5])) )
|
---|
79 | fSeenPOSIX = true;
|
---|
80 |
|
---|
81 | /* advance */
|
---|
82 | pszLocale = pszEnd ? strchr(pszEnd + 1, '=') : NULL;
|
---|
83 | } while (pszLocale++);
|
---|
84 |
|
---|
85 | if (fSeenC || fSeenPOSIX)
|
---|
86 | return RTStrCopy(pszName, cbName, "C"); /* C and POSIX should be identical IIRC, so keep it simple. */
|
---|
87 |
|
---|
88 | rc = VERR_NOT_AVAILABLE;
|
---|
89 | }
|
---|
90 | return rc;
|
---|
91 | }
|
---|
92 |
|
---|