ICU 64.2  64.2
unorm.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 *******************************************************************************
5 * Copyright (c) 1996-2016, International Business Machines Corporation
6 * and others. All Rights Reserved.
7 *******************************************************************************
8 * File unorm.h
9 *
10 * Created by: Vladimir Weinstein 12052000
11 *
12 * Modification history :
13 *
14 * Date Name Description
15 * 02/01/01 synwee Added normalization quickcheck enum and method.
16 */
17 #ifndef UNORM_H
18 #define UNORM_H
19 
20 #include "unicode/utypes.h"
21 
22 #if !UCONFIG_NO_NORMALIZATION
23 
24 #include "unicode/uiter.h"
25 #include "unicode/unorm2.h"
26 
132 // Do not conditionalize the following enum with #ifndef U_HIDE_DEPRECATED_API,
133 // it is needed for layout of Normalizer object.
138 typedef enum {
153 
157 
158 #ifndef U_HIDE_DEPRECATED_API
159 
167 enum {
175 };
176 
192 #define UNORM_COMPARE_NORM_OPTIONS_SHIFT 20
193 
213 U_DEPRECATED int32_t U_EXPORT2
214 unorm_normalize(const UChar *source, int32_t sourceLength,
215  UNormalizationMode mode, int32_t options,
216  UChar *result, int32_t resultLength,
217  UErrorCode *status);
218 
240 unorm_quickCheck(const UChar *source, int32_t sourcelength,
241  UNormalizationMode mode,
242  UErrorCode *status);
243 
261 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
262  UNormalizationMode mode, int32_t options,
263  UErrorCode *pErrorCode);
264 
286 U_DEPRECATED UBool U_EXPORT2
287 unorm_isNormalized(const UChar *src, int32_t srcLength,
288  UNormalizationMode mode,
289  UErrorCode *pErrorCode);
290 
308 U_DEPRECATED UBool U_EXPORT2
309 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
310  UNormalizationMode mode, int32_t options,
311  UErrorCode *pErrorCode);
312 
386 U_DEPRECATED int32_t U_EXPORT2
388  UChar *dest, int32_t destCapacity,
389  UNormalizationMode mode, int32_t options,
390  UBool doNormalize, UBool *pNeededToNormalize,
391  UErrorCode *pErrorCode);
392 
419 U_DEPRECATED int32_t U_EXPORT2
421  UChar *dest, int32_t destCapacity,
422  UNormalizationMode mode, int32_t options,
423  UBool doNormalize, UBool *pNeededToNormalize,
424  UErrorCode *pErrorCode);
425 
463 U_DEPRECATED int32_t U_EXPORT2
464 unorm_concatenate(const UChar *left, int32_t leftLength,
465  const UChar *right, int32_t rightLength,
466  UChar *dest, int32_t destCapacity,
467  UNormalizationMode mode, int32_t options,
468  UErrorCode *pErrorCode);
469 
470 #endif /* U_HIDE_DEPRECATED_API */
471 #endif /* #if !UCONFIG_NO_NORMALIZATION */
472 #endif
Canonical decomposition.
Definition: unorm.h:142
UNormalizationCheckResult unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode)
Performing quick check on a string; same as unorm_quickCheck but takes an extra options parameter lik...
"Fast C or D" form.
Definition: unorm.h:152
Options bit set value to select Unicode 3.2 normalization (except NormalizationCorrections).
Definition: unorm.h:174
UNormalizationMode
Constants for normalization modes.
Definition: unorm.h:138
Compatibility decomposition followed by canonical composition.
Definition: unorm.h:150
C API for code unit iteration.
Definition: uiter.h:341
UNormalizationCheckResult unorm_quickCheck(const UChar *source, int32_t sourcelength, UNormalizationMode mode, UErrorCode *status)
Performing quick check on a string, to quickly determine if the string is in a particular normalizati...
#define U_DEPRECATED
This is used to declare a function as a deprecated public ICU C API.
Definition: umachine.h:115
int32_t unorm_normalize(const UChar *source, int32_t sourceLength, UNormalizationMode mode, int32_t options, UChar *result, int32_t resultLength, UErrorCode *status)
Normalize a string.
C API: New API for Unicode Normalization.
UBool unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode)
Test if a string is in a given normalization form; same as unorm_isNormalized but takes an extra opti...
UBool unorm_isNormalized(const UChar *src, int32_t srcLength, UNormalizationMode mode, UErrorCode *pErrorCode)
Test if a string is in a given normalization form.
Default normalization.
Definition: unorm.h:148
No decomposition/composition.
Definition: unorm.h:140
C API: Unicode Character Iteration.
int32_t unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode)
Iterative normalization forward.
uint16_t UChar
The base type for UTF-16 code units and pointers.
Definition: umachine.h:342
int32_t unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode)
Concatenate normalized strings, making sure that the result is normalized as well.
int32_t unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode)
Iterative normalization backward.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
Definition: utypes.h:401
Compatibility decomposition.
Definition: unorm.h:144
Basic definitions for ICU, for both C and C++ APIs.
One more than the highest normalization mode constant.
Definition: unorm.h:155
UNormalizationCheckResult
Result values for normalization quick check functions.
Definition: unorm2.h:94
Canonical decomposition followed by canonical composition.
Definition: unorm.h:146
int8_t UBool
The ICU boolean type.
Definition: umachine.h:225