From 856b75ae998093dd89aba7937560a3ca1b79888d Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 7 Apr 2024 23:40:56 +0200 Subject: [PATCH] Faster DebugPrint in some cases and a few minor fixes Removed hex conversion in DebugPrint for Windows, it should be done differently. Signed-off-by: Alexander Borsuk --- base/base_tests/buffer_vector_test.cpp | 4 ++-- base/internal/message.cpp | 29 -------------------------- base/internal/message.hpp | 2 +- drape/font_texture.cpp | 5 ----- drape/glyph_manager.cpp | 6 +++--- drape/texture_manager.cpp | 2 +- drape_frontend/text_layout.cpp | 2 +- drape_frontend/text_layout.hpp | 5 ++--- 8 files changed, 10 insertions(+), 45 deletions(-) diff --git a/base/base_tests/buffer_vector_test.cpp b/base/base_tests/buffer_vector_test.cpp index 1abf1b8849..0f143fdc62 100644 --- a/base/base_tests/buffer_vector_test.cpp +++ b/base/base_tests/buffer_vector_test.cpp @@ -7,7 +7,7 @@ #include #include -namespace +namespace buffer_vector_test { template void CheckVector(TCont & cont, size_t count) @@ -16,7 +16,6 @@ namespace for (size_t i = 0; i < count; ++i) TEST_EQUAL ( cont[i], i, () ); } -} UNIT_TEST(BufferVector_PushBackAndRealloc) { @@ -414,3 +413,4 @@ UNIT_TEST(BufferVector_Erase) TEST_EQUAL(v1[i], v2[i], ()); } } +} // namespace buffer_vector_test diff --git a/base/internal/message.cpp b/base/internal/message.cpp index d58cfe62c7..57397786df 100644 --- a/base/internal/message.cpp +++ b/base/internal/message.cpp @@ -1,36 +1,7 @@ #include "message.hpp" -#include "std/target_os.hpp" - #include -std::string DebugPrint(std::string const & t) -{ -#ifdef OMIM_OS_WINDOWS - string res; - res.push_back('\''); - for (string::const_iterator it = t.begin(); it != t.end(); ++it) - { - static char const toHex[] = "0123456789abcdef"; - unsigned char const c = static_cast(*it); - if (c >= ' ' && c <= '~') - res.push_back(*it); - else - { - res.push_back('\\'); - res.push_back(toHex[c >> 4]); - res.push_back(toHex[c & 0xf]); - } - } - res.push_back('\''); - return res; - -#else - // Assume like UTF8 string. - return t; -#endif -} - namespace internal { std::string ToUtf8(std::u16string_view utf16) diff --git a/base/internal/message.hpp b/base/internal/message.hpp index 172a87a5c7..04d8968d85 100644 --- a/base/internal/message.hpp +++ b/base/internal/message.hpp @@ -24,7 +24,7 @@ //@{ template inline std::string DebugPrint(T const & t); -std::string DebugPrint(std::string const & t); +inline std::string DebugPrint(std::string s) { return s; } inline std::string DebugPrint(char const * t); inline std::string DebugPrint(char * t) { return DebugPrint(static_cast(t)); } inline std::string DebugPrint(char t); diff --git a/drape/font_texture.cpp b/drape/font_texture.cpp index 25e0b30660..6a213b5210 100644 --- a/drape/font_texture.cpp +++ b/drape/font_texture.cpp @@ -2,12 +2,7 @@ #include "drape/pointers.hpp" -#include "platform/platform.hpp" -#include "coding/reader.hpp" - #include "base/logging.hpp" -#include "base/stl_helpers.hpp" -#include "base/string_utils.hpp" #include #include diff --git a/drape/glyph_manager.cpp b/drape/glyph_manager.cpp index f2f59fc22c..14f81f72e9 100644 --- a/drape/glyph_manager.cpp +++ b/drape/glyph_manager.cpp @@ -474,7 +474,7 @@ GlyphManager::GlyphManager(GlyphManager::Params const & params) node.second = static_cast(uniBlock.m_end + 1 - uniBlock.m_start + m_impl->m_fonts.size()); }); - for (CoverNode & node : coverInfo) + for (CoverNode const & node : coverInfo) { UnicodeBlock & uniBlock = m_impl->m_blocks[node.first]; uniBlock.m_fontsWeight.resize(m_impl->m_fonts.size(), 0); @@ -612,8 +612,8 @@ GlyphManager::Glyph GlyphManager::GenerateGlyph(Glyph const & glyph, uint32_t sd img.GenerateSDF(1.0f / static_cast(sdfScale)); - ASSERT(img.GetWidth() == glyph.m_image.m_width, ()); - ASSERT(img.GetHeight() == glyph.m_image.m_height, ()); + ASSERT_EQUAL(img.GetWidth(), glyph.m_image.m_width, ()); + ASSERT_EQUAL(img.GetHeight(), glyph.m_image.m_height, ()); size_t const bufferSize = base::NextPowOf2(glyph.m_image.m_width * glyph.m_image.m_height); resultGlyph.m_image.m_data = SharedBufferManager::instance().reserveSharedBuffer(bufferSize); diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index 3c4efc820e..b4dd8e63c3 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -329,7 +329,7 @@ uint32_t TextureManager::GetNumberOfUnfoundCharacters(strings::UniString const & HybridGlyphGroup const & group) { uint32_t cnt = 0; - for (auto const & c : text) + for (auto const c : text) { if (group.m_glyphs.find(std::make_pair(c, fixedHeight)) == group.m_glyphs.end()) cnt++; diff --git a/drape_frontend/text_layout.cpp b/drape_frontend/text_layout.cpp index 0261789250..d6101e40e0 100644 --- a/drape_frontend/text_layout.cpp +++ b/drape_frontend/text_layout.cpp @@ -5,7 +5,7 @@ #include "drape/bidi.hpp" #include -#include +#include // std::reverse_iterator #include namespace df diff --git a/drape_frontend/text_layout.hpp b/drape_frontend/text_layout.hpp index b2b88f5221..b43ac6f2cb 100644 --- a/drape_frontend/text_layout.hpp +++ b/drape_frontend/text_layout.hpp @@ -78,10 +78,9 @@ private: void Cache(TGenerator & generator) const { size_t beginOffset = 0; - for (std::pair const & node : m_offsets) + for (auto const & [endOffset, coordinates] : m_offsets) { - size_t const endOffset = node.first; - generator.SetPenPosition(node.second); + generator.SetPenPosition(coordinates); for (size_t index = beginOffset; index < endOffset && index < m_metrics.size(); ++index) generator(m_metrics[index]); beginOffset = endOffset;