Fix syntax highlighting unicode support (#475)

* convert BasicParser to a template

* fix syntax hightlighting with unicode characters
This commit is contained in:
MihailRis
2025-02-22 01:01:20 +03:00
committed by GitHub
parent b61f594495
commit 8a8c1525fd
19 changed files with 644 additions and 509 deletions
+25 -5
View File
@@ -88,6 +88,18 @@ std::wstring util::rfill(std::wstring s, uint length, wchar_t c) {
return ss.str();
}
static size_t length_utf8_codepoint(uint32_t c) {
if (c < 0x80) {
return 1;
} else if (c < 0x0800) {
return 2;
} else if (c < 0x010000) {
return 3;
} else {
return 4;
}
}
uint util::encode_utf8(uint32_t c, ubyte* bytes) {
if (c < 0x80) {
bytes[0] = ((c >> 0) & 0x7F) | 0x00;
@@ -179,8 +191,16 @@ size_t util::length_utf8(std::string_view s) {
return length;
}
size_t util::length_utf8(std::wstring_view s) {
size_t length = 0;
for (size_t i = 0; i < s.length(); i++) {
length += length_utf8_codepoint(s[i]);
}
return length;
}
template<class C>
std::string xstr2str_utf8(const std::basic_string<C>& xs) {
std::string xstr2str_utf8(std::basic_string_view<C> xs) {
std::vector<char> chars;
ubyte buffer[4];
for (C xc : xs) {
@@ -193,16 +213,16 @@ std::string xstr2str_utf8(const std::basic_string<C>& xs) {
return std::string(chars.data(), chars.size());
}
std::string util::wstr2str_utf8(const std::wstring& ws) {
std::string util::wstr2str_utf8(std::wstring_view ws) {
return xstr2str_utf8(ws);
}
std::string util::u32str2str_utf8(const std::u32string& ws) {
std::string util::u32str2str_utf8(std::u32string_view ws) {
return xstr2str_utf8(ws);
}
template<class C>
std::basic_string<C> str2xstr_utf8(const std::string& s) {
std::basic_string<C> str2xstr_utf8(std::string_view s) {
std::vector<C> chars;
size_t pos = 0;
uint size = 0;
@@ -213,7 +233,7 @@ std::basic_string<C> str2xstr_utf8(const std::string& s) {
return std::basic_string<C>(chars.data(), chars.size());
}
std::wstring util::str2wstr_utf8(const std::string& s) {
std::wstring util::str2wstr_utf8(std::string_view s) {
return str2xstr_utf8<wchar_t>(s);
}
+15 -3
View File
@@ -22,23 +22,33 @@ namespace util {
/// @brief Encode raw wstring to UTF-8
/// @param ws source raw wstring
/// @return new UTF-8 encoded string
std::string wstr2str_utf8(const std::wstring& ws);
std::string wstr2str_utf8(std::wstring_view ws);
/// @brief Decode UTF-8 string
/// @param s source encoded string
/// @return new raw decoded wstring
std::wstring str2wstr_utf8(const std::string& s);
std::wstring str2wstr_utf8(std::string_view s);
/// @brief Encode raw u32string to UTF-8
/// @param ws source raw wstring
/// @return new UTF-8 encoded string
std::string u32str2str_utf8(const std::u32string& ws);
std::string u32str2str_utf8(std::u32string_view ws);
/// @brief Decode UTF-8 string
/// @param s source encoded string
/// @return new raw decoded u32string
std::u32string str2u32str_utf8(const std::string& s);
inline std::string str2str_utf8(std::string_view s) {
return std::string(s);
}
inline std::string str2str_utf8(std::wstring_view s) {
return wstr2str_utf8(s);
}
inline std::string str2str_utf8(std::u32string_view s) {
return u32str2str_utf8(s);
}
/// @brief Calculated length of UTF-8 encoded string that fits into maxSize
/// @param s source UTF-8 encoded string view
/// @param maxSize max encoded string length after crop
@@ -49,6 +59,8 @@ namespace util {
/// @param s source encoded string
/// @return unicode string length (number of codepoints)
size_t length_utf8(std::string_view s);
size_t length_utf8(std::wstring_view s);
bool is_integer(const std::string& text);
bool is_integer(const std::wstring& text);