-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal.cpp
257 lines (222 loc) · 5.23 KB
/
global.cpp
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#define _CRT_SECURE_NO_WARNINGS
#include "wiz/global.h"
#include "wiz/load_data_utility.h"
namespace wiz {
inline std::string Remove(const std::string& str)
{
if (str.size() >= 2 && str.front() == str.back() && str.back() == '\"') {
return str.substr(1, str.size() - 2);
}
return str;
}
long long checkDelimiter(const char* start, const char* last, const std::vector<std::string>& delimiter)
{
const int delim_size = delimiter.size();
for (int delim_num = 0; delim_num < delim_size; ++delim_num) {
bool pass = true;
// size check
if (start + delimiter[delim_num].size() - 1 > last) {
continue;
}
for (const char* x = start; x <= start + delimiter[delim_num].size() - 1; ++x) {
if (*x == delimiter[delim_num][x - start]) {
}
else {
pass = false;
break;
}
}
if (pass) {
return delim_num;
}
}
return -1;
}
int DataType::GetType()const {
if (change) {
if (wiz::load_data::Utility::IsInteger(str_value)) {
type = 3;
int_value = ToInt();
}
else if (wiz::load_data::Utility::IsDouble(str_value)) {
type = 5;
float_value = ToFloat();
}
else {
//throw "error in gettype in datatype";
}
}
change = false;
return type;
}
std::string DataType::GetTypeString()const
{
int value = GetType();
if (3 == value) {
return "INTEGER";
}
else if (5 == value) {
return "FLOAT";
}
else {
return "STRING";
}
}
void DataType::SetInt(long long val)
{
this->type = 3;
this->int_value = val;
this->str_value = wiz::_toString(val);
change = false;
}
void DataType::SetFloat(long double val)
{
this->type = 5;
this->float_value = val;
this->str_value = wiz::_toString(val);
change = false;
}
DataType::DataType(const char* cstr)
{
this->str_value = std::string(cstr);
if (USE_REMOVE_IN_DATATYPE) {
this->str_value = Remove(str_value);
}
/* // #ifdef DataTypeDebug?
this->change = true;
if (wiz::load_data::Utility::IsInteger(this->str_value)) {
this->type = 3;
this->int_value = ToInt();
}
else if (wiz::load_data::Utility::IsDouble(this->str_value)) {
this->type = 5;
this->float_value = ToFloat();
}
else {
this->type = 1;
}
*/
this->change = true; // false;
}
DataType::DataType(const std::string& str)
{
this->str_value = str;
if (USE_REMOVE_IN_DATATYPE) {
this->str_value = Remove(str_value);
}
/*
this->change = true;
if (wiz::load_data::Utility::IsInteger(this->str_value)) {
this->type = 3;
this->int_value = ToInt();
}
else if (wiz::load_data::Utility::IsDouble(this->str_value)) {
this->type = 5;
this->float_value = ToFloat();
}
else {
this->type = 1;
}
*/
this->change = true; // false;
}
DataType::DataType(std::string&& str)
{
this->str_value = std::move(str);
if (USE_REMOVE_IN_DATATYPE) {
this->str_value = Remove(str_value);
}
/*
this->change = true;
if (wiz::load_data::Utility::IsInteger(this->str_value)) {
this->type = 3;
this->int_value = ToInt();
}
else if (wiz::load_data::Utility::IsDouble(this->str_value)) {
this->type = 5;
this->float_value = ToFloat();
}
else {
this->type = 1;
}
*/
this->change = true; // false;
}
bool DataType::operator==(const DataType& type) const
{
return type.str_value == this->str_value;
}
bool DataType::operator==(const char* cstr) const
{
return cstr == this->str_value;
}
bool DataType::operator==(const std::string& str) const
{
return str == this->str_value;
}
bool DataType::operator!=(const DataType& type) const
{
return type.str_value != this->str_value;
}
bool DataType::operator!=(const char* cstr) const
{
return cstr != this->str_value;
}
bool DataType::operator!=(const std::string& str) const
{
return str != this->str_value;
}
DataType DataType::operator+(const DataType& type)const
{
return DataType(this->str_value + type.str_value);
}
DataType DataType::operator+(const char* cstr) const
{
return DataType(this->str_value + std::string(cstr));
}
DataType DataType::operator+(const std::string& str) const
{
return DataType(this->str_value + str);
}
DataType& DataType::operator+=(const DataType& type)
{
this->str_value += type.str_value;
this->change = true;
return *this;
}
DataType& DataType::operator+=(const char* cstr)
{
(*this) += DataType(cstr);
return *this;
}
DataType& DataType::operator+=(const std::string& str)
{
(*this) += DataType(str);
return *this;
}
bool operator==(const char* cstr, const DataType& type)
{
return type == cstr;
}
bool operator==(const std::string& str, const DataType& type)
{
return type == str;
}
bool operator!=(const char* cstr, const DataType& type)
{
return type != cstr;
}
bool operator!=(const std::string& str, const DataType& type)
{
return type != str;
}
DataType operator+(const char* cstr, const DataType& type)
{
return DataType(cstr) + type;
}
DataType operator+(const std::string& str, const DataType& type)
{
return DataType(str) + type;
}
}