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 101 102 103 104 105 106 107 108 109 110 111 112 113
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2013-2015, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* collationtailoring.cpp
*
* created on: 2013mar12
* created by: Markus W. Scherer
*/
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_COLLATION
#include <_foundation_unicode/udata.h>
#include <_foundation_unicode/unistr.h>
#include <_foundation_unicode/ures.h>
#include <_foundation_unicode/uversion.h>
#include <_foundation_unicode/uvernum.h>
#include "cmemory.h"
#include "collationdata.h"
#include "collationsettings.h"
#include "collationtailoring.h"
#include "normalizer2impl.h"
#include "uassert.h"
#include "uhash.h"
#include "umutex.h"
#include "utrie2.h"
U_NAMESPACE_BEGIN
CollationTailoring::CollationTailoring(const CollationSettings *baseSettings)
: data(nullptr), settings(baseSettings),
actualLocale(""),
ownedData(nullptr),
builder(nullptr), memory(nullptr), bundle(nullptr),
trie(nullptr), unsafeBackwardSet(nullptr),
maxExpansions(nullptr) {
if(baseSettings != nullptr) {
U_ASSERT(baseSettings->reorderCodesLength == 0);
U_ASSERT(baseSettings->reorderTable == nullptr);
U_ASSERT(baseSettings->minHighNoReorder == 0);
} else {
settings = new CollationSettings();
}
if(settings != nullptr) {
settings->addRef();
}
rules.getTerminatedBuffer(); // ensure NUL-termination
version[0] = version[1] = version[2] = version[3] = 0;
maxExpansionsInitOnce.reset();
}
CollationTailoring::~CollationTailoring() {
SharedObject::clearPtr(settings);
delete ownedData;
delete builder;
udata_close(memory);
ures_close(bundle);
utrie2_close(trie);
delete unsafeBackwardSet;
uhash_close(maxExpansions);
maxExpansionsInitOnce.reset();
}
UBool
CollationTailoring::ensureOwnedData(UErrorCode &errorCode) {
if(U_FAILURE(errorCode)) { return false; }
if(ownedData == nullptr) {
const Normalizer2Impl *nfcImpl = Normalizer2Factory::getNFCImpl(errorCode);
if(U_FAILURE(errorCode)) { return false; }
ownedData = new CollationData(*nfcImpl);
if(ownedData == nullptr) {
errorCode = U_MEMORY_ALLOCATION_ERROR;
return false;
}
}
data = ownedData;
return true;
}
void
CollationTailoring::makeBaseVersion(const UVersionInfo ucaVersion, UVersionInfo version) {
version[0] = UCOL_BUILDER_VERSION;
version[1] = (ucaVersion[0] << 3) + ucaVersion[1];
version[2] = ucaVersion[2] << 6;
version[3] = 0;
}
void
CollationTailoring::setVersion(const UVersionInfo baseVersion, const UVersionInfo rulesVersion) {
version[0] = UCOL_BUILDER_VERSION;
version[1] = baseVersion[1];
version[2] = (baseVersion[2] & 0xc0) + ((rulesVersion[0] + (rulesVersion[0] >> 6)) & 0x3f);
version[3] = (rulesVersion[1] << 3) + (rulesVersion[1] >> 5) + rulesVersion[2] +
(rulesVersion[3] << 4) + (rulesVersion[3] >> 4);
}
int32_t
CollationTailoring::getUCAVersion() const {
return ((int32_t)version[1] << 4) | (version[2] >> 6);
}
CollationCacheEntry::~CollationCacheEntry() {
SharedObject::clearPtr(tailoring);
}
U_NAMESPACE_END
#endif // !UCONFIG_NO_COLLATION
|