ICU 50.2 50.2
uloc.h
Go to the documentation of this file.
1/*
2**********************************************************************
3* Copyright (C) 1997-2012, International Business Machines
4* Corporation and others. All Rights Reserved.
5**********************************************************************
6*
7* File ULOC.H
8*
9* Modification History:
10*
11* Date Name Description
12* 04/01/97 aliu Creation.
13* 08/22/98 stephen JDK 1.2 sync.
14* 12/08/98 rtg New C API for Locale
15* 03/30/99 damiba overhaul
16* 03/31/99 helena Javadoc for uloc functions.
17* 04/15/99 Madhu Updated Javadoc
18********************************************************************************
19*/
20
21#ifndef ULOC_H
22#define ULOC_H
23
24#include "unicode/utypes.h"
25#include "unicode/uenum.h"
26
199
201#define ULOC_CHINESE "zh"
203#define ULOC_ENGLISH "en"
205#define ULOC_FRENCH "fr"
207#define ULOC_GERMAN "de"
209#define ULOC_ITALIAN "it"
211#define ULOC_JAPANESE "ja"
213#define ULOC_KOREAN "ko"
215#define ULOC_SIMPLIFIED_CHINESE "zh_CN"
217#define ULOC_TRADITIONAL_CHINESE "zh_TW"
218
220#define ULOC_CANADA "en_CA"
222#define ULOC_CANADA_FRENCH "fr_CA"
224#define ULOC_CHINA "zh_CN"
226#define ULOC_PRC "zh_CN"
228#define ULOC_FRANCE "fr_FR"
230#define ULOC_GERMANY "de_DE"
232#define ULOC_ITALY "it_IT"
234#define ULOC_JAPAN "ja_JP"
236#define ULOC_KOREA "ko_KR"
238#define ULOC_TAIWAN "zh_TW"
240#define ULOC_UK "en_GB"
242#define ULOC_US "en_US"
243
249#define ULOC_LANG_CAPACITY 12
250
256#define ULOC_COUNTRY_CAPACITY 4
262#define ULOC_FULLNAME_CAPACITY 157
263
269#define ULOC_SCRIPT_CAPACITY 6
270
275#define ULOC_KEYWORDS_CAPACITY 50
276
281#define ULOC_KEYWORD_AND_VALUES_CAPACITY 100
282
287#define ULOC_KEYWORD_SEPARATOR '@'
288
294#define ULOC_KEYWORD_SEPARATOR_UNICODE 0x40
295
300#define ULOC_KEYWORD_ASSIGN '='
301
307#define ULOC_KEYWORD_ASSIGN_UNICODE 0x3D
308
313#define ULOC_KEYWORD_ITEM_SEPARATOR ';'
314
320#define ULOC_KEYWORD_ITEM_SEPARATOR_UNICODE 0x3B
321
336typedef enum {
345
346#ifndef U_HIDE_DEPRECATED_API
351#endif /* U_HIDE_DEPRECATED_API */
352
353 ULOC_DATA_LOCALE_TYPE_LIMIT = 3
355
356#ifndef U_HIDE_SYSTEM_API
368U_STABLE const char* U_EXPORT2
370
388U_STABLE void U_EXPORT2
389uloc_setDefault(const char* localeID,
390 UErrorCode* status);
391#endif /* U_HIDE_SYSTEM_API */
392
405U_STABLE int32_t U_EXPORT2
406uloc_getLanguage(const char* localeID,
407 char* language,
408 int32_t languageCapacity,
409 UErrorCode* err);
410
423U_STABLE int32_t U_EXPORT2
424uloc_getScript(const char* localeID,
425 char* script,
426 int32_t scriptCapacity,
427 UErrorCode* err);
428
441U_STABLE int32_t U_EXPORT2
442uloc_getCountry(const char* localeID,
443 char* country,
444 int32_t countryCapacity,
445 UErrorCode* err);
446
459U_STABLE int32_t U_EXPORT2
460uloc_getVariant(const char* localeID,
461 char* variant,
462 int32_t variantCapacity,
463 UErrorCode* err);
464
465
482U_STABLE int32_t U_EXPORT2
483uloc_getName(const char* localeID,
484 char* name,
485 int32_t nameCapacity,
486 UErrorCode* err);
487
505U_STABLE int32_t U_EXPORT2
506uloc_canonicalize(const char* localeID,
507 char* name,
508 int32_t nameCapacity,
509 UErrorCode* err);
510
518U_STABLE const char* U_EXPORT2
519uloc_getISO3Language(const char* localeID);
520
521
529U_STABLE const char* U_EXPORT2
530uloc_getISO3Country(const char* localeID);
531
540U_STABLE uint32_t U_EXPORT2
541uloc_getLCID(const char* localeID);
542
559U_STABLE int32_t U_EXPORT2
560uloc_getDisplayLanguage(const char* locale,
561 const char* displayLocale,
562 UChar* language,
563 int32_t languageCapacity,
564 UErrorCode* status);
565
582U_STABLE int32_t U_EXPORT2
583uloc_getDisplayScript(const char* locale,
584 const char* displayLocale,
585 UChar* script,
586 int32_t scriptCapacity,
587 UErrorCode* status);
588
605U_STABLE int32_t U_EXPORT2
606uloc_getDisplayCountry(const char* locale,
607 const char* displayLocale,
608 UChar* country,
609 int32_t countryCapacity,
610 UErrorCode* status);
611
612
629U_STABLE int32_t U_EXPORT2
630uloc_getDisplayVariant(const char* locale,
631 const char* displayLocale,
632 UChar* variant,
633 int32_t variantCapacity,
634 UErrorCode* status);
635
676U_STABLE int32_t U_EXPORT2
677uloc_getDisplayKeyword(const char* keyword,
678 const char* displayLocale,
679 UChar* dest,
680 int32_t destCapacity,
681 UErrorCode* status);
702U_STABLE int32_t U_EXPORT2
703uloc_getDisplayKeywordValue( const char* locale,
704 const char* keyword,
705 const char* displayLocale,
706 UChar* dest,
707 int32_t destCapacity,
708 UErrorCode* status);
725U_STABLE int32_t U_EXPORT2
726uloc_getDisplayName(const char* localeID,
727 const char* inLocaleID,
728 UChar* result,
729 int32_t maxResultSize,
730 UErrorCode* err);
731
732
743U_STABLE const char* U_EXPORT2
745
752U_STABLE int32_t U_EXPORT2 uloc_countAvailable(void);
753
763U_STABLE const char* const* U_EXPORT2
765
775U_STABLE const char* const* U_EXPORT2
777
791U_STABLE int32_t U_EXPORT2
792uloc_getParent(const char* localeID,
793 char* parent,
794 int32_t parentCapacity,
795 UErrorCode* err);
796
797
798
799
819U_STABLE int32_t U_EXPORT2
820uloc_getBaseName(const char* localeID,
821 char* name,
822 int32_t nameCapacity,
823 UErrorCode* err);
824
834U_STABLE UEnumeration* U_EXPORT2
835uloc_openKeywords(const char* localeID,
836 UErrorCode* status);
837
849U_STABLE int32_t U_EXPORT2
850uloc_getKeywordValue(const char* localeID,
851 const char* keywordName,
852 char* buffer, int32_t bufferCapacity,
853 UErrorCode* status);
854
855
875U_STABLE int32_t U_EXPORT2
876uloc_setKeywordValue(const char* keywordName,
877 const char* keywordValue,
878 char* buffer, int32_t bufferCapacity,
879 UErrorCode* status);
880
886typedef enum {
887 ULOC_LAYOUT_LTR = 0, /* left-to-right. */
888 ULOC_LAYOUT_RTL = 1, /* right-to-left. */
889 ULOC_LAYOUT_TTB = 2, /* top-to-bottom. */
890 ULOC_LAYOUT_BTT = 3, /* bottom-to-top. */
891 ULOC_LAYOUT_UNKNOWN
893
902U_STABLE ULayoutType U_EXPORT2
903uloc_getCharacterOrientation(const char* localeId,
904 UErrorCode *status);
905
914U_STABLE ULayoutType U_EXPORT2
915uloc_getLineOrientation(const char* localeId,
916 UErrorCode *status);
917
924typedef enum {
925 ULOC_ACCEPT_FAILED = 0, /* No exact match was found. */
926 ULOC_ACCEPT_VALID = 1, /* An exact match was found. */
927 ULOC_ACCEPT_FALLBACK = 2 /* A fallback was found, for example,
928 Accept list contained 'ja_JP'
929 which matched available locale 'ja'. */
931
932
945U_STABLE int32_t U_EXPORT2
946uloc_acceptLanguageFromHTTP(char *result, int32_t resultAvailable,
947 UAcceptResult *outResult,
948 const char *httpAcceptLanguage,
949 UEnumeration* availableLocales,
950 UErrorCode *status);
951
965U_STABLE int32_t U_EXPORT2
966uloc_acceptLanguage(char *result, int32_t resultAvailable,
967 UAcceptResult *outResult, const char **acceptList,
968 int32_t acceptListCount,
969 UEnumeration* availableLocales,
970 UErrorCode *status);
971
972
985U_STABLE int32_t U_EXPORT2
986uloc_getLocaleForLCID(uint32_t hostID, char *locale, int32_t localeCapacity,
987 UErrorCode *status);
988
989
1023U_STABLE int32_t U_EXPORT2
1024uloc_addLikelySubtags(const char* localeID,
1025 char* maximizedLocaleID,
1026 int32_t maximizedLocaleIDCapacity,
1027 UErrorCode* err);
1028
1029
1063U_STABLE int32_t U_EXPORT2
1064uloc_minimizeSubtags(const char* localeID,
1065 char* minimizedLocaleID,
1066 int32_t minimizedLocaleIDCapacity,
1067 UErrorCode* err);
1068
1092U_STABLE int32_t U_EXPORT2
1093uloc_forLanguageTag(const char* langtag,
1094 char* localeID,
1095 int32_t localeIDCapacity,
1096 int32_t* parsedLength,
1097 UErrorCode* err);
1098
1120U_STABLE int32_t U_EXPORT2
1121uloc_toLanguageTag(const char* localeID,
1122 char* langtag,
1123 int32_t langtagCapacity,
1124 UBool strict,
1125 UErrorCode* err);
1126
1127#endif /*_ULOC*/
C API: String Enumeration.
struct UEnumeration UEnumeration
structure representing an enumeration object instance
Definition uenum.h:39
int32_t uloc_addLikelySubtags(const char *localeID, char *maximizedLocaleID, int32_t maximizedLocaleIDCapacity, UErrorCode *err)
Add the likely subtags for a provided locale ID, per the algorithm described in the following CLDR te...
const char *const * uloc_getISOLanguages(void)
Gets a list of all available language codes defined in ISO 639.
int32_t uloc_getDisplayKeyword(const char *keyword, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *status)
Gets the keyword name suitable for display for the specified locale.
uint32_t uloc_getLCID(const char *localeID)
Gets the Win32 LCID value for the specified locale.
const char * uloc_getAvailable(int32_t n)
Gets the specified locale from a list of all available locales.
int32_t uloc_getKeywordValue(const char *localeID, const char *keywordName, char *buffer, int32_t bufferCapacity, UErrorCode *status)
Get the value for a keyword.
int32_t uloc_getName(const char *localeID, char *name, int32_t nameCapacity, UErrorCode *err)
Gets the full name for the specified locale.
int32_t uloc_toLanguageTag(const char *localeID, char *langtag, int32_t langtagCapacity, UBool strict, UErrorCode *err)
Returns a well-formed language tag for this locale ID.
int32_t uloc_getCountry(const char *localeID, char *country, int32_t countryCapacity, UErrorCode *err)
Gets the country code for the specified locale.
ULayoutType uloc_getCharacterOrientation(const char *localeId, UErrorCode *status)
Get the layout character orientation for the specified locale.
int32_t uloc_getDisplayCountry(const char *locale, const char *displayLocale, UChar *country, int32_t countryCapacity, UErrorCode *status)
Gets the country name suitable for display for the specified locale.
int32_t uloc_getDisplayName(const char *localeID, const char *inLocaleID, UChar *result, int32_t maxResultSize, UErrorCode *err)
Gets the full name suitable for display for the specified locale.
const char *const * uloc_getISOCountries(void)
Gets a list of all available 2-letter country codes defined in ISO 639.
UAcceptResult
enums for the 'outResult' parameter return value
Definition uloc.h:924
int32_t uloc_acceptLanguage(char *result, int32_t resultAvailable, UAcceptResult *outResult, const char **acceptList, int32_t acceptListCount, UEnumeration *availableLocales, UErrorCode *status)
Based on a list of available locales, determine an acceptable locale for the user.
int32_t uloc_getDisplayLanguage(const char *locale, const char *displayLocale, UChar *language, int32_t languageCapacity, UErrorCode *status)
Gets the language name suitable for display for the specified locale.
int32_t uloc_getDisplayVariant(const char *locale, const char *displayLocale, UChar *variant, int32_t variantCapacity, UErrorCode *status)
Gets the variant name suitable for display for the specified locale.
void uloc_setDefault(const char *localeID, UErrorCode *status)
Sets ICU's default locale.
int32_t uloc_setKeywordValue(const char *keywordName, const char *keywordValue, char *buffer, int32_t bufferCapacity, UErrorCode *status)
Set the value of the specified keyword.
const char * uloc_getISO3Language(const char *localeID)
Gets the ISO language code for the specified locale.
UEnumeration * uloc_openKeywords(const char *localeID, UErrorCode *status)
Gets an enumeration of keywords for the specified locale.
ULayoutType
enums for the return value for the character and line orientation functions.
Definition uloc.h:886
int32_t uloc_getDisplayKeywordValue(const char *locale, const char *keyword, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *status)
Gets the value of the keyword suitable for display for the specified locale.
int32_t uloc_countAvailable(void)
Gets the size of the all available locale list.
int32_t uloc_getLocaleForLCID(uint32_t hostID, char *locale, int32_t localeCapacity, UErrorCode *status)
Gets the ICU locale ID for the specified Win32 LCID value.
int32_t uloc_getBaseName(const char *localeID, char *name, int32_t nameCapacity, UErrorCode *err)
Gets the full name for the specified locale.
int32_t uloc_getScript(const char *localeID, char *script, int32_t scriptCapacity, UErrorCode *err)
Gets the script code for the specified locale.
int32_t uloc_getLanguage(const char *localeID, char *language, int32_t languageCapacity, UErrorCode *err)
Gets the language code for the specified locale.
int32_t uloc_forLanguageTag(const char *langtag, char *localeID, int32_t localeIDCapacity, int32_t *parsedLength, UErrorCode *err)
Returns a locale ID for the specified BCP47 language tag string.
int32_t uloc_getDisplayScript(const char *locale, const char *displayLocale, UChar *script, int32_t scriptCapacity, UErrorCode *status)
Gets the script name suitable for display for the specified locale.
ULayoutType uloc_getLineOrientation(const char *localeId, UErrorCode *status)
Get the layout line orientation for the specified locale.
int32_t uloc_getParent(const char *localeID, char *parent, int32_t parentCapacity, UErrorCode *err)
Truncate the locale ID string to get the parent locale ID.
int32_t uloc_getVariant(const char *localeID, char *variant, int32_t variantCapacity, UErrorCode *err)
Gets the variant code for the specified locale.
int32_t uloc_minimizeSubtags(const char *localeID, char *minimizedLocaleID, int32_t minimizedLocaleIDCapacity, UErrorCode *err)
Minimize the subtags for a provided locale ID, per the algorithm described in the following CLDR tech...
int32_t uloc_acceptLanguageFromHTTP(char *result, int32_t resultAvailable, UAcceptResult *outResult, const char *httpAcceptLanguage, UEnumeration *availableLocales, UErrorCode *status)
Based on a HTTP header from a web browser and a list of available locales, determine an acceptable lo...
ULocDataLocaleType
Constants for *_getLocale() Allow user to select whether she wants information on requested,...
Definition uloc.h:336
@ ULOC_ACTUAL_LOCALE
This is locale the data actually comes from.
Definition uloc.h:340
@ ULOC_VALID_LOCALE
This is the most specific locale supported by ICU.
Definition uloc.h:344
@ ULOC_REQUESTED_LOCALE
This is the requested locale.
Definition uloc.h:350
const char * uloc_getISO3Country(const char *localeID)
Gets the ISO country code for the specified locale.
const char * uloc_getDefault(void)
Gets ICU's default locale.
int32_t uloc_canonicalize(const char *localeID, char *name, int32_t nameCapacity, UErrorCode *err)
Gets the full name for the specified locale.
int8_t UBool
The ICU boolean type.
Definition umachine.h:200
uint16_t UChar
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
Definition umachine.h:278
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition umachine.h:109
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...
Definition utypes.h:476