ICU 75.1 75.1
Loading...
Searching...
No Matches
ulocbuilder.h
Go to the documentation of this file.
1// © 2023 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3#ifndef __ULOCBUILDER_H__
4#define __ULOCBUILDER_H__
5
7#include "unicode/ulocale.h"
8#include "unicode/utypes.h"
9
15#ifndef U_HIDE_DRAFT_API
16
21struct ULocaleBuilder;
22
28
76U_CAPI ULocaleBuilder* U_EXPORT2
78
84U_CAPI void U_EXPORT2
86
102U_CAPI void U_EXPORT2
103ulocbld_setLocale(ULocaleBuilder* builder, const char* locale, int32_t length);
104
118U_CAPI void U_EXPORT2
120
141U_CAPI void U_EXPORT2
142ulocbld_setLanguageTag(ULocaleBuilder* builder, const char* tag, int32_t length);
143
161U_CAPI void U_EXPORT2
162ulocbld_setLanguage(ULocaleBuilder* builder, const char* language, int32_t length);
163
182U_CAPI void U_EXPORT2
183ulocbld_setScript(ULocaleBuilder* builder, const char* script, int32_t length);
184
206U_CAPI void U_EXPORT2
207ulocbld_setRegion(ULocaleBuilder* builder, const char* region, int32_t length);
208
232U_CAPI void U_EXPORT2
233ulocbld_setVariant(ULocaleBuilder* builder, const char* variant, int32_t length);
234
258U_CAPI void U_EXPORT2
259ulocbld_setExtension(ULocaleBuilder* builder, char key, const char* value, int32_t length);
260
287U_CAPI void U_EXPORT2
289 const char* key, int32_t keyLength, const char* type, int32_t typeLength);
290
304U_CAPI void U_EXPORT2
306 ULocaleBuilder* builder, const char* attribute, int32_t length);
307
323U_CAPI void U_EXPORT2
325 ULocaleBuilder* builder, const char* attribute, int32_t length);
326
334U_CAPI void U_EXPORT2
336
344U_CAPI void U_EXPORT2
346
363U_CAPI int32_t U_EXPORT2
365 int32_t localeCapacity, UErrorCode* err);
366
382U_CAPI ULocale* U_EXPORT2
384
402U_CAPI int32_t U_EXPORT2
404 int32_t languageCapacity, UErrorCode* err);
405
417U_CAPI UBool U_EXPORT2
418ulocbld_copyErrorTo(const ULocaleBuilder* builder, UErrorCode *outErrorCode);
419
420#if U_SHOW_CPLUSPLUS_API
421
422U_NAMESPACE_BEGIN
423
434
435U_NAMESPACE_END
436
437#endif /* U_SHOW_CPLUSPLUS_API */
438
439#endif /* U_HIDE_DRAFT_API */
440
441#endif // __ULOCBUILDER_H__
"Smart pointer" class, closes a ULocaleBuilder via ulocbld_close().
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
C API: Locale ID functionality similar to C++ class Locale.
struct ULocale ULocale
C typedef for struct ULocale.
Definition ulocale.h:27
U_CAPI void ulocbld_setRegion(ULocaleBuilder *builder, const char *region, int32_t length)
Sets the region.
U_CAPI void ulocbld_adoptULocale(ULocaleBuilder *builder, ULocale *locale)
Resets the ULocaleBuilder to match the provided ULocale.
U_CAPI void ulocbld_setVariant(ULocaleBuilder *builder, const char *variant, int32_t length)
Sets the variant.
U_CAPI void ulocbld_removeUnicodeLocaleAttribute(ULocaleBuilder *builder, const char *attribute, int32_t length)
Removes a unicode locale attribute, if present, otherwise has no effect.
U_CAPI void ulocbld_setExtension(ULocaleBuilder *builder, char key, const char *value, int32_t length)
Sets the extension for the given key.
U_CAPI ULocale * ulocbld_buildULocale(ULocaleBuilder *builder, UErrorCode *err)
Build the ULocale object from the fields set on this builder.
U_CAPI UBool ulocbld_copyErrorTo(const ULocaleBuilder *builder, UErrorCode *outErrorCode)
Sets the UErrorCode if an error occurred while recording sets.
struct ULocaleBuilder ULocaleBuilder
C typedef for struct ULocaleBuilder.
Definition ulocbuilder.h:27
U_CAPI void ulocbld_setScript(ULocaleBuilder *builder, const char *script, int32_t length)
Sets the script.
U_CAPI void ulocbld_setLocale(ULocaleBuilder *builder, const char *locale, int32_t length)
Resets the ULocaleBuilder to match the provided locale.
U_CAPI ULocaleBuilder * ulocbld_open(void)
ULocaleBuilder is used to build valid locale id string or IETF BCP 47 language tag from values config...
U_CAPI void ulocbld_clear(ULocaleBuilder *builder)
Resets the builder to its initial, empty state.
U_CAPI void ulocbld_setLanguageTag(ULocaleBuilder *builder, const char *tag, int32_t length)
Resets the ULocaleBuilder to match the provided IETF BCP 47 language tag.
U_CAPI void ulocbld_setUnicodeLocaleKeyword(ULocaleBuilder *builder, const char *key, int32_t keyLength, const char *type, int32_t typeLength)
Sets the Unicode locale keyword type for the given key.
U_CAPI void ulocbld_addUnicodeLocaleAttribute(ULocaleBuilder *builder, const char *attribute, int32_t length)
Adds a unicode locale attribute, if not already present, otherwise has no effect.
U_CAPI int32_t ulocbld_buildLocaleID(ULocaleBuilder *builder, char *locale, int32_t localeCapacity, UErrorCode *err)
Build the LocaleID string from the fields set on this builder.
U_CAPI void ulocbld_close(ULocaleBuilder *builder)
Close the builder and destroy it's internal states.
U_CAPI int32_t ulocbld_buildLanguageTag(ULocaleBuilder *builder, char *language, int32_t languageCapacity, UErrorCode *err)
Build the IETF BCP 47 language tag string from the fields set on this builder.
U_CAPI void ulocbld_setLanguage(ULocaleBuilder *builder, const char *language, int32_t length)
Sets the language.
U_CAPI void ulocbld_clearExtensions(ULocaleBuilder *builder)
Resets the extensions to their initial, empty state.
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition umachine.h:247
#define U_CAPI
This is used to declare a function as a public ICU C API.
Definition umachine.h:110
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition utypes.h:415