-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlarg.h
222 lines (210 loc) · 5.2 KB
/
sqlarg.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
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
#ifndef LCMYSQL_ARG_H
#define LCMYSQL_ARG_H
#include <cstdint>
#include <cstring>
#include <istream>
#include <fstream>
#include <sstream>
#include <string>
#include <memory>
#include <cppconn/sqlstring.h>
#include "sqldecls.h"
LC_SQL_DECL_BEGIN
class SqlArg
{
private:
enum SqlType
{
Bool,
Int,
UInt,
Long,
ULong,
Double,
String,
Blob
};
union
{
bool _bool;
std::int32_t _int;
std::uint32_t _uint;
std::int64_t _long;
std::uint64_t _ulong;
long double _double;
std::istream* _blob;
sql::SQLString* _string;
};
SqlType _type;
std::shared_ptr<std::string> _rawString;
bool _destroy = true;
public:
typedef SqlType Type;
//SqlArg() {}
SqlArg(const SqlArg& arg)
{
switch(arg._type)
{
case Type::Bool:
_bool = arg._bool;
break;
case Type::Int:
_int = arg._int;
break;
case Type::UInt:
_uint = arg._uint;
break;
case Type::Long:
_long = arg._long;
break;
case Type::ULong:
_ulong = arg._ulong;
break;
case Type::String:
{
_string = new sql::SQLString(*arg._rawString);
_rawString = arg._rawString;
break;
}
case Type::Double:
_double = arg._double;
break;
case Type::Blob:
_blob = arg._blob;
break;
default:
break;
}
_type = arg._type;
}
SqlArg(bool value): _bool(value), _type(Type::Bool) {}
SqlArg(std::int32_t value): _int(value), _type(Type::Int) {}
SqlArg(std::uint32_t value): _uint(value), _type(Type::UInt) {}
SqlArg(std::int64_t value): _long(value), _type(Type::Long) {}
SqlArg(std::uint64_t value): _ulong(value), _type(Type::ULong) {}
SqlArg(const char* value): _type(Type::String)
{
_rawString.reset(new std::string(value));
_string = new sql::SQLString(* _rawString);
}
SqlArg(const std::string& value): SqlArg(value.c_str()) {}
SqlArg(long double value): _double(value), _type(Type::Double) {}
SqlArg(double value): _double(value), _type(Type::Double) {}
SqlArg(Type type, const std::string& value): SqlArg(value) { _type = type; }
SqlArg(std::istream* value): _blob(value), _type(Type::Blob) {}
~SqlArg()
{
if (_type == Type::Blob && _destroy && _blob != 0)
{
std::fstream* f = dynamic_cast<std::fstream *>(_blob);
if (f != 0)
{
f->close();
}
delete _blob;
}
if (_type == Type::String && _destroy && _string != 0)
{
delete _string;
}
}
SqlType type() const
{
return this->_type;
}
bool asBool() const
{
return _bool;
}
std::int32_t asInt() const
{
return _int;
}
std::uint32_t asUInt() const
{
return _uint;
}
std::int64_t asLong() const
{
return _long;
}
std::uint64_t asULong() const
{
return _ulong;
}
long double asLongDouble() const
{
return _double;
}
double asDouble() const
{
return _double;
}
sql::SQLString* asString() const
{
return _string;
}
const std::string& asStdString() const
{
return * _rawString;
}
std::istream* asBlob() const
{
return _blob;
}
const std::string toString() const
{
std::stringstream toStringBuilder;
toStringBuilder << "SqlArg(";
switch(_type)
{
case Type::Bool:
{
toStringBuilder << "Bool";
toStringBuilder << ": " << _bool << ")";
break;
}
case Type::Int:
{
toStringBuilder << "Int";
toStringBuilder << ": " << _int << ")";
break;
}
case Type::UInt:
{
toStringBuilder << "UInt";
toStringBuilder << ": " << _uint << ")";
break;
}
case Type::Long:
{
toStringBuilder << "Long";
toStringBuilder << ": " << _long << ")";
break;
}
case Type::ULong:
{
toStringBuilder << "ULong";
toStringBuilder << ": " << _ulong << ")";
break;
}
case Type::String:
{
toStringBuilder << "String";
toStringBuilder << ": " << * _rawString << ")";
break;
}
case Type::Double:
{
toStringBuilder << "Double";
toStringBuilder << ": " << _double << ")";
break;
}
default:
break;
}
return toStringBuilder.str();
}
};
LC_SQL_DECL_END
#endif