This repository was archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuery.cpp
More file actions
264 lines (208 loc) · 5.61 KB
/
Copy pathQuery.cpp
File metadata and controls
264 lines (208 loc) · 5.61 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
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
258
259
260
261
262
263
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define MDK_EXPORT_FUNCTIONS 1 /*Export the methods*/
#include "Query.h"
#include "Utility.h"
#define check_error(x) if (x) return;
#ifdef ENABLE_MYSQL_SUPPORT
#include "centosworkaround.h"
#include <amy.hpp>
#endif
#ifdef ENABLE_SQLITE3_SUPPORT
#include <sqlite3.h>
#endif
#include <stdio.h>
static unsigned int atoui(const char *x)
{
return (unsigned int)strtol(x, (char **) NULL, 10);
}
#ifdef ENABLE_SQLITE3_SUPPORT
static int sqlite3_query_exec_callback(void* user, int, char**, char**)
{
return 0;
}
#endif
#ifdef ENABLE_MYSQL_SUPPORT
static void amy_handle_store_result(CDatabase* db, CResultSet* res, AMY_SYSTEM_NS::error_code const& ec, amy::result_set rs, amy::connector*)
{
if (ec)
res->ProcessResultSet(db, NULL);
else
res->ProcessResultSet(db, (void*)&rs);
}
static void amy_handle_query(CDatabase* db, CResultSet* res, AMY_SYSTEM_NS::error_code const& ec, amy::connector* connector)
{
if (ec)
res->ProcessResultSet(db, NULL);
else
connector->async_store_result(std::bind(amy_handle_store_result, db, res, amy::placeholders::error, amy::placeholders::result_set, connector));
}
#endif
MDKDLLAPI CResultSet::CResultSet()
{
m_uiPos = 0;
m_bExecuting = false;
}
MDKDLLAPI CResultSet::~CResultSet()
{
size_t i = 0;
for (; i < m_vvRows.size(); i++)
{
m_vvRows.at(i).clear();
}
m_vvRows.clear();
}
MDKDLLAPI bool CResultSet::ExecuteQuery(CDatabase* db, std::string str)
{
#ifdef ENABLE_MYSQL_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_MYSQL)
{
m_bExecuting = true;
amy::connector* connector = (amy::connector*)db->GetDatabasePointer();
connector->async_query(str, std::bind(amy_handle_query, db, this, amy::placeholders::error, connector));
}
#endif
#ifdef ENABLE_SQLITE3_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_SQLITE)
{
//#error "Missing Asynchronous support for SQLite3"
}
#endif
return true;
}
MDKDLLAPI void CResultSet::ProcessResultSet(CDatabase* db, void* _rs)
{
// Clear result set
size_t i = 0;
m_bExecuting = false;
for (; i < m_vvRows.size(); i++)
{
m_vvRows.at(i).clear();
}
m_vvRows.clear();
if (!_rs)
return;
#ifdef ENABLE_MYSQL_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_MYSQL)
{
amy::result_set* rs = (amy::result_set*)_rs;
for (const auto& row : (*rs))
{
std::vector<std::string> entry;
for (i = 0; i < rs->field_count(); rs++)
{
entry.push_back(row[i].as<std::string>());
}
m_vvRows.push_back(entry);
}
}
#endif
#ifdef ENABLE_SQLITE3_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_SQLITE)
{
//#error "Missing Asynchronous support for SQLite3"
}
#endif
}
MDKDLLAPI size_t CResultSet::GetTotalRows()
{
return m_vvRows.size();
}
MDKDLLAPI bool CResultSet::GotoFirstRow()
{
if (m_vvRows.size() < 1)
return false;
m_uiPos = 0;
return true;
}
MDKDLLAPI bool CResultSet::GotoNextRow()
{
m_uiPos++;
if (m_vvRows.size() < (m_uiPos+1))
return false;
return true;
}
MDKDLLAPI bool CResultSet::GotoRow(size_t row)
{
m_uiPos = row;
if (m_vvRows.size() < m_uiPos)
return false;
return true;
}
MDKDLLAPI double CResultSet::GetDoubleFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atof(m_vvRows.at(m_uiPos).at(index).c_str());
}
MDKDLLAPI unsigned int CResultSet::GetUIntFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atoui(m_vvRows.at(m_uiPos).at(index).c_str());
}
MDKDLLAPI std::string CResultSet::GetStringFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return m_vvRows.at(m_uiPos).at(index);
}
MDKDLLAPI int CResultSet::GetIntFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atoi(m_vvRows.at(m_uiPos).at(index).c_str());
}
bool MDKDLLAPI CResultSet::IsQueryExecuting()
{
return m_bExecuting;
}
bool MDKDLLAPI mdk_only_run_query(CDatabase* db, std::string query)
{
if (!db->GetDatabasePointer())
return false;
#ifdef ENABLE_MYSQL_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_MYSQL)
{
amy::connector* connector = (amy::connector*)db->GetDatabasePointer();
connector->query(query);
}
#endif
#ifdef ENABLE_SQLITE3_SUPPORT
char *errMsg = NULL;
if (db->GetDatabaseType() == DATABASE_TYPE_SQLITE)
{
if (sqlite3_exec((sqlite3*)db->GetDatabasePointer(), query.c_str(), sqlite3_query_exec_callback, NULL, (char**)&errMsg)!=SQLITE_OK)
{
LOG_ERROR("Database", "Cannot execute query. Error: %s\n", errMsg);
return false;
}
}
#endif
return true;
}
bool MDKDLLAPI mdk_escape_query_string(CDatabase* db, std::string& inputString)
{
#ifdef ENABLE_MYSQL_SUPPORT
if (db->GetDatabaseType() == DATABASE_TYPE_MYSQL)
{
char *temporanyString = (char*)malloc(sizeof(char)*(inputString.length() * 2 + 5));
if (!temporanyString)
return false; // Out of memory, return null string
mysql_real_escape_string((MYSQL*)db->GetDatabasePointer(), temporanyString, inputString.c_str(), (int)inputString.length());
inputString = std::string(temporanyString);
free(temporanyString);
}
#endif
return true;
}