summaryrefslogtreecommitdiffstats
path: root/intl/icu/source/i18n/collationtailoring.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /intl/icu/source/i18n/collationtailoring.cpp
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'intl/icu/source/i18n/collationtailoring.cpp')
-rw-r--r--intl/icu/source/i18n/collationtailoring.cpp113
1 files changed, 113 insertions, 0 deletions
diff --git a/intl/icu/source/i18n/collationtailoring.cpp b/intl/icu/source/i18n/collationtailoring.cpp
new file mode 100644
index 0000000000..8d22cf2516
--- /dev/null
+++ b/intl/icu/source/i18n/collationtailoring.cpp
@@ -0,0 +1,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 "unicode/utypes.h"
+
+#if !UCONFIG_NO_COLLATION
+
+#include "unicode/udata.h"
+#include "unicode/unistr.h"
+#include "unicode/ures.h"
+#include "unicode/uversion.h"
+#include "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