qxLib
string_converters.h
Go to the documentation of this file.
1 /**
2 
3  @file string_converters.h
4  @author Khrapov
5  @date 24.11.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
13 #include <qx/internal/perf_scope.h>
14 
15 #include <codecvt>
16 #include <locale>
17 
18 #if QX_WIN
19  #include <windows.h>
20 #endif
21 
22 namespace qx
23 {
24 
25 /**
26  @brief convert cstring to wstring
27  @param stringView - char string view
28  @param locale - locale to use
29  @retval - wchar_t string
30 **/
31 inline wstring to_wstring(cstring_view stringView, const std::locale& locale = std::locale())
32 {
33  QX_PERF_SCOPE();
34 
35  std::vector<wchar_t> buf(stringView.size());
36  std::use_facet<std::ctype<wchar_t>>(locale).widen(
37  stringView.data(),
38  stringView.data() + stringView.size(),
39  buf.data());
40 
41  return wstring(buf.data(), buf.size());
42 }
43 
44 /**
45  @brief Convert wstring to wstring (stub)
46  @param stringView - wchar_t string view
47  @param locale - locale to use
48  @retval - wchar_t string
49 **/
50 inline wstring to_wstring(wstring_view stringView, const std::locale& locale = std::locale())
51 {
52  return stringView;
53 }
54 
55 /**
56  @brief Convert wstring to cstring
57  @details '?' is a default character
58  @param stringView - wchar_t string view
59  @param locale - locale to use
60  @retval - char string
61 **/
62 inline cstring to_cstring(wstring_view stringView, const std::locale& locale = std::locale())
63 {
64  QX_PERF_SCOPE();
65 
66  std::vector<char> buf(stringView.size());
67  std::use_facet<std::ctype<wchar_t>>(locale)
68  .narrow(stringView.data(), stringView.data() + stringView.size(), '?', buf.data());
69  return cstring(buf.data(), buf.size());
70 }
71 
72 /**
73  @brief Convert string to string (stub)
74  @param stringView - char string view
75  @param locale - locale to use
76  @retval - char string
77 **/
78 inline cstring to_cstring(cstring_view stringView, const std::locale& locale = std::locale())
79 {
80  return stringView;
81 }
82 
83 /**
84  @brief Convert a char string to common string type
85  @param stringView - char string
86  @param locale - locale to use
87  @retval - common string type
88 **/
89 inline string to_string(cstring_view stringView, const std::locale& locale = std::locale())
90 {
91 #ifdef QX_CONF_USE_CHAR
92  return stringView;
93 #elif defined(QX_CONF_USE_WCHAR)
94  return to_wstring(stringView, locale);
95 #endif
96 }
97 
98 /**
99  @brief Convert a wchar_t string to common string type
100  @param stringView - wchar_t string
101  @param locale - locale to use
102  @retval - common string type
103 **/
104 inline string to_string(wstring_view stringView, const std::locale& locale = std::locale())
105 {
106 #ifdef QX_CONF_USE_CHAR
107  return to_cstring(stringView, locale);
108 #elif defined(QX_CONF_USE_WCHAR)
109  return stringView;
110 #endif
111 }
112 
113 /**
114  @brief Convert const char* representing UTF8 to wstring
115  @param pszUtf8 - UTF8 string
116  @retval - wstring value
117 **/
118 inline string utf8_to_string(cstring_view pszUtf8)
119 {
120  QX_PERF_SCOPE();
121 
122 #ifdef QX_CONF_USE_WCHAR
123  #if QX_WIN
124 
125  // much faster on windows
126  const int nLength = MultiByteToWideChar(CP_UTF8, 0, pszUtf8.data(), static_cast<int>(pszUtf8.size()), nullptr, 0);
127  string sRet(nLength, QX_TEXT('\n'));
128  MultiByteToWideChar(CP_UTF8, 0, pszUtf8.data(), static_cast<int>(pszUtf8.size()), sRet.data(), nLength);
129  return sRet;
130 
131  #else
132 
133  QX_PUSH_SUPPRESS_ALL_WARNINGS();
134  std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
135  return converter.from_bytes(pszUtf8.data(), pszUtf8.data() + pszUtf8.size());
136  QX_POP_SUPPRESS_WARNINGS();
137 
138  #endif
139 #endif
140 }
141 
142 } // namespace qx
String class.
Definition: string.h:64
Contains perf scope macros for profiler (for internal usage only, but user may override them)
wstring to_wstring(cstring_view stringView, const std::locale &locale=std::locale())
convert cstring to wstring
string utf8_to_string(cstring_view pszUtf8)
Convert const char* representing UTF8 to wstring.
cstring to_cstring(wstring_view stringView, const std::locale &locale=std::locale())
Convert wstring to cstring.
string to_string(cstring_view stringView, const std::locale &locale=std::locale())
Convert a char string to common string type.