2 *******************************************************************************
3 * Copyright (C) 2010-2012, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *******************************************************************************
6 * file name: ucharstrie.h
8 * tab size: 8 (not used)
11 * created on: 2010nov14
12 * created by: Markus W. Scherer
15 #ifndef __UCHARSTRIE_H__
16 #define __UCHARSTRIE_H__
20 * \brief C++ API: Trie for mapping Unicode strings (or 16-bit-unit sequences)
24 #include "unicode/utypes.h"
25 #include "unicode/unistr.h"
26 #include "unicode/uobject.h"
27 #include "unicode/ustringtrie.h"
32 class UCharsTrieBuilder
;
36 * Light-weight, non-const reader class for a UCharsTrie.
37 * Traverses a UChar-serialized data structure with minimal state,
38 * for mapping strings (16-bit-unit sequences) to non-negative integer values.
40 * This class owns the serialized trie data only if it was constructed by
41 * the builder's build() method.
42 * The public constructor and the copy constructor only alias the data (only copy the pointer).
43 * There is no assignment operator.
45 * This class is not intended for public subclassing.
48 class U_COMMON_API UCharsTrie
: public UMemory
{
51 * Constructs a UCharsTrie reader instance.
53 * The trieUChars must contain a copy of a UChar sequence from the UCharsTrieBuilder,
54 * starting with the first UChar of that sequence.
55 * The UCharsTrie object will not read more UChars than
56 * the UCharsTrieBuilder generated in the corresponding build() call.
58 * The array is not copied/cloned and must not be modified while
59 * the UCharsTrie object is in use.
61 * @param trieUChars The UChar array that contains the serialized trie.
64 UCharsTrie(const UChar
*trieUChars
)
65 : ownedArray_(NULL
), uchars_(trieUChars
),
66 pos_(uchars_
), remainingMatchLength_(-1) {}
75 * Copy constructor, copies the other trie reader object and its state,
76 * but not the UChar array which will be shared. (Shallow copy.)
77 * @param other Another UCharsTrie object.
80 UCharsTrie(const UCharsTrie
&other
)
81 : ownedArray_(NULL
), uchars_(other
.uchars_
),
82 pos_(other
.pos_
), remainingMatchLength_(other
.remainingMatchLength_
) {}
85 * Resets this trie to its initial state.
91 remainingMatchLength_
=-1;
96 * UCharsTrie state object, for saving a trie's current state
97 * and resetting the trie back to this state later.
100 class State
: public UMemory
{
103 * Constructs an empty State.
106 State() { uchars
=NULL
; }
108 friend class UCharsTrie
;
112 int32_t remainingMatchLength
;
116 * Saves the state of this trie.
117 * @param state The State object to hold the trie's state.
122 const UCharsTrie
&saveState(State
&state
) const {
123 state
.uchars
=uchars_
;
125 state
.remainingMatchLength
=remainingMatchLength_
;
130 * Resets this trie to the saved state.
131 * If the state object contains no state, or the state of a different trie,
132 * then this trie remains unchanged.
133 * @param state The State object which holds a saved trie state.
139 UCharsTrie
&resetToState(const State
&state
) {
140 if(uchars_
==state
.uchars
&& uchars_
!=NULL
) {
142 remainingMatchLength_
=state
.remainingMatchLength
;
148 * Determines whether the string so far matches, whether it has a value,
149 * and whether another input UChar can continue a matching string.
150 * @return The match/value Result.
153 UStringTrieResult
current() const;
156 * Traverses the trie from the initial state for this input UChar.
157 * Equivalent to reset().next(uchar).
158 * @param uchar Input char value. Values below 0 and above 0xffff will never match.
159 * @return The match/value Result.
162 inline UStringTrieResult
first(int32_t uchar
) {
163 remainingMatchLength_
=-1;
164 return nextImpl(uchars_
, uchar
);
168 * Traverses the trie from the initial state for the
169 * one or two UTF-16 code units for this input code point.
170 * Equivalent to reset().nextForCodePoint(cp).
171 * @param cp A Unicode code point 0..0x10ffff.
172 * @return The match/value Result.
175 UStringTrieResult
firstForCodePoint(UChar32 cp
);
178 * Traverses the trie from the current state for this input UChar.
179 * @param uchar Input char value. Values below 0 and above 0xffff will never match.
180 * @return The match/value Result.
183 UStringTrieResult
next(int32_t uchar
);
186 * Traverses the trie from the current state for the
187 * one or two UTF-16 code units for this input code point.
188 * @param cp A Unicode code point 0..0x10ffff.
189 * @return The match/value Result.
192 UStringTrieResult
nextForCodePoint(UChar32 cp
);
195 * Traverses the trie from the current state for this string.
198 * Result result=current();
200 * if(!USTRINGTRIE_HAS_NEXT(result)) return USTRINGTRIE_NO_MATCH;
204 * @param s A string. Can be NULL if length is 0.
205 * @param length The length of the string. Can be -1 if NUL-terminated.
206 * @return The match/value Result.
209 UStringTrieResult
next(const UChar
*s
, int32_t length
);
212 * Returns a matching string's value if called immediately after
213 * current()/first()/next() returned USTRINGTRIE_INTERMEDIATE_VALUE or USTRINGTRIE_FINAL_VALUE.
214 * getValue() can be called multiple times.
216 * Do not call getValue() after USTRINGTRIE_NO_MATCH or USTRINGTRIE_NO_VALUE!
217 * @return The value for the string so far.
220 inline int32_t getValue() const {
221 const UChar
*pos
=pos_
;
222 int32_t leadUnit
=*pos
++;
223 // U_ASSERT(leadUnit>=kMinValueLead);
224 return leadUnit
&kValueIsFinal
?
225 readValue(pos
, leadUnit
&0x7fff) : readNodeValue(pos
, leadUnit
);
229 * Determines whether all strings reachable from the current state
230 * map to the same value.
231 * @param uniqueValue Receives the unique value, if this function returns TRUE.
233 * @return TRUE if all strings reachable from the current state
234 * map to the same value.
237 inline UBool
hasUniqueValue(int32_t &uniqueValue
) const {
238 const UChar
*pos
=pos_
;
239 // Skip the rest of a pending linear-match node.
240 return pos
!=NULL
&& findUniqueValue(pos
+remainingMatchLength_
+1, FALSE
, uniqueValue
);
244 * Finds each UChar which continues the string from the current state.
245 * That is, each UChar c for which it would be next(c)!=USTRINGTRIE_NO_MATCH now.
246 * @param out Each next UChar is appended to this object.
247 * @return the number of UChars which continue the string from here
250 int32_t getNextUChars(Appendable
&out
) const;
253 * Iterator for all of the (string, value) pairs in a UCharsTrie.
256 class U_COMMON_API Iterator
: public UMemory
{
259 * Iterates from the root of a UChar-serialized UCharsTrie.
260 * @param trieUChars The trie UChars.
261 * @param maxStringLength If 0, the iterator returns full strings.
262 * Otherwise, the iterator returns strings with this maximum length.
263 * @param errorCode Standard ICU error code. Its input value must
264 * pass the U_SUCCESS() test, or else the function returns
265 * immediately. Check for U_FAILURE() on output or use with
266 * function chaining. (See User Guide for details.)
269 Iterator(const UChar
*trieUChars
, int32_t maxStringLength
, UErrorCode
&errorCode
);
272 * Iterates from the current state of the specified UCharsTrie.
273 * @param trie The trie whose state will be copied for iteration.
274 * @param maxStringLength If 0, the iterator returns full strings.
275 * Otherwise, the iterator returns strings with this maximum length.
276 * @param errorCode Standard ICU error code. Its input value must
277 * pass the U_SUCCESS() test, or else the function returns
278 * immediately. Check for U_FAILURE() on output or use with
279 * function chaining. (See User Guide for details.)
282 Iterator(const UCharsTrie
&trie
, int32_t maxStringLength
, UErrorCode
&errorCode
);
291 * Resets this iterator to its initial state.
298 * @return TRUE if there are more elements.
301 UBool
hasNext() const;
304 * Finds the next (string, value) pair if there is one.
306 * If the string is truncated to the maximum length and does not
307 * have a real value, then the value is set to -1.
308 * In this case, this "not a real value" is indistinguishable from
309 * a real value of -1.
310 * @param errorCode Standard ICU error code. Its input value must
311 * pass the U_SUCCESS() test, or else the function returns
312 * immediately. Check for U_FAILURE() on output or use with
313 * function chaining. (See User Guide for details.)
314 * @return TRUE if there is another element.
317 UBool
next(UErrorCode
&errorCode
);
320 * @return The string for the last successful next().
323 const UnicodeString
&getString() const { return str_
; }
325 * @return The value for the last successful next().
328 int32_t getValue() const { return value_
; }
331 UBool
truncateAndStop() {
333 value_
=-1; // no real value for str
337 const UChar
*branchNext(const UChar
*pos
, int32_t length
, UErrorCode
&errorCode
);
339 const UChar
*uchars_
;
341 const UChar
*initialPos_
;
342 int32_t remainingMatchLength_
;
343 int32_t initialRemainingMatchLength_
;
344 UBool skipValue_
; // Skip intermediate value which was already delivered.
350 // The stack stores pairs of integers for backtracking to another
351 // outbound edge of a branch node.
352 // The first integer is an offset from uchars_.
353 // The second integer has the str_.length() from before the node in bits 15..0,
354 // and the remaining branch length in bits 31..16.
355 // (We could store the remaining branch length minus 1 in bits 30..16 and not use the sign bit,
356 // but the code looks more confusing that way.)
361 friend class UCharsTrieBuilder
;
364 * Constructs a UCharsTrie reader instance.
365 * Unlike the public constructor which just aliases an array,
366 * this constructor adopts the builder's array.
367 * This constructor is only called by the builder.
369 UCharsTrie(UChar
*adoptUChars
, const UChar
*trieUChars
)
370 : ownedArray_(adoptUChars
), uchars_(trieUChars
),
371 pos_(uchars_
), remainingMatchLength_(-1) {}
373 // No assignment operator.
374 UCharsTrie
&operator=(const UCharsTrie
&other
);
380 // Reads a compact 32-bit integer.
381 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
382 static inline int32_t readValue(const UChar
*pos
, int32_t leadUnit
) {
384 if(leadUnit
<kMinTwoUnitValueLead
) {
386 } else if(leadUnit
<kThreeUnitValueLead
) {
387 value
=((leadUnit
-kMinTwoUnitValueLead
)<<16)|*pos
;
389 value
=(pos
[0]<<16)|pos
[1];
393 static inline const UChar
*skipValue(const UChar
*pos
, int32_t leadUnit
) {
394 if(leadUnit
>=kMinTwoUnitValueLead
) {
395 if(leadUnit
<kThreeUnitValueLead
) {
403 static inline const UChar
*skipValue(const UChar
*pos
) {
404 int32_t leadUnit
=*pos
++;
405 return skipValue(pos
, leadUnit
&0x7fff);
408 static inline int32_t readNodeValue(const UChar
*pos
, int32_t leadUnit
) {
409 // U_ASSERT(kMinValueLead<=leadUnit && leadUnit<kValueIsFinal);
411 if(leadUnit
<kMinTwoUnitNodeValueLead
) {
412 value
=(leadUnit
>>6)-1;
413 } else if(leadUnit
<kThreeUnitNodeValueLead
) {
414 value
=(((leadUnit
&0x7fc0)-kMinTwoUnitNodeValueLead
)<<10)|*pos
;
416 value
=(pos
[0]<<16)|pos
[1];
420 static inline const UChar
*skipNodeValue(const UChar
*pos
, int32_t leadUnit
) {
421 // U_ASSERT(kMinValueLead<=leadUnit && leadUnit<kValueIsFinal);
422 if(leadUnit
>=kMinTwoUnitNodeValueLead
) {
423 if(leadUnit
<kThreeUnitNodeValueLead
) {
432 static inline const UChar
*jumpByDelta(const UChar
*pos
) {
433 int32_t delta
=*pos
++;
434 if(delta
>=kMinTwoUnitDeltaLead
) {
435 if(delta
==kThreeUnitDeltaLead
) {
436 delta
=(pos
[0]<<16)|pos
[1];
439 delta
=((delta
-kMinTwoUnitDeltaLead
)<<16)|*pos
++;
445 static const UChar
*skipDelta(const UChar
*pos
) {
446 int32_t delta
=*pos
++;
447 if(delta
>=kMinTwoUnitDeltaLead
) {
448 if(delta
==kThreeUnitDeltaLead
) {
457 static inline UStringTrieResult
valueResult(int32_t node
) {
458 return (UStringTrieResult
)(USTRINGTRIE_INTERMEDIATE_VALUE
-(node
>>15));
461 // Handles a branch node for both next(uchar) and next(string).
462 UStringTrieResult
branchNext(const UChar
*pos
, int32_t length
, int32_t uchar
);
464 // Requires remainingLength_<0.
465 UStringTrieResult
nextImpl(const UChar
*pos
, int32_t uchar
);
467 // Helper functions for hasUniqueValue().
468 // Recursively finds a unique value (or whether there is not a unique one)
470 static const UChar
*findUniqueValueFromBranch(const UChar
*pos
, int32_t length
,
471 UBool haveUniqueValue
, int32_t &uniqueValue
);
472 // Recursively finds a unique value (or whether there is not a unique one)
473 // starting from a position on a node lead unit.
474 static UBool
findUniqueValue(const UChar
*pos
, UBool haveUniqueValue
, int32_t &uniqueValue
);
476 // Helper functions for getNextUChars().
477 // getNextUChars() when pos is on a branch node.
478 static void getNextBranchUChars(const UChar
*pos
, int32_t length
, Appendable
&out
);
480 // UCharsTrie data structure
482 // The trie consists of a series of UChar-serialized nodes for incremental
483 // Unicode string/UChar sequence matching. (UChar=16-bit unsigned integer)
484 // The root node is at the beginning of the trie data.
486 // Types of nodes are distinguished by their node lead unit ranges.
487 // After each node, except a final-value node, another node follows to
488 // encode match values or continue matching further units.
491 // - Final-value node: Stores a 32-bit integer in a compact, variable-length format.
492 // The value is for the string/UChar sequence so far.
493 // - Match node, optionally with an intermediate value in a different compact format.
494 // The value, if present, is for the string/UChar sequence so far.
496 // Aside from the value, which uses the node lead unit's high bits:
498 // - Linear-match node: Matches a number of units.
499 // - Branch node: Branches to other nodes according to the current input unit.
500 // The node unit is the length of the branch (number of units to select from)
501 // minus 1. It is followed by a sub-node:
502 // - If the length is at most kMaxBranchLinearSubNodeLength, then
503 // there are length-1 (key, value) pairs and then one more comparison unit.
504 // If one of the key units matches, then the value is either a final value for
505 // the string so far, or a "jump" delta to the next node.
506 // If the last unit matches, then matching continues with the next node.
507 // (Values have the same encoding as final-value nodes.)
508 // - If the length is greater than kMaxBranchLinearSubNodeLength, then
509 // there is one unit and one "jump" delta.
510 // If the input unit is less than the sub-node unit, then "jump" by delta to
511 // the next sub-node which will have a length of length/2.
512 // (The delta has its own compact encoding.)
513 // Otherwise, skip the "jump" delta to the next sub-node
514 // which will have a length of length-length/2.
516 // Match-node lead unit values, after masking off intermediate-value bits:
518 // 0000..002f: Branch node. If node!=0 then the length is node+1, otherwise
519 // the length is one more than the next unit.
521 // For a branch sub-node with at most this many entries, we drop down
522 // to a linear search.
523 static const int32_t kMaxBranchLinearSubNodeLength
=5;
525 // 0030..003f: Linear-match node, match 1..16 units and continue reading the next node.
526 static const int32_t kMinLinearMatch
=0x30;
527 static const int32_t kMaxLinearMatchLength
=0x10;
529 // Match-node lead unit bits 14..6 for the optional intermediate value.
530 // If these bits are 0, then there is no intermediate value.
531 // Otherwise, see the *NodeValue* constants below.
532 static const int32_t kMinValueLead
=kMinLinearMatch
+kMaxLinearMatchLength
; // 0x0040
533 static const int32_t kNodeTypeMask
=kMinValueLead
-1; // 0x003f
535 // A final-value node has bit 15 set.
536 static const int32_t kValueIsFinal
=0x8000;
538 // Compact value: After testing and masking off bit 15, use the following thresholds.
539 static const int32_t kMaxOneUnitValue
=0x3fff;
541 static const int32_t kMinTwoUnitValueLead
=kMaxOneUnitValue
+1; // 0x4000
542 static const int32_t kThreeUnitValueLead
=0x7fff;
544 static const int32_t kMaxTwoUnitValue
=((kThreeUnitValueLead
-kMinTwoUnitValueLead
)<<16)-1; // 0x3ffeffff
546 // Compact intermediate-value integer, lead unit shared with a branch or linear-match node.
547 static const int32_t kMaxOneUnitNodeValue
=0xff;
548 static const int32_t kMinTwoUnitNodeValueLead
=kMinValueLead
+((kMaxOneUnitNodeValue
+1)<<6); // 0x4040
549 static const int32_t kThreeUnitNodeValueLead
=0x7fc0;
551 static const int32_t kMaxTwoUnitNodeValue
=
552 ((kThreeUnitNodeValueLead
-kMinTwoUnitNodeValueLead
)<<10)-1; // 0xfdffff
554 // Compact delta integers.
555 static const int32_t kMaxOneUnitDelta
=0xfbff;
556 static const int32_t kMinTwoUnitDeltaLead
=kMaxOneUnitDelta
+1; // 0xfc00
557 static const int32_t kThreeUnitDeltaLead
=0xffff;
559 static const int32_t kMaxTwoUnitDelta
=((kThreeUnitDeltaLead
-kMinTwoUnitDeltaLead
)<<16)-1; // 0x03feffff
563 // Fixed value referencing the UCharsTrie words.
564 const UChar
*uchars_
;
566 // Iterator variables.
568 // Pointer to next trie unit to read. NULL if no more matches.
570 // Remaining length of a linear-match node, minus 1. Negative if not in such a node.
571 int32_t remainingMatchLength_
;
576 #endif // __UCHARSTRIE_H__