Coverage Report

Created: 2025-09-05 07:16

/src/icu/icu4c/source/common/ucharstrieiterator.cpp
Line
Count
Source (jump to first uncovered line)
1
// © 2016 and later: Unicode, Inc. and others.
2
// License & terms of use: http://www.unicode.org/copyright.html
3
/*
4
*******************************************************************************
5
*   Copyright (C) 2010-2011, International Business Machines
6
*   Corporation and others.  All Rights Reserved.
7
*******************************************************************************
8
*   file name:  ucharstrieiterator.h
9
*   encoding:   UTF-8
10
*   tab size:   8 (not used)
11
*   indentation:4
12
*
13
*   created on: 2010nov15
14
*   created by: Markus W. Scherer
15
*/
16
17
#include "unicode/utypes.h"
18
#include "unicode/ucharstrie.h"
19
#include "unicode/unistr.h"
20
#include "uvectr32.h"
21
22
U_NAMESPACE_BEGIN
23
24
UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength,
25
                               UErrorCode &errorCode)
26
41.7k
        : uchars_(trieUChars),
27
41.7k
          pos_(uchars_), initialPos_(uchars_),
28
41.7k
          remainingMatchLength_(-1), initialRemainingMatchLength_(-1),
29
41.7k
          skipValue_(false),
30
41.7k
          maxLength_(maxStringLength), value_(0), stack_(nullptr) {
31
41.7k
    if(U_FAILURE(errorCode)) {
32
0
        return;
33
0
    }
34
    // stack_ is a pointer so that it's easy to turn ucharstrie.h into
35
    // a public API header for which we would want it to depend only on
36
    // other public headers.
37
    // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
38
    // via the UnicodeString and UVector32 implementations, so this additional
39
    // cost is minimal.
40
41.7k
    stack_=new UVector32(errorCode);
41
41.7k
    if(stack_==nullptr) {
42
0
        errorCode=U_MEMORY_ALLOCATION_ERROR;
43
0
    }
44
41.7k
}
45
46
UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength,
47
                               UErrorCode &errorCode)
48
0
        : uchars_(trie.uchars_), pos_(trie.pos_), initialPos_(trie.pos_),
49
0
          remainingMatchLength_(trie.remainingMatchLength_),
50
0
          initialRemainingMatchLength_(trie.remainingMatchLength_),
51
0
          skipValue_(false),
52
0
          maxLength_(maxStringLength), value_(0), stack_(nullptr) {
53
0
    if(U_FAILURE(errorCode)) {
54
0
        return;
55
0
    }
56
0
    stack_=new UVector32(errorCode);
57
0
    if(U_FAILURE(errorCode)) {
58
0
        return;
59
0
    }
60
0
    if(stack_==nullptr) {
61
0
        errorCode=U_MEMORY_ALLOCATION_ERROR;
62
0
        return;
63
0
    }
64
0
    int32_t length=remainingMatchLength_;  // Actual remaining match length minus 1.
65
0
    if(length>=0) {
66
        // Pending linear-match node, append remaining UChars to str_.
67
0
        ++length;
68
0
        if(maxLength_>0 && length>maxLength_) {
69
0
            length=maxLength_;  // This will leave remainingMatchLength>=0 as a signal.
70
0
        }
71
0
        str_.append(pos_, length);
72
0
        pos_+=length;
73
0
        remainingMatchLength_-=length;
74
0
    }
75
0
}
76
77
41.7k
UCharsTrie::Iterator::~Iterator() {
78
41.7k
    delete stack_;
79
41.7k
}
80
81
UCharsTrie::Iterator &
82
0
UCharsTrie::Iterator::reset() {
83
0
    pos_=initialPos_;
84
0
    remainingMatchLength_=initialRemainingMatchLength_;
85
0
    skipValue_=false;
86
0
    int32_t length=remainingMatchLength_+1;  // Remaining match length.
87
0
    if(maxLength_>0 && length>maxLength_) {
88
0
        length=maxLength_;
89
0
    }
90
0
    str_.truncate(length);
91
0
    pos_+=length;
92
0
    remainingMatchLength_-=length;
93
0
    stack_->setSize(0);
94
0
    return *this;
95
0
}
96
97
UBool
98
0
UCharsTrie::Iterator::hasNext() const { return pos_!=nullptr || !stack_->isEmpty(); }
99
100
UBool
101
496k
UCharsTrie::Iterator::next(UErrorCode &errorCode) {
102
496k
    if(U_FAILURE(errorCode)) {
103
0
        return false;
104
0
    }
105
496k
    const char16_t *pos=pos_;
106
496k
    if(pos==nullptr) {
107
448k
        if(stack_->isEmpty()) {
108
41.7k
            return false;
109
41.7k
        }
110
        // Pop the state off the stack and continue with the next outbound edge of
111
        // the branch node.
112
406k
        int32_t stackSize=stack_->size();
113
406k
        int32_t length=stack_->elementAti(stackSize-1);
114
406k
        pos=uchars_+stack_->elementAti(stackSize-2);
115
406k
        stack_->setSize(stackSize-2);
116
406k
        str_.truncate(length&0xffff);
117
406k
        length = static_cast<int32_t>(static_cast<uint32_t>(length) >> 16);
118
406k
        if(length>1) {
119
210k
            pos=branchNext(pos, length, errorCode);
120
210k
            if(pos==nullptr) {
121
171k
                return true;  // Reached a final value.
122
171k
            }
123
210k
        } else {
124
195k
            str_.append(*pos++);
125
195k
        }
126
406k
    }
127
282k
    if(remainingMatchLength_>=0) {
128
        // We only get here if we started in a pending linear-match node
129
        // with more than maxLength remaining units.
130
0
        return truncateAndStop();
131
0
    }
132
682k
    for(;;) {
133
682k
        int32_t node=*pos++;
134
682k
        if(node>=kMinValueLead) {
135
245k
            if(skipValue_) {
136
5.89k
                pos=skipNodeValue(pos, node);
137
5.89k
                node&=kNodeTypeMask;
138
5.89k
                skipValue_=false;
139
239k
            } else {
140
                // Deliver value for the string so far.
141
239k
                UBool isFinal = static_cast<UBool>(node >> 15);
142
239k
                if(isFinal) {
143
233k
                    value_=readValue(pos, node&0x7fff);
144
233k
                } else {
145
5.89k
                    value_=readNodeValue(pos, node);
146
5.89k
                }
147
239k
                if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) {
148
233k
                    pos_=nullptr;
149
233k
                } else {
150
                    // We cannot skip the value right here because it shares its
151
                    // lead unit with a match node which we have to evaluate
152
                    // next time.
153
                    // Instead, keep pos_ on the node lead unit itself.
154
5.89k
                    pos_=pos-1;
155
5.89k
                    skipValue_=true;
156
5.89k
                }
157
239k
                return true;
158
239k
            }
159
245k
        }
160
442k
        if(maxLength_>0 && str_.length()==maxLength_) {
161
0
            return truncateAndStop();
162
0
        }
163
442k
        if(node<kMinLinearMatch) {
164
142k
            if(node==0) {
165
337
                node=*pos++;
166
337
            }
167
142k
            pos=branchNext(pos, node+1, errorCode);
168
142k
            if(pos==nullptr) {
169
43.0k
                return true;  // Reached a final value.
170
43.0k
            }
171
300k
        } else {
172
            // Linear-match node, append length units to str_.
173
300k
            int32_t length=node-kMinLinearMatch+1;
174
300k
            if(maxLength_>0 && str_.length()+length>maxLength_) {
175
0
                str_.append(pos, maxLength_-str_.length());
176
0
                return truncateAndStop();
177
0
            }
178
300k
            str_.append(pos, length);
179
300k
            pos+=length;
180
300k
        }
181
442k
    }
182
282k
}
183
184
// Branch node, needs to take the first outbound edge and push state for the rest.
185
const char16_t *
186
353k
UCharsTrie::Iterator::branchNext(const char16_t *pos, int32_t length, UErrorCode &errorCode) {
187
406k
    while(length>kMaxBranchLinearSubNodeLength) {
188
53.1k
        ++pos;  // ignore the comparison unit
189
        // Push state for the greater-or-equal edge.
190
53.1k
        stack_->addElement(static_cast<int32_t>(skipDelta(pos) - uchars_), errorCode);
191
53.1k
        stack_->addElement(((length-(length>>1))<<16)|str_.length(), errorCode);
192
        // Follow the less-than edge.
193
53.1k
        length>>=1;
194
53.1k
        pos=jumpByDelta(pos);
195
53.1k
    }
196
    // List of key-value pairs where values are either final values or jump deltas.
197
    // Read the first (key, value) pair.
198
353k
    char16_t trieUnit=*pos++;
199
353k
    int32_t node=*pos++;
200
353k
    UBool isFinal = static_cast<UBool>(node >> 15);
201
353k
    int32_t value=readValue(pos, node&=0x7fff);
202
353k
    pos=skipValue(pos, node);
203
353k
    stack_->addElement(static_cast<int32_t>(pos - uchars_), errorCode);
204
353k
    stack_->addElement(((length-1)<<16)|str_.length(), errorCode);
205
353k
    str_.append(trieUnit);
206
353k
    if(isFinal) {
207
214k
        pos_=nullptr;
208
214k
        value_=value;
209
214k
        return nullptr;
210
214k
    } else {
211
138k
        return pos+value;
212
138k
    }
213
353k
}
214
215
U_NAMESPACE_END