]> git.saurik.com Git - apple/icu.git/blame - icuSources/i18n/unicode/ucol.h
ICU-511.35.tar.gz
[apple/icu.git] / icuSources / i18n / unicode / ucol.h
CommitLineData
b75a7d8f
A
1/*
2*******************************************************************************
51004dcb 3* Copyright (c) 1996-2013, International Business Machines Corporation and others.
b75a7d8f
A
4* All Rights Reserved.
5*******************************************************************************
6*/
7
8#ifndef UCOL_H
9#define UCOL_H
10
11#include "unicode/utypes.h"
12
13#if !UCONFIG_NO_COLLATION
14
15#include "unicode/unorm.h"
729e4ab9 16#include "unicode/localpointer.h"
b75a7d8f
A
17#include "unicode/parseerr.h"
18#include "unicode/uloc.h"
19#include "unicode/uset.h"
4388f060 20#include "unicode/uscript.h"
b75a7d8f
A
21
22/**
23 * \file
24 * \brief C API: Collator
25 *
26 * <h2> Collator C API </h2>
27 *
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
46f4442e 34 * <a href="http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm">
b75a7d8f
A
35 * collation design document</a>.
36 * <p>
37 * For more information about the collation service see
46f4442e 38 * <a href="http://icu-project.org/userguide/Collate_Intro.html">the users guide</a>.
b75a7d8f
A
39 * <p>
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>.
43 * <p>
44 * Sort ordering may be customized by providing your own set of rules. For more on
45 * this subject see the
46f4442e 46 * <a href="http://icu-project.org/userguide/Collate_Customization.html">
b75a7d8f
A
47 * Collation customization</a> section of the users guide.
48 * <p>
49 * @see UCollationResult
50 * @see UNormalizationMode
51 * @see UCollationStrength
52 * @see UCollationElements
53 */
54
b75a7d8f
A
55/** A collator.
56* For usage in C programs.
57*/
58struct UCollator;
59/** structure representing a collator object instance
60 * @stable ICU 2.0
61 */
62typedef struct UCollator UCollator;
63
64
65/**
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.
72 * @see u_strcoll()
73 * <p>
74 * Possible values for a comparison result
75 * @stable ICU 2.0
76 */
77typedef enum {
78 /** string a == string b */
79 UCOL_EQUAL = 0,
80 /** string a > string b */
81 UCOL_GREATER = 1,
82 /** string a < string b */
83 UCOL_LESS = -1
84} UCollationResult ;
85
86
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
91 * @stable ICU 2.0
92 */
93typedef enum {
94 /** accepted by most attributes */
95 UCOL_DEFAULT = -1,
96
97 /** Primary collation strength */
98 UCOL_PRIMARY = 0,
99 /** Secondary collation strength */
100 UCOL_SECONDARY = 1,
101 /** Tertiary collation strength */
102 UCOL_TERTIARY = 2,
103 /** Default collation strength */
104 UCOL_DEFAULT_STRENGTH = UCOL_TERTIARY,
105 UCOL_CE_STRENGTH_LIMIT,
106 /** Quaternary collation strength */
107 UCOL_QUATERNARY=3,
108 /** Identical collation strength */
109 UCOL_IDENTICAL=15,
110 UCOL_STRENGTH_LIMIT,
111
112 /** Turn the feature off - works for UCOL_FRENCH_COLLATION,
113 UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MODE
114 & UCOL_DECOMPOSITION_MODE*/
115 UCOL_OFF = 16,
116 /** Turn the feature on - works for UCOL_FRENCH_COLLATION,
117 UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MODE
118 & UCOL_DECOMPOSITION_MODE*/
119 UCOL_ON = 17,
120
121 /** Valid for UCOL_ALTERNATE_HANDLING. Alternate handling will be shifted */
122 UCOL_SHIFTED = 20,
123 /** Valid for UCOL_ALTERNATE_HANDLING. Alternate handling will be non ignorable */
124 UCOL_NON_IGNORABLE = 21,
125
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,
131
132 UCOL_ATTRIBUTE_VALUE_COUNT
133
134} UColAttributeValue;
135
4388f060
A
136/**
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
142 * @see UScriptCode
143 * @stable ICU 4.8
729e4ab9 144 */
4388f060
A
145 typedef enum {
146 /**
147 * A special reordering code that is used to specify the default
148 * reordering codes for a locale.
149 * @stable ICU 4.8
150 */
151 UCOL_REORDER_CODE_DEFAULT = -1,
152 /**
153 * A special reordering code that is used to specify no reordering codes.
154 * @stable ICU 4.8
155 */
156 UCOL_REORDER_CODE_NONE = USCRIPT_UNKNOWN,
157 /**
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.
161 * @stable ICU 4.8
162 */
163 UCOL_REORDER_CODE_OTHERS = USCRIPT_UNKNOWN,
164 /**
165 * Characters with the space property.
166 * This is equivalent to the rule value "space".
167 * @stable ICU 4.8
168 */
169 UCOL_REORDER_CODE_SPACE = 0x1000,
170 /**
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.
173 * @stable ICU 4.8
174 */
175 UCOL_REORDER_CODE_FIRST = UCOL_REORDER_CODE_SPACE,
176 /**
177 * Characters with the punctuation property.
178 * This is equivalent to the rule value "punct".
179 * @stable ICU 4.8
180 */
181 UCOL_REORDER_CODE_PUNCTUATION = 0x1001,
182 /**
183 * Characters with the symbol property.
184 * This is equivalent to the rule value "symbol".
185 * @stable ICU 4.8
186 */
187 UCOL_REORDER_CODE_SYMBOL = 0x1002,
188 /**
189 * Characters with the currency property.
190 * This is equivalent to the rule value "currency".
191 * @stable ICU 4.8
192 */
193 UCOL_REORDER_CODE_CURRENCY = 0x1003,
194 /**
195 * Characters with the digit property.
196 * This is equivalent to the rule value "digit".
197 * @stable ICU 4.8
198 */
199 UCOL_REORDER_CODE_DIGIT = 0x1004,
200 /**
201 * The limit of the reorder codes. This is intended for use in range checking
202 * and enumeration of the reorder codes.
203 * @stable ICU 4.8
204 */
205 UCOL_REORDER_CODE_LIMIT = 0x1005
729e4ab9
A
206} UColReorderCode;
207
b75a7d8f
A
208/**
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" &lt; "abd"
213 *
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.
73c04bcf 217 * Example of secondary difference, "&auml;" >> "a".
b75a7d8f
A
218 *
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
222 * object.
223 * Example of tertiary difference, "abc" &lt;&lt;&lt; "ABC".
224 *
225 * Two characters are considered "identical" when they have the same
226 * unicode spellings. UCOL_IDENTICAL.
73c04bcf 227 * For example, "&auml;" == "&auml;".
b75a7d8f
A
228 *
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.
232 * @stable ICU 2.0
233 **/
234typedef UColAttributeValue UCollationStrength;
235
236/** Attributes that collation service understands. All the attributes can take UCOL_DEFAULT
237 * value, as well as the values specific to each one.
238 * @stable ICU 2.0
239 */
240typedef enum {
51004dcb 241 /** Attribute for direction of secondary weights - used in Canadian French.
b75a7d8f
A
242 * Acceptable values are UCOL_ON, which results in secondary weights
243 * being considered backwards and UCOL_OFF which treats secondary
51004dcb
A
244 * weights in the order they appear.
245 * @stable ICU 2.0
246 */
b75a7d8f 247 UCOL_FRENCH_COLLATION,
73c04bcf 248 /** Attribute for handling variable elements.
b75a7d8f
A
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
51004dcb
A
255 * level.
256 * @stable ICU 2.0
257 */
b75a7d8f 258 UCOL_ALTERNATE_HANDLING,
73c04bcf 259 /** Controls the ordering of upper and lower case letters.
b75a7d8f
A
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
51004dcb
A
264 * the opposite.
265 * @stable ICU 2.0
266 */
b75a7d8f
A
267 UCOL_CASE_FIRST,
268 /** Controls whether an extra case level (positioned before the third
73c04bcf 269 * level) is generated or not. Acceptable values are UCOL_OFF (default),
b75a7d8f 270 * when case level is not generated, and UCOL_ON which causes the case
73c04bcf
A
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
b75a7d8f 273 * accent differences in a string is to set the strength to UCOL_PRIMARY
51004dcb
A
274 * and enable case level.
275 * @stable ICU 2.0
276 */
b75a7d8f
A
277 UCOL_CASE_LEVEL,
278 /** Controls whether the normalization check and necessary normalizations
73c04bcf
A
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,
51004dcb
A
284 * incremental NFD normalization is performed.
285 * @stable ICU 2.0
286 */
b75a7d8f 287 UCOL_NORMALIZATION_MODE,
51004dcb
A
288 /** An alias for UCOL_NORMALIZATION_MODE attribute.
289 * @stable ICU 2.0
290 */
b75a7d8f 291 UCOL_DECOMPOSITION_MODE = UCOL_NORMALIZATION_MODE,
73c04bcf
A
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
b75a7d8f
A
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
73c04bcf 298 * UCOL_HIRAGANA_QUATERNARY mode to on. Otherwise, quaternary level
b75a7d8f 299 * is affected only by the number of non ignorable code points in
73c04bcf 300 * the string. Identical strength is rarely useful, as it amounts
51004dcb
A
301 * to codepoints of the NFD form of the string.
302 * @stable ICU 2.0
303 */
b75a7d8f 304 UCOL_STRENGTH,
73c04bcf
A
305 /** When turned on, this attribute positions Hiragana before all
306 * non-ignorables on quaternary level This is a sneaky way to produce JIS
51004dcb
A
307 * sort order.
308 *
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.
314 */
b75a7d8f 315 UCOL_HIRAGANA_QUATERNARY_MODE,
73c04bcf
A
316 /** When turned on, this attribute generates a collation key
317 * for the numeric value of substrings of digits.
729e4ab9
A
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
51004dcb
A
322 * separate digit substring associated with a separate collation element.
323 * @stable ICU 2.8
324 */
b75a7d8f 325 UCOL_NUMERIC_COLLATION,
51004dcb
A
326 /**
327 * The number of UColAttribute constants.
328 * @stable ICU 2.0
329 */
b75a7d8f
A
330 UCOL_ATTRIBUTE_COUNT
331} UColAttribute;
332
333/** Options for retrieving the rule string
334 * @stable ICU 2.0
335 */
336typedef enum {
51004dcb
A
337 /**
338 * Retrieves the tailoring rules only.
339 * Same as calling the version of getRules() without UColRuleOption.
340 * @stable ICU 2.0
341 */
b75a7d8f 342 UCOL_TAILORING_ONLY,
51004dcb
A
343 /**
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
348 * @stable ICU 2.0
349 */
b75a7d8f
A
350 UCOL_FULL_RULES
351} UColRuleOption ;
352
353/**
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
374ca955 357 * {@link #ucol_close }.
b75a7d8f
A
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
367 * @see ucol_close
368 * @stable ICU 2.0
369 */
374ca955 370U_STABLE UCollator* U_EXPORT2
b75a7d8f
A
371ucol_open(const char *loc, UErrorCode *status);
372
373/**
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
374ca955 377 * can be used in the same way as the one obtained by {@link #ucol_strcoll }.
b75a7d8f
A
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
73c04bcf 391 * @return A pointer to a UCollator. It is not guaranteed that NULL be returned in case
b75a7d8f
A
392 * of error - please use status argument to check for errors.
393 * @see ucol_open
394 * @see ucol_safeClone
395 * @see ucol_close
396 * @stable ICU 2.0
397 */
374ca955 398U_STABLE UCollator* U_EXPORT2
b75a7d8f
A
399ucol_openRules( const UChar *rules,
400 int32_t rulesLength,
401 UColAttributeValue normalizationMode,
402 UCollationStrength strength,
403 UParseError *parseError,
404 UErrorCode *status);
405
374ca955
A
406/**
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:
46f4442e 410 * http://icu-project.org/userguide/Collate_Concepts.html#Naming_Collators
374ca955
A
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).
432 * @see ucol_open
433 * @see ucol_setAttribute
434 * @see ucol_setVariableTop
435 * @see ucol_getShortDefinitionString
436 * @see ucol_normalizeShortDefinitionString
73c04bcf 437 * @stable ICU 3.0
374ca955
A
438 *
439 */
73c04bcf 440U_STABLE UCollator* U_EXPORT2
374ca955
A
441ucol_openFromShortString( const char *definition,
442 UBool forceDefaults,
443 UParseError *parseError,
444 UErrorCode *status);
445
4388f060 446#ifndef U_HIDE_DEPRECATED_API
374ca955
A
447/**
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
457 *
73c04bcf 458 * @deprecated ICU 3.4, use ucol_getContractionsAndExpansions instead
374ca955 459 */
73c04bcf 460U_DEPRECATED int32_t U_EXPORT2
374ca955
A
461ucol_getContractions( const UCollator *coll,
462 USet *conts,
463 UErrorCode *status);
4388f060 464#endif /* U_HIDE_DEPRECATED_API */
374ca955 465
73c04bcf
A
466/**
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
474 *
46f4442e 475 * @stable ICU 3.4
73c04bcf 476 */
46f4442e 477U_STABLE void U_EXPORT2
73c04bcf
A
478ucol_getContractionsAndExpansions( const UCollator *coll,
479 USet *contractions, USet *expansions,
480 UBool addPrefixes, UErrorCode *status);
374ca955 481
b75a7d8f
A
482/**
483 * Close a UCollator.
73c04bcf
A
484 * Once closed, a UCollator should not be used. Every open collator should
485 * be closed. Otherwise, a memory leak will result.
b75a7d8f
A
486 * @param coll The UCollator to close.
487 * @see ucol_open
488 * @see ucol_openRules
489 * @see ucol_safeClone
490 * @stable ICU 2.0
491 */
374ca955 492U_STABLE void U_EXPORT2
b75a7d8f
A
493ucol_close(UCollator *coll);
494
729e4ab9
A
495#if U_SHOW_CPLUSPLUS_API
496
497U_NAMESPACE_BEGIN
498
499/**
500 * \class LocalUCollatorPointer
501 * "Smart pointer" class, closes a UCollator via ucol_close().
502 * For most methods see the LocalPointerBase base class.
503 *
504 * @see LocalPointerBase
505 * @see LocalPointer
506 * @stable ICU 4.4
507 */
508U_DEFINE_LOCAL_OPEN_POINTER(LocalUCollatorPointer, UCollator, ucol_close);
509
510U_NAMESPACE_END
511
512#endif
513
b75a7d8f
A
514/**
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
524 * @see ucol_greater
525 * @see ucol_greaterOrEqual
526 * @see ucol_equal
527 * @stable ICU 2.0
528 */
374ca955 529U_STABLE UCollationResult U_EXPORT2
b75a7d8f
A
530ucol_strcoll( const UCollator *coll,
531 const UChar *source,
532 int32_t sourceLength,
533 const UChar *target,
534 int32_t targetLength);
535
51004dcb
A
536#ifndef U_HIDE_DRAFT_API
537/**
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
550* @see ucol_greater
551* @see ucol_greaterOrEqual
552* @see ucol_equal
553* @draft ICU 50
554*/
555U_DRAFT UCollationResult U_EXPORT2
556ucol_strcollUTF8(
557 const UCollator *coll,
558 const char *source,
559 int32_t sourceLength,
560 const char *target,
561 int32_t targetLength,
562 UErrorCode *status);
563#endif /* U_HIDE_DRAFT_API */
564
b75a7d8f
A
565/**
566 * Determine if one string is greater than another.
374ca955 567 * This function is equivalent to {@link #ucol_strcoll } == UCOL_GREATER
b75a7d8f
A
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.
574 * @see ucol_strcoll
575 * @see ucol_greaterOrEqual
576 * @see ucol_equal
577 * @stable ICU 2.0
578 */
374ca955 579U_STABLE UBool U_EXPORT2
b75a7d8f
A
580ucol_greater(const UCollator *coll,
581 const UChar *source, int32_t sourceLength,
582 const UChar *target, int32_t targetLength);
583
584/**
585 * Determine if one string is greater than or equal to another.
374ca955 586 * This function is equivalent to {@link #ucol_strcoll } != UCOL_LESS
b75a7d8f
A
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.
593 * @see ucol_strcoll
594 * @see ucol_greater
595 * @see ucol_equal
596 * @stable ICU 2.0
597 */
374ca955 598U_STABLE UBool U_EXPORT2
b75a7d8f
A
599ucol_greaterOrEqual(const UCollator *coll,
600 const UChar *source, int32_t sourceLength,
601 const UChar *target, int32_t targetLength);
602
603/**
604 * Compare two strings for equality.
374ca955 605 * This function is equivalent to {@link #ucol_strcoll } == UCOL_EQUAL
b75a7d8f
A
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
612 * @see ucol_strcoll
613 * @see ucol_greater
614 * @see ucol_greaterOrEqual
615 * @stable ICU 2.0
616 */
374ca955 617U_STABLE UBool U_EXPORT2
b75a7d8f
A
618ucol_equal(const UCollator *coll,
619 const UChar *source, int32_t sourceLength,
620 const UChar *target, int32_t targetLength);
621
622/**
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
631 * @see ucol_strcoll
374ca955 632 * @stable ICU 2.6
b75a7d8f 633 */
374ca955 634U_STABLE UCollationResult U_EXPORT2
b75a7d8f
A
635ucol_strcollIter( const UCollator *coll,
636 UCharIterator *sIter,
637 UCharIterator *tIter,
638 UErrorCode *status);
639
640/**
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
647 * @stable ICU 2.0
648 */
374ca955 649U_STABLE UCollationStrength U_EXPORT2
b75a7d8f
A
650ucol_getStrength(const UCollator *coll);
651
652/**
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
659 * @stable ICU 2.0
660 */
374ca955 661U_STABLE void U_EXPORT2
b75a7d8f
A
662ucol_setStrength(UCollator *coll,
663 UCollationStrength strength);
664
729e4ab9 665/**
4388f060
A
666 * Retrieves the reordering codes for this collator.
667 * These reordering codes are a combination of UScript codes and UColReorderCode entries.
729e4ab9
A
668 * @param coll The UCollator to query.
669 * @param dest The array to fill with the script ordering.
4388f060
A
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.
729e4ab9 675 * @see ucol_setReorderCodes
4388f060
A
676 * @see ucol_getEquivalentReorderCodes
677 * @see UScriptCode
678 * @see UColReorderCode
679 * @stable ICU 4.8
729e4ab9 680 */
51004dcb 681U_STABLE int32_t U_EXPORT2
729e4ab9
A
682ucol_getReorderCodes(const UCollator* coll,
683 int32_t* dest,
684 int32_t destCapacity,
685 UErrorCode *pErrorCode);
4388f060
A
686/**
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.
729e4ab9 709 * @param coll The UCollator to set.
4388f060
A
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.
729e4ab9 712 * @param reorderCodesLength The length of reorderCodes.
4388f060
A
713 * @param pErrorCode Must be a valid pointer to an error code value, which must not indicate a
714 * failure before the function call.
729e4ab9 715 * @see ucol_getReorderCodes
4388f060
A
716 * @see ucol_getEquivalentReorderCodes
717 * @see UScriptCode
718 * @see UColReorderCode
719 * @stable ICU 4.8
720 */
51004dcb 721U_STABLE void U_EXPORT2
729e4ab9
A
722ucol_setReorderCodes(UCollator* coll,
723 const int32_t* reorderCodes,
724 int32_t reorderCodesLength,
725 UErrorCode *pErrorCode);
726
4388f060
A
727/**
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
739 * @see UScriptCode
740 * @see UColReorderCode
741 * @stable ICU 4.8
742 */
51004dcb 743U_STABLE int32_t U_EXPORT2
4388f060
A
744ucol_getEquivalentReorderCodes(int32_t reorderCode,
745 int32_t* dest,
746 int32_t destCapacity,
747 UErrorCode *pErrorCode);
748
b75a7d8f
A
749/**
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.
759 * @stable ICU 2.0
760 */
374ca955 761U_STABLE int32_t U_EXPORT2
b75a7d8f
A
762ucol_getDisplayName( const char *objLoc,
763 const char *dispLoc,
764 UChar *result,
765 int32_t resultLength,
766 UErrorCode *status);
767
768/**
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.
729e4ab9 772 * @param localeIndex The index of the desired locale.
b75a7d8f
A
773 * @return A locale for which collation rules are available, or 0 if none.
774 * @see ucol_countAvailable
775 * @stable ICU 2.0
776 */
374ca955 777U_STABLE const char* U_EXPORT2
729e4ab9 778ucol_getAvailable(int32_t localeIndex);
b75a7d8f
A
779
780/**
781 * Determine how many locales have collation rules available.
782 * This function is most useful as determining the loop ending condition for
374ca955 783 * calls to {@link #ucol_getAvailable }.
b75a7d8f
A
784 * @return The number of locales for which collation rules are available.
785 * @see ucol_getAvailable
786 * @stable ICU 2.0
787 */
374ca955 788U_STABLE int32_t U_EXPORT2
b75a7d8f
A
789ucol_countAvailable(void);
790
374ca955
A
791#if !UCONFIG_NO_SERVICE
792/**
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.
73c04bcf 798 * @stable ICU 3.0
374ca955 799 */
73c04bcf 800U_STABLE UEnumeration* U_EXPORT2
374ca955
A
801ucol_openAvailableLocales(UErrorCode *status);
802#endif
803
804/**
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.
73c04bcf 811 * @stable ICU 3.0
374ca955 812 */
73c04bcf 813U_STABLE UEnumeration* U_EXPORT2
374ca955
A
814ucol_getKeywords(UErrorCode *status);
815
816/**
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.
73c04bcf 825 * @stable ICU 3.0
374ca955 826 */
73c04bcf 827U_STABLE UEnumeration* U_EXPORT2
374ca955
A
828ucol_getKeywordValues(const char *keyword, UErrorCode *status);
829
729e4ab9
A
830/**
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.
844 * @stable ICU 4.2
845 */
846U_STABLE UEnumeration* U_EXPORT2
847ucol_getKeywordValuesForLocale(const char* key,
848 const char* locale,
849 UBool commonlyUsed,
850 UErrorCode* status);
851
374ca955
A
852/**
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
46f4442e 865 * href="http://icu-project.org/userguide/locale.html#services">
374ca955
A
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
870 * ucol_getKeywords.
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.
73c04bcf 880 * @stable ICU 3.0
374ca955 881 */
73c04bcf 882U_STABLE int32_t U_EXPORT2
374ca955
A
883ucol_getFunctionalEquivalent(char* result, int32_t resultCapacity,
884 const char* keyword, const char* locale,
885 UBool* isAvailable, UErrorCode* status);
886
b75a7d8f 887/**
51004dcb 888 * Get the collation tailoring rules from a UCollator.
b75a7d8f
A
889 * The rules will follow the rule syntax.
890 * @param coll The UCollator to query.
891 * @param length
51004dcb 892 * @return The collation tailoring rules.
b75a7d8f
A
893 * @stable ICU 2.0
894 */
374ca955 895U_STABLE const UChar* U_EXPORT2
b75a7d8f
A
896ucol_getRules( const UCollator *coll,
897 int32_t *length);
898
374ca955
A
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:
46f4442e 905 * http://icu-project.org/userguide/Collate_Concepts.html#Naming_Collators
374ca955
A
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
910 * from the collator.
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
73c04bcf 917 * @stable ICU 3.0
374ca955 918 */
73c04bcf 919U_STABLE int32_t U_EXPORT2
374ca955
A
920ucol_getShortDefinitionString(const UCollator *coll,
921 const char *locale,
922 char *buffer,
923 int32_t capacity,
924 UErrorCode *status);
925
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.
939 *
940 * @see ucol_openFromShortString
941 * @see ucol_getShortDefinitionString
942 *
73c04bcf 943 * @stable ICU 3.0
374ca955
A
944 */
945
73c04bcf 946U_STABLE int32_t U_EXPORT2
374ca955
A
947ucol_normalizeShortDefinitionString(const char *source,
948 char *destination,
949 int32_t capacity,
950 UParseError *parseError,
951 UErrorCode *status);
46f4442e 952
374ca955 953
b75a7d8f
A
954/**
955 * Get a sort key for a string from a UCollator.
956 * Sort keys may be compared using <TT>strcmp</TT>.
729e4ab9
A
957 *
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.
b75a7d8f
A
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.
46f4442e
A
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.
b75a7d8f
A
970 * @see ucol_keyHashCode
971 * @stable ICU 2.0
972 */
374ca955 973U_STABLE int32_t U_EXPORT2
b75a7d8f
A
974ucol_getSortKey(const UCollator *coll,
975 const UChar *source,
976 int32_t sourceLength,
977 uint8_t *result,
978 int32_t resultLength);
979
980
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
51004dcb
A
985 * the number of requested bytes.
986 *
987 * The generated sort key may or may not be compatible with
988 * sort keys generated using ucol_getSortKey().
b75a7d8f
A
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
998 * the sort key.
374ca955 999 * @stable ICU 2.6
b75a7d8f 1000 */
374ca955 1001U_STABLE int32_t U_EXPORT2
b75a7d8f
A
1002ucol_nextSortKeyPart(const UCollator *coll,
1003 UCharIterator *iter,
1004 uint32_t state[2],
1005 uint8_t *dest, int32_t count,
1006 UErrorCode *status);
1007
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
1013 * @stable ICU 2.0
1014 */
1015typedef enum {
1016 /** lower bound */
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
1023} UColBoundMode;
1024
1025/**
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
1038 * TestBounds.
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
1043 * terminated).
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
1057 * issued.
1058 * @return The size needed to fully store the bound.
1059 * @see ucol_keyHashCode
1060 * @stable ICU 2.1
1061 */
374ca955 1062U_STABLE int32_t U_EXPORT2
b75a7d8f
A
1063ucol_getBound(const uint8_t *source,
1064 int32_t sourceLength,
1065 UColBoundMode boundType,
1066 uint32_t noOfLevels,
1067 uint8_t *result,
1068 int32_t resultLength,
1069 UErrorCode *status);
1070
1071/**
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
1077 * @stable ICU 2.0
1078 */
374ca955 1079U_STABLE void U_EXPORT2
b75a7d8f
A
1080ucol_getVersion(const UCollator* coll, UVersionInfo info);
1081
374ca955
A
1082/**
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
73c04bcf 1087 * @stable ICU 2.8
374ca955 1088 */
73c04bcf 1089U_STABLE void U_EXPORT2
374ca955 1090ucol_getUCAVersion(const UCollator* coll, UVersionInfo info);
b75a7d8f 1091
51004dcb
A
1092/**
1093 * Merges two sort keys. The levels are merged with their corresponding counterparts
b75a7d8f
A
1094 * (primaries with primaries, secondaries with secondaries etc.). Between the values
1095 * from the same level a separator is inserted.
51004dcb
A
1096 *
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.
1101 *
1102 * The length of the merge result is the sum of the lengths of the input sort keys.
1103 *
1104 * Example (uncompressed):
1105 * <pre>191B1D 01 050505 01 910505 00
1106 * 1F2123 01 050505 01 910505 00</pre>
b75a7d8f 1107 * will be merged as
51004dcb
A
1108 * <pre>191B1D 02 1F2123 01 050505 02 050505 01 910505 02 910505 00</pre>
1109 *
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.
1113 *
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
b75a7d8f
A
1126 * @stable ICU 2.0
1127 */
374ca955 1128U_STABLE int32_t U_EXPORT2
b75a7d8f
A
1129ucol_mergeSortkeys(const uint8_t *src1, int32_t src1Length,
1130 const uint8_t *src2, int32_t src2Length,
1131 uint8_t *dest, int32_t destCapacity);
1132
1133/**
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
1142 * @stable ICU 2.0
1143 */
374ca955 1144U_STABLE void U_EXPORT2
b75a7d8f
A
1145ucol_setAttribute(UCollator *coll, UColAttribute attr, UColAttributeValue value, UErrorCode *status);
1146
1147/**
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
1156 * @stable ICU 2.0
1157 */
374ca955 1158U_STABLE UColAttributeValue U_EXPORT2
b75a7d8f
A
1159ucol_getAttribute(const UCollator *coll, UColAttribute attr, UErrorCode *status);
1160
1161/** Variable top
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
1164 * to UCOL_SHIFTED.
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
1172 * a contraction<br>
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
1178 * @stable ICU 2.0
1179 */
374ca955 1180U_STABLE uint32_t U_EXPORT2
b75a7d8f
A
1181ucol_setVariableTop(UCollator *coll,
1182 const UChar *varTop, int32_t len,
1183 UErrorCode *status);
1184
1185/**
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
1194 * @stable ICU 2.0
1195 */
374ca955 1196U_STABLE uint32_t U_EXPORT2 ucol_getVariableTop(const UCollator *coll, UErrorCode *status);
b75a7d8f
A
1197
1198/**
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
1207 * @stable ICU 2.0
1208 */
374ca955 1209U_STABLE void U_EXPORT2
b75a7d8f
A
1210ucol_restoreVariableTop(UCollator *coll, const uint32_t varTop, UErrorCode *status);
1211
1212/**
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
1229 * @see ucol_open
1230 * @see ucol_openRules
1231 * @see ucol_close
1232 * @stable ICU 2.0
1233 */
374ca955 1234U_STABLE UCollator* U_EXPORT2
b75a7d8f
A
1235ucol_safeClone(const UCollator *coll,
1236 void *stackBuffer,
1237 int32_t *pBufferSize,
1238 UErrorCode *status);
1239
1240/** default memory size for the new clone. It needs to be this large for os/400 large pointers
1241 * @stable ICU 2.0
1242 */
4388f060 1243#define U_COL_SAFECLONE_BUFFERSIZE 528
b75a7d8f
A
1244
1245/**
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.
51004dcb
A
1249 *
1250 * ucol_getRules() should normally be used instead.
1251 * See http://userguide.icu-project.org/collation/customization#TOC-Building-on-Existing-Locales
b75a7d8f
A
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.
51004dcb 1255 * @param bufferLen length of buffer to store rules in. If less than needed you'll get only the part that fits in.
b75a7d8f
A
1256 * @return current rules
1257 * @stable ICU 2.0
51004dcb 1258 * @see UCOL_FULL_RULES
b75a7d8f 1259 */
374ca955 1260U_STABLE int32_t U_EXPORT2
b75a7d8f
A
1261ucol_getRulesEx(const UCollator *coll, UColRuleOption delta, UChar *buffer, int32_t bufferLen);
1262
4388f060 1263#ifndef U_HIDE_DEPRECATED_API
b75a7d8f
A
1264/**
1265 * gets the locale name of the collator. If the collator
1266 * is instantiated from the rules, then this function returns
1267 * NULL.
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
1275 * NULL.
374ca955 1276 * @deprecated ICU 2.8 Use ucol_getLocaleByType instead
b75a7d8f 1277 */
374ca955 1278U_DEPRECATED const char * U_EXPORT2
b75a7d8f 1279ucol_getLocale(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status);
4388f060 1280#endif /* U_HIDE_DEPRECATED_API */
b75a7d8f 1281
374ca955
A
1282/**
1283 * gets the locale name of the collator. If the collator
1284 * is instantiated from the rules, then this function returns
1285 * NULL.
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
1293 * NULL.
73c04bcf 1294 * @stable ICU 2.8
374ca955 1295 */
73c04bcf 1296U_STABLE const char * U_EXPORT2
374ca955
A
1297ucol_getLocaleByType(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status);
1298
b75a7d8f
A
1299/**
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
1306 * @see uset_close
374ca955 1307 * @stable ICU 2.4
b75a7d8f 1308 */
374ca955 1309U_STABLE USet * U_EXPORT2
b75a7d8f
A
1310ucol_getTailoredSet(const UCollator *coll, UErrorCode *status);
1311
4388f060 1312#ifndef U_HIDE_INTERNAL_API
374ca955
A
1313/**
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
1322 * @internal ICU 3.0
1323 */
1324U_INTERNAL UColAttributeValue U_EXPORT2
1325ucol_getAttributeOrDefault(const UCollator *coll, UColAttribute attr, UErrorCode *status);
1326
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
1333 * @internal ICU 3.0
1334 */
1335U_INTERNAL UBool U_EXPORT2
1336ucol_equals(const UCollator *source, const UCollator *target);
1337
1338/** Calculates the set of unsafe code points, given a collator.
73c04bcf
A
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.
374ca955
A
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
1347 * @internal ICU 3.0
1348 */
1349U_INTERNAL int32_t U_EXPORT2
1350ucol_getUnsafeSet( const UCollator *coll,
1351 USet *unsafe,
1352 UErrorCode *status);
1353
73c04bcf
A
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
1356 */
1357U_INTERNAL void U_EXPORT2
1358ucol_forgetUCA(void);
1359
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
1379 */
1380U_INTERNAL void U_EXPORT2
1381ucol_prepareShortStringOpen( const char *definition,
1382 UBool forceDefaults,
1383 UParseError *parseError,
1384 UErrorCode *status);
4388f060 1385#endif /* U_HIDE_INTERNAL_API */
73c04bcf 1386
374ca955
A
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
73c04bcf 1396 * @stable ICU 3.2
374ca955 1397 */
73c04bcf 1398U_STABLE int32_t U_EXPORT2
374ca955
A
1399ucol_cloneBinary(const UCollator *coll,
1400 uint8_t *buffer, int32_t capacity,
1401 UErrorCode *status);
1402
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
73c04bcf 1418 * @stable ICU 3.2
374ca955 1419 */
73c04bcf 1420U_STABLE UCollator* U_EXPORT2
374ca955
A
1421ucol_openBinary(const uint8_t *bin, int32_t length,
1422 const UCollator *base,
1423 UErrorCode *status);
1424
1425
b75a7d8f
A
1426#endif /* #if !UCONFIG_NO_COLLATION */
1427
374ca955 1428#endif