diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /intl/icu/source/i18n/uni2name.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/icu/source/i18n/uni2name.cpp')
-rw-r--r-- | intl/icu/source/i18n/uni2name.cpp | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/intl/icu/source/i18n/uni2name.cpp b/intl/icu/source/i18n/uni2name.cpp new file mode 100644 index 000000000..44abbea25 --- /dev/null +++ b/intl/icu/source/i18n/uni2name.cpp @@ -0,0 +1,123 @@ +// Copyright (C) 2016 and later: Unicode, Inc. and others. +// License & terms of use: http://www.unicode.org/copyright.html +/* +********************************************************************** +* Copyright (C) 2001-2011, International Business Machines +* Corporation and others. All Rights Reserved. +********************************************************************** +* Date Name Description +* 06/06/01 aliu Creation. +********************************************************************** +*/ + +#include "unicode/utypes.h" + +#if !UCONFIG_NO_TRANSLITERATION + +#include "unicode/unifilt.h" +#include "unicode/uchar.h" +#include "unicode/utf16.h" +#include "uni2name.h" +#include "cstring.h" +#include "cmemory.h" +#include "uprops.h" + +U_NAMESPACE_BEGIN + +UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UnicodeNameTransliterator) + +static const UChar OPEN_DELIM[] = {92,78,123,0}; // "\N{" +static const UChar CLOSE_DELIM = 125; // "}" +#define OPEN_DELIM_LEN 3 + +/** + * Constructs a transliterator. + */ +UnicodeNameTransliterator::UnicodeNameTransliterator(UnicodeFilter* adoptedFilter) : + Transliterator(UNICODE_STRING("Any-Name", 8), adoptedFilter) { +} + +/** + * Destructor. + */ +UnicodeNameTransliterator::~UnicodeNameTransliterator() {} + +/** + * Copy constructor. + */ +UnicodeNameTransliterator::UnicodeNameTransliterator(const UnicodeNameTransliterator& o) : + Transliterator(o) {} + +/** + * Assignment operator. + */ +/*UnicodeNameTransliterator& UnicodeNameTransliterator::operator=( + const UnicodeNameTransliterator& o) { + Transliterator::operator=(o); + return *this; +}*/ + +/** + * Transliterator API. + */ +Transliterator* UnicodeNameTransliterator::clone(void) const { + return new UnicodeNameTransliterator(*this); +} + +/** + * Implements {@link Transliterator#handleTransliterate}. + * Ignore isIncremental since we don't need the context, and + * we work on codepoints. + */ +void UnicodeNameTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets, + UBool /*isIncremental*/) const { + // The failure mode, here and below, is to behave like Any-Null, + // if either there is no name data (max len == 0) or there is no + // memory (malloc() => NULL). + + int32_t maxLen = uprv_getMaxCharNameLength(); + if (maxLen == 0) { + offsets.start = offsets.limit; + return; + } + + // Accomodate the longest possible name plus padding + char* buf = (char*) uprv_malloc(maxLen); + if (buf == NULL) { + offsets.start = offsets.limit; + return; + } + + int32_t cursor = offsets.start; + int32_t limit = offsets.limit; + + UnicodeString str(FALSE, OPEN_DELIM, OPEN_DELIM_LEN); + UErrorCode status; + int32_t len; + + while (cursor < limit) { + UChar32 c = text.char32At(cursor); + int32_t clen = U16_LENGTH(c); + status = U_ZERO_ERROR; + if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) { + str.truncate(OPEN_DELIM_LEN); + str.append(UnicodeString(buf, len, US_INV)).append(CLOSE_DELIM); + text.handleReplaceBetween(cursor, cursor+clen, str); + len += OPEN_DELIM_LEN + 1; // adjust for delimiters + cursor += len; // advance cursor and adjust for new text + limit += len-clen; // change in length + } else { + cursor += clen; + } + } + + offsets.contextLimit += limit - offsets.limit; + offsets.limit = limit; + offsets.start = cursor; + + uprv_free(buf); +} + +U_NAMESPACE_END + +#endif /* #if !UCONFIG_NO_TRANSLITERATION */ |