/* Copyright: © SIL International. Description: This is an implementation of the LDML keyboard spec 3.0. Create Date: 7 Oct 2022 Authors: Steven R. Loomis */ #include "ldml_transforms.hpp" #include "debuglog.h" #include #include #include "kmx/kmx_xstring.h" #ifndef assert #define assert(x) // TODO-LDML #endif namespace km { namespace kbp { namespace ldml { /** * \def KMXPLUS_DEBUG_TRANSFORM * define KMXPLUS_DEBUG_TRANSFORM=1 to enable verbose processing of transforms/reorders * The default is 0, which only notes initialization and exceptional cases */ #ifndef KMXPLUS_DEBUG_TRANSFORM #define KMXPLUS_DEBUG_TRANSFORM 0 #endif #if KMXPLUS_DEBUG_TRANSFORM #define DebugTran(msg, ...) DebugLog(msg, ##__VA_ARGS__) #else #define DebugTran(msg, ...) #endif element::element(const SimpleUSet &new_u, KMX_DWORD new_flags) : chr(), uset(new_u), flags((new_flags & ~LDML_ELEM_FLAGS_TYPE) | LDML_ELEM_FLAGS_TYPE_USET) { } element::element(km_core_usv ch, KMX_DWORD new_flags) : chr(ch), uset(), flags((new_flags & ~LDML_ELEM_FLAGS_TYPE) | LDML_ELEM_FLAGS_TYPE_CHAR) { } bool element::is_uset() const { return (flags & LDML_ELEM_FLAGS_TYPE) == LDML_ELEM_FLAGS_TYPE_USET; } signed char element::get_order() const { unsigned char uorder = ((flags & LDML_ELEM_FLAGS_ORDER_MASK) >> LDML_ELEM_FLAGS_ORDER_BITSHIFT); return (signed char)uorder; } signed char element::get_tertiary() const { unsigned char uorder = ((flags & LDML_ELEM_FLAGS_TERTIARY_MASK) >> LDML_ELEM_FLAGS_TERTIARY_BITSHIFT); return (signed char)uorder; } bool element::is_prebase() const { return !!(flags & LDML_ELEM_FLAGS_PREBASE); } bool element::is_tertiary_base() const { return !!(flags & LDML_ELEM_FLAGS_TERTIARY_BASE); } KMX_DWORD element::get_flags() const { return flags; } bool element::matches(km_core_usv ch) const { if (is_uset()) { return uset.contains(ch); } else { return chr == ch; } } void element::dump() const { if (is_uset()) { DebugLog("element order=%d USET", (int)get_order()); uset.dump(); } else { DebugLog("element order=%d U+%04X", (int)get_order(), (int)chr); } } int reorder_sort_key::compare(const reorder_sort_key &other) const { int primaryResult = (int)primary - (int)other.primary; int secondaryResult = (int)secondary - (int)other.secondary; int tertiaryResult = (int)tertiary - (int)other.tertiary; int quaternaryResult = (int)quaternary - (int)other.quaternary; if (primaryResult) { return primaryResult; } else if (secondaryResult) { return secondaryResult; } else if (tertiaryResult) { return tertiaryResult; } else if (quaternaryResult) { return quaternaryResult; } else { // We don't expect to get here. quaternaryResult is the string index, which // should be unequal. assert(quaternaryResult); // We have the underlying character, so use the binary order as a tiebreaker. int identityResult = (int)ch - (int)other.ch; // tie breaker return identityResult; } } bool reorder_sort_key::operator<(const reorder_sort_key &other) const { return (compare(other) < 0); } bool reorder_sort_key::operator>(const reorder_sort_key &other) const { return (compare(other) > 0); } std::deque reorder_sort_key::from(const std::u32string &str) { // construct a 'baseline' sort key, that is, in the absence of // any match rules. std::deque keylist; auto s = str.begin(); // str iterator size_t c = 0; // str index for (auto e = str.begin(); e < str.end(); e++, s++, c++) { // primary weight: 0 // seconary weight: c (the string index) // tertiary weight: 0 // quaternary weight: c (the index again) keylist.emplace_back(reorder_sort_key{*s, 0, c, 0, c}); } return keylist; } void reorder_sort_key::dump() const { // for debugging… DebugLog("- U+%04X\t(%d, %d, %d, %d)", ch, (int)primary, (int)secondary, (int)tertiary, (int)quaternary); } size_t element_list::match_end(const std::u32string &str) const { if (str.size() < size()) { // input string too short, can't possibly match. // This assumes each element is a single char, no string elements. return 0; } // s: iterate from end to front of string // For example, if str = 'abcd', we try to match 'd', then 'c', then 'b', then 'a' // starting with the end of the element list. auto s = str.rbegin(); // e: end to front on elements. // we know the # of elements is <= length of string, // so we don't need to check the string's boundaries for (auto e = rbegin(); e < rend(); e++) { assert(s < str.rend()); // double check if (!e->matches(*s)) { // break out if this element doesn't match return 0; } s++; } return size(); // match size = element size } bool element_list::load(const kmx::kmx_plus &kplus, kmx::KMXPLUS_ELEM id) { KMX_DWORD elementsLength; auto elements = kplus.elem->getElementList(id, elementsLength); // pointer to beginning of element list assert((elementsLength == 0) || (elements != nullptr)); // it could be a 0-length list for (size_t i = 0; i & element_list::update_sort_key(size_t offset, std::deque &key) const { /** string index */ size_t c = 0; for (auto e = begin(); e < end(); e++, c++) { /** update this key */ auto &k = key.at(offset + c); // we double check that the character matches. otherwise something // has really gone awry, because we shouldn't be here if this element list doesn't apply. if (!e->matches(k.ch)) { DebugLog("!! Internal Error: updateSortKey(%d+%d): element did not re-match the sortkey", offset, c); k.dump(); // TODO-LDML: assertion follows assert(e->matches(k.ch)); // double check that this element matches } // we only update primary and tertiary weights k.primary = e->get_order(); // TODO-LDML: need more detailed tertiary work k.tertiary = e->get_tertiary(); #if KMXPLUS_DEBUG_TRANSFORM DebugTran("Updating at +%d", c); k.dump(); #endif } return key; } void element_list::dump() const { DebugLog("element_list[%d]", size()); for (const auto &e : *this) { e.dump(); } } reorder_entry::reorder_entry(const element_list &new_elements) : elements(new_elements), before() { } reorder_entry::reorder_entry(const element_list &new_elements, const element_list &new_before) : elements(new_elements), before(new_before) { } size_t reorder_entry::match_end(std::u32string &str, size_t offset, size_t len) const { auto substr = str.substr(offset, len); // first, see if the elements match. If not, this entry doesn't apply size_t match_len = elements.match_end(substr); if (match_len == 0) { return 0; } // Now we need to check if there is a "before=" element string that // is also a precondition. if (!before.empty()) { // does not match before offset std::u32string prefix = substr.substr(0, substr.size() - match_len); // make sure the 'before' is present if (before.match_end(prefix) == 0) { return 0; // break out. } } return match_len; } bool reorder_group::apply(std::u32string &str) const { /** did we apply anything */ bool applied = false; /** did we match anything */ bool some_match = false; // get a baseline sort key auto sort_keys = reorder_sort_key::from(str); // apply ALL reorders in the group. for (const auto &r : list) { // work backward from end of string forward // That is, see if "abc" matches "abc" or "ab" or "a" for (size_t s = str.size(); s > 0; s--) { size_t submatch = r.match_end(str, 0, s); if (submatch != 0) { #if KMXPLUS_DEBUG_TRANSFORM DebugTran("Matched: %S (off=%d, len=%d)", str.c_str(), 0, s); r.elements.dump(); #endif // update the sort key size_t sub_match_start = s - submatch; r.elements.update_sort_key(sub_match_start, sort_keys); some_match = true; // record that there was a match } } } if (!some_match) { // get out if nothing matched. // the sortkey won't be "interesting", and the sort // will be a no-op. DebugTran("Skip: No reorder elements matched."); return false; // nothing matched, so no work. } #if KMXPLUS_DEBUG_TRANSFORM DebugTran("Updated sortkey"); for (const auto &r : sort_keys) { r.dump(); } #endif // TODO-LDML: for now, assume matches entire string. // A needed optimization here would be to detect a common substring // at the end of the old and new strings, and keep the match_len // minimal. This reduces thrash in core's context. size_t match_len = str.size(); // 'prefix' is the unmatched string before the match // TODO-LDML: right now, this is empty. std::u32string prefix = str; prefix.resize(str.size() - match_len); // just the part before the matched part. // Now, we need to actually do the sorting, but we must only sort // 'runs' beginning with 0-weight keys. // Consider the 'roast' example in the spec, you might end up with the following: // codepoint (pri, sec, ter, quat) // U+1A21 (0, 0, 0, 0) // U+1A60 (127, 1, 0, 1) // U+1A45 (0, 2, 0, 2) // U+1A6B (42, 3, 0, 3) // U+1A76 (55, 4, 0, 4) // This example happens to be in order, but must be sorted in two diferent ranges, // with secondary (index) values of [0,1] and [2,4] // // Another example might look like the following: // U+1A21 (0, 0, 0, 0) // U+1A6B (42, 1, 0, 1) // U+1A76 (55, 2, 0, 2) // U+1A60 (10, 3, 0, 3) // U+1A45 (10, 4, 0, 3) // Here there is only a single range to sort [0,4] /** pointer to the beginning of the current run. */ std::deque::iterator run_start = sort_keys.begin(); for(auto e = run_start; e != sort_keys.end(); e++) { if ((e->primary == 0) && (e != run_start)) { // it's a base auto run_end = e - 1; DebugTran("Sorting subrange quaternary=[%d..]", run_start->quaternary); std::sort(run_start, run_end); // reversed because it's a reverse iterator…? // move the start run_start = e; // next run starts here } } // sort the last run in the string as well. if (run_start != sort_keys.end()) { // TODO-LDML: skip if a single-char run DebugTran("Sorting final subrange quaternary=[%d..]", run_start->quaternary); std::sort(run_start, sort_keys.end()); // reversed because it's a reverse iterator…? } // recombine into a string by pulling out the 'ch' value // that's in each sortkey element. std::u32string newSuffix; size_t q = sort_keys.begin()->quaternary; // start with the first quaternary for (auto e = sort_keys.begin(); e < sort_keys.end(); e++, q++) { if (q != e->quaternary) { // something rearranged in this subrange, because the quaternary values are out of order. applied = true; } // collect the characters newSuffix.append(1, e->ch); } if (applied) { str.resize(prefix.size()); str.append(newSuffix); } else { DebugTran("Skip: sorting caused no reordering"); } #if KMXPLUS_DEBUG_TRANSFORM DebugTran("Sorted sortkey"); for (const auto &r : sort_keys) { r.dump(); } #endif return applied; } transform_entry::transform_entry(const transform_entry &other) : fFrom(other.fFrom), fTo(other.fTo), fFromPattern(nullptr), fMapFromStrId(other.fMapFromStrId), fMapToStrId(other.fMapToStrId), fMapFromList(other.fMapFromList), fMapToList(other.fMapToList) { if (other.fFromPattern) { // clone pattern fFromPattern.reset(other.fFromPattern->clone()); } } transform_entry::transform_entry(const std::u32string &from, const std::u32string &to) : fFrom(from), fTo(to), fFromPattern(nullptr), fMapFromStrId(), fMapToStrId(), fMapFromList(), fMapToList() { assert(!fFrom.empty()); // TODO-LDML: should not happen? init(); } // TODO-LDML: How do we return errors from here? transform_entry::transform_entry( const std::u32string &from, const std::u32string &to, KMX_DWORD mapFrom, KMX_DWORD mapTo, const kmx::kmx_plus &kplus) : fFrom(from), fTo(to), fFromPattern(nullptr), fMapFromStrId(mapFrom), fMapToStrId(mapTo) { assert(!fFrom.empty()); // TODO-LDML: should not happen? assert((fMapFromStrId == 0) == (fMapToStrId == 0)); // we have both or we have neither. assert(kplus.strs != nullptr); assert(kplus.vars != nullptr); assert(kplus.elem != nullptr); init(); // setup mapFrom if (fMapFromStrId != 0) { // Note: if we need the variable name it is available as follows, // but isn't needed for normal processing. Could be useful for debug messages. // auto mapFrom = kplus.strs->get(fMapFromStrId); // auto mapTo = kplus.strs->get(fMapToStrId); // get the vars auto *fromVar = kplus.vars->findByStringId(fMapFromStrId); auto *toVar = kplus.vars->findByStringId(fMapToStrId); assert(fromVar != nullptr); assert(toVar != nullptr); // get the element lists assert(fromVar->type == LDML_VARS_ENTRY_TYPE_SET); assert(toVar->type == LDML_VARS_ENTRY_TYPE_SET); KMX_DWORD fromLength, toLength; auto *fromList = kplus.elem->getElementList(fromVar->elem, fromLength); auto *toList = kplus.elem->getElementList(toVar->elem, toLength); assert(fromLength == toLength); assert(fromList != nullptr); assert(toList != nullptr); // populate the deques from the lists fMapFromList = fromList->loadAsStringList(fromLength, *(kplus.strs)); fMapToList = toList->loadAsStringList(toLength, *(kplus.strs)); // did we get the expected items? assert(fMapFromList.size() == fromLength); assert(fMapToList.size() == toLength); } } void transform_entry::init() { if (!fFrom.empty()) { // TODO-LDML: if we have mapFrom, may need to do other processing. const std::u16string patstr = km::kbp::kmx::u32string_to_u16string(fFrom); UErrorCode status = U_ZERO_ERROR; /* const */ icu::UnicodeString patustr_raw = icu::UnicodeString(patstr.data(), (int32_t)patstr.length()); // add '$' to match to end patustr_raw.append(u'$'); icu::UnicodeString patustr; const icu::Normalizer2 *nfd = icu::Normalizer2::getNFDInstance(status); // NFD normalize on pattern creation nfd->normalize(patustr_raw, patustr, status); fFromPattern.reset(icu::RegexPattern::compile(patustr, 0, status)); UASSERT_SUCCESS(status); } } size_t transform_entry::apply(const std::u32string &input, std::u32string &output) const { assert(fFromPattern); // TODO-LDML: Really? can't go from u32 to UnicodeString? // TODO-LDML: Also, we could cache the u16 string at the transformGroup level or higher. UErrorCode status = U_ZERO_ERROR; const std::u16string matchstr = km::kbp::kmx::u32string_to_u16string(input); icu::UnicodeString matchustr = icu::UnicodeString(matchstr.data(), (int32_t)matchstr.length()); // TODO-LDML: create a new Matcher every time. These could be cached and reset. std::unique_ptr matcher(fFromPattern->matcher(matchustr, status)); UASSERT_SUCCESS(status); if (!matcher->find(status)) { // i.e. matches somewhere, in this case at end of str return 0; // no match } // TODO-LDML: this is UTF-16 len, not UTF-32 len!! // TODO-LDML: if we had an underlying UText this would be simpler. int32_t matchStart = matcher->start(status); int32_t matchEnd = matcher->end(status); UASSERT_SUCCESS(status); // extract.. const icu::UnicodeString substr = matchustr.tempSubStringBetween(matchStart, matchEnd); // preflight to UTF-32 to get length UErrorCode substrStatus = U_ZERO_ERROR; // throwaway status // we need the UTF-32 matchLen for our return. auto matchLen = substr.toUTF32(nullptr, 0, substrStatus); // should have matched something. assert(matchLen > 0); // now, do the replace. /** this is the 'to' or other replacement string.*/ icu::UnicodeString rustr; if (fMapFromStrId == 0) { // Normal case: not a map. // This replace will apply $1, $2 etc. // Convert the fTo into u16 TODO-LDML (we could cache this?) const std::u16string rstr = km::kbp::kmx::u32string_to_u16string(fTo); rustr = icu::UnicodeString(rstr.data(), (int32_t)rstr.length()); } else { // Set map case: mapping from/to // we actually need the group(1) string here. // this is only the content in parenthesis () icu::UnicodeString group1 = matcher->group(1, status); UASSERT_SUCCESS(status); // TODO-LDML: could be a malformed from pattern // now, how long is group1 in UTF-32, hmm? UErrorCode preflightStatus = U_ZERO_ERROR; // throwaway status auto group1Len = group1.toUTF32(nullptr, 0, preflightStatus); char32_t *s = new char32_t[group1Len + 1]; assert(s != nullptr); // TODO-LDML: OOM // convert substr.toUTF32((UChar32 *)s, group1Len + 1, status); UASSERT_SUCCESS(status); std::u32string match32(s, group1Len); // taken from just group1 // clean up buffer delete [] s; // Now we're ready to do the actual mapping. // 1., we need to find the index in the source set. auto matchIndex = findIndexFrom(match32); assert(matchIndex != -1L); // TODO-LDML: not matching shouldn't happen, the regex wouldn't have matched. // we already asserted on load that the from and to sets have the same cardinality. // 2. get the target string, convert to utf-16 // we use the same matchIndex that was just found const std::u16string rstr = km::kbp::kmx::u32string_to_u16string(fMapToList.at(matchIndex)); // 3. update the UnicodeString for replacement rustr = icu::UnicodeString(rstr.data(), (int32_t)rstr.length()); // and we return to the regular code flow. } const icu::Normalizer2 *nfd = icu::Normalizer2::getNFDInstance(status); icu::UnicodeString rustr2; nfd->normalize(rustr, rustr2, status); UASSERT_SUCCESS(status); // here we replace the match output. icu::UnicodeString entireOutput = matcher->replaceFirst(rustr2, status); UASSERT_SUCCESS(status); // TODO-LDML: could fail here due to bad input (syntax err) // entireOutput includes all of 'input', but modified. Need to substring it. icu::UnicodeString outu_raw = entireOutput.tempSubString(matchStart); // normalize the replaced string icu::UnicodeString outu; nfd->normalize(outu_raw, outu, status); UASSERT_SUCCESS(status); // Special case if there's no output, save some allocs if (outu.length() == 0) { output.clear(); } else { // TODO-LDML: All we are trying to do is to extract the output string. Probably too many steps. UErrorCode preflightStatus = U_ZERO_ERROR; // calculate how big the buffer is auto out32len = outu.toUTF32(nullptr, 0, preflightStatus); // preflightStatus will be an err, because we know the buffer overruns zero bytes // allocate char32_t *s = new char32_t[out32len + 1]; assert(s != nullptr); // convert outu.toUTF32((UChar32 *)s, out32len + 1, status); UASSERT_SUCCESS(status); output.assign(s, out32len); // now, build a u32string std::u32string out32(s, out32len); // clean up buffer delete [] s; } return matchLen; } int32_t transform_entry::findIndexFrom(const std::u32string &match) const { return findIndex(match, fMapFromList); } int32_t transform_entry::findIndex(const std::u32string &match, const std::deque list) { int32_t index = 0; for(auto e = list.begin(); e < list.end(); e++, index++) { if (match == *e) { return index; } } return -1; // not found } any_group::any_group(const transform_group &g) : type(any_group_type::transform), transform(g), reorder() { } any_group::any_group(const reorder_group &g) : type(any_group_type::reorder), transform(), reorder(g) { } transforms::transforms() : transform_groups() { } void transforms::addGroup(const transform_group &s) { transform_groups.emplace_back(s); } void transforms::addGroup(const reorder_group &s) { transform_groups.emplace_back(s); } transform_group::transform_group() { } /** * return the first transform match in this group */ size_t transform_group::apply(const std::u32string &input, std::u32string &output) const { size_t subMatched = 0; for (auto transform = begin(); (subMatched == 0) && (transform < end()); transform++) { // TODO-LDML: non regex implementation // is the match area too short? subMatched = transform->apply(input, output); if (subMatched != 0) { return subMatched; // matched. break out. } } return 0; // no match } /** * Apply this entire transform set to the input. * Example: input "abc" -> output="xyz", return=2: replace last two chars "bc" with "xyz", so final output = "abxyz"; * @param input input string, will match at end: unmodified * @param output on output: if return>0, contains text to replace * @return match length: number of chars at end of input string to modify. 0 if no match. */ size_t transforms::apply(const std::u32string &input, std::u32string &output) { /** * Example: * Group0: za -> c, a -> bb * Group1: bb -> ccc * Group2: cc -> d * Group3: tcd -> e * * Initial condition: matched = subMatched = 0. updatedInput = input = 'ta', output = '' * * Group0: matches 'a', subMatched=1, output='bb', updatedInput='tbb', matched=1 * Initial match. subMatched=1 which is > the previous output.length, * so matched += (1-0) == 1 * * Group1: matches 'bb', subMatched=2, output='ccc', updatedInput='tccc', matched=1 * Although the transform group matched 2 chars ('bb'), the match in the original is 1 * This time subMatched=2 but previous output.length was 2, so matched remains at 1 * In other words, we didn't match outside of the existing match boundary. * * Group2: matches 'cc', subMatched=2, output='cd', updatedInput='tcd', matched=1 * subMatched <= previous output.length, so no change to mathed * * Group3: matches 'tcd', subMatched=3, output='e', updatedInput='e', matched=2 * Now subMatched=3, but previous output ('cd').length is only 2. * In other words, we matched before the previous output's start - we matched the 't' also * or this reason, matched+=(3-2) == 1. So matched is now 2. */ /** * Accumulate the maximum matched size of the end of 'input' here. * It will be replaced with 'output'. * Matched can increment. */ size_t matched = 0; /** modified copy of input */ std::u32string updatedInput = input; for (auto group = transform_groups.begin(); group < transform_groups.end(); group++) { // for each transform group // break out once there's a match // TODO-LDML: reorders // Assume it's a non reorder group /** Length of match within this group*/ // find the first match in this group (if present) // TODO-LDML: check if reorder if (group->type == any_group_type::transform) { std::u32string subOutput; size_t subMatched = group->transform.apply(updatedInput, subOutput); if (subMatched != 0) { // remove the matched part of the updatedInput updatedInput.resize(updatedInput.length() - subMatched); // chop of the subMatched part at end updatedInput.append(subOutput); // subOutput could be empty such as in backspace transform if (subMatched > output.size()) { // including first time through // expand match by amount subMatched prior to output matched += (subMatched - output.size()); } // else: didn't match prior to the existing output, so don't expand 'match' // now update 'output' if (subOutput.length() >= output.length() || subMatched > output.length()) { output = subOutput; // replace all output } else { // replace output with new output output.resize(output.length() - subMatched); output.append(subOutput); } } } else if (group->type == any_group_type::reorder) { // TODO-LDML: cheesy solution. We should be finding a smaller // common match here. std::u32string str2 = updatedInput; if (group->reorder.apply(str2)) { // pretend the whole thing matched output.resize(0); output.append(str2); updatedInput.resize(0); updatedInput.append(str2); matched = output.length(); } } // else: continue to next group } /** * TODO-LDML: optimization to contract 'matched' if possible. * We could decrement 'matched' for every char of output * which is already in input. Example (regex example): * - str = "xxyyzz"; * - s/zz$/z/ -> match=2, output='z' * - s/z$/zz/ -> match=2, output='zz' * (but could contract to match=0, output='' as already present) * - s/zz$/zw/ -> match=2, output='zw' * (but could contract to match=1, output='w') * * could also handle from="x" to="x" as match=0 */ return matched; } bool transforms::apply(std::u32string &str) { // simple implementation for tests std::u32string output; size_t matchLength = apply(str, output); if (matchLength == 0) { return false; } str.resize(str.size() - matchLength); str.append(output); return true; } transforms * transforms::load( const kmx::kmx_plus &kplus, const kbp::kmx::COMP_KMXPLUS_TRAN *tran, const kbp::kmx::COMP_KMXPLUS_TRAN_Helper &tranHelper) { if (tran == nullptr) { DebugLog("for tran: tran is null"); assert(false); return nullptr; } if (!tranHelper.valid()) { DebugLog("for tran: tranHelper is invalid"); assert(false); return nullptr; } if (nullptr == kplus.elem) { DebugLog("for tran: kplus.elem == nullptr"); assert(false); return nullptr; } if (nullptr == kplus.strs) { DebugLog("for tran: kplus.strs == nullptr"); // need a string table to get strings assert(false); return nullptr; } if (nullptr == kplus.vars) { DebugLog("for tran: kplus.vars == nullptr"); // need a vars table to get maps assert(false); return nullptr; } // with that out of the way, let's set it up transforms *transforms = new ldml::transforms(); for (KMX_DWORD groupNumber = 0; groupNumber < tran->groupCount; groupNumber++) { const kmx::COMP_KMXPLUS_TRAN_GROUP *group = tranHelper.getGroup(groupNumber); // C++20 returns a reference here // auto &newGroup = allGroups->emplace_back(); if (group->type == LDML_TRAN_GROUP_TYPE_TRANSFORM) { transform_group newGroup; for (KMX_DWORD itemNumber = 0; itemNumber < group->count; itemNumber++) { const kmx::COMP_KMXPLUS_TRAN_TRANSFORM *element = tranHelper.getTransform(group->index + itemNumber); const std::u32string fromStr = kmx::u16string_to_u32string(kplus.strs->get(element->from)); const std::u32string toStr = kmx::u16string_to_u32string(kplus.strs->get(element->to)); KMX_DWORD mapFrom = element->mapFrom; // copy, because of alignment KMX_DWORD mapTo = element->mapTo; // copy, because of alignment newGroup.emplace_back(fromStr, toStr, mapFrom, mapTo, kplus); // creating a transform_entry } transforms->addGroup(newGroup); } else if (group->type == LDML_TRAN_GROUP_TYPE_REORDER) { reorder_group newGroup; // fetch each reorder in the group for (KMX_DWORD itemNumber = 0; itemNumber < group->count; itemNumber++) { const kmx::COMP_KMXPLUS_TRAN_REORDER *reorder = tranHelper.getReorder(group->index + itemNumber); element_list elements; element_list before; bool load_ok = elements.load(kplus, reorder->elements) && before.load(kplus, reorder->before); assert(load_ok); if (load_ok) { newGroup.list.emplace_back(elements, before); } else { DebugLog("reorder elements(%d+%d) failed to load", group->index, itemNumber); return nullptr; } } transforms->addGroup(newGroup); } else { // internal error - some other type - should have been caught by validation DebugLog("ERROR: some other type"); assert(false); return nullptr; } } return transforms; } // string manipulation bool normalize_nfd(std::u32string &str) { std::u16string rstr = km::kbp::kmx::u32string_to_u16string(str); if(!normalize_nfd(rstr)) { return false; } else { str = km::kbp::kmx::u16string_to_u32string(rstr); return true; } } bool normalize_nfd(std::u16string &str) { UErrorCode status = U_ZERO_ERROR; const icu::Normalizer2 *nfd = icu::Normalizer2::getNFDInstance(status); UASSERT_SUCCESS(status); if (U_FAILURE(status)) return false; // exit early since normalizer pointer could be nullptr icu::UnicodeString dest; icu::UnicodeString src = icu::UnicodeString(str.data(), (int32_t)str.length()); nfd->normalize(src, dest, status); UASSERT_SUCCESS(status); str.assign(dest.getBuffer(), dest.length()); return U_SUCCESS(status); } bool normalize_nfc(std::u32string &str) { std::u16string rstr = km::kbp::kmx::u32string_to_u16string(str); if(!normalize_nfc(rstr)) { return false; } else { str = km::kbp::kmx::u16string_to_u32string(rstr); return true; } } bool normalize_nfc(std::u16string &str) { UErrorCode status = U_ZERO_ERROR; const icu::Normalizer2 *nfc = icu::Normalizer2::getNFCInstance(status); UASSERT_SUCCESS(status); if (U_FAILURE(status)) return false; // exit early since normalizer pointer could be nullptr icu::UnicodeString dest; icu::UnicodeString src = icu::UnicodeString(str.data(), (int32_t)str.length()); nfc->normalize(src, dest, status); UASSERT_SUCCESS(status); str.assign(dest.getBuffer(), dest.length()); return U_SUCCESS(status); } } // namespace ldml } // namespace kbp } // namespace km