2024-04-26 15:37:28 +08:00
|
|
|
#pragma once
|
2024-05-28 19:59:41 +08:00
|
|
|
#include "YYCCInternal.hpp"
|
|
|
|
|
|
|
|
#include "EncodingHelper.hpp"
|
2024-04-26 15:37:28 +08:00
|
|
|
#include <string>
|
|
|
|
#include <cinttypes>
|
2024-05-28 19:59:41 +08:00
|
|
|
#include <type_traits>
|
|
|
|
#include <stdexcept>
|
2024-05-31 12:12:48 +08:00
|
|
|
#include <charconv>
|
|
|
|
#include <array>
|
2024-04-26 15:37:28 +08:00
|
|
|
|
|
|
|
namespace YYCC::ParserHelper {
|
|
|
|
|
2024-05-31 12:12:48 +08:00
|
|
|
// Reference: https://zh.cppreference.com/w/cpp/utility/from_chars
|
2024-05-28 19:59:41 +08:00
|
|
|
|
|
|
|
template<typename _Ty, std::enable_if_t<std::is_floating_point_v<_Ty>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
bool TryParse(const yycc_u8string_view& strl, _Ty& num) {
|
|
|
|
auto [ptr, ec] = std::from_chars(
|
|
|
|
EncodingHelper::ToNative(strl.data()),
|
|
|
|
EncodingHelper::ToNative(strl.data() + strl.size()),
|
|
|
|
num, std::chars_format::general
|
|
|
|
);
|
2024-05-31 12:12:48 +08:00
|
|
|
if (ec == std::errc()) {
|
|
|
|
// check whether the full string is matched
|
2024-06-28 15:46:58 +08:00
|
|
|
return ptr == EncodingHelper::ToNative(strl.data() + strl.size());
|
2024-05-31 12:12:48 +08:00
|
|
|
} else if (ec == std::errc::invalid_argument) {
|
|
|
|
// given string is invalid
|
2024-05-28 19:59:41 +08:00
|
|
|
return false;
|
2024-05-31 12:12:48 +08:00
|
|
|
} else if (ec == std::errc::result_out_of_range) {
|
|
|
|
// given string is out of range
|
2024-05-28 19:59:41 +08:00
|
|
|
return false;
|
2024-05-31 12:12:48 +08:00
|
|
|
} else {
|
|
|
|
// unreachable
|
|
|
|
throw std::runtime_error("unreachable code.");
|
2024-05-28 19:59:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
template<typename _Ty, std::enable_if_t<std::is_integral_v<_Ty> && !std::is_same_v<_Ty, bool>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
bool TryParse(const yycc_u8string_view& strl, _Ty& num, int base = 10) {
|
|
|
|
auto [ptr, ec] = std::from_chars(
|
|
|
|
EncodingHelper::ToNative(strl.data()),
|
|
|
|
EncodingHelper::ToNative(strl.data() + strl.size()),
|
|
|
|
num, base
|
|
|
|
);
|
2024-05-31 12:12:48 +08:00
|
|
|
if (ec == std::errc()) {
|
|
|
|
// check whether the full string is matched
|
2024-06-28 15:46:58 +08:00
|
|
|
return ptr == EncodingHelper::ToNative(strl.data() + strl.size());
|
2024-05-31 12:12:48 +08:00
|
|
|
} else if (ec == std::errc::invalid_argument) {
|
|
|
|
// given string is invalid
|
2024-05-28 19:59:41 +08:00
|
|
|
return false;
|
2024-05-31 12:12:48 +08:00
|
|
|
} else if (ec == std::errc::result_out_of_range) {
|
|
|
|
// given string is out of range
|
2024-05-28 19:59:41 +08:00
|
|
|
return false;
|
2024-05-31 12:12:48 +08:00
|
|
|
} else {
|
|
|
|
// unreachable
|
|
|
|
throw std::runtime_error("unreachable code.");
|
2024-05-28 19:59:41 +08:00
|
|
|
}
|
|
|
|
}
|
2024-05-30 14:53:46 +08:00
|
|
|
template<typename _Ty, std::enable_if_t<std::is_same_v<_Ty, bool>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
bool TryParse(const yycc_u8string_view& strl, _Ty& num) {
|
|
|
|
if (strl == YYCC_U8("true")) num = true;
|
|
|
|
else if (strl == YYCC_U8("false")) num = false;
|
2024-05-28 19:59:41 +08:00
|
|
|
else return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename _Ty, std::enable_if_t<std::is_arithmetic_v<_Ty>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
_Ty Parse(const yycc_u8string_view& strl) {
|
2024-05-28 19:59:41 +08:00
|
|
|
_Ty ret;
|
|
|
|
TryParse(strl, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-05-31 12:12:48 +08:00
|
|
|
// Reference: https://en.cppreference.com/w/cpp/utility/to_chars
|
|
|
|
|
|
|
|
template<typename _Ty, std::enable_if_t<std::is_arithmetic_v<_Ty> && !std::is_same_v<_Ty, bool>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
yycc_u8string ToString(_Ty num) {
|
|
|
|
std::array<yycc_char8_t, 64> buffer;
|
|
|
|
auto [ptr, ec] = std::to_chars(
|
|
|
|
EncodingHelper::ToNative(buffer.data()),
|
|
|
|
EncodingHelper::ToNative(buffer.data() + buffer.size()),
|
|
|
|
num
|
|
|
|
);
|
2024-05-31 12:12:48 +08:00
|
|
|
if (ec == std::errc()) {
|
2024-06-28 16:24:27 +08:00
|
|
|
return yycc_u8string(buffer.data(), EncodingHelper::ToUTF8(ptr) - buffer.data());
|
2024-05-31 12:12:48 +08:00
|
|
|
} else if (ec == std::errc::value_too_large) {
|
|
|
|
// too short buffer
|
|
|
|
// this should not happend
|
|
|
|
throw std::out_of_range("ToString() buffer is not sufficient.");
|
|
|
|
} else {
|
|
|
|
// unreachable
|
|
|
|
throw std::runtime_error("unreachable code.");
|
|
|
|
}
|
2024-05-28 19:59:41 +08:00
|
|
|
}
|
2024-05-31 12:12:48 +08:00
|
|
|
template<typename _Ty, std::enable_if_t<std::is_same_v<_Ty, bool>, int> = 0>
|
2024-06-28 15:46:58 +08:00
|
|
|
yycc_u8string ToString(_Ty num) {
|
|
|
|
if (num) return yycc_u8string(YYCC_U8("true"));
|
|
|
|
else return yycc_u8string(YYCC_U8("false"));
|
2024-05-28 19:59:41 +08:00
|
|
|
}
|
2024-04-26 15:37:28 +08:00
|
|
|
|
|
|
|
}
|