-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharff_value.cpp
More file actions
executable file
·230 lines (203 loc) · 4.34 KB
/
Copy patharff_value.cpp
File metadata and controls
executable file
·230 lines (203 loc) · 4.34 KB
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
#include "arff_value.h"
std::string arff_value2str(ArffValueEnum e)
{
switch(e)
{
case INTEGER:
return "INTEGER";
case FLOAT:
return "FLOAT";
case DATE:
return "DATE";
case STRING:
return "STRING";
case NUMERIC:
return "NUMERIC";
case NOMINAL:
return "NOMINAL";
default:
return "UNKNOWN";
}
}
ArffValue::ArffValue(int32 i/*=0*/): m_int(i),
m_float(0.0),
m_str(""),
m_type(INTEGER),
m_missing(false)
{
}
ArffValue::ArffValue(float f): m_int(0),
m_float(f),
m_str(""),
m_type(FLOAT),
m_missing(false)
{
}
ArffValue::ArffValue(const std::string& str, bool convert/*=true*/,
bool is_date/*=false*/): m_int(0),
m_float(0.0f),
m_str(str),
m_missing(false)
{
m_type = (is_date)? DATE : STRING;
if(convert && (m_type == STRING))
{
// try float
try
{
float f;
str2num<float>(str, f);
m_type = FLOAT;
m_float = f;
}
catch(...)
{
// else leave it as STRING
}
}
}
ArffValue::ArffValue(const ArffValue& src) : m_int(src.m_int),
m_float(src.m_float),
m_str(src.m_str),
m_type(src.m_type),
m_missing(false)
{
}
ArffValue::ArffValue(ArffValueEnum type) : m_int(0),
m_float(0.0f),
m_str(""),
m_type(type),
m_missing(true)
{
}
ArffValue::~ArffValue()
{
}
ArffValueEnum ArffValue::type() const
{
return m_type;
}
void ArffValue::set(int32 i)
{
m_type = INTEGER;
m_int = i;
}
void ArffValue::set(float f)
{
m_type = FLOAT;
m_float = f;
}
void ArffValue::set(const std::string& str, ArffValueEnum e/*=STRING*/)
{
if((e != DATE) && (e != STRING))
{
THROW("%s expects 'DATE' or 'STRING', you've passed '%s'!",
"ArffValue::set", arff_value2str(e).c_str());
}
m_type = e;
m_str = str;
}
bool ArffValue::missing() const
{
return m_missing;
}
ArffValue::operator int32() const
{
switch(m_type)
{
case INTEGER:
return m_int;
case FLOAT:
return (int32)m_float;
default:
THROW("operator int32 cannot work on type '%s'!",
arff_value2str(m_type).c_str());
return 0; // I need to keep the compiler happy!
}
}
ArffValue::operator float() const
{
switch(m_type)
{
case INTEGER:
return (float)m_int;
case FLOAT:
return m_float;
default:
THROW("operator float cannot work on type '%s'!",
arff_value2str(m_type).c_str());
return 0.0f; // I need to keep the compiler happy!
}
}
ArffValue::operator std::string() const
{
switch(m_type)
{
case INTEGER:
return num2str<int32>(m_int);
case FLOAT:
return num2str<float>(m_float);
case DATE:
case STRING:
return m_str;
default:
THROW("operator std::string cannot work on type '%s'!",
arff_value2str(m_type).c_str());
return ""; // I need to keep the compiler happy!
}
}
bool ArffValue::operator ==(const ArffValue& right) const
{
if(m_type != right.m_type)
{
return false;
}
switch(m_type)
{
case INTEGER:
return (m_int == right.m_int);
case FLOAT:
return (m_float == right.m_float);
case DATE:
case STRING:
return (m_str == right.m_str);
default:
return false;
}
}
bool ArffValue::operator ==(int32 right) const
{
if(m_type != INTEGER)
{
return false;
}
return m_int == right;
}
bool ArffValue::operator ==(float right) const
{
if(m_type != FLOAT)
{
return false;
}
return m_float == right;
}
bool ArffValue::operator ==(const std::string& right) const
{
if((m_type != DATE) && (m_type != STRING))
{
return false;
}
return m_str == right;
}
bool operator ==(int32 left, const ArffValue& right)
{
return (right == left);
}
bool operator ==(float left, const ArffValue& right)
{
return (right == left);
}
bool operator ==(const std::string& left, const ArffValue& right)
{
return (right == left);
}