123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- // © 2016 and later: Unicode, Inc. and others.
- // License & terms of use: http://www.unicode.org/copyright.html
- /*
- ************************************************************************************
- * Copyright (C) 2006-2016, International Business Machines Corporation
- * and others. All Rights Reserved.
- ************************************************************************************
- */
- #include "unicode/utypes.h"
- #if !UCONFIG_NO_BREAK_ITERATION
- #include "unicode/uchar.h"
- #include "unicode/uniset.h"
- #include "unicode/chariter.h"
- #include "unicode/ures.h"
- #include "unicode/udata.h"
- #include "unicode/putil.h"
- #include "unicode/ustring.h"
- #include "unicode/uscript.h"
- #include "unicode/ucharstrie.h"
- #include "unicode/bytestrie.h"
- #include "unicode/rbbi.h"
- #include "brkeng.h"
- #include "cmemory.h"
- #include "dictbe.h"
- #include "lstmbe.h"
- #include "charstr.h"
- #include "dictionarydata.h"
- #include "mutex.h"
- #include "uvector.h"
- #include "umutex.h"
- #include "uresimp.h"
- #include "ubrkimpl.h"
- U_NAMESPACE_BEGIN
- /*
- ******************************************************************
- */
- LanguageBreakEngine::LanguageBreakEngine() {
- }
- LanguageBreakEngine::~LanguageBreakEngine() {
- }
- /*
- ******************************************************************
- */
- LanguageBreakFactory::LanguageBreakFactory() {
- }
- LanguageBreakFactory::~LanguageBreakFactory() {
- }
- /*
- ******************************************************************
- */
- UnhandledEngine::UnhandledEngine(UErrorCode &status) : fHandled(nullptr) {
- (void)status;
- }
- UnhandledEngine::~UnhandledEngine() {
- delete fHandled;
- fHandled = nullptr;
- }
- UBool
- UnhandledEngine::handles(UChar32 c, const char* locale) const {
- (void)locale; // Unused
- return fHandled && fHandled->contains(c);
- }
- int32_t
- UnhandledEngine::findBreaks( UText *text,
- int32_t startPos,
- int32_t endPos,
- UVector32 &/*foundBreaks*/,
- UBool /* isPhraseBreaking */,
- UErrorCode &status) const {
- if (U_FAILURE(status)) return 0;
- utext_setNativeIndex(text, startPos);
- UChar32 c = utext_current32(text);
- while (static_cast<int32_t>(utext_getNativeIndex(text)) < endPos && fHandled->contains(c)) {
- utext_next32(text); // TODO: recast loop to work with post-increment operations.
- c = utext_current32(text);
- }
- return 0;
- }
- void
- UnhandledEngine::handleCharacter(UChar32 c) {
- if (fHandled == nullptr) {
- fHandled = new UnicodeSet();
- if (fHandled == nullptr) {
- return;
- }
- }
- if (!fHandled->contains(c)) {
- UErrorCode status = U_ZERO_ERROR;
- // Apply the entire script of the character.
- int32_t script = u_getIntPropertyValue(c, UCHAR_SCRIPT);
- fHandled->applyIntPropertyValue(UCHAR_SCRIPT, script, status);
- }
- }
- /*
- ******************************************************************
- */
- ICULanguageBreakFactory::ICULanguageBreakFactory(UErrorCode &/*status*/) {
- fEngines = nullptr;
- }
- ICULanguageBreakFactory::~ICULanguageBreakFactory() {
- delete fEngines;
- }
- void ICULanguageBreakFactory::ensureEngines(UErrorCode& status) {
- static UMutex gBreakEngineMutex;
- Mutex m(&gBreakEngineMutex);
- if (fEngines == nullptr) {
- LocalPointer<UStack> engines(new UStack(uprv_deleteUObject, nullptr, status), status);
- if (U_SUCCESS(status)) {
- fEngines = engines.orphan();
- }
- }
- }
- const LanguageBreakEngine *
- ICULanguageBreakFactory::getEngineFor(UChar32 c, const char* locale) {
- const LanguageBreakEngine *lbe = nullptr;
- UErrorCode status = U_ZERO_ERROR;
- ensureEngines(status);
- if (U_FAILURE(status) ) {
- // Note: no way to return error code to caller.
- return nullptr;
- }
- static UMutex gBreakEngineMutex;
- Mutex m(&gBreakEngineMutex);
- int32_t i = fEngines->size();
- while (--i >= 0) {
- lbe = static_cast<const LanguageBreakEngine*>(fEngines->elementAt(i));
- if (lbe != nullptr && lbe->handles(c, locale)) {
- return lbe;
- }
- }
- // We didn't find an engine. Create one.
- lbe = loadEngineFor(c, locale);
- if (lbe != nullptr) {
- fEngines->push((void *)lbe, status);
- }
- return U_SUCCESS(status) ? lbe : nullptr;
- }
- const LanguageBreakEngine *
- ICULanguageBreakFactory::loadEngineFor(UChar32 c, const char*) {
- UErrorCode status = U_ZERO_ERROR;
- UScriptCode code = uscript_getScript(c, &status);
- if (U_SUCCESS(status)) {
- const LanguageBreakEngine *engine = nullptr;
- // Try to use LSTM first
- const LSTMData *data = CreateLSTMDataForScript(code, status);
- if (U_SUCCESS(status)) {
- if (data != nullptr) {
- engine = CreateLSTMBreakEngine(code, data, status);
- if (U_SUCCESS(status) && engine != nullptr) {
- return engine;
- }
- if (engine != nullptr) {
- delete engine;
- engine = nullptr;
- } else {
- DeleteLSTMData(data);
- }
- }
- }
- status = U_ZERO_ERROR; // fallback to dictionary based
- DictionaryMatcher *m = loadDictionaryMatcherFor(code);
- if (m != nullptr) {
- switch(code) {
- case USCRIPT_THAI:
- engine = new ThaiBreakEngine(m, status);
- break;
- case USCRIPT_LAO:
- engine = new LaoBreakEngine(m, status);
- break;
- case USCRIPT_MYANMAR:
- engine = new BurmeseBreakEngine(m, status);
- break;
- case USCRIPT_KHMER:
- engine = new KhmerBreakEngine(m, status);
- break;
- #if !UCONFIG_NO_NORMALIZATION
- // CJK not available w/o normalization
- case USCRIPT_HANGUL:
- engine = new CjkBreakEngine(m, kKorean, status);
- break;
- // use same BreakEngine and dictionary for both Chinese and Japanese
- case USCRIPT_HIRAGANA:
- case USCRIPT_KATAKANA:
- case USCRIPT_HAN:
- engine = new CjkBreakEngine(m, kChineseJapanese, status);
- break;
- #if 0
- // TODO: Have to get some characters with script=common handled
- // by CjkBreakEngine (e.g. U+309B). Simply subjecting
- // them to CjkBreakEngine does not work. The engine has to
- // special-case them.
- case USCRIPT_COMMON:
- {
- UBlockCode block = ublock_getCode(code);
- if (block == UBLOCK_HIRAGANA || block == UBLOCK_KATAKANA)
- engine = new CjkBreakEngine(dict, kChineseJapanese, status);
- break;
- }
- #endif
- #endif
- default:
- break;
- }
- if (engine == nullptr) {
- delete m;
- }
- else if (U_FAILURE(status)) {
- delete engine;
- engine = nullptr;
- }
- return engine;
- }
- }
- return nullptr;
- }
- DictionaryMatcher *
- ICULanguageBreakFactory::loadDictionaryMatcherFor(UScriptCode script) {
- UErrorCode status = U_ZERO_ERROR;
- // open root from brkitr tree.
- UResourceBundle *b = ures_open(U_ICUDATA_BRKITR, "", &status);
- b = ures_getByKeyWithFallback(b, "dictionaries", b, &status);
- int32_t dictnlength = 0;
- const char16_t *dictfname =
- ures_getStringByKeyWithFallback(b, uscript_getShortName(script), &dictnlength, &status);
- if (U_FAILURE(status)) {
- ures_close(b);
- return nullptr;
- }
- CharString dictnbuf;
- CharString ext;
- const char16_t *extStart = u_memrchr(dictfname, 0x002e, dictnlength); // last dot
- if (extStart != nullptr) {
- int32_t len = static_cast<int32_t>(extStart - dictfname);
- ext.appendInvariantChars(UnicodeString(false, extStart + 1, dictnlength - len - 1), status);
- dictnlength = len;
- }
- dictnbuf.appendInvariantChars(UnicodeString(false, dictfname, dictnlength), status);
- ures_close(b);
- UDataMemory *file = udata_open(U_ICUDATA_BRKITR, ext.data(), dictnbuf.data(), &status);
- if (U_SUCCESS(status)) {
- // build trie
- const uint8_t* data = static_cast<const uint8_t*>(udata_getMemory(file));
- const int32_t* indexes = reinterpret_cast<const int32_t*>(data);
- const int32_t offset = indexes[DictionaryData::IX_STRING_TRIE_OFFSET];
- const int32_t trieType = indexes[DictionaryData::IX_TRIE_TYPE] & DictionaryData::TRIE_TYPE_MASK;
- DictionaryMatcher *m = nullptr;
- if (trieType == DictionaryData::TRIE_TYPE_BYTES) {
- const int32_t transform = indexes[DictionaryData::IX_TRANSFORM];
- const char* characters = reinterpret_cast<const char*>(data + offset);
- m = new BytesDictionaryMatcher(characters, transform, file);
- }
- else if (trieType == DictionaryData::TRIE_TYPE_UCHARS) {
- const char16_t* characters = reinterpret_cast<const char16_t*>(data + offset);
- m = new UCharsDictionaryMatcher(characters, file);
- }
- if (m == nullptr) {
- // no matcher exists to take ownership - either we are an invalid
- // type or memory allocation failed
- udata_close(file);
- }
- return m;
- } else if (dictfname != nullptr) {
- // we don't have a dictionary matcher.
- // returning nullptr here will cause us to fail to find a dictionary break engine, as expected
- status = U_ZERO_ERROR;
- return nullptr;
- }
- return nullptr;
- }
- void ICULanguageBreakFactory::addExternalEngine(
- ExternalBreakEngine* external, UErrorCode& status) {
- LocalPointer<ExternalBreakEngine> engine(external, status);
- ensureEngines(status);
- LocalPointer<BreakEngineWrapper> wrapper(
- new BreakEngineWrapper(engine.orphan(), status), status);
- static UMutex gBreakEngineMutex;
- Mutex m(&gBreakEngineMutex);
- fEngines->push(wrapper.getAlias(), status);
- wrapper.orphan();
- }
- BreakEngineWrapper::BreakEngineWrapper(
- ExternalBreakEngine* engine, UErrorCode &status) : delegate(engine, status) {
- }
- BreakEngineWrapper::~BreakEngineWrapper() {
- }
- UBool BreakEngineWrapper::handles(UChar32 c, const char* locale) const {
- return delegate->isFor(c, locale);
- }
- int32_t BreakEngineWrapper::findBreaks(
- UText *text,
- int32_t startPos,
- int32_t endPos,
- UVector32 &foundBreaks,
- UBool /* isPhraseBreaking */,
- UErrorCode &status) const {
- if (U_FAILURE(status)) return 0;
- int32_t result = 0;
- // Find the span of characters included in the set.
- // The span to break begins at the current position in the text, and
- // extends towards the start or end of the text, depending on 'reverse'.
- utext_setNativeIndex(text, startPos);
- int32_t start = static_cast<int32_t>(utext_getNativeIndex(text));
- int32_t current;
- int32_t rangeStart;
- int32_t rangeEnd;
- UChar32 c = utext_current32(text);
- while ((current = static_cast<int32_t>(utext_getNativeIndex(text))) < endPos && delegate->handles(c)) {
- utext_next32(text); // TODO: recast loop for postincrement
- c = utext_current32(text);
- }
- rangeStart = start;
- rangeEnd = current;
- int32_t beforeSize = foundBreaks.size();
- int32_t additionalCapacity = rangeEnd - rangeStart + 1;
- // enlarge to contains (rangeEnd-rangeStart+1) more items
- foundBreaks.ensureCapacity(beforeSize+additionalCapacity, status);
- if (U_FAILURE(status)) return 0;
- foundBreaks.setSize(beforeSize + beforeSize+additionalCapacity);
- result = delegate->fillBreaks(text, rangeStart, rangeEnd, foundBreaks.getBuffer()+beforeSize,
- additionalCapacity, status);
- if (U_FAILURE(status)) return 0;
- foundBreaks.setSize(beforeSize + result);
- utext_setNativeIndex(text, current);
- return result;
- }
- U_NAMESPACE_END
- #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
|