1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2013-2016, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* collationfastlatinbuilder.h
*
* created on: 2013aug09
* created by: Markus W. Scherer
*/
#ifndef __COLLATIONFASTLATINBUILDER_H__
#define __COLLATIONFASTLATINBUILDER_H__
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
#include "unicode/ucol.h"
#include "unicode/unistr.h"
#include "unicode/uobject.h"
#include "collation.h"
#include "collationfastlatin.h"
#include "uvectr64.h"
U_NAMESPACE_BEGIN
struct CollationData;
class U_I18N_API CollationFastLatinBuilder : public UObject {
public:
CollationFastLatinBuilder(UErrorCode &errorCode);
~CollationFastLatinBuilder();
UBool forData(const CollationData &data, UErrorCode &errorCode);
const uint16_t *getTable() const {
return reinterpret_cast<const uint16_t *>(result.getBuffer());
}
int32_t lengthOfTable() const { return result.length(); }
private:
// space, punct, symbol, currency (not digit)
enum { NUM_SPECIAL_GROUPS = UCOL_REORDER_CODE_CURRENCY - UCOL_REORDER_CODE_FIRST + 1 };
UBool loadGroups(const CollationData &data, UErrorCode &errorCode);
UBool inSameGroup(uint32_t p, uint32_t q) const;
void resetCEs();
void getCEs(const CollationData &data, UErrorCode &errorCode);
UBool getCEsFromCE32(const CollationData &data, UChar32 c, uint32_t ce32,
UErrorCode &errorCode);
UBool getCEsFromContractionCE32(const CollationData &data, uint32_t ce32,
UErrorCode &errorCode);
void addContractionEntry(int32_t x, int64_t cce0, int64_t cce1, UErrorCode &errorCode);
void addUniqueCE(int64_t ce, UErrorCode &errorCode);
uint32_t getMiniCE(int64_t ce) const;
UBool encodeUniqueCEs(UErrorCode &errorCode);
UBool encodeCharCEs(UErrorCode &errorCode);
UBool encodeContractions(UErrorCode &errorCode);
uint32_t encodeTwoCEs(int64_t first, int64_t second) const;
static UBool isContractionCharCE(int64_t ce) {
return (uint32_t)(ce >> 32) == Collation::NO_CE_PRIMARY && ce != Collation::NO_CE;
}
static const uint32_t CONTRACTION_FLAG = 0x80000000;
// temporary "buffer"
int64_t ce0, ce1;
int64_t charCEs[CollationFastLatin::NUM_FAST_CHARS][2];
UVector64 contractionCEs;
UVector64 uniqueCEs;
/** One 16-bit mini CE per unique CE. */
uint16_t *miniCEs;
// These are constant for a given root collator.
uint32_t lastSpecialPrimaries[NUM_SPECIAL_GROUPS];
uint32_t firstDigitPrimary;
uint32_t firstLatinPrimary;
uint32_t lastLatinPrimary;
// This determines the first normal primary weight which is mapped to
// a short mini primary. It must be >=firstDigitPrimary.
uint32_t firstShortPrimary;
UBool shortPrimaryOverflow;
UnicodeString result;
int32_t headerLength;
};
U_NAMESPACE_END
#endif // !UCONFIG_NO_COLLATION
#endif // __COLLATIONFASTLATINBUILDER_H__
|