This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/base/internal/message.cpp
Osyotr 76dd632ec5
Devendor some thridparty deps (#7836)
* Link with Qt6::Network on windows
* Make find_program(BASH) REQUIRED to prevent build-time errors
* Link more targets explicitly to pickup transitive dependencies
* Don't add unsupported flags on MSVC
  Drive-by: use add_compile_options instead of add_definitions to set -fno-omit-frame-pointer
* Move find_package(gflags) out of 3party
  GLOBAL flag for find_package has been added in CMake 3.24
* Don't hardcode paths to 3party/utfcpp
* Use system expat explicitly if needed
* Use system jansson explicitly if needed
* Use find_package(ZLIB) to find zlib
* Don't use vendored Freetype, ICU and HarfBuzz when WITH_SYSTEM_PROVIDED_3PARTY is set
* Find pugixml explicitly
* Fix typo in target name
* Update utfcpp include path
* Let CMake handle /DEBUG flag for MSVC

Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
2024-04-07 00:50:34 +02:00

49 lines
1,023 B
C++

#include "message.hpp"
#include "std/target_os.hpp"
#include <utf8/unchecked.h>
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<unsigned char>(*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)
{
std::string utf8;
utf8::unchecked::utf16to8(utf16.begin(), utf16.end(), std::back_inserter(utf8));
return utf8;
}
std::string ToUtf8(std::u32string_view utf32)
{
std::string utf8;
utf8::unchecked::utf32to8(utf32.begin(), utf32.end(), utf8.begin());
return utf8;
}
} // namespace internal