From f2db795928d5181948f19995d9bc6ded72debb30 Mon Sep 17 00:00:00 2001 From: LaGrunge Date: Thu, 27 Jun 2019 20:53:11 +0300 Subject: [PATCH] [generator] make ids hex strings --- base/string_utils.cpp | 35 ++++++++++--------- base/string_utils.hpp | 48 ++++++++++++++++++++------- generator/geo_objects/geo_objects.cpp | 4 +-- generator/key_value_storage.cpp | 28 ++++++++++++---- generator/key_value_storage.hpp | 2 ++ generator/regions/regions.cpp | 13 ++++---- generator/streets/streets_builder.cpp | 4 +-- 7 files changed, 89 insertions(+), 45 deletions(-) diff --git a/base/string_utils.cpp b/base/string_utils.cpp index 63226660ab..0607b4a978 100644 --- a/base/string_utils.cpp +++ b/base/string_utils.cpp @@ -1,5 +1,5 @@ -#include "base/assert.hpp" #include "base/string_utils.hpp" +#include "base/assert.hpp" #include "std/target_os.hpp" @@ -34,10 +34,7 @@ SimpleDelimiter::SimpleDelimiter(char const * delims) m_delims.push_back(utf8::unchecked::next(it)); } -SimpleDelimiter::SimpleDelimiter(char delim) -{ - m_delims.push_back(delim); -} +SimpleDelimiter::SimpleDelimiter(char delim) { m_delims.push_back(delim); } bool SimpleDelimiter::operator()(UniChar c) const { @@ -71,7 +68,7 @@ bool IntegerCheck(char const * start, char const * stop, T x, TResult & out) bool to_int(char const * start, int & i, int base /*= 10*/) { char * stop; - errno = 0; // Library functions do not reset it. + errno = 0; // Library functions do not reset it. long const v = strtol(start, &stop, base); return IntegerCheck(start, stop, v, i); } @@ -79,18 +76,18 @@ bool to_int(char const * start, int & i, int base /*= 10*/) bool to_uint(char const * start, unsigned int & i, int base /*= 10*/) { char * stop; - errno = 0; // Library functions do not reset it. + errno = 0; // Library functions do not reset it. unsigned long const v = strtoul(start, &stop, base); return IntegerCheck(start, stop, v, i); } -bool to_uint64(char const * s, uint64_t & i) +bool to_uint64(char const * s, uint64_t & i, int base /*= 10*/) { char * stop; #ifdef OMIM_OS_WINDOWS_NATIVE - i = _strtoui64(s, &stop, 10); + i = _strtoui64(s, &stop, base); #else - i = strtoull(s, &stop, 10); + i = strtoull(s, &stop, base); #endif return *stop == 0 && s != stop; } @@ -219,7 +216,7 @@ char ascii_to_lower(char in) return (in + diff); return in; } -} +} // namespace void AsciiToLower(std::string & s) { transform(s.begin(), s.end(), s.begin(), &ascii_to_lower); } void Trim(std::string & s) { boost::trim(s); } @@ -286,9 +283,15 @@ bool StartsWith(UniString const & s, UniString const & p) return StartsWith(s.begin(), s.end(), p.begin(), p.end()); } -bool StartsWith(std::string const & s1, char const * s2) { return (s1.compare(0, strlen(s2), s2) == 0); } +bool StartsWith(std::string const & s1, char const * s2) +{ + return (s1.compare(0, strlen(s2), s2) == 0); +} -bool StartsWith(std::string const & s1, std::string const & s2) { return (s1.compare(0, s2.length(), s2) == 0); } +bool StartsWith(std::string const & s1, std::string const & s2) +{ + return (s1.compare(0, s2.length(), s2) == 0); +} bool EndsWith(UniString const & s1, UniString const & s2) { @@ -366,13 +369,15 @@ bool IsHTML(std::string const & utf8) bool AlmostEqual(std::string const & str1, std::string const & str2, size_t mismatchedCount) { - std::pair mis(str1.begin(), str2.begin()); + std::pair mis(str1.begin(), + str2.begin()); auto const str1End = str1.end(); auto const str2End = str2.end(); for (size_t i = 0; i <= mismatchedCount; ++i) { - auto const end = mis.first + std::min(distance(mis.first, str1End), distance(mis.second, str2End)); + auto const end = + mis.first + std::min(distance(mis.first, str1End), distance(mis.second, str2End)); mis = mismatch(mis.first, end, mis.second); if (mis.first == str1End && mis.second == str2End) return true; diff --git a/base/string_utils.hpp b/base/string_utils.hpp index 47456ad975..1c3173b353 100644 --- a/base/string_utils.hpp +++ b/base/string_utils.hpp @@ -342,7 +342,7 @@ void Tokenize(std::string const & str, char const * delims, TFunctor && f) } } -template