1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#include "type.h"
#include "ascii.h"
#include <array>
bool IsSpace(const char* s, size_t len) noexcept {
if (len == 0) {
return false;
}
for (const char* p = s; p < s + len; ++p) {
if (!IsAsciiSpace(*p)) {
return false;
}
}
return true;
}
template <typename TStringType>
static bool IsNumberT(const TStringType& s) noexcept {
if (s.empty()) {
return false;
}
return std::all_of(s.begin(), s.end(), IsAsciiDigit<typename TStringType::value_type>);
}
bool IsNumber(const TStringBuf s) noexcept {
return IsNumberT(s);
}
bool IsNumber(const TWtringBuf s) noexcept {
return IsNumberT(s);
}
template <typename TStringType>
static bool IsHexNumberT(const TStringType& s) noexcept {
if (s.empty()) {
return false;
}
return std::all_of(s.begin(), s.end(), IsAsciiHex<typename TStringType::value_type>);
}
bool IsHexNumber(const TStringBuf s) noexcept {
return IsHexNumberT(s);
}
bool IsHexNumber(const TWtringBuf s) noexcept {
return IsHexNumberT(s);
}
namespace {
template <size_t N>
bool IsCaseInsensitiveAnyOf(TStringBuf str, const std::array<TStringBuf, N>& options) {
for (auto option : options) {
if (str.size() == option.size() && ::strnicmp(str.data(), option.data(), str.size()) == 0) {
return true;
}
}
return false;
}
} //anonymous namespace
bool IsTrue(const TStringBuf v) noexcept {
static constexpr std::array<TStringBuf, 7> trueOptions{
"true",
"t",
"yes",
"y",
"on",
"1",
"da"};
return IsCaseInsensitiveAnyOf(v, trueOptions);
}
bool IsFalse(const TStringBuf v) noexcept {
static constexpr std::array<TStringBuf, 7> falseOptions{
"false",
"f",
"no",
"n",
"off",
"0",
"net"};
return IsCaseInsensitiveAnyOf(v, falseOptions);
}
|