From f4ae3d5e0d00829a0882b3564d633c3d51fc0e3a Mon Sep 17 00:00:00 2001 From: Evgenii Zheltonozhskii Date: Fri, 19 Oct 2018 19:28:46 +0300 Subject: [PATCH] Replace mess with maps in lang_auto ( https://github.com/procxx/kepka/issues/196 ). Also fixes https://github.com/procxx/kepka/issues/59 --- CMakeLists.txt | 1 + .../SourceFiles/codegen/lang/generator.cpp | 68 ++++++++----------- 2 files changed, 31 insertions(+), 38 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d6fd36649..a4cbc8614 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,6 +87,7 @@ if(BUILD_DOC) endif() # set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") +# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -O1 -fno-omit-frame-pointer -g") add_subdirectory(Telegram) # clang-format diff --git a/Telegram/SourceFiles/codegen/lang/generator.cpp b/Telegram/SourceFiles/codegen/lang/generator.cpp index 9b2d8fb43..24cd1badb 100644 --- a/Telegram/SourceFiles/codegen/lang/generator.cpp +++ b/Telegram/SourceFiles/codegen/lang/generator.cpp @@ -200,8 +200,20 @@ QString GetOriginalValue(LangKey key);\n\ bool Generator::writeSource() { source_ = std::make_unique(basePath_ + ".cpp", project_); + source_->include("map", true); + source_->include("string", true); source_->include("lang/lang_keys.h").pushNamespace("Lang").pushNamespace().stream() << "\ -const char *KeyNames[kLangKeysCount] = {\n\ +const std::map KeyMap = {\n\ +\n"; + for (auto &entry : langpack_.entries) { + source_->stream() << "{\"" << entry.key << "\"," << getFullKey(entry) << "},\n"; + } + source_->stream() << "\ +\n\ +};\n\ +\n\ +const std::array KeyNames = {\n\ \n"; for (auto &entry : langpack_.entries) { source_->stream() << "\"" << entry.key << "\",\n"; @@ -251,54 +263,34 @@ int Offsets[] = {"; } writeOffset(); source_->stream() << " };\n"; + + source_->stream() << "\ +const std::map TagMap = {\n\ +\n"; + + for (auto &tag : langpack_.tags) { + source_->stream() << "{\"" << tag.tag << "\"," + << "lt_" << tag.tag << "},\n"; + } + source_->stream() << "\ +\n\ +};\n"; source_->popNamespace().stream() << "\ \n\ const char *GetKeyName(LangKey key) {\n\ - return (key < 0 || key >= kLangKeysCount) ? \"\" : KeyNames[key];\n\ + return (key < 0 || key >= kLangKeysCount) ? \"\" : KeyNames[key].c_str();\n\ }\n\ \n\ ushort GetTagIndex(QLatin1String tag) {\n\ - auto size = tag.size();\n\ - auto data = tag.data();\n"; - - auto tagsSet = std::set>(); - for (auto &tag : langpack_.tags) { - tagsSet.insert(tag.tag); - } - - writeSetSearch(tagsSet, [](const QString &tag) { return "lt_" + tag; }, "kTagsCount"); + auto data = tag.data();\n\ + return TagMap.find(data) != TagMap.end() ? TagMap.at(data) : kTagsCount;\n"; source_->stream() << "\ }\n\ \n\ LangKey GetKeyIndex(QLatin1String key) {\n\ - auto size = key.size();\n\ - auto data = key.data();\n"; - - auto taggedKeys = std::map(); - auto keysSet = std::set>(); - for (auto &entry : langpack_.entries) { - if (!entry.keyBase.isEmpty()) { - for (auto i = 0; i != kPluralPartCount; ++i) { - auto keyName = entry.keyBase + '#' + kPluralParts[i]; - taggedKeys.emplace(keyName, ComputePluralKey(entry.keyBase, i)); - keysSet.insert(keyName); - } - } else { - auto full = getFullKey(entry); - if (full != entry.key) { - taggedKeys.emplace(entry.key, full); - } - keysSet.insert(entry.key); - } - } - - writeSetSearch(keysSet, - [&taggedKeys](const QString &key) { - auto it = taggedKeys.find(key); - return (it != taggedKeys.end()) ? it->second : key; - }, - "kLangKeysCount"); + auto data = key.data();\n\ + return KeyMap.find(data) != KeyMap.end() ? KeyMap.at(data) : kLangKeysCount;\n"; source_->stream() << "\ }\n\