/* * Open Chinese Convert * * Copyright 2010-2021 Carbo Kuo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "DictGroup.hpp" #include "Lexicon.hpp" #include "TextDict.hpp" using namespace opencc; namespace { size_t GetKeyMaxLength(const std::list& dicts) { size_t keyMaxLength = 0; for (const DictPtr& dict : dicts) { keyMaxLength = (std::max)(keyMaxLength, dict->KeyMaxLength()); } return keyMaxLength; } } // namespace DictGroup::DictGroup(const std::list& _dicts) : keyMaxLength(GetKeyMaxLength(_dicts)), dicts(_dicts) {} DictGroup::~DictGroup() {} size_t DictGroup::KeyMaxLength() const { return keyMaxLength; } Optional DictGroup::Match(const char* word, size_t len) const { for (const auto& dict : dicts) { const Optional& prefix = dict->Match(word, len); if (!prefix.IsNull()) { return prefix; } } return Optional::Null(); } Optional DictGroup::MatchPrefix(const char* word, size_t len) const { for (const auto& dict : dicts) { const Optional& prefix = dict->MatchPrefix(word, len); if (!prefix.IsNull()) { return prefix; } } return Optional::Null(); } std::vector DictGroup::MatchAllPrefixes(const char* word, size_t len) const { std::map matched; // Match all prefixes from all dictionaries for (const auto& dict : dicts) { const std::vector& entries = dict->MatchAllPrefixes(word, len); for (const auto& entry : entries) { size_t entryLen = entry->KeyLength(); // If the current length has already result, skip if (matched.find(entryLen) == matched.end()) { matched[entryLen] = entry; } } } std::vector matchedEntries; for (auto i = matched.rbegin(); i != matched.rend(); i++) { matchedEntries.push_back(i->second); } return matchedEntries; } LexiconPtr DictGroup::GetLexicon() const { LexiconPtr allLexicon(new Lexicon); for (const auto& dict : dicts) { const auto& lexicon = dict->GetLexicon(); for (const std::unique_ptr& item : *lexicon) { allLexicon->Add(DictEntryFactory::New(item.get())); } } allLexicon->Sort(); // Fixme deduplicate return allLexicon; } DictGroupPtr DictGroup::NewFromDict(const Dict& dict) { TextDictPtr newDict = TextDict::NewFromDict(dict); return DictGroupPtr(new DictGroup(std::list{newDict})); }