123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618 |
- // © 2016 and later: Unicode, Inc. and others.
- // License & terms of use: http://www.unicode.org/copyright.html
- /*
- *******************************************************************************
- * Copyright (C) 2010-2012, International Business Machines
- * Corporation and others. All Rights Reserved.
- *******************************************************************************
- * file name: stringtriebuilder.cpp
- * encoding: UTF-8
- * tab size: 8 (not used)
- * indentation:4
- *
- * created on: 2010dec24
- * created by: Markus W. Scherer
- */
- #include "utypeinfo.h" // for 'typeid' to work
- #include "unicode/utypes.h"
- #include "unicode/stringtriebuilder.h"
- #include "uassert.h"
- #include "uhash.h"
- U_CDECL_BEGIN
- static int32_t U_CALLCONV
- hashStringTrieNode(const UHashTok key) {
- return icu::StringTrieBuilder::hashNode(key.pointer);
- }
- static UBool U_CALLCONV
- equalStringTrieNodes(const UHashTok key1, const UHashTok key2) {
- return icu::StringTrieBuilder::equalNodes(key1.pointer, key2.pointer);
- }
- U_CDECL_END
- U_NAMESPACE_BEGIN
- StringTrieBuilder::StringTrieBuilder() : nodes(nullptr) {}
- StringTrieBuilder::~StringTrieBuilder() {
- deleteCompactBuilder();
- }
- void
- StringTrieBuilder::createCompactBuilder(int32_t sizeGuess, UErrorCode &errorCode) {
- if(U_FAILURE(errorCode)) {
- return;
- }
- nodes=uhash_openSize(hashStringTrieNode, equalStringTrieNodes, nullptr,
- sizeGuess, &errorCode);
- if(U_SUCCESS(errorCode)) {
- if(nodes==nullptr) {
- errorCode=U_MEMORY_ALLOCATION_ERROR;
- } else {
- uhash_setKeyDeleter(nodes, uprv_deleteUObject);
- }
- }
- }
- void
- StringTrieBuilder::deleteCompactBuilder() {
- uhash_close(nodes);
- nodes=nullptr;
- }
- void
- StringTrieBuilder::build(UStringTrieBuildOption buildOption, int32_t elementsLength,
- UErrorCode &errorCode) {
- if(buildOption==USTRINGTRIE_BUILD_FAST) {
- writeNode(0, elementsLength, 0);
- } else /* USTRINGTRIE_BUILD_SMALL */ {
- createCompactBuilder(2*elementsLength, errorCode);
- Node *root=makeNode(0, elementsLength, 0, errorCode);
- if(U_SUCCESS(errorCode)) {
- root->markRightEdgesFirst(-1);
- root->write(*this);
- }
- deleteCompactBuilder();
- }
- }
- // Requires start<limit,
- // and all strings of the [start..limit[ elements must be sorted and
- // have a common prefix of length unitIndex.
- int32_t
- StringTrieBuilder::writeNode(int32_t start, int32_t limit, int32_t unitIndex) {
- UBool hasValue=false;
- int32_t value=0;
- int32_t type;
- if(unitIndex==getElementStringLength(start)) {
- // An intermediate or final value.
- value=getElementValue(start++);
- if(start==limit) {
- return writeValueAndFinal(value, true); // final-value node
- }
- hasValue=true;
- }
- // Now all [start..limit[ strings are longer than unitIndex.
- int32_t minUnit=getElementUnit(start, unitIndex);
- int32_t maxUnit=getElementUnit(limit-1, unitIndex);
- if(minUnit==maxUnit) {
- // Linear-match node: All strings have the same character at unitIndex.
- int32_t lastUnitIndex=getLimitOfLinearMatch(start, limit-1, unitIndex);
- writeNode(start, limit, lastUnitIndex);
- // Break the linear-match sequence into chunks of at most kMaxLinearMatchLength.
- int32_t length=lastUnitIndex-unitIndex;
- int32_t maxLinearMatchLength=getMaxLinearMatchLength();
- while(length>maxLinearMatchLength) {
- lastUnitIndex-=maxLinearMatchLength;
- length-=maxLinearMatchLength;
- writeElementUnits(start, lastUnitIndex, maxLinearMatchLength);
- write(getMinLinearMatch()+maxLinearMatchLength-1);
- }
- writeElementUnits(start, unitIndex, length);
- type=getMinLinearMatch()+length-1;
- } else {
- // Branch node.
- int32_t length=countElementUnits(start, limit, unitIndex);
- // length>=2 because minUnit!=maxUnit.
- writeBranchSubNode(start, limit, unitIndex, length);
- if(--length<getMinLinearMatch()) {
- type=length;
- } else {
- write(length);
- type=0;
- }
- }
- return writeValueAndType(hasValue, value, type);
- }
- // start<limit && all strings longer than unitIndex &&
- // length different units at unitIndex
- int32_t
- StringTrieBuilder::writeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, int32_t length) {
- char16_t middleUnits[kMaxSplitBranchLevels];
- int32_t lessThan[kMaxSplitBranchLevels];
- int32_t ltLength=0;
- while(length>getMaxBranchLinearSubNodeLength()) {
- // Branch on the middle unit.
- // First, find the middle unit.
- int32_t i=skipElementsBySomeUnits(start, unitIndex, length/2);
- // Encode the less-than branch first.
- middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit
- lessThan[ltLength]=writeBranchSubNode(start, i, unitIndex, length/2);
- ++ltLength;
- // Continue for the greater-or-equal branch.
- start=i;
- length=length-length/2;
- }
- // For each unit, find its elements array start and whether it has a final value.
- int32_t starts[kMaxBranchLinearSubNodeLength];
- UBool isFinal[kMaxBranchLinearSubNodeLength-1];
- int32_t unitNumber=0;
- do {
- int32_t i=starts[unitNumber]=start;
- char16_t unit=getElementUnit(i++, unitIndex);
- i=indexOfElementWithNextUnit(i, unitIndex, unit);
- isFinal[unitNumber]= start==i-1 && unitIndex+1==getElementStringLength(start);
- start=i;
- } while(++unitNumber<length-1);
- // unitNumber==length-1, and the maxUnit elements range is [start..limit[
- starts[unitNumber]=start;
- // Write the sub-nodes in reverse order: The jump lengths are deltas from
- // after their own positions, so if we wrote the minUnit sub-node first,
- // then its jump delta would be larger.
- // Instead we write the minUnit sub-node last, for a shorter delta.
- int32_t jumpTargets[kMaxBranchLinearSubNodeLength-1];
- do {
- --unitNumber;
- if(!isFinal[unitNumber]) {
- jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1);
- }
- } while(unitNumber>0);
- // The maxUnit sub-node is written as the very last one because we do
- // not jump for it at all.
- unitNumber=length-1;
- writeNode(start, limit, unitIndex+1);
- int32_t offset=write(getElementUnit(start, unitIndex));
- // Write the rest of this node's unit-value pairs.
- while(--unitNumber>=0) {
- start=starts[unitNumber];
- int32_t value;
- if(isFinal[unitNumber]) {
- // Write the final value for the one string ending with this unit.
- value=getElementValue(start);
- } else {
- // Write the delta to the start position of the sub-node.
- value=offset-jumpTargets[unitNumber];
- }
- writeValueAndFinal(value, isFinal[unitNumber]);
- offset=write(getElementUnit(start, unitIndex));
- }
- // Write the split-branch nodes.
- while(ltLength>0) {
- --ltLength;
- writeDeltaTo(lessThan[ltLength]);
- offset=write(middleUnits[ltLength]);
- }
- return offset;
- }
- // Requires start<limit,
- // and all strings of the [start..limit[ elements must be sorted and
- // have a common prefix of length unitIndex.
- StringTrieBuilder::Node *
- StringTrieBuilder::makeNode(int32_t start, int32_t limit, int32_t unitIndex, UErrorCode &errorCode) {
- if(U_FAILURE(errorCode)) {
- return nullptr;
- }
- UBool hasValue=false;
- int32_t value=0;
- if(unitIndex==getElementStringLength(start)) {
- // An intermediate or final value.
- value=getElementValue(start++);
- if(start==limit) {
- return registerFinalValue(value, errorCode);
- }
- hasValue=true;
- }
- Node *node;
- // Now all [start..limit[ strings are longer than unitIndex.
- int32_t minUnit=getElementUnit(start, unitIndex);
- int32_t maxUnit=getElementUnit(limit-1, unitIndex);
- if(minUnit==maxUnit) {
- // Linear-match node: All strings have the same character at unitIndex.
- int32_t lastUnitIndex=getLimitOfLinearMatch(start, limit-1, unitIndex);
- Node *nextNode=makeNode(start, limit, lastUnitIndex, errorCode);
- // Break the linear-match sequence into chunks of at most kMaxLinearMatchLength.
- int32_t length=lastUnitIndex-unitIndex;
- int32_t maxLinearMatchLength=getMaxLinearMatchLength();
- while(length>maxLinearMatchLength) {
- lastUnitIndex-=maxLinearMatchLength;
- length-=maxLinearMatchLength;
- node=createLinearMatchNode(start, lastUnitIndex, maxLinearMatchLength, nextNode);
- nextNode=registerNode(node, errorCode);
- }
- node=createLinearMatchNode(start, unitIndex, length, nextNode);
- } else {
- // Branch node.
- int32_t length=countElementUnits(start, limit, unitIndex);
- // length>=2 because minUnit!=maxUnit.
- Node *subNode=makeBranchSubNode(start, limit, unitIndex, length, errorCode);
- node=new BranchHeadNode(length, subNode);
- }
- if(hasValue && node!=nullptr) {
- if(matchNodesCanHaveValues()) {
- ((ValueNode *)node)->setValue(value);
- } else {
- node=new IntermediateValueNode(value, registerNode(node, errorCode));
- }
- }
- return registerNode(node, errorCode);
- }
- // start<limit && all strings longer than unitIndex &&
- // length different units at unitIndex
- StringTrieBuilder::Node *
- StringTrieBuilder::makeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex,
- int32_t length, UErrorCode &errorCode) {
- if(U_FAILURE(errorCode)) {
- return nullptr;
- }
- char16_t middleUnits[kMaxSplitBranchLevels];
- Node *lessThan[kMaxSplitBranchLevels];
- int32_t ltLength=0;
- while(length>getMaxBranchLinearSubNodeLength()) {
- // Branch on the middle unit.
- // First, find the middle unit.
- int32_t i=skipElementsBySomeUnits(start, unitIndex, length/2);
- // Create the less-than branch.
- middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit
- lessThan[ltLength]=makeBranchSubNode(start, i, unitIndex, length/2, errorCode);
- ++ltLength;
- // Continue for the greater-or-equal branch.
- start=i;
- length=length-length/2;
- }
- if(U_FAILURE(errorCode)) {
- return nullptr;
- }
- ListBranchNode *listNode=new ListBranchNode();
- if(listNode==nullptr) {
- errorCode=U_MEMORY_ALLOCATION_ERROR;
- return nullptr;
- }
- // For each unit, find its elements array start and whether it has a final value.
- int32_t unitNumber=0;
- do {
- int32_t i=start;
- char16_t unit=getElementUnit(i++, unitIndex);
- i=indexOfElementWithNextUnit(i, unitIndex, unit);
- if(start==i-1 && unitIndex+1==getElementStringLength(start)) {
- listNode->add(unit, getElementValue(start));
- } else {
- listNode->add(unit, makeNode(start, i, unitIndex+1, errorCode));
- }
- start=i;
- } while(++unitNumber<length-1);
- // unitNumber==length-1, and the maxUnit elements range is [start..limit[
- char16_t unit=getElementUnit(start, unitIndex);
- if(start==limit-1 && unitIndex+1==getElementStringLength(start)) {
- listNode->add(unit, getElementValue(start));
- } else {
- listNode->add(unit, makeNode(start, limit, unitIndex+1, errorCode));
- }
- Node *node=registerNode(listNode, errorCode);
- // Create the split-branch nodes.
- while(ltLength>0) {
- --ltLength;
- node=registerNode(
- new SplitBranchNode(middleUnits[ltLength], lessThan[ltLength], node), errorCode);
- }
- return node;
- }
- StringTrieBuilder::Node *
- StringTrieBuilder::registerNode(Node *newNode, UErrorCode &errorCode) {
- if(U_FAILURE(errorCode)) {
- delete newNode;
- return nullptr;
- }
- if(newNode==nullptr) {
- errorCode=U_MEMORY_ALLOCATION_ERROR;
- return nullptr;
- }
- const UHashElement *old=uhash_find(nodes, newNode);
- if(old!=nullptr) {
- delete newNode;
- return static_cast<Node*>(old->key.pointer);
- }
- // If uhash_puti() returns a non-zero value from an equivalent, previously
- // registered node, then uhash_find() failed to find that and we will leak newNode.
- #if U_DEBUG
- int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue.
- #endif
- uhash_puti(nodes, newNode, 1, &errorCode);
- U_ASSERT(oldValue==0);
- if(U_FAILURE(errorCode)) {
- delete newNode;
- return nullptr;
- }
- return newNode;
- }
- StringTrieBuilder::Node *
- StringTrieBuilder::registerFinalValue(int32_t value, UErrorCode &errorCode) {
- if(U_FAILURE(errorCode)) {
- return nullptr;
- }
- FinalValueNode key(value);
- const UHashElement *old=uhash_find(nodes, &key);
- if(old!=nullptr) {
- return static_cast<Node*>(old->key.pointer);
- }
- Node *newNode=new FinalValueNode(value);
- if(newNode==nullptr) {
- errorCode=U_MEMORY_ALLOCATION_ERROR;
- return nullptr;
- }
- // If uhash_puti() returns a non-zero value from an equivalent, previously
- // registered node, then uhash_find() failed to find that and we will leak newNode.
- #if U_DEBUG
- int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue.
- #endif
- uhash_puti(nodes, newNode, 1, &errorCode);
- U_ASSERT(oldValue==0);
- if(U_FAILURE(errorCode)) {
- delete newNode;
- return nullptr;
- }
- return newNode;
- }
- int32_t
- StringTrieBuilder::hashNode(const void *node) {
- return static_cast<const Node*>(node)->hashCode();
- }
- UBool
- StringTrieBuilder::equalNodes(const void *left, const void *right) {
- return *static_cast<const Node*>(left) == *static_cast<const Node*>(right);
- }
- bool
- StringTrieBuilder::Node::operator==(const Node &other) const {
- return this==&other || (typeid(*this)==typeid(other) && hash==other.hash);
- }
- int32_t
- StringTrieBuilder::Node::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- offset=edgeNumber;
- }
- return edgeNumber;
- }
- bool
- StringTrieBuilder::FinalValueNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!Node::operator==(other)) {
- return false;
- }
- const FinalValueNode &o=static_cast<const FinalValueNode &>(other);
- return value==o.value;
- }
- void
- StringTrieBuilder::FinalValueNode::write(StringTrieBuilder &builder) {
- offset=builder.writeValueAndFinal(value, true);
- }
- bool
- StringTrieBuilder::ValueNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!Node::operator==(other)) {
- return false;
- }
- const ValueNode &o=static_cast<const ValueNode &>(other);
- return hasValue==o.hasValue && (!hasValue || value==o.value);
- }
- bool
- StringTrieBuilder::IntermediateValueNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!ValueNode::operator==(other)) {
- return false;
- }
- const IntermediateValueNode &o=static_cast<const IntermediateValueNode &>(other);
- return next==o.next;
- }
- int32_t
- StringTrieBuilder::IntermediateValueNode::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- offset=edgeNumber=next->markRightEdgesFirst(edgeNumber);
- }
- return edgeNumber;
- }
- void
- StringTrieBuilder::IntermediateValueNode::write(StringTrieBuilder &builder) {
- next->write(builder);
- offset=builder.writeValueAndFinal(value, false);
- }
- bool
- StringTrieBuilder::LinearMatchNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!ValueNode::operator==(other)) {
- return false;
- }
- const LinearMatchNode &o=static_cast<const LinearMatchNode &>(other);
- return length==o.length && next==o.next;
- }
- int32_t
- StringTrieBuilder::LinearMatchNode::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- offset=edgeNumber=next->markRightEdgesFirst(edgeNumber);
- }
- return edgeNumber;
- }
- bool
- StringTrieBuilder::ListBranchNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!Node::operator==(other)) {
- return false;
- }
- const ListBranchNode &o=static_cast<const ListBranchNode &>(other);
- for(int32_t i=0; i<length; ++i) {
- if(units[i]!=o.units[i] || values[i]!=o.values[i] || equal[i]!=o.equal[i]) {
- return false;
- }
- }
- return true;
- }
- int32_t
- StringTrieBuilder::ListBranchNode::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- firstEdgeNumber=edgeNumber;
- int32_t step=0;
- int32_t i=length;
- do {
- Node *edge=equal[--i];
- if(edge!=nullptr) {
- edgeNumber=edge->markRightEdgesFirst(edgeNumber-step);
- }
- // For all but the rightmost edge, decrement the edge number.
- step=1;
- } while(i>0);
- offset=edgeNumber;
- }
- return edgeNumber;
- }
- void
- StringTrieBuilder::ListBranchNode::write(StringTrieBuilder &builder) {
- // Write the sub-nodes in reverse order: The jump lengths are deltas from
- // after their own positions, so if we wrote the minUnit sub-node first,
- // then its jump delta would be larger.
- // Instead we write the minUnit sub-node last, for a shorter delta.
- int32_t unitNumber=length-1;
- Node *rightEdge=equal[unitNumber];
- int32_t rightEdgeNumber= rightEdge==nullptr ? firstEdgeNumber : rightEdge->getOffset();
- do {
- --unitNumber;
- if(equal[unitNumber]!=nullptr) {
- equal[unitNumber]->writeUnlessInsideRightEdge(firstEdgeNumber, rightEdgeNumber, builder);
- }
- } while(unitNumber>0);
- // The maxUnit sub-node is written as the very last one because we do
- // not jump for it at all.
- unitNumber=length-1;
- if(rightEdge==nullptr) {
- builder.writeValueAndFinal(values[unitNumber], true);
- } else {
- rightEdge->write(builder);
- }
- offset=builder.write(units[unitNumber]);
- // Write the rest of this node's unit-value pairs.
- while(--unitNumber>=0) {
- int32_t value;
- UBool isFinal;
- if(equal[unitNumber]==nullptr) {
- // Write the final value for the one string ending with this unit.
- value=values[unitNumber];
- isFinal=true;
- } else {
- // Write the delta to the start position of the sub-node.
- U_ASSERT(equal[unitNumber]->getOffset()>0);
- value=offset-equal[unitNumber]->getOffset();
- isFinal=false;
- }
- builder.writeValueAndFinal(value, isFinal);
- offset=builder.write(units[unitNumber]);
- }
- }
- bool
- StringTrieBuilder::SplitBranchNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!Node::operator==(other)) {
- return false;
- }
- const SplitBranchNode &o=static_cast<const SplitBranchNode &>(other);
- return unit==o.unit && lessThan==o.lessThan && greaterOrEqual==o.greaterOrEqual;
- }
- int32_t
- StringTrieBuilder::SplitBranchNode::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- firstEdgeNumber=edgeNumber;
- edgeNumber=greaterOrEqual->markRightEdgesFirst(edgeNumber);
- offset=edgeNumber=lessThan->markRightEdgesFirst(edgeNumber-1);
- }
- return edgeNumber;
- }
- void
- StringTrieBuilder::SplitBranchNode::write(StringTrieBuilder &builder) {
- // Encode the less-than branch first.
- lessThan->writeUnlessInsideRightEdge(firstEdgeNumber, greaterOrEqual->getOffset(), builder);
- // Encode the greater-or-equal branch last because we do not jump for it at all.
- greaterOrEqual->write(builder);
- // Write this node.
- U_ASSERT(lessThan->getOffset()>0);
- builder.writeDeltaTo(lessThan->getOffset()); // less-than
- offset=builder.write(unit);
- }
- bool
- StringTrieBuilder::BranchHeadNode::operator==(const Node &other) const {
- if(this==&other) {
- return true;
- }
- if(!ValueNode::operator==(other)) {
- return false;
- }
- const BranchHeadNode &o=static_cast<const BranchHeadNode &>(other);
- return length==o.length && next==o.next;
- }
- int32_t
- StringTrieBuilder::BranchHeadNode::markRightEdgesFirst(int32_t edgeNumber) {
- if(offset==0) {
- offset=edgeNumber=next->markRightEdgesFirst(edgeNumber);
- }
- return edgeNumber;
- }
- void
- StringTrieBuilder::BranchHeadNode::write(StringTrieBuilder &builder) {
- next->write(builder);
- if(length<=builder.getMinLinearMatch()) {
- offset=builder.writeValueAndType(hasValue, value, length-1);
- } else {
- builder.write(length-1);
- offset=builder.writeValueAndType(hasValue, value, 0);
- }
- }
- U_NAMESPACE_END
|