Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
string.hpp
1#pragma once
2
3#include "terminalpp/element.hpp"
4
5#include <boost/container_hash/hash.hpp>
6
7#include <concepts> // IWYU pragma: keep
8#include <initializer_list>
9#include <string>
10#include <vector>
11#include <cstddef>
12
13namespace terminalpp {
14
15//* =========================================================================
19//* =========================================================================
21{
22 using elements_storage = std::vector<element>;
23
24public:
25 //* =====================================================================
27 //* =====================================================================
29 using reference = value_type &;
30 using const_reference = value_type const &;
31 using pointer = element *;
32 using const_pointer = element const *;
33 using iterator = elements_storage::iterator;
34 using const_iterator = elements_storage::const_iterator;
35 using reverse_iterator = elements_storage::reverse_iterator;
36 using const_reverse_iterator = elements_storage::const_reverse_iterator;
37 using difference_type = std::ptrdiff_t;
38 using size_type = std::size_t;
39
40 //* =====================================================================
42 //* =====================================================================
43 string() = default;
44
45 //* =====================================================================
47 //* =====================================================================
48 template <std::forward_iterator ForwardIterator>
50 : elements_(begin, end)
51 {
52 }
53
54 //* =====================================================================
56 //* =====================================================================
57 string(std::initializer_list<element> const &ilist);
58
59 //* =====================================================================
64 //* =====================================================================
65 string(char const *text); // NOLINT
66
67 //* =====================================================================
73 //* =====================================================================
74 string(char const *text, size_type len);
75
76 //* =====================================================================
81 //* =====================================================================
82 string(std::string const &text); // NOLINT
83
84 //* =====================================================================
88 //* =====================================================================
89 string(std::string const &text, terminalpp::attribute const &attr);
90
91 //* =====================================================================
95 //* =====================================================================
96 string(size_type size, terminalpp::element const &elem);
97
98 //* =====================================================================
100 //* =====================================================================
101 [[nodiscard]] size_type size() const;
102
103 //* =====================================================================
105 //* =====================================================================
106 [[nodiscard]] iterator begin();
107
108 //* =====================================================================
110 //* =====================================================================
111 [[nodiscard]] const_iterator begin() const;
112
113 //* =====================================================================
116 //* =====================================================================
117 [[nodiscard]] reverse_iterator rbegin();
118
119 //* =====================================================================
122 //* =====================================================================
123 [[nodiscard]] const_reverse_iterator rbegin() const;
124
125 //* =====================================================================
127 //* =====================================================================
128 [[nodiscard]] iterator end();
129
130 //* =====================================================================
132 //* =====================================================================
133 [[nodiscard]] const_iterator end() const;
134
135 //* =====================================================================
137 //* =====================================================================
138 [[nodiscard]] reverse_iterator rend();
139
140 //* =====================================================================
142 //* =====================================================================
143 [[nodiscard]] const_reverse_iterator rend() const;
144
145 //* =====================================================================
147 //* =====================================================================
148 [[nodiscard]] const_iterator cbegin();
149
150 //* =====================================================================
152 //* =====================================================================
153 [[nodiscard]] const_iterator cend();
154
155 //* =====================================================================
157 //* =====================================================================
158 void swap(string &other) noexcept;
159
160 //* =====================================================================
162 //* =====================================================================
163 [[nodiscard]] size_type max_size() const;
164
165 //* =====================================================================
167 //* =====================================================================
168 [[nodiscard]] bool empty() const;
169
170 //* =====================================================================
172 //* =====================================================================
173 [[nodiscard]] reference operator[](size_type index);
174
175 //* =====================================================================
177 //* =====================================================================
178 [[nodiscard]] const_reference operator[](size_type index) const;
179
180 //* =====================================================================
182 //* =====================================================================
183 string &operator+=(element const &elem);
184
185 //* =====================================================================
187 //* =====================================================================
188 [[nodiscard]] friend string operator+(string lhs, element const &rhs)
189 {
190 return lhs += rhs;
191 }
192
193 //* =====================================================================
195 //* =====================================================================
196 string &operator+=(string const &rhs);
197
198 //* =====================================================================
200 //* =====================================================================
201 [[nodiscard]] friend string operator+(string lhs, string const &rhs)
202 {
203 return lhs += rhs;
204 }
205
206 //* =====================================================================
208 //* =====================================================================
209 void insert(iterator pos, element const &elem);
210
211 //* =====================================================================
213 //* =====================================================================
214 template <class InputIterator>
215 void insert(
217 {
218 elements_.insert(pos, range_begin, range_end);
219 }
220
221 //* =====================================================================
223 //* =====================================================================
224 void erase();
225
226 //* =====================================================================
228 //* =====================================================================
229 void erase(iterator range_begin);
230
231 //* =====================================================================
233 //* =====================================================================
234 void erase(iterator range_begin, iterator range_end);
235
236 //* =====================================================================
238 //* =====================================================================
239 [[nodiscard]] friend auto operator<=>(
240 string const &lhs, string const &rhs) noexcept = default;
241
242 //* =====================================================================
244 //* =====================================================================
246 friend bool operator==(string const &lhs, string const &rhs);
247
248 //* =====================================================================
250 //* =====================================================================
251 [[nodiscard]] friend std::size_t hash_value(string const &str) noexcept
252 {
253 return boost::hash_range(str.elements_.begin(), str.elements_.end());
254 }
255
256private:
257 elements_storage elements_;
258};
259
260//* =========================================================================
264//* =========================================================================
265TERMINALPP_EXPORT
266std::ostream &operator<<(std::ostream &out, string const &text);
267
268//* =========================================================================
271//* =========================================================================
272TERMINALPP_EXPORT
273[[nodiscard]] ::std::string to_string(terminalpp::string const &tstr);
274
275inline namespace literals {
276inline namespace string_literals {
277
278//* =========================================================================
280//* =========================================================================
281TERMINALPP_EXPORT
282[[nodiscard]] ::terminalpp::string operator""_ts(
283 char const *text, ::terminalpp::string::size_type length);
284
285//* =========================================================================
287//* =========================================================================
288TERMINALPP_EXPORT
289[[nodiscard]] ::terminalpp::string operator""_ets(
290 char const *text, ::terminalpp::string::size_type length);
291
292} // namespace string_literals
293} // namespace literals
294} // namespace terminalpp
295
296namespace std {
297
298template <>
299struct hash<terminalpp::string>
300{
301 using argument_type = terminalpp::string;
302 using result_type = std::size_t;
303
304 [[nodiscard]] result_type operator()(
305 argument_type const &str) const noexcept
306 {
307 return hash_value(str);
308 }
309};
310
311} // namespace std
A class that represents strings of elements.
Definition string.hpp:21
void insert(iterator pos, InputIterator range_begin, InputIterator range_end)
Inserts a range of elements at the iterator position.
Definition string.hpp:215
const_iterator cbegin()
Returns an iterator to the beginning of the string.
void swap(string &other) noexcept
Swaps the contents of this and another string.
friend string operator+(string lhs, element const &rhs)
Append operator.
Definition string.hpp:188
string(ForwardIterator &&begin, ForwardIterator &&end)
Range Constructor.
Definition string.hpp:49
friend auto operator<=>(string const &lhs, string const &rhs) noexcept=default
Relational operators for strings.
const_iterator cend()
Returns an iterator to the end of the string.
string()=default
Constructor.
friend string operator+(string lhs, string const &rhs)
Append operator.
Definition string.hpp:201
friend std::size_t hash_value(string const &str) noexcept
Hash function.
Definition string.hpp:251
A structure that carries around the presentation attributes of an ANSI element.
Definition attribute.hpp:17
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
A structure that represents the fundamental printable element of a terminal screen,...
Definition element.hpp:20