From 0ddaf9a46cd136117cc7193559783896ad3e2879 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Wed, 25 Mar 2015 11:53:48 +0300 Subject: [PATCH] Review fixes --- drape/texture_manager.cpp | 128 +++++++++++++--------------- drape/texture_manager.hpp | 34 ++++++-- drape/utils/glyph_usage_tracker.cpp | 32 ++----- drape/utils/glyph_usage_tracker.hpp | 6 +- 4 files changed, 98 insertions(+), 102 deletions(-) diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index 15523bd96a..e6642e1765 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -25,6 +25,21 @@ size_t const INVALID_GLYPH_GROUP = numeric_limits::max(); // number of glyphs (since 0) which will be in each texture size_t const DUPLICATED_GLYPHS_COUNT = 128; +namespace +{ + void MultilineTextToUniString(TextureManager::TMultilineText const & text, strings::UniString & outString) + { + size_t cnt = 0; + for (strings::UniString const & str : text) + cnt += str.size(); + + outString.clear(); + outString.reserve(cnt); + for (strings::UniString const & str : text) + outString.append(str.begin(), str.end()); + } +} + TextureManager::TextureManager() : m_maxTextureSize(0) , m_maxGlypsCount(0) @@ -117,17 +132,14 @@ void TextureManager::UpdateDynamicTextures() m_colorTexture->UpdateState(); m_stipplePenTexture->UpdateState(); - for_each(m_glyphGroups.begin(), m_glyphGroups.end(), [](GlyphGroup & g) - { - if (!g.m_texture.IsNull()) - g.m_texture->UpdateState(); - }); - for_each(m_hybridGlyphGroups.begin(), m_hybridGlyphGroups.end(), [](HybridGlyphGroup & g) - { + for (GlyphGroup & g : m_glyphGroups) + if (!g.m_texture.IsNull()) + g.m_texture->UpdateState(); + + for (HybridGlyphGroup & g : m_hybridGlyphGroups) if (!g.m_texture.IsNull()) g.m_texture->UpdateState(); - }); } MasterPointer TextureManager::AllocateGlyphTexture() const @@ -158,9 +170,9 @@ size_t TextureManager::FindGlyphsGroup(strings::UniChar const & c) const return distance(m_glyphGroups.begin(), iter); } -size_t TextureManager::FindGlyphsGroup(strings::UniString const & text, size_t const defaultGroup) const +size_t TextureManager::FindGlyphsGroup(strings::UniString const & text) const { - size_t groupIndex = defaultGroup; + size_t groupIndex = INVALID_GLYPH_GROUP; for (strings::UniChar const & c : text) { // skip glyphs which can be duplicated @@ -199,29 +211,10 @@ size_t TextureManager::FindGlyphsGroup(strings::UniString const & text, size_t c size_t TextureManager::FindGlyphsGroup(TMultilineText const & text) const { - size_t groupIndex = INVALID_GLYPH_GROUP; - for (strings::UniString const & str : text) - { - size_t currentIndex = FindGlyphsGroup(str, groupIndex); - if (currentIndex == INVALID_GLYPH_GROUP) - return INVALID_GLYPH_GROUP; + strings::UniString combinedString; + MultilineTextToUniString(text, combinedString); - if (groupIndex == INVALID_GLYPH_GROUP) - groupIndex = currentIndex; - else if (groupIndex != currentIndex) - return INVALID_GLYPH_GROUP; - } - - return groupIndex; -} - -bool TextureManager::CheckHybridGroup(strings::UniString const & text, HybridGlyphGroup const & group) const -{ - for (strings::UniChar const & c : text) - if (group.m_glyphs.find(c) == group.m_glyphs.end()) - return false; - - return true; + return FindGlyphsGroup(combinedString); } size_t TextureManager::GetNumberOfUnfoundCharacters(strings::UniString const & text, HybridGlyphGroup const & group) const @@ -255,30 +248,22 @@ size_t TextureManager::FindHybridGlyphsGroup(strings::UniString const & text) // looking for a hybrid texture which contains text entirely for (size_t i = 0; i < m_hybridGlyphGroups.size() - 1; i++) - if (CheckHybridGroup(text, m_hybridGlyphGroups[i])) + if (GetNumberOfUnfoundCharacters(text, m_hybridGlyphGroups[i]) == 0) return i; // check if we can contain text in the last hybrid texture size_t const unfoundChars = GetNumberOfUnfoundCharacters(text, m_hybridGlyphGroups.back()); size_t const newCharsCount = m_hybridGlyphGroups.back().m_glyphs.size() + unfoundChars; - if (newCharsCount < m_maxGlypsCount) - return m_hybridGlyphGroups.size() - 1; + if (newCharsCount >= m_maxGlypsCount) + m_hybridGlyphGroups.push_back(HybridGlyphGroup()); - // nothing helps insert new hybrid group - m_hybridGlyphGroups.push_back(HybridGlyphGroup()); return m_hybridGlyphGroups.size() - 1; } size_t TextureManager::FindHybridGlyphsGroup(TMultilineText const & text) { - size_t cnt = 0; - for (strings::UniString const & str : text) - cnt += str.size(); - strings::UniString combinedString; - combinedString.reserve(cnt); - for (strings::UniString const & str : text) - combinedString.append(str.begin(), str.end()); + MultilineTextToUniString(text, combinedString); return FindHybridGlyphsGroup(combinedString); } @@ -352,53 +337,54 @@ void TextureManager::GetColorRegion(Color const & color, ColorRegion & region) GetRegionBase(m_colorTexture.GetRefPointer(), region, ColorKey(color)); } -void TextureManager::GetGlyphRegions(TMultilineText const & text, - TMultilineGlyphsBuffer & buffers) +void TextureManager::GetGlyphRegions(TMultilineText const & text, TMultilineGlyphsBuffer & buffers) { - size_t groupIndex = FindGlyphsGroup(text); - - buffers.resize(text.size()); - ASSERT_EQUAL(buffers.size(), text.size(), ()); - if (groupIndex != INVALID_GLYPH_GROUP) + auto cb = [this](TMultilineText const & text, TMultilineGlyphsBuffer & buffers, GlyphGroup & group) { + buffers.resize(text.size()); for (size_t i = 0; i < text.size(); ++i) { strings::UniString const & str = text[i]; TGlyphsBuffer & buffer = buffers[i]; - FillResultBuffer(str, m_glyphGroups[groupIndex], buffer); + FillResultBuffer(str, group, buffer); } - } - else - { - size_t hybridGroupIndex = FindHybridGlyphsGroup(text); - ASSERT(hybridGroupIndex != INVALID_GLYPH_GROUP, ("")); + }; + auto hypridCb = [this](TMultilineText const & text, TMultilineGlyphsBuffer & buffers, HybridGlyphGroup & group) + { + buffers.resize(text.size()); for (size_t i = 0; i < text.size(); ++i) { strings::UniString const & str = text[i]; TGlyphsBuffer & buffer = buffers[i]; - MarkCharactersUsage(str, m_hybridGlyphGroups[hybridGroupIndex]); - FillResultBuffer(str, m_hybridGlyphGroups[hybridGroupIndex], buffer); + MarkCharactersUsage(str, group); + FillResultBuffer(str, group, buffer); } - } + }; + + CalcGlyphRegions(text, buffers, cb, hypridCb); } void TextureManager::GetGlyphRegions(strings::UniString const & text, TGlyphsBuffer & regions) { - size_t groupIndex = FindGlyphsGroup(text, INVALID_GLYPH_GROUP); - - regions.reserve(text.size()); - if (groupIndex != INVALID_GLYPH_GROUP) - FillResultBuffer(text, m_glyphGroups[groupIndex], regions); - else + auto cb = [this](strings::UniString const & text, TGlyphsBuffer & regions, GlyphGroup & group) { - size_t hybridGroupIndex = FindHybridGlyphsGroup(text); - ASSERT(hybridGroupIndex != INVALID_GLYPH_GROUP, ("")); + FillResultBuffer(text, group, regions); + }; - MarkCharactersUsage(text, m_hybridGlyphGroups[hybridGroupIndex]); - FillResultBuffer(text, m_hybridGlyphGroups[hybridGroupIndex], regions); - } + auto hypridCb = [this](strings::UniString const & text, TGlyphsBuffer & regions, HybridGlyphGroup & group) + { + MarkCharactersUsage(text, group); + FillResultBuffer(text, group, regions); + }; + + CalcGlyphRegions(text, regions, cb, hypridCb); +} + +constexpr size_t TextureManager::GetInvalidGlyphGroup() +{ + return INVALID_GLYPH_GROUP; } } // namespace dp diff --git a/drape/texture_manager.hpp b/drape/texture_manager.hpp index ed67f414d4..369b758e7a 100644 --- a/drape/texture_manager.hpp +++ b/drape/texture_manager.hpp @@ -1,9 +1,10 @@ #pragma once #include "drape/color.hpp" +#include "drape/glyph_manager.hpp" #include "drape/pointers.hpp" #include "drape/texture.hpp" -#include "drape/glyph_manager.hpp" +#include "drape/font_texture.hpp" #include "base/string_utils.hpp" @@ -115,18 +116,17 @@ private: void GetRegionBase(RefPointer tex, TextureManager::BaseRegion & region, Texture::Key const & key); size_t FindGlyphsGroup(strings::UniChar const & c) const; - size_t FindGlyphsGroup(strings::UniString const & text, size_t const defaultGroup) const; + size_t FindGlyphsGroup(strings::UniString const & text) const; size_t FindGlyphsGroup(TMultilineText const & text) const; size_t FindHybridGlyphsGroup(strings::UniString const & text); size_t FindHybridGlyphsGroup(TMultilineText const & text); - bool CheckHybridGroup(strings::UniString const & text, HybridGlyphGroup const & group) const; size_t GetNumberOfUnfoundCharacters(strings::UniString const & text, HybridGlyphGroup const & group) const; void MarkCharactersUsage(strings::UniString const & text, HybridGlyphGroup & group); - template + template void FillResultBuffer(strings::UniString const & text, TGlyphGroup & group, TGlyphsBuffer & regions) { if (group.m_texture.IsNull()) @@ -137,11 +137,35 @@ private: for (strings::UniChar const & c : text) { GlyphRegion reg; - GetRegionBase(texture, reg, TTextureKey(c)); + GetRegionBase(texture, reg, GlyphKey(c)); regions.push_back(reg); } } + static constexpr size_t GetInvalidGlyphGroup(); + + template + void CalcGlyphRegions(TText const & text, TBuffer & buffers, + function callback, + function hybridCallback) + { + size_t const groupIndex = FindGlyphsGroup(text); + if (groupIndex != GetInvalidGlyphGroup()) + { + GlyphGroup & group = m_glyphGroups[groupIndex]; + if (callback != nullptr) + callback(text, buffers, group); + } + else + { + size_t const hybridGroupIndex = FindHybridGlyphsGroup(text); + ASSERT(hybridGroupIndex != GetInvalidGlyphGroup(), ()); + HybridGlyphGroup & group = m_hybridGlyphGroups[hybridGroupIndex]; + if (hybridCallback != nullptr) + hybridCallback(text, buffers, group); + } + } + private: MasterPointer m_symbolTexture; MasterPointer m_stipplePenTexture; diff --git a/drape/utils/glyph_usage_tracker.cpp b/drape/utils/glyph_usage_tracker.cpp index 070e554b49..fd199c5b0d 100644 --- a/drape/utils/glyph_usage_tracker.cpp +++ b/drape/utils/glyph_usage_tracker.cpp @@ -30,8 +30,10 @@ string GlyphUsageTracker::Report() ss << " Unexpected glyphs: {\n"; for (auto const & it : m_unexpectedGlyphs) { - ss << " glyph = " << it.first << ", unique usages = " << it.second.counter << ", group = " << it.second.group << ", expected groups = { "; - for (auto const & gr : it.second.expectedGroups) + ss << " glyph = " << it.first << ", unique usages = " << it.second.m_counter + << ", group = " << it.second.m_group << ", expected groups = { "; + + for (auto const & gr : it.second.m_expectedGroups) ss << gr << " "; ss << "}\n"; } @@ -48,11 +50,7 @@ void GlyphUsageTracker::AddInvalidGlyph(strings::UniString const & str, strings: if (m_processedStrings.find(strings::ToUtf8(str)) != m_processedStrings.end()) return; - auto it = m_invalidGlyphs.find(c); - if (it != m_invalidGlyphs.end()) - it->second++; - else - m_invalidGlyphs.insert(make_pair(c, 1)); + ++m_invalidGlyphs[c]; m_processedStrings.insert(strings::ToUtf8(str)); } @@ -65,22 +63,10 @@ void GlyphUsageTracker::AddUnexpectedGlyph(strings::UniString const & str, strin if (m_processedStrings.find(strings::ToUtf8(str)) != m_processedStrings.end()) return; - auto it = m_unexpectedGlyphs.find(c); - if (it != m_unexpectedGlyphs.end()) - { - ASSERT(it->second.group == group, ("")); - it->second.counter++; - if (it->second.expectedGroups.find(expectedGroup) == it->second.expectedGroups.end()) - it->second.expectedGroups.emplace(expectedGroup); - } - else - { - UnexpectedGlyphData data; - data.group = group; - data.expectedGroups.emplace(expectedGroup); - data.counter = 1; - m_unexpectedGlyphs.insert(make_pair(c, data)); - } + UnexpectedGlyphData & data = m_unexpectedGlyphs[c]; + ++data.m_counter; + data.m_expectedGroups.emplace(expectedGroup); + data.m_group = group; m_processedStrings.insert(strings::ToUtf8(str)); } diff --git a/drape/utils/glyph_usage_tracker.hpp b/drape/utils/glyph_usage_tracker.hpp index b635a8b155..1b9697ab05 100644 --- a/drape/utils/glyph_usage_tracker.hpp +++ b/drape/utils/glyph_usage_tracker.hpp @@ -34,9 +34,9 @@ private: struct UnexpectedGlyphData { - size_t counter; - size_t group; - set expectedGroups; + size_t m_counter = 0; + size_t m_group = 0; + set m_expectedGroups; }; using UnexpectedGlyphs = map; UnexpectedGlyphs m_unexpectedGlyphs;