01916cad11
X-SVN-Rev: 41131
128 lines
4.4 KiB
C++
128 lines
4.4 KiB
C++
// © 2018 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_FORMATTING && !UPRV_INCOMPLETE_CPP11_SUPPORT
|
|
|
|
// Allow implicit conversion from char16_t* to UnicodeString for this file:
|
|
// Helpful in toString methods and elsewhere.
|
|
#define UNISTR_FROM_STRING_EXPLICIT
|
|
|
|
#include "numparse_unisets.h"
|
|
#include "numparse_types.h"
|
|
#include "umutex.h"
|
|
#include "ucln_in.h"
|
|
#include "unicode/uniset.h"
|
|
|
|
using namespace icu;
|
|
using namespace icu::numparse;
|
|
using namespace icu::numparse::impl;
|
|
using namespace icu::numparse::impl::unisets;
|
|
|
|
|
|
namespace {
|
|
|
|
static UnicodeSet* gUnicodeSets[COUNT] = {};
|
|
|
|
UnicodeSet* computeUnion(Key k1, Key k2) {
|
|
UnicodeSet* result = new UnicodeSet();
|
|
if (result == nullptr) {
|
|
return nullptr;
|
|
}
|
|
result->addAll(*gUnicodeSets[k1]);
|
|
result->addAll(*gUnicodeSets[k2]);
|
|
result->freeze();
|
|
return result;
|
|
}
|
|
|
|
UnicodeSet* computeUnion(Key k1, Key k2, Key k3) {
|
|
UnicodeSet* result = new UnicodeSet();
|
|
if (result == nullptr) {
|
|
return nullptr;
|
|
}
|
|
result->addAll(*gUnicodeSets[k1]);
|
|
result->addAll(*gUnicodeSets[k2]);
|
|
result->addAll(*gUnicodeSets[k3]);
|
|
result->freeze();
|
|
return result;
|
|
}
|
|
|
|
icu::UInitOnce gNumberParseUniSetsInitOnce = U_INITONCE_INITIALIZER;
|
|
|
|
UBool U_CALLCONV cleanupNumberParseUniSets() {
|
|
for (int32_t i = 0; i < COUNT; i++) {
|
|
delete gUnicodeSets[i];
|
|
gUnicodeSets[i] = nullptr;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
void U_CALLCONV initNumberParseUniSets(UErrorCode& status) {
|
|
ucln_i18n_registerCleanup(UCLN_I18N_NUMPARSE_UNISETS, cleanupNumberParseUniSets);
|
|
|
|
gUnicodeSets[EMPTY] = new UnicodeSet();
|
|
|
|
// These characters are skipped over and ignored at any point in the string, even in strict mode.
|
|
// See ticket #13084.
|
|
gUnicodeSets[BIDI] = new UnicodeSet(u"[[:DI:]]", status);
|
|
|
|
// This set was decided after discussion with icu-design@. See ticket #13309.
|
|
// Zs+TAB is "horizontal whitespace" according to UTS #18 (blank property).
|
|
gUnicodeSets[WHITESPACE] = new UnicodeSet(u"[[:Zs:][\\u0009]]", status);
|
|
|
|
gUnicodeSets[DEFAULT_IGNORABLES] = computeUnion(BIDI, WHITESPACE);
|
|
gUnicodeSets[STRICT_IGNORABLES] = new UnicodeSet(*gUnicodeSets[BIDI]);
|
|
|
|
// TODO: Re-generate these sets from the UCD. They probably haven't been updated in a while.
|
|
gUnicodeSets[COMMA] = new UnicodeSet(u"[,،٫、︐︑﹐﹑,、]", status);
|
|
gUnicodeSets[STRICT_COMMA] = new UnicodeSet(u"[,٫︐﹐,]", status);
|
|
gUnicodeSets[PERIOD] = new UnicodeSet(u"[.․。︒﹒.。]", status);
|
|
gUnicodeSets[STRICT_PERIOD] = new UnicodeSet(u"[.․﹒.。]", status);
|
|
gUnicodeSets[OTHER_GROUPING_SEPARATORS] = new UnicodeSet(
|
|
u"['٬‘’'\\u0020\\u00A0\\u2000-\\u200A\\u202F\\u205F\\u3000]", status);
|
|
gUnicodeSets[ALL_SEPARATORS] = computeUnion(COMMA, PERIOD, OTHER_GROUPING_SEPARATORS);
|
|
gUnicodeSets[STRICT_ALL_SEPARATORS] = computeUnion(
|
|
STRICT_COMMA, STRICT_PERIOD, OTHER_GROUPING_SEPARATORS);
|
|
|
|
gUnicodeSets[MINUS_SIGN] = new UnicodeSet(u"[-⁻₋−➖﹣-]", status);
|
|
gUnicodeSets[PLUS_SIGN] = new UnicodeSet(u"[+⁺₊➕﬩﹢+]", status);
|
|
|
|
gUnicodeSets[PERCENT_SIGN] = new UnicodeSet(u"[%٪]", status);
|
|
gUnicodeSets[PERMILLE_SIGN] = new UnicodeSet(u"[‰؉]", status);
|
|
gUnicodeSets[INFINITY_KEY] = new UnicodeSet(u"[∞]", status);
|
|
|
|
gUnicodeSets[DIGITS] = new UnicodeSet(u"[:digit:]", status);
|
|
gUnicodeSets[CWCF] = new UnicodeSet(u"[:CWCF:]", status);
|
|
|
|
gUnicodeSets[DIGITS_OR_ALL_SEPARATORS] = computeUnion(DIGITS, ALL_SEPARATORS);
|
|
gUnicodeSets[DIGITS_OR_STRICT_ALL_SEPARATORS] = computeUnion(DIGITS, STRICT_ALL_SEPARATORS);
|
|
|
|
for (int32_t i = 0; i < COUNT; i++) {
|
|
gUnicodeSets[i]->freeze();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
const UnicodeSet* unisets::get(Key key) {
|
|
UErrorCode localStatus = U_ZERO_ERROR;
|
|
umtx_initOnce(gNumberParseUniSetsInitOnce, &initNumberParseUniSets, localStatus);
|
|
if (U_FAILURE(localStatus)) {
|
|
// TODO: This returns non-null in Java, and callers assume that.
|
|
return nullptr;
|
|
}
|
|
return gUnicodeSets[key];
|
|
}
|
|
|
|
Key unisets::chooseFrom(UnicodeString str, Key key1) {
|
|
return get(key1)->contains(str) ? key1 : COUNT;
|
|
}
|
|
|
|
Key unisets::chooseFrom(UnicodeString str, Key key1, Key key2) {
|
|
return get(key1)->contains(str) ? key1 : chooseFrom(str, key2);
|
|
}
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|