-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyString.hpp
188 lines (158 loc) · 5.25 KB
/
EasyString.hpp
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//
// EasyString.hpp
//
// Created by dylan on 12/2/17.
// Copyright © 2017 Dylan McSweeney. All rights reserved.
//
#pragma once
#include <string>
#include <regex>
#include <cstdarg>
namespace Dtoolbox
{
class EasyString
{
public:
EasyString():
m_str()
{}
EasyString(const char *str):
m_str(str)
{}
EasyString(const std::string &str):
m_str(str)
{}
EasyString(std::string &&str):
m_str(std::move(str))
{}
EasyString& operator=(const char *rhs)
{
m_str = rhs;
return *this;
}
EasyString& operator=(const std::string &rhs)
{
m_str = rhs;
return *this;
}
EasyString& operator=(std::string &&rhs)
{
m_str = std::move(rhs);
return *this;
}
const std::string& str() const
{
return m_str;
}
std::string& str()
{
return m_str;
}
const char * c_str() const
{
return m_str.c_str();
}
template<typename strtype>
bool match(strtype&& regex) const
{
return std::regex_match(m_str, std::regex(std::forward<strtype>(regex), std::regex_constants::extended));
}
template<>
bool match<const EasyString&>(const EasyString& regex) const
{
return match(regex.str());
}
template<typename... T>
EasyString format_c(T... args) const
{
const size_t size(200);
char outbufstack[size]; // Stack-allocated temp storage - hopefully big enough
char* outbuf(outbufstack);
// Attempt to write the formatted string into the stack-allocated array first
auto finishedsize = snprintf(outbuf, size, m_str.c_str(), args...);
// If an error occurs, produce an empty string
if(finishedsize < 0) {
return EasyString();
}
// If it didn't fit, then allcoate a heap array, do it again,
// and construct the string from that.
// If this occurs, then the fact that we allocated stack space for the fist buffer
// and wrote to it was a waste, but we are hoping that this is not common
// If it is common, then we could change the first snprintf call to not actually
// write anything, and it would do a first pass to tell us how big it will be.
std::unique_ptr<char[]> outbufheap;
if(finishedsize >= size) {
outbufheap = std::make_unique<char[]>(finishedsize);
outbuf = outbufheap.get();
snprintf(outbuf, finishedsize, m_str.c_str(), args...);
}
return EasyString(outbuf);
}
private:
std::string m_str;
//friends
friend EasyString operator+(const EasyString& lhs, const EasyString& rhs);
friend EasyString operator+(const EasyString& lhs, const std::string& rhs);
friend EasyString operator+(const EasyString& lhs, const char* rhs);
friend EasyString operator+(const std::string& lhs, const EasyString& rhs);
friend EasyString operator+(const char* lhs, const EasyString& rhs);
template<typename strtype>
friend EasyString& operator+=(EasyString& lhs, strtype&& rhs);
friend std::string& operator+=(std::string& lhs, const EasyString& rhs);
template<typename strtype>
friend bool operator==(const EasyString& lhs, strtype&& rhs);
friend std::ostream& operator<<(std::ostream& os, const EasyString& estr);
friend std::istream& operator>>(std::istream& is, EasyString& estr);
};
EasyString operator+(const EasyString& lhs, const EasyString& rhs)
{
return EasyString(lhs.m_str + rhs.m_str);
}
EasyString operator+(const EasyString& lhs, const std::string& rhs)
{
return EasyString(lhs.m_str + rhs);
}
EasyString operator+(const EasyString& lhs, const char* rhs)
{
return EasyString(lhs.m_str + rhs);
}
EasyString operator+(const std::string& lhs, const EasyString& rhs)
{
return EasyString(lhs + rhs.m_str);
}
EasyString operator+(const char* lhs, const EasyString& rhs)
{
return EasyString(lhs + rhs.m_str);
}
template<typename strtype>
EasyString& operator+=(EasyString& lhs, strtype&& rhs)
{
lhs.m_str += std::forward<strtype>(rhs);
return lhs;
}
template<>
EasyString& operator+=<const EasyString&>(EasyString& lhs, const EasyString& rhs)
{
return lhs += rhs.m_str;
}
std::string& operator+=(std::string& lhs, const EasyString& rhs)
{
lhs += rhs.m_str;
return lhs;
}
template<typename strtype>
bool operator==(const EasyString& lhs, strtype&& rhs)
{
return lhs.m_str == rhs;
}
std::ostream& operator<<(std::ostream& os, const EasyString& estr)
{
os << estr.m_str;
return os;
}
std::istream& operator>>(std::istream& is, EasyString& estr)
{
is >> estr.m_str;
return is;
}
} // end namespace Dtoolbox