-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevalstring.h
149 lines (130 loc) · 4.23 KB
/
evalstring.h
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// MIT License
//
// Copyright (c) 2024 Elliot Goodrich
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#ifndef TRIMJA_EVALSTRING
#define TRIMJA_EVALSTRING
#include <cassert>
#include <string>
#include <string_view>
namespace trimja {
/**
* @class EvalString
* @brief A class to represent and evaluate strings containing both text and
* variables.
*/
class EvalString {
public:
// For the moment use `std::size_t` as offset type but we can investigate
// later on if a smaller type help with memory or performance.
using Offset = std::size_t;
private:
std::string m_data;
Offset m_lastTextSegmentLength;
public:
/**
* @enum TokenType
* @brief Enum to represent the type of token.
*/
enum class TokenType {
Text = 0, ///< Represents a text token.
Variable = 1, ///< Represents a variable token.
};
/**
* @class const_iterator
* @brief A constant iterator to iterate over the tokens in EvalString.
*/
class const_iterator {
const char* m_pos;
public:
using difference_type = std::ptrdiff_t;
using value_type = std::pair<std::string_view, TokenType>;
const_iterator();
const_iterator(const char* pos);
std::pair<std::string_view, TokenType> operator*() const;
const_iterator& operator++();
const_iterator operator++(int);
friend bool operator==(const_iterator lhs, const_iterator rhs);
friend bool operator!=(const_iterator lhs, const_iterator rhs);
};
/**
* @brief Default constructor.
*/
EvalString();
/**
* @brief Clears the EvalString.
*/
void clear();
/**
* @brief Checks if the EvalString is empty.
*/
bool empty() const;
/**
* @brief Gets the beginning iterator.
*/
const_iterator begin() const;
/**
* @brief Gets the end iterator.
*/
const_iterator end() const;
/**
* @brief Appends text to the EvalString, consolidating consecutive text
* sections.
* @param text The text to append. This must not be empty.
*/
void appendText(std::string_view text);
/**
* @brief Appends a variable to the EvalString.
* @param name The name of the variable to append. This must not be empty.
*/
void appendVariable(std::string_view name);
};
/**
* @brief Evaluates the EvalString and appends the result to the output.
* @tparam SCOPE The type of the scope.
* @param output The output string to append the result to.
* @param variable The EvalString to evaluate.
* @param scope The scope to use for variable evaluation.
*/
template <typename SCOPE>
void evaluate(std::string& output,
const EvalString& variable,
const SCOPE& scope) {
const auto end = variable.end();
for (auto it = variable.begin(); it != end; ++it) {
auto [str, type] = *it;
switch (type) {
case EvalString::TokenType::Text:
output += str;
if (++it == end) {
return;
}
// As we consolidate consecutive text sections if we are not at the
// end then we must have a variable next
str = (*it).first;
assert((*it).second == EvalString::TokenType::Variable);
[[fallthrough]];
case EvalString::TokenType::Variable:
scope.appendValue(output, str);
}
}
}
} // namespace trimja
#endif // TRIMJA_EVALSTRING