2 *******************************************************************************
3 * Copyright (c) 1996-2013, International Business Machines Corporation and others.
5 *******************************************************************************
11 #include "unicode/utypes.h"
13 #if !UCONFIG_NO_COLLATION
15 #include "unicode/unorm.h"
16 #include "unicode/localpointer.h"
17 #include "unicode/parseerr.h"
18 #include "unicode/uloc.h"
19 #include "unicode/uset.h"
20 #include "unicode/uscript.h"
24 * \brief C API: Collator
26 * <h2> Collator C API </h2>
28 * The C API for Collator performs locale-sensitive
29 * string comparison. You use this service to build
30 * searching and sorting routines for natural language text.
31 * <em>Important: </em>The ICU collation service has been reimplemented
32 * in order to achieve better performance and UCA compliance.
33 * For details, see the
34 * <a href="http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm">
35 * collation design document</a>.
37 * For more information about the collation service see
38 * <a href="http://icu-project.org/userguide/Collate_Intro.html">the users guide</a>.
40 * Collation service provides correct sorting orders for most locales supported in ICU.
41 * If specific data for a locale is not available, the orders eventually falls back
42 * to the <a href="http://www.unicode.org/unicode/reports/tr10/">UCA sort order</a>.
44 * Sort ordering may be customized by providing your own set of rules. For more on
45 * this subject see the
46 * <a href="http://icu-project.org/userguide/Collate_Customization.html">
47 * Collation customization</a> section of the users guide.
49 * @see UCollationResult
50 * @see UNormalizationMode
51 * @see UCollationStrength
52 * @see UCollationElements
56 * For usage in C programs.
59 /** structure representing a collator object instance
62 typedef struct UCollator UCollator
;
66 * UCOL_LESS is returned if source string is compared to be less than target
67 * string in the u_strcoll() method.
68 * UCOL_EQUAL is returned if source string is compared to be equal to target
69 * string in the u_strcoll() method.
70 * UCOL_GREATER is returned if source string is compared to be greater than
71 * target string in the u_strcoll() method.
74 * Possible values for a comparison result
78 /** string a == string b */
80 /** string a > string b */
82 /** string a < string b */
87 /** Enum containing attribute values for controling collation behavior.
88 * Here are all the allowable values. Not every attribute can take every value. The only
89 * universal value is UCOL_DEFAULT, which resets the attribute value to the predefined
90 * value for that locale
94 /** accepted by most attributes */
97 /** Primary collation strength */
99 /** Secondary collation strength */
101 /** Tertiary collation strength */
103 /** Default collation strength */
104 UCOL_DEFAULT_STRENGTH
= UCOL_TERTIARY
,
105 UCOL_CE_STRENGTH_LIMIT
,
106 /** Quaternary collation strength */
108 /** Identical collation strength */
112 /** Turn the feature off - works for UCOL_FRENCH_COLLATION,
113 UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MODE
114 & UCOL_DECOMPOSITION_MODE*/
116 /** Turn the feature on - works for UCOL_FRENCH_COLLATION,
117 UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MODE
118 & UCOL_DECOMPOSITION_MODE*/
121 /** Valid for UCOL_ALTERNATE_HANDLING. Alternate handling will be shifted */
123 /** Valid for UCOL_ALTERNATE_HANDLING. Alternate handling will be non ignorable */
124 UCOL_NON_IGNORABLE
= 21,
126 /** Valid for UCOL_CASE_FIRST -
127 lower case sorts before upper case */
128 UCOL_LOWER_FIRST
= 24,
129 /** upper case sorts before lower case */
130 UCOL_UPPER_FIRST
= 25,
132 UCOL_ATTRIBUTE_VALUE_COUNT
134 } UColAttributeValue
;
137 * Enum containing the codes for reordering segments of the collation table that are not script
138 * codes. These reordering codes are to be used in conjunction with the script codes.
139 * @see ucol_getReorderCodes
140 * @see ucol_setReorderCodes
141 * @see ucol_getEquivalentReorderCodes
147 * A special reordering code that is used to specify the default
148 * reordering codes for a locale.
151 UCOL_REORDER_CODE_DEFAULT
= -1,
153 * A special reordering code that is used to specify no reordering codes.
156 UCOL_REORDER_CODE_NONE
= USCRIPT_UNKNOWN
,
158 * A special reordering code that is used to specify all other codes used for
159 * reordering except for the codes lised as UColReorderCode values and those
160 * listed explicitly in a reordering.
163 UCOL_REORDER_CODE_OTHERS
= USCRIPT_UNKNOWN
,
165 * Characters with the space property.
166 * This is equivalent to the rule value "space".
169 UCOL_REORDER_CODE_SPACE
= 0x1000,
171 * The first entry in the enumeration of reordering groups. This is intended for use in
172 * range checking and enumeration of the reorder codes.
175 UCOL_REORDER_CODE_FIRST
= UCOL_REORDER_CODE_SPACE
,
177 * Characters with the punctuation property.
178 * This is equivalent to the rule value "punct".
181 UCOL_REORDER_CODE_PUNCTUATION
= 0x1001,
183 * Characters with the symbol property.
184 * This is equivalent to the rule value "symbol".
187 UCOL_REORDER_CODE_SYMBOL
= 0x1002,
189 * Characters with the currency property.
190 * This is equivalent to the rule value "currency".
193 UCOL_REORDER_CODE_CURRENCY
= 0x1003,
195 * Characters with the digit property.
196 * This is equivalent to the rule value "digit".
199 UCOL_REORDER_CODE_DIGIT
= 0x1004,
201 * The limit of the reorder codes. This is intended for use in range checking
202 * and enumeration of the reorder codes.
205 UCOL_REORDER_CODE_LIMIT
= 0x1005
209 * Base letter represents a primary difference. Set comparison
210 * level to UCOL_PRIMARY to ignore secondary and tertiary differences.
211 * Use this to set the strength of a Collator object.
212 * Example of primary difference, "abc" < "abd"
214 * Diacritical differences on the same base letter represent a secondary
215 * difference. Set comparison level to UCOL_SECONDARY to ignore tertiary
216 * differences. Use this to set the strength of a Collator object.
217 * Example of secondary difference, "ä" >> "a".
219 * Uppercase and lowercase versions of the same character represents a
220 * tertiary difference. Set comparison level to UCOL_TERTIARY to include
221 * all comparison differences. Use this to set the strength of a Collator
223 * Example of tertiary difference, "abc" <<< "ABC".
225 * Two characters are considered "identical" when they have the same
226 * unicode spellings. UCOL_IDENTICAL.
227 * For example, "ä" == "ä".
229 * UCollationStrength is also used to determine the strength of sort keys
230 * generated from UCollator objects
231 * These values can be now found in the UColAttributeValue enum.
234 typedef UColAttributeValue UCollationStrength
;
236 /** Attributes that collation service understands. All the attributes can take UCOL_DEFAULT
237 * value, as well as the values specific to each one.
241 /** Attribute for direction of secondary weights - used in Canadian French.
242 * Acceptable values are UCOL_ON, which results in secondary weights
243 * being considered backwards and UCOL_OFF which treats secondary
244 * weights in the order they appear.
247 UCOL_FRENCH_COLLATION
,
248 /** Attribute for handling variable elements.
249 * Acceptable values are UCOL_NON_IGNORABLE (default)
250 * which treats all the codepoints with non-ignorable
251 * primary weights in the same way,
252 * and UCOL_SHIFTED which causes codepoints with primary
253 * weights that are equal or below the variable top value
254 * to be ignored on primary level and moved to the quaternary
258 UCOL_ALTERNATE_HANDLING
,
259 /** Controls the ordering of upper and lower case letters.
260 * Acceptable values are UCOL_OFF (default), which orders
261 * upper and lower case letters in accordance to their tertiary
262 * weights, UCOL_UPPER_FIRST which forces upper case letters to
263 * sort before lower case letters, and UCOL_LOWER_FIRST which does
268 /** Controls whether an extra case level (positioned before the third
269 * level) is generated or not. Acceptable values are UCOL_OFF (default),
270 * when case level is not generated, and UCOL_ON which causes the case
271 * level to be generated. Contents of the case level are affected by
272 * the value of UCOL_CASE_FIRST attribute. A simple way to ignore
273 * accent differences in a string is to set the strength to UCOL_PRIMARY
274 * and enable case level.
278 /** Controls whether the normalization check and necessary normalizations
279 * are performed. When set to UCOL_OFF (default) no normalization check
280 * is performed. The correctness of the result is guaranteed only if the
281 * input data is in so-called FCD form (see users manual for more info).
282 * When set to UCOL_ON, an incremental check is performed to see whether
283 * the input data is in the FCD form. If the data is not in the FCD form,
284 * incremental NFD normalization is performed.
287 UCOL_NORMALIZATION_MODE
,
288 /** An alias for UCOL_NORMALIZATION_MODE attribute.
291 UCOL_DECOMPOSITION_MODE
= UCOL_NORMALIZATION_MODE
,
292 /** The strength attribute. Can be either UCOL_PRIMARY, UCOL_SECONDARY,
293 * UCOL_TERTIARY, UCOL_QUATERNARY or UCOL_IDENTICAL. The usual strength
294 * for most locales (except Japanese) is tertiary. Quaternary strength
295 * is useful when combined with shifted setting for alternate handling
296 * attribute and for JIS x 4061 collation, when it is used to distinguish
297 * between Katakana and Hiragana (this is achieved by setting the
298 * UCOL_HIRAGANA_QUATERNARY mode to on. Otherwise, quaternary level
299 * is affected only by the number of non ignorable code points in
300 * the string. Identical strength is rarely useful, as it amounts
301 * to codepoints of the NFD form of the string.
305 /** When turned on, this attribute positions Hiragana before all
306 * non-ignorables on quaternary level This is a sneaky way to produce JIS
309 * This attribute is an implementation detail of the CLDR Japanese tailoring.
310 * The implementation might change to use a different mechanism
311 * to achieve the same Japanese sort order.
312 * Since ICU 50, this attribute is not settable any more via API functions.
313 * @deprecated ICU 50 Implementation detail, cannot be set via API, might be removed from implementation.
315 UCOL_HIRAGANA_QUATERNARY_MODE
,
316 /** When turned on, this attribute generates a collation key
317 * for the numeric value of substrings of digits.
318 * This is a way to get '100' to sort AFTER '2'. Note that the longest
319 * digit substring that can be treated as a single collation element is
320 * 254 digits (not counting leading zeros). If a digit substring is
321 * longer than that, the digits beyond the limit will be treated as a
322 * separate digit substring associated with a separate collation element.
325 UCOL_NUMERIC_COLLATION
,
327 * The number of UColAttribute constants.
333 /** Options for retrieving the rule string
338 * Retrieves the tailoring rules only.
339 * Same as calling the version of getRules() without UColRuleOption.
344 * Retrieves the "UCA rules" concatenated with the tailoring rules.
345 * The "UCA rules" are an <i>approximation</i> of the root collator's sort order.
346 * They are almost never used or useful at runtime and can be removed from the data.
347 * See http://userguide.icu-project.org/collation/customization#TOC-Building-on-Existing-Locales
354 * Open a UCollator for comparing strings.
355 * The UCollator pointer is used in all the calls to the Collation
356 * service. After finished, collator must be disposed of by calling
357 * {@link #ucol_close }.
358 * @param loc The locale containing the required collation rules.
359 * Special values for locales can be passed in -
360 * if NULL is passed for the locale, the default locale
361 * collation rules will be used. If empty string ("") or
362 * "root" are passed, UCA rules will be used.
363 * @param status A pointer to an UErrorCode to receive any errors
364 * @return A pointer to a UCollator, or 0 if an error occurred.
365 * @see ucol_openRules
366 * @see ucol_safeClone
370 U_STABLE UCollator
* U_EXPORT2
371 ucol_open(const char *loc
, UErrorCode
*status
);
374 * Produce an UCollator instance according to the rules supplied.
375 * The rules are used to change the default ordering, defined in the
376 * UCA in a process called tailoring. The resulting UCollator pointer
377 * can be used in the same way as the one obtained by {@link #ucol_strcoll }.
378 * @param rules A string describing the collation rules. For the syntax
379 * of the rules please see users guide.
380 * @param rulesLength The length of rules, or -1 if null-terminated.
381 * @param normalizationMode The normalization mode: One of
382 * UCOL_OFF (expect the text to not need normalization),
383 * UCOL_ON (normalize), or
384 * UCOL_DEFAULT (set the mode according to the rules)
385 * @param strength The default collation strength; one of UCOL_PRIMARY, UCOL_SECONDARY,
386 * UCOL_TERTIARY, UCOL_IDENTICAL,UCOL_DEFAULT_STRENGTH - can be also set in the rules.
387 * @param parseError A pointer to UParseError to recieve information about errors
388 * occurred during parsing. This argument can currently be set
389 * to NULL, but at users own risk. Please provide a real structure.
390 * @param status A pointer to an UErrorCode to receive any errors
391 * @return A pointer to a UCollator. It is not guaranteed that NULL be returned in case
392 * of error - please use status argument to check for errors.
394 * @see ucol_safeClone
398 U_STABLE UCollator
* U_EXPORT2
399 ucol_openRules( const UChar
*rules
,
401 UColAttributeValue normalizationMode
,
402 UCollationStrength strength
,
403 UParseError
*parseError
,
407 * Open a collator defined by a short form string.
408 * The structure and the syntax of the string is defined in the "Naming collators"
409 * section of the users guide:
410 * http://icu-project.org/userguide/Collate_Concepts.html#Naming_Collators
411 * Attributes are overriden by the subsequent attributes. So, for "S2_S3", final
412 * strength will be 3. 3066bis locale overrides individual locale parts.
413 * The call to this function is equivalent to a call to ucol_open, followed by a
414 * series of calls to ucol_setAttribute and ucol_setVariableTop.
415 * @param definition A short string containing a locale and a set of attributes.
416 * Attributes not explicitly mentioned are left at the default
417 * state for a locale.
418 * @param parseError if not NULL, structure that will get filled with error's pre
419 * and post context in case of error.
420 * @param forceDefaults if FALSE, the settings that are the same as the collator
421 * default settings will not be applied (for example, setting
422 * French secondary on a French collator would not be executed).
423 * If TRUE, all the settings will be applied regardless of the
424 * collator default value. If the definition
425 * strings are to be cached, should be set to FALSE.
426 * @param status Error code. Apart from regular error conditions connected to
427 * instantiating collators (like out of memory or similar), this
428 * API will return an error if an invalid attribute or attribute/value
429 * combination is specified.
430 * @return A pointer to a UCollator or 0 if an error occured (including an
431 * invalid attribute).
433 * @see ucol_setAttribute
434 * @see ucol_setVariableTop
435 * @see ucol_getShortDefinitionString
436 * @see ucol_normalizeShortDefinitionString
440 U_STABLE UCollator
* U_EXPORT2
441 ucol_openFromShortString( const char *definition
,
443 UParseError
*parseError
,
446 #ifndef U_HIDE_DEPRECATED_API
448 * Get a set containing the contractions defined by the collator. The set includes
449 * both the UCA contractions and the contractions defined by the collator. This set
450 * will contain only strings. If a tailoring explicitly suppresses contractions from
451 * the UCA (like Russian), removed contractions will not be in the resulting set.
452 * @param coll collator
453 * @param conts the set to hold the result. It gets emptied before
454 * contractions are added.
455 * @param status to hold the error code
456 * @return the size of the contraction set
458 * @deprecated ICU 3.4, use ucol_getContractionsAndExpansions instead
460 U_DEPRECATED
int32_t U_EXPORT2
461 ucol_getContractions( const UCollator
*coll
,
464 #endif /* U_HIDE_DEPRECATED_API */
467 * Get a set containing the expansions defined by the collator. The set includes
468 * both the UCA expansions and the expansions defined by the tailoring
469 * @param coll collator
470 * @param contractions if not NULL, the set to hold the contractions
471 * @param expansions if not NULL, the set to hold the expansions
472 * @param addPrefixes add the prefix contextual elements to contractions
473 * @param status to hold the error code
477 U_STABLE
void U_EXPORT2
478 ucol_getContractionsAndExpansions( const UCollator
*coll
,
479 USet
*contractions
, USet
*expansions
,
480 UBool addPrefixes
, UErrorCode
*status
);
484 * Once closed, a UCollator should not be used. Every open collator should
485 * be closed. Otherwise, a memory leak will result.
486 * @param coll The UCollator to close.
488 * @see ucol_openRules
489 * @see ucol_safeClone
492 U_STABLE
void U_EXPORT2
493 ucol_close(UCollator
*coll
);
495 #if U_SHOW_CPLUSPLUS_API
500 * \class LocalUCollatorPointer
501 * "Smart pointer" class, closes a UCollator via ucol_close().
502 * For most methods see the LocalPointerBase base class.
504 * @see LocalPointerBase
508 U_DEFINE_LOCAL_OPEN_POINTER(LocalUCollatorPointer
, UCollator
, ucol_close
);
515 * Compare two strings.
516 * The strings will be compared using the options already specified.
517 * @param coll The UCollator containing the comparison rules.
518 * @param source The source string.
519 * @param sourceLength The length of source, or -1 if null-terminated.
520 * @param target The target string.
521 * @param targetLength The length of target, or -1 if null-terminated.
522 * @return The result of comparing the strings; one of UCOL_EQUAL,
523 * UCOL_GREATER, UCOL_LESS
525 * @see ucol_greaterOrEqual
529 U_STABLE UCollationResult U_EXPORT2
530 ucol_strcoll( const UCollator
*coll
,
532 int32_t sourceLength
,
534 int32_t targetLength
);
536 #ifndef U_HIDE_DRAFT_API
538 * Compare two strings in UTF-8.
539 * The strings will be compared using the options already specified.
540 * Note: When input string contains malformed a UTF-8 byte sequence,
541 * this function treats these bytes as REPLACEMENT CHARACTER (U+FFFD).
542 * @param coll The UCollator containing the comparison rules.
543 * @param source The source UTF-8 string.
544 * @param sourceLength The length of source, or -1 if null-terminated.
545 * @param target The target UTF-8 string.
546 * @param targetLength The length of target, or -1 if null-terminated.
547 * @param status A pointer to an UErrorCode to receive any errors
548 * @return The result of comparing the strings; one of UCOL_EQUAL,
549 * UCOL_GREATER, UCOL_LESS
551 * @see ucol_greaterOrEqual
555 U_DRAFT UCollationResult U_EXPORT2
557 const UCollator
*coll
,
559 int32_t sourceLength
,
561 int32_t targetLength
,
563 #endif /* U_HIDE_DRAFT_API */
566 * Determine if one string is greater than another.
567 * This function is equivalent to {@link #ucol_strcoll } == UCOL_GREATER
568 * @param coll The UCollator containing the comparison rules.
569 * @param source The source string.
570 * @param sourceLength The length of source, or -1 if null-terminated.
571 * @param target The target string.
572 * @param targetLength The length of target, or -1 if null-terminated.
573 * @return TRUE if source is greater than target, FALSE otherwise.
575 * @see ucol_greaterOrEqual
579 U_STABLE UBool U_EXPORT2
580 ucol_greater(const UCollator
*coll
,
581 const UChar
*source
, int32_t sourceLength
,
582 const UChar
*target
, int32_t targetLength
);
585 * Determine if one string is greater than or equal to another.
586 * This function is equivalent to {@link #ucol_strcoll } != UCOL_LESS
587 * @param coll The UCollator containing the comparison rules.
588 * @param source The source string.
589 * @param sourceLength The length of source, or -1 if null-terminated.
590 * @param target The target string.
591 * @param targetLength The length of target, or -1 if null-terminated.
592 * @return TRUE if source is greater than or equal to target, FALSE otherwise.
598 U_STABLE UBool U_EXPORT2
599 ucol_greaterOrEqual(const UCollator
*coll
,
600 const UChar
*source
, int32_t sourceLength
,
601 const UChar
*target
, int32_t targetLength
);
604 * Compare two strings for equality.
605 * This function is equivalent to {@link #ucol_strcoll } == UCOL_EQUAL
606 * @param coll The UCollator containing the comparison rules.
607 * @param source The source string.
608 * @param sourceLength The length of source, or -1 if null-terminated.
609 * @param target The target string.
610 * @param targetLength The length of target, or -1 if null-terminated.
611 * @return TRUE if source is equal to target, FALSE otherwise
614 * @see ucol_greaterOrEqual
617 U_STABLE UBool U_EXPORT2
618 ucol_equal(const UCollator
*coll
,
619 const UChar
*source
, int32_t sourceLength
,
620 const UChar
*target
, int32_t targetLength
);
623 * Compare two UTF-8 encoded trings.
624 * The strings will be compared using the options already specified.
625 * @param coll The UCollator containing the comparison rules.
626 * @param sIter The source string iterator.
627 * @param tIter The target string iterator.
628 * @return The result of comparing the strings; one of UCOL_EQUAL,
629 * UCOL_GREATER, UCOL_LESS
630 * @param status A pointer to an UErrorCode to receive any errors
634 U_STABLE UCollationResult U_EXPORT2
635 ucol_strcollIter( const UCollator
*coll
,
636 UCharIterator
*sIter
,
637 UCharIterator
*tIter
,
641 * Get the collation strength used in a UCollator.
642 * The strength influences how strings are compared.
643 * @param coll The UCollator to query.
644 * @return The collation strength; one of UCOL_PRIMARY, UCOL_SECONDARY,
645 * UCOL_TERTIARY, UCOL_QUATERNARY, UCOL_IDENTICAL
646 * @see ucol_setStrength
649 U_STABLE UCollationStrength U_EXPORT2
650 ucol_getStrength(const UCollator
*coll
);
653 * Set the collation strength used in a UCollator.
654 * The strength influences how strings are compared.
655 * @param coll The UCollator to set.
656 * @param strength The desired collation strength; one of UCOL_PRIMARY,
657 * UCOL_SECONDARY, UCOL_TERTIARY, UCOL_QUATERNARY, UCOL_IDENTICAL, UCOL_DEFAULT
658 * @see ucol_getStrength
661 U_STABLE
void U_EXPORT2
662 ucol_setStrength(UCollator
*coll
,
663 UCollationStrength strength
);
666 * Retrieves the reordering codes for this collator.
667 * These reordering codes are a combination of UScript codes and UColReorderCode entries.
668 * @param coll The UCollator to query.
669 * @param dest The array to fill with the script ordering.
670 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function
671 * will only return the length of the result without writing any of the result string (pre-flighting).
672 * @param pErrorCode Must be a valid pointer to an error code value, which must not indicate a
673 * failure before the function call.
674 * @return The number of reordering codes written to the dest array.
675 * @see ucol_setReorderCodes
676 * @see ucol_getEquivalentReorderCodes
678 * @see UColReorderCode
681 U_STABLE
int32_t U_EXPORT2
682 ucol_getReorderCodes(const UCollator
* coll
,
684 int32_t destCapacity
,
685 UErrorCode
*pErrorCode
);
687 * Sets the reordering codes for this collator.
688 * Collation reordering allows scripts and some other defined blocks of characters
689 * to be moved relative to each other as a block. This reordering is done on top of
690 * the DUCET/CLDR standard collation order. Reordering can specify groups to be placed
691 * at the start and/or the end of the collation order. These groups are specified using
692 * UScript codes and UColReorderCode entries.
693 * <p>By default, reordering codes specified for the start of the order are placed in the
694 * order given after a group of "special" non-script blocks. These special groups of characters
695 * are space, punctuation, symbol, currency, and digit. These special groups are represented with
696 * UColReorderCode entries. Script groups can be intermingled with
697 * these special non-script blocks if those special blocks are explicitly specified in the reordering.
698 * <p>The special code OTHERS stands for any script that is not explicitly
699 * mentioned in the list of reordering codes given. Anything that is after OTHERS
700 * will go at the very end of the reordering in the order given.
701 * <p>The special reorder code DEFAULT will reset the reordering for this collator
702 * to the default for this collator. The default reordering may be the DUCET/CLDR order or may be a reordering that
703 * was specified when this collator was created from resource data or from rules. The
704 * DEFAULT code <b>must</b> be the sole code supplied when it used. If not
705 * that will result in an U_ILLEGAL_ARGUMENT_ERROR being set.
706 * <p>The special reorder code NONE will remove any reordering for this collator.
707 * The result of setting no reordering will be to have the DUCET/CLDR ordering used. The
708 * NONE code <b>must</b> be the sole code supplied when it used.
709 * @param coll The UCollator to set.
710 * @param reorderCodes An array of script codes in the new order. This can be NULL if the
711 * length is also set to 0. An empty array will clear any reordering codes on the collator.
712 * @param reorderCodesLength The length of reorderCodes.
713 * @param pErrorCode Must be a valid pointer to an error code value, which must not indicate a
714 * failure before the function call.
715 * @see ucol_getReorderCodes
716 * @see ucol_getEquivalentReorderCodes
718 * @see UColReorderCode
721 U_STABLE
void U_EXPORT2
722 ucol_setReorderCodes(UCollator
* coll
,
723 const int32_t* reorderCodes
,
724 int32_t reorderCodesLength
,
725 UErrorCode
*pErrorCode
);
728 * Retrieves the reorder codes that are grouped with the given reorder code. Some reorder
729 * codes will be grouped and must reorder together.
730 * @param reorderCode The reorder code to determine equivalence for.
731 * @param dest The array to fill with the script ordering.
732 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function
733 * will only return the length of the result without writing any of the result string (pre-flighting).
734 * @param pErrorCode Must be a valid pointer to an error code value, which must not indicate
735 * a failure before the function call.
736 * @return The number of reordering codes written to the dest array.
737 * @see ucol_setReorderCodes
738 * @see ucol_getReorderCodes
740 * @see UColReorderCode
743 U_STABLE
int32_t U_EXPORT2
744 ucol_getEquivalentReorderCodes(int32_t reorderCode
,
746 int32_t destCapacity
,
747 UErrorCode
*pErrorCode
);
750 * Get the display name for a UCollator.
751 * The display name is suitable for presentation to a user.
752 * @param objLoc The locale of the collator in question.
753 * @param dispLoc The locale for display.
754 * @param result A pointer to a buffer to receive the attribute.
755 * @param resultLength The maximum size of result.
756 * @param status A pointer to an UErrorCode to receive any errors
757 * @return The total buffer size needed; if greater than resultLength,
758 * the output was truncated.
761 U_STABLE
int32_t U_EXPORT2
762 ucol_getDisplayName( const char *objLoc
,
765 int32_t resultLength
,
769 * Get a locale for which collation rules are available.
770 * A UCollator in a locale returned by this function will perform the correct
771 * collation for the locale.
772 * @param localeIndex The index of the desired locale.
773 * @return A locale for which collation rules are available, or 0 if none.
774 * @see ucol_countAvailable
777 U_STABLE
const char* U_EXPORT2
778 ucol_getAvailable(int32_t localeIndex
);
781 * Determine how many locales have collation rules available.
782 * This function is most useful as determining the loop ending condition for
783 * calls to {@link #ucol_getAvailable }.
784 * @return The number of locales for which collation rules are available.
785 * @see ucol_getAvailable
788 U_STABLE
int32_t U_EXPORT2
789 ucol_countAvailable(void);
791 #if !UCONFIG_NO_SERVICE
793 * Create a string enumerator of all locales for which a valid
794 * collator may be opened.
795 * @param status input-output error code
796 * @return a string enumeration over locale strings. The caller is
797 * responsible for closing the result.
800 U_STABLE UEnumeration
* U_EXPORT2
801 ucol_openAvailableLocales(UErrorCode
*status
);
805 * Create a string enumerator of all possible keywords that are relevant to
806 * collation. At this point, the only recognized keyword for this
807 * service is "collation".
808 * @param status input-output error code
809 * @return a string enumeration over locale strings. The caller is
810 * responsible for closing the result.
813 U_STABLE UEnumeration
* U_EXPORT2
814 ucol_getKeywords(UErrorCode
*status
);
817 * Given a keyword, create a string enumeration of all values
818 * for that keyword that are currently in use.
819 * @param keyword a particular keyword as enumerated by
820 * ucol_getKeywords. If any other keyword is passed in, *status is set
821 * to U_ILLEGAL_ARGUMENT_ERROR.
822 * @param status input-output error code
823 * @return a string enumeration over collation keyword values, or NULL
824 * upon error. The caller is responsible for closing the result.
827 U_STABLE UEnumeration
* U_EXPORT2
828 ucol_getKeywordValues(const char *keyword
, UErrorCode
*status
);
831 * Given a key and a locale, returns an array of string values in a preferred
832 * order that would make a difference. These are all and only those values where
833 * the open (creation) of the service with the locale formed from the input locale
834 * plus input keyword and that value has different behavior than creation with the
835 * input locale alone.
836 * @param key one of the keys supported by this service. For now, only
837 * "collation" is supported.
838 * @param locale the locale
839 * @param commonlyUsed if set to true it will return only commonly used values
840 * with the given locale in preferred order. Otherwise,
841 * it will return all the available values for the locale.
842 * @param status error status
843 * @return a string enumeration over keyword values for the given key and the locale.
846 U_STABLE UEnumeration
* U_EXPORT2
847 ucol_getKeywordValuesForLocale(const char* key
,
853 * Return the functionally equivalent locale for the given
854 * requested locale, with respect to given keyword, for the
855 * collation service. If two locales return the same result, then
856 * collators instantiated for these locales will behave
857 * equivalently. The converse is not always true; two collators
858 * may in fact be equivalent, but return different results, due to
859 * internal details. The return result has no other meaning than
860 * that stated above, and implies nothing as to the relationship
861 * between the two locales. This is intended for use by
862 * applications who wish to cache collators, or otherwise reuse
863 * collators when possible. The functional equivalent may change
864 * over time. For more information, please see the <a
865 * href="http://icu-project.org/userguide/locale.html#services">
866 * Locales and Services</a> section of the ICU User Guide.
867 * @param result fillin for the functionally equivalent locale
868 * @param resultCapacity capacity of the fillin buffer
869 * @param keyword a particular keyword as enumerated by
871 * @param locale the requested locale
872 * @param isAvailable if non-NULL, pointer to a fillin parameter that
873 * indicates whether the requested locale was 'available' to the
874 * collation service. A locale is defined as 'available' if it
875 * physically exists within the collation locale data.
876 * @param status pointer to input-output error code
877 * @return the actual buffer size needed for the locale. If greater
878 * than resultCapacity, the returned full name will be truncated and
879 * an error code will be returned.
882 U_STABLE
int32_t U_EXPORT2
883 ucol_getFunctionalEquivalent(char* result
, int32_t resultCapacity
,
884 const char* keyword
, const char* locale
,
885 UBool
* isAvailable
, UErrorCode
* status
);
888 * Get the collation tailoring rules from a UCollator.
889 * The rules will follow the rule syntax.
890 * @param coll The UCollator to query.
892 * @return The collation tailoring rules.
895 U_STABLE
const UChar
* U_EXPORT2
896 ucol_getRules( const UCollator
*coll
,
899 /** Get the short definition string for a collator. This API harvests the collator's
900 * locale and the attribute set and produces a string that can be used for opening
901 * a collator with the same properties using the ucol_openFromShortString API.
902 * This string will be normalized.
903 * The structure and the syntax of the string is defined in the "Naming collators"
904 * section of the users guide:
905 * http://icu-project.org/userguide/Collate_Concepts.html#Naming_Collators
906 * This API supports preflighting.
907 * @param coll a collator
908 * @param locale a locale that will appear as a collators locale in the resulting
909 * short string definition. If NULL, the locale will be harvested
911 * @param buffer space to hold the resulting string
912 * @param capacity capacity of the buffer
913 * @param status for returning errors. All the preflighting errors are featured
914 * @return length of the resulting string
915 * @see ucol_openFromShortString
916 * @see ucol_normalizeShortDefinitionString
919 U_STABLE
int32_t U_EXPORT2
920 ucol_getShortDefinitionString(const UCollator
*coll
,
926 /** Verifies and normalizes short definition string.
927 * Normalized short definition string has all the option sorted by the argument name,
928 * so that equivalent definition strings are the same.
929 * This API supports preflighting.
930 * @param source definition string
931 * @param destination space to hold the resulting string
932 * @param capacity capacity of the buffer
933 * @param parseError if not NULL, structure that will get filled with error's pre
934 * and post context in case of error.
935 * @param status Error code. This API will return an error if an invalid attribute
936 * or attribute/value combination is specified. All the preflighting
937 * errors are also featured
938 * @return length of the resulting normalized string.
940 * @see ucol_openFromShortString
941 * @see ucol_getShortDefinitionString
946 U_STABLE
int32_t U_EXPORT2
947 ucol_normalizeShortDefinitionString(const char *source
,
950 UParseError
*parseError
,
955 * Get a sort key for a string from a UCollator.
956 * Sort keys may be compared using <TT>strcmp</TT>.
958 * Like ICU functions that write to an output buffer, the buffer contents
959 * is undefined if the buffer capacity (resultLength parameter) is too small.
960 * Unlike ICU functions that write a string to an output buffer,
961 * the terminating zero byte is counted in the sort key length.
962 * @param coll The UCollator containing the collation rules.
963 * @param source The string to transform.
964 * @param sourceLength The length of source, or -1 if null-terminated.
965 * @param result A pointer to a buffer to receive the attribute.
966 * @param resultLength The maximum size of result.
967 * @return The size needed to fully store the sort key.
968 * If there was an internal error generating the sort key,
969 * a zero value is returned.
970 * @see ucol_keyHashCode
973 U_STABLE
int32_t U_EXPORT2
974 ucol_getSortKey(const UCollator
*coll
,
976 int32_t sourceLength
,
978 int32_t resultLength
);
981 /** Gets the next count bytes of a sort key. Caller needs
982 * to preserve state array between calls and to provide
983 * the same type of UCharIterator set with the same string.
984 * The destination buffer provided must be big enough to store
985 * the number of requested bytes.
987 * The generated sort key may or may not be compatible with
988 * sort keys generated using ucol_getSortKey().
989 * @param coll The UCollator containing the collation rules.
990 * @param iter UCharIterator containing the string we need
991 * the sort key to be calculated for.
992 * @param state Opaque state of sortkey iteration.
993 * @param dest Buffer to hold the resulting sortkey part
994 * @param count number of sort key bytes required.
995 * @param status error code indicator.
996 * @return the actual number of bytes of a sortkey. It can be
997 * smaller than count if we have reached the end of
1001 U_STABLE
int32_t U_EXPORT2
1002 ucol_nextSortKeyPart(const UCollator
*coll
,
1003 UCharIterator
*iter
,
1005 uint8_t *dest
, int32_t count
,
1006 UErrorCode
*status
);
1008 /** enum that is taken by ucol_getBound API
1009 * See below for explanation
1010 * do not change the values assigned to the
1011 * members of this enum. Underlying code
1012 * depends on them having these numbers
1017 UCOL_BOUND_LOWER
= 0,
1018 /** upper bound that will match strings of exact size */
1019 UCOL_BOUND_UPPER
= 1,
1020 /** upper bound that will match all the strings that have the same initial substring as the given string */
1021 UCOL_BOUND_UPPER_LONG
= 2,
1022 UCOL_BOUND_VALUE_COUNT
1026 * Produce a bound for a given sortkey and a number of levels.
1027 * Return value is always the number of bytes needed, regardless of
1028 * whether the result buffer was big enough or even valid.<br>
1029 * Resulting bounds can be used to produce a range of strings that are
1030 * between upper and lower bounds. For example, if bounds are produced
1031 * for a sortkey of string "smith", strings between upper and lower
1032 * bounds with one level would include "Smith", "SMITH", "sMiTh".<br>
1033 * There are two upper bounds that can be produced. If UCOL_BOUND_UPPER
1034 * is produced, strings matched would be as above. However, if bound
1035 * produced using UCOL_BOUND_UPPER_LONG is used, the above example will
1036 * also match "Smithsonian" and similar.<br>
1037 * For more on usage, see example in cintltst/capitst.c in procedure
1039 * Sort keys may be compared using <TT>strcmp</TT>.
1040 * @param source The source sortkey.
1041 * @param sourceLength The length of source, or -1 if null-terminated.
1042 * (If an unmodified sortkey is passed, it is always null
1044 * @param boundType Type of bound required. It can be UCOL_BOUND_LOWER, which
1045 * produces a lower inclusive bound, UCOL_BOUND_UPPER, that
1046 * produces upper bound that matches strings of the same length
1047 * or UCOL_BOUND_UPPER_LONG that matches strings that have the
1048 * same starting substring as the source string.
1049 * @param noOfLevels Number of levels required in the resulting bound (for most
1050 * uses, the recommended value is 1). See users guide for
1051 * explanation on number of levels a sortkey can have.
1052 * @param result A pointer to a buffer to receive the resulting sortkey.
1053 * @param resultLength The maximum size of result.
1054 * @param status Used for returning error code if something went wrong. If the
1055 * number of levels requested is higher than the number of levels
1056 * in the source key, a warning (U_SORT_KEY_TOO_SHORT_WARNING) is
1058 * @return The size needed to fully store the bound.
1059 * @see ucol_keyHashCode
1062 U_STABLE
int32_t U_EXPORT2
1063 ucol_getBound(const uint8_t *source
,
1064 int32_t sourceLength
,
1065 UColBoundMode boundType
,
1066 uint32_t noOfLevels
,
1068 int32_t resultLength
,
1069 UErrorCode
*status
);
1072 * Gets the version information for a Collator. Version is currently
1073 * an opaque 32-bit number which depends, among other things, on major
1074 * versions of the collator tailoring and UCA.
1075 * @param coll The UCollator to query.
1076 * @param info the version # information, the result will be filled in
1079 U_STABLE
void U_EXPORT2
1080 ucol_getVersion(const UCollator
* coll
, UVersionInfo info
);
1083 * Gets the UCA version information for a Collator. Version is the
1084 * UCA version number (3.1.1, 4.0).
1085 * @param coll The UCollator to query.
1086 * @param info the version # information, the result will be filled in
1089 U_STABLE
void U_EXPORT2
1090 ucol_getUCAVersion(const UCollator
* coll
, UVersionInfo info
);
1093 * Merges two sort keys. The levels are merged with their corresponding counterparts
1094 * (primaries with primaries, secondaries with secondaries etc.). Between the values
1095 * from the same level a separator is inserted.
1097 * This is useful, for example, for combining sort keys from first and last names
1098 * to sort such pairs.
1099 * It is possible to merge multiple sort keys by consecutively merging
1100 * another one with the intermediate result.
1102 * The length of the merge result is the sum of the lengths of the input sort keys.
1104 * Example (uncompressed):
1105 * <pre>191B1D 01 050505 01 910505 00
1106 * 1F2123 01 050505 01 910505 00</pre>
1108 * <pre>191B1D 02 1F2123 01 050505 02 050505 01 910505 02 910505 00</pre>
1110 * If the destination buffer is not big enough, then its contents are undefined.
1111 * If any of source lengths are zero or any of the source pointers are NULL/undefined,
1112 * the result is of size zero.
1114 * @param src1 the first sort key
1115 * @param src1Length the length of the first sort key, including the zero byte at the end;
1116 * can be -1 if the function is to find the length
1117 * @param src2 the second sort key
1118 * @param src2Length the length of the second sort key, including the zero byte at the end;
1119 * can be -1 if the function is to find the length
1120 * @param dest the buffer where the merged sort key is written,
1121 * can be NULL if destCapacity==0
1122 * @param destCapacity the number of bytes in the dest buffer
1123 * @return the length of the merged sort key, src1Length+src2Length;
1124 * can be larger than destCapacity, or 0 if an error occurs (only for illegal arguments),
1125 * in which cases the contents of dest is undefined
1128 U_STABLE
int32_t U_EXPORT2
1129 ucol_mergeSortkeys(const uint8_t *src1
, int32_t src1Length
,
1130 const uint8_t *src2
, int32_t src2Length
,
1131 uint8_t *dest
, int32_t destCapacity
);
1134 * Universal attribute setter
1135 * @param coll collator which attributes are to be changed
1136 * @param attr attribute type
1137 * @param value attribute value
1138 * @param status to indicate whether the operation went on smoothly or there were errors
1139 * @see UColAttribute
1140 * @see UColAttributeValue
1141 * @see ucol_getAttribute
1144 U_STABLE
void U_EXPORT2
1145 ucol_setAttribute(UCollator
*coll
, UColAttribute attr
, UColAttributeValue value
, UErrorCode
*status
);
1148 * Universal attribute getter
1149 * @param coll collator which attributes are to be changed
1150 * @param attr attribute type
1151 * @return attribute value
1152 * @param status to indicate whether the operation went on smoothly or there were errors
1153 * @see UColAttribute
1154 * @see UColAttributeValue
1155 * @see ucol_setAttribute
1158 U_STABLE UColAttributeValue U_EXPORT2
1159 ucol_getAttribute(const UCollator
*coll
, UColAttribute attr
, UErrorCode
*status
);
1162 * is a two byte primary value which causes all the codepoints with primary values that
1163 * are less or equal than the variable top to be shifted when alternate handling is set
1165 * Sets the variable top to a collation element value of a string supplied.
1166 * @param coll collator which variable top needs to be changed
1167 * @param varTop one or more (if contraction) UChars to which the variable top should be set
1168 * @param len length of variable top string. If -1 it is considered to be zero terminated.
1169 * @param status error code. If error code is set, the return value is undefined.
1170 * Errors set by this function are: <br>
1171 * U_CE_NOT_FOUND_ERROR if more than one character was passed and there is no such
1173 * U_PRIMARY_TOO_LONG_ERROR if the primary for the variable top has more than two bytes
1174 * @return a 32 bit value containing the value of the variable top in upper 16 bits.
1175 * Lower 16 bits are undefined
1176 * @see ucol_getVariableTop
1177 * @see ucol_restoreVariableTop
1180 U_STABLE
uint32_t U_EXPORT2
1181 ucol_setVariableTop(UCollator
*coll
,
1182 const UChar
*varTop
, int32_t len
,
1183 UErrorCode
*status
);
1186 * Gets the variable top value of a Collator.
1187 * Lower 16 bits are undefined and should be ignored.
1188 * @param coll collator which variable top needs to be retrieved
1189 * @param status error code (not changed by function). If error code is set,
1190 * the return value is undefined.
1191 * @return the variable top value of a Collator.
1192 * @see ucol_setVariableTop
1193 * @see ucol_restoreVariableTop
1196 U_STABLE
uint32_t U_EXPORT2
ucol_getVariableTop(const UCollator
*coll
, UErrorCode
*status
);
1199 * Sets the variable top to a collation element value supplied. Variable top is
1200 * set to the upper 16 bits.
1201 * Lower 16 bits are ignored.
1202 * @param coll collator which variable top needs to be changed
1203 * @param varTop CE value, as returned by ucol_setVariableTop or ucol)getVariableTop
1204 * @param status error code (not changed by function)
1205 * @see ucol_getVariableTop
1206 * @see ucol_setVariableTop
1209 U_STABLE
void U_EXPORT2
1210 ucol_restoreVariableTop(UCollator
*coll
, const uint32_t varTop
, UErrorCode
*status
);
1213 * Thread safe cloning operation. The result is a clone of a given collator.
1214 * @param coll collator to be cloned
1215 * @param stackBuffer user allocated space for the new clone.
1216 * If NULL new memory will be allocated.
1217 * If buffer is not large enough, new memory will be allocated.
1218 * Clients can use the U_COL_SAFECLONE_BUFFERSIZE.
1219 * This will probably be enough to avoid memory allocations.
1220 * @param pBufferSize pointer to size of allocated space.
1221 * If *pBufferSize == 0, a sufficient size for use in cloning will
1222 * be returned ('pre-flighting')
1223 * If *pBufferSize is not enough for a stack-based safe clone,
1224 * new memory will be allocated.
1225 * @param status to indicate whether the operation went on smoothly or there were errors
1226 * An informational status value, U_SAFECLONE_ALLOCATED_ERROR, is used if any
1227 * allocations were necessary.
1228 * @return pointer to the new clone
1230 * @see ucol_openRules
1234 U_STABLE UCollator
* U_EXPORT2
1235 ucol_safeClone(const UCollator
*coll
,
1237 int32_t *pBufferSize
,
1238 UErrorCode
*status
);
1240 /** default memory size for the new clone. It needs to be this large for os/400 large pointers
1243 #define U_COL_SAFECLONE_BUFFERSIZE 528
1246 * Returns current rules. Delta defines whether full rules are returned or just the tailoring.
1247 * Returns number of UChars needed to store rules. If buffer is NULL or bufferLen is not enough
1248 * to store rules, will store up to available space.
1250 * ucol_getRules() should normally be used instead.
1251 * See http://userguide.icu-project.org/collation/customization#TOC-Building-on-Existing-Locales
1252 * @param coll collator to get the rules from
1253 * @param delta one of UCOL_TAILORING_ONLY, UCOL_FULL_RULES.
1254 * @param buffer buffer to store the result in. If NULL, you'll get no rules.
1255 * @param bufferLen length of buffer to store rules in. If less than needed you'll get only the part that fits in.
1256 * @return current rules
1258 * @see UCOL_FULL_RULES
1260 U_STABLE
int32_t U_EXPORT2
1261 ucol_getRulesEx(const UCollator
*coll
, UColRuleOption delta
, UChar
*buffer
, int32_t bufferLen
);
1263 #ifndef U_HIDE_DEPRECATED_API
1265 * gets the locale name of the collator. If the collator
1266 * is instantiated from the rules, then this function returns
1268 * @param coll The UCollator for which the locale is needed
1269 * @param type You can choose between requested, valid and actual
1270 * locale. For description see the definition of
1271 * ULocDataLocaleType in uloc.h
1272 * @param status error code of the operation
1273 * @return real locale name from which the collation data comes.
1274 * If the collator was instantiated from rules, returns
1276 * @deprecated ICU 2.8 Use ucol_getLocaleByType instead
1278 U_DEPRECATED
const char * U_EXPORT2
1279 ucol_getLocale(const UCollator
*coll
, ULocDataLocaleType type
, UErrorCode
*status
);
1280 #endif /* U_HIDE_DEPRECATED_API */
1283 * gets the locale name of the collator. If the collator
1284 * is instantiated from the rules, then this function returns
1286 * @param coll The UCollator for which the locale is needed
1287 * @param type You can choose between requested, valid and actual
1288 * locale. For description see the definition of
1289 * ULocDataLocaleType in uloc.h
1290 * @param status error code of the operation
1291 * @return real locale name from which the collation data comes.
1292 * If the collator was instantiated from rules, returns
1296 U_STABLE
const char * U_EXPORT2
1297 ucol_getLocaleByType(const UCollator
*coll
, ULocDataLocaleType type
, UErrorCode
*status
);
1300 * Get an Unicode set that contains all the characters and sequences tailored in
1301 * this collator. The result must be disposed of by using uset_close.
1302 * @param coll The UCollator for which we want to get tailored chars
1303 * @param status error code of the operation
1304 * @return a pointer to newly created USet. Must be be disposed by using uset_close
1305 * @see ucol_openRules
1309 U_STABLE USet
* U_EXPORT2
1310 ucol_getTailoredSet(const UCollator
*coll
, UErrorCode
*status
);
1312 #ifndef U_HIDE_INTERNAL_API
1314 * Universal attribute getter that returns UCOL_DEFAULT if the value is default
1315 * @param coll collator which attributes are to be changed
1316 * @param attr attribute type
1317 * @return attribute value or UCOL_DEFAULT if the value is default
1318 * @param status to indicate whether the operation went on smoothly or there were errors
1319 * @see UColAttribute
1320 * @see UColAttributeValue
1321 * @see ucol_setAttribute
1324 U_INTERNAL UColAttributeValue U_EXPORT2
1325 ucol_getAttributeOrDefault(const UCollator
*coll
, UColAttribute attr
, UErrorCode
*status
);
1327 /** Check whether two collators are equal. Collators are considered equal if they
1328 * will sort strings the same. This means that both the current attributes and the
1329 * rules must be equivalent. Currently used for RuleBasedCollator::operator==.
1330 * @param source first collator
1331 * @param target second collator
1332 * @return TRUE or FALSE
1335 U_INTERNAL UBool U_EXPORT2
1336 ucol_equals(const UCollator
*source
, const UCollator
*target
);
1338 /** Calculates the set of unsafe code points, given a collator.
1339 * A character is unsafe if you could append any character and cause the ordering to alter significantly.
1340 * Collation sorts in normalized order, so anything that rearranges in normalization can cause this.
1341 * Thus if you have a character like a_umlaut, and you add a lower_dot to it,
1342 * then it normalizes to a_lower_dot + umlaut, and sorts differently.
1343 * @param coll Collator
1344 * @param unsafe a fill-in set to receive the unsafe points
1345 * @param status for catching errors
1346 * @return number of elements in the set
1349 U_INTERNAL
int32_t U_EXPORT2
1350 ucol_getUnsafeSet( const UCollator
*coll
,
1352 UErrorCode
*status
);
1354 /** Reset UCA's static pointers. You don't want to use this, unless your static memory can go away.
1355 * @internal ICU 3.2.1
1357 U_INTERNAL
void U_EXPORT2
1358 ucol_forgetUCA(void);
1360 /** Touches all resources needed for instantiating a collator from a short string definition,
1361 * thus filling up the cache.
1362 * @param definition A short string containing a locale and a set of attributes.
1363 * Attributes not explicitly mentioned are left at the default
1364 * state for a locale.
1365 * @param parseError if not NULL, structure that will get filled with error's pre
1366 * and post context in case of error.
1367 * @param forceDefaults if FALSE, the settings that are the same as the collator
1368 * default settings will not be applied (for example, setting
1369 * French secondary on a French collator would not be executed).
1370 * If TRUE, all the settings will be applied regardless of the
1371 * collator default value. If the definition
1372 * strings are to be cached, should be set to FALSE.
1373 * @param status Error code. Apart from regular error conditions connected to
1374 * instantiating collators (like out of memory or similar), this
1375 * API will return an error if an invalid attribute or attribute/value
1376 * combination is specified.
1377 * @see ucol_openFromShortString
1378 * @internal ICU 3.2.1
1380 U_INTERNAL
void U_EXPORT2
1381 ucol_prepareShortStringOpen( const char *definition
,
1382 UBool forceDefaults
,
1383 UParseError
*parseError
,
1384 UErrorCode
*status
);
1385 #endif /* U_HIDE_INTERNAL_API */
1387 /** Creates a binary image of a collator. This binary image can be stored and
1388 * later used to instantiate a collator using ucol_openBinary.
1389 * This API supports preflighting.
1390 * @param coll Collator
1391 * @param buffer a fill-in buffer to receive the binary image
1392 * @param capacity capacity of the destination buffer
1393 * @param status for catching errors
1394 * @return size of the image
1395 * @see ucol_openBinary
1398 U_STABLE
int32_t U_EXPORT2
1399 ucol_cloneBinary(const UCollator
*coll
,
1400 uint8_t *buffer
, int32_t capacity
,
1401 UErrorCode
*status
);
1403 /** Opens a collator from a collator binary image created using
1404 * ucol_cloneBinary. Binary image used in instantiation of the
1405 * collator remains owned by the user and should stay around for
1406 * the lifetime of the collator. The API also takes a base collator
1407 * which usualy should be UCA.
1408 * @param bin binary image owned by the user and required through the
1409 * lifetime of the collator
1410 * @param length size of the image. If negative, the API will try to
1411 * figure out the length of the image
1412 * @param base fallback collator, usually UCA. Base is required to be
1413 * present through the lifetime of the collator. Currently
1414 * it cannot be NULL.
1415 * @param status for catching errors
1416 * @return newly created collator
1417 * @see ucol_cloneBinary
1420 U_STABLE UCollator
* U_EXPORT2
1421 ucol_openBinary(const uint8_t *bin
, int32_t length
,
1422 const UCollator
*base
,
1423 UErrorCode
*status
);
1426 #endif /* #if !UCONFIG_NO_COLLATION */