This repository has been 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
/
Copy pathQuery.cpp
274 lines (217 loc) · 5.79 KB
/
Query.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
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"
#ifdef __MARIADB__
#include <mysql.h> /*Still using MariaDB Connector C*/
#endif
#ifdef __SQLITE__
#include <sqlite3.h>
#endif
#include <stdio.h>
#ifdef __SQLITE__
int _sqlite3_query_exec_callback(void* user, int, char**, char**)
{
return 0;
}
#endif
MDKDLLAPI CResultSet::CResultSet()
{
m_uiPos = 0;
}
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)
{
MYSQL_RES *result = NULL;
MYSQL_ROW row;
unsigned int fields = 0;
#ifdef __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
if (mysql_query((MYSQL*)db->GetDatabasePointer(), str.c_str()) != 0)
{
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
result = mysql_store_result((MYSQL*)db->GetDatabasePointer());
if (!result)
{
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
if (result->row_count == 0)
{
mysql_free_result(result);
return true;
}
fields = mysql_num_fields(result);
if (fields == 0)
{
mysql_free_result(result);
return true;
}
row = mysql_fetch_row(result);
if (row == NULL)
{
mysql_free_result(result);
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db));
return false;
}
do
{
std::vector<std::string> vec;
unsigned int i = 0;
for (; i < fields; i++)
vec.push_back(row[i]);
m_vvRows.push_back(vec);
} while ((row = mysql_fetch_row(result)));
mysql_free_result(result);
}
#endif
#ifdef __SQLITE__
if (db->GetDatabaseType() == DATABASE_TYPE_SQLITE)
{
sqlite3_stmt* stmt = NULL;
if (sqlite3_prepare_v2((sqlite3*)db->GetDatabasePointer(), str.c_str(), (int)str.length(), &stmt, NULL) != SQLITE_OK)
{
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", sqlite3_errmsg((sqlite3*)db->GetDatabasePointer()));
return false;
}
fields = sqlite3_column_count(stmt);
if (fields == 0)
{
sqlite3_finalize(stmt);
return false;
}
if (sqlite3_step(stmt) != SQLITE_ROW)
{ // No rows
sqlite3_finalize(stmt);
return false;
}
do
{
std::vector<std::string> vec;
unsigned int i = 0;
for (; i < fields; i++)
vec.push_back(std::string((const char*)sqlite3_column_text(stmt, i)));
m_vvRows.push_back(vec);
} while (sqlite3_step(stmt) == SQLITE_ROW);
sqlite3_finalize(stmt);
}
#endif
return true;
}
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());
}
unsigned int atoui(const char *x)
{
return (unsigned int)strtol(x, (char **) NULL, 10);
}
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 mdk_only_run_query(CDatabase* db, std::string query)
{
if (!db->GetDatabasePointer())
return false;
#ifdef __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
if (mysql_query((MYSQL*)db->GetDatabasePointer(), query.c_str()) != 0)
{
LOG_ERROR("Database", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
}
#endif
#ifdef __SQLITE__
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 __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
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;
}