-
Notifications
You must be signed in to change notification settings - Fork 22
/
gksql.cxx
467 lines (411 loc) · 14 KB
/
gksql.cxx
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
* gksql.cxx
*
* Generic interface to access SQL databases
*
* Copyright (c) 2004, Michal Zygmuntowicz
* Copyright (c) 2006-2019, Jan Willamowius
*
* This work is published under the GNU Public License version 2 (GPLv2)
* see file COPYING for details.
* We also explicitly grant the right to link this code
* with the OpenH323/H323Plus and OpenSSL library.
*
*/
#include <ptlib.h>
#include <ptlib/sockets.h>
#include "stl_supp.h"
#include "Toolkit.h"
#include "gksql.h"
using std::max;
using std::min;
namespace {
const int GKSQL_DEFAULT_CONNECT_TIMEOUT = 10; // in seconds
const int GKSQL_DEFAULT_READ_TIMEOUT = 60; // in seconds
const long GKSQL_CLEANUP_TIMEOUT = 5000; // in milliseconds !
const int GKSQL_DEFAULT_MIN_POOL_SIZE = 1;
const int GKSQL_DEFAULT_MAX_POOL_SIZE = 1;
}
GkSQLResult::~GkSQLResult()
{
}
GkSQLConnection::GkSQLConnection(
/// name to use in the log
const char * name)
: NamedObject(name), m_port(0),
m_connectTimeout(GKSQL_DEFAULT_CONNECT_TIMEOUT),
m_readTimeout(GKSQL_DEFAULT_READ_TIMEOUT),
m_minPoolSize(GKSQL_DEFAULT_MIN_POOL_SIZE),
m_maxPoolSize(GKSQL_DEFAULT_MAX_POOL_SIZE),
m_destroying(false), m_connected(false)
{
}
GkSQLConnection* GkSQLConnection::Create( const char * driverName, const char * connectionName)
{
return Factory<GkSQLConnection>::Create(driverName, connectionName);
}
bool GkSQLConnection::Initialize(
/// config to be read
PConfig * cfg,
/// name of the config section with SQL settings
const char * cfgSectionName)
{
PWaitAndSignal lock(m_connectionsMutex);
if (!(cfg && cfgSectionName)) {
PTRACE(1, GetName() << "\tInitialize failed: NULL config or config section not specified!");
SNMP_TRAP(4, SNMPError, Database, GetName() + " creation failed");
return false;
}
m_library = cfg->GetString(cfgSectionName, "Library", "");
GetHostAndPort(cfg->GetString(cfgSectionName, "Host", "localhost"), m_host, m_port);
m_database = cfg->GetString(cfgSectionName, "Database", "");
m_username = cfg->GetString(cfgSectionName, "Username", "");
m_password = Toolkit::Instance()->ReadPassword(cfgSectionName, "Password");
m_connectTimeout = cfg->GetInteger(cfgSectionName, "ConnectTimeout", GKSQL_DEFAULT_CONNECT_TIMEOUT);
m_readTimeout = cfg->GetInteger(cfgSectionName, "ReadTimeout", GKSQL_DEFAULT_READ_TIMEOUT);
m_minPoolSize = cfg->GetInteger(cfgSectionName, "MinPoolSize", GKSQL_DEFAULT_MIN_POOL_SIZE);
m_minPoolSize = max(m_minPoolSize, 0);
m_maxPoolSize = cfg->GetInteger(cfgSectionName, "MaxPoolSize", m_minPoolSize);
if (m_maxPoolSize >= 0)
m_maxPoolSize = max(m_minPoolSize, m_maxPoolSize);
if (m_host.IsEmpty() || m_database.IsEmpty()) {
PTRACE(1, GetName() << "\tInitialize failed: database name or host not specified!");
SNMP_TRAP(4, SNMPError, Database, GetName() + " creation failed");
return false;
}
return Connect();
}
bool GkSQLConnection::Connect()
{
PWaitAndSignal lock(m_connectionsMutex);
for (PINDEX i = m_idleConnections.size(); i < m_minPoolSize; ++i) {
SQLConnPtr connptr = CreateNewConnection(i);
if (connptr != NULL)
m_idleConnections.push_back(connptr);
}
if (m_idleConnections.empty() && m_minPoolSize) {
PTRACE(1, GetName() << "\tDatabase connection failed: "
<< m_username << '@' << m_host << '[' << m_database << ']');
SNMP_TRAP(4, SNMPError, Database, GetName() + " connection failed");
return false;
} else {
PTRACE(3, GetName() << "\tDatabase connection pool created: "
<< m_username << '@' << m_host << '[' << m_database << ']');
PTRACE(5, GetName() << "\tConnection pool: "
<< m_idleConnections.size() << " SQL connections created, "
<< (m_minPoolSize - m_idleConnections.size()) << " failed");
m_connected = true;
return true;
}
}
void GkSQLConnection::Disconnect()
{
PWaitAndSignal lock(m_connectionsMutex);
// disconnect/delete all connections
PTRACE(3, GetName() << "\tDisconnecting all SQL connections in pool");
for(iterator Iter = m_idleConnections.begin(); Iter != m_idleConnections.end(); ++Iter) {
delete *Iter;
}
m_idleConnections.clear();
m_connected = false;
}
GkSQLConnection::~GkSQLConnection()
{
const PTime timeStart;
m_destroying = true;
// wake up any waiting threads
m_connectionAvailable.Signal();
// wait for still active connections (should not happen, but...)
do {
{
PWaitAndSignal lock(m_connectionsMutex);
m_waitingRequests.clear();
if (m_busyConnections.empty())
break;
else
PTRACE(2, GetName() << "\tActive connections (" << m_busyConnections.size() << ") during cleanup - sleeping 250ms");
}
PThread::Sleep(250);
} while ((PTime()-timeStart).GetMilliSeconds() < GKSQL_CLEANUP_TIMEOUT);
// close connections from the idle list and leave any on the busy list
// busy list should be empty at this moment
PWaitAndSignal lock(m_connectionsMutex);
m_waitingRequests.clear();
iterator iter = m_idleConnections.begin();
iterator end = m_idleConnections.end();
while (iter != end) {
PTRACE(5, GetName() << "\tDatabase connection (id " << (*iter)->m_id << ") closed");
delete *iter++;
}
m_idleConnections.clear();
PTRACE(5, GetName() << "\tConnection pool cleanup finished");
if (!m_busyConnections.empty()) {
PTRACE(1, GetName() << "\tConnection cleanup finished with " << m_busyConnections.size() << " active connections");
}
}
bool GkSQLConnection::AcquireSQLConnection(
SQLConnPtr & connptr,
long timeout
)
{
if (m_destroying)
return false;
if (!m_connected) {
PTRACE(2, GetName() << "\tAttempting to reconnect to the database");
Disconnect();
if (!Connect()) {
PTRACE(2, GetName() << "\tFailed to reconnect to the database");
SNMP_TRAP(5, SNMPError, Database, GetName() + " connection failed");
return false;
}
}
const PTime timeStart;
connptr = NULL;
bool waiting = false;
// wait for an idle connection or timeout
do {
if (!waiting) {
PWaitAndSignal lock(m_connectionsMutex);
if (m_destroying)
break;
// grab an idle connection if available or add itself
// to the list of waiting requests
if (!m_idleConnections.empty()) {
connptr = m_idleConnections.front();
m_idleConnections.pop_front();
m_busyConnections.push_front(connptr);
} else {
m_waitingRequests.push_back(&connptr);
waiting = true;
}
}
if (connptr == NULL && timeout != 0 && !m_destroying)
m_connectionAvailable.Wait(min(250L, timeout));
if (connptr == NULL && timeout >= 0)
if ((PTime()-timeStart).GetMilliSeconds() >= timeout)
break;
} while (connptr == NULL && !m_destroying);
if (connptr == NULL || m_destroying) {
PWaitAndSignal lock(m_connectionsMutex);
m_waitingRequests.remove(&connptr);
if (connptr) {
m_idleConnections.push_back(connptr);
m_busyConnections.remove(connptr);
}
PTRACE(2, GetName() << "\tQuery timed out waiting for idle connection");
return false;
}
return connptr != NULL;
}
void GkSQLConnection::ReleaseSQLConnection(
SQLConnPtr& connptr,
bool deleteFromPool
)
{
if (connptr == NULL)
return;
// mark the connection as idle or give it to the first waiting request
{
PWaitAndSignal lock(m_connectionsMutex);
// remove itself from the list of waiting requests
m_waitingRequests.remove(&connptr);
witerator iter = m_waitingRequests.begin();
witerator end = m_waitingRequests.end();
// find a waiting requests that has not been given a connection yet
while (iter != end) {
// check if SQLConnPtr* is not NULL and if SQLConnPtr is empty (NULL)
if (*iter && *(*iter) == NULL)
break;
++iter;
}
if (iter != end && !m_destroying && !deleteFromPool) {
// do not remove itself from the list of busy connections
// just move the connection to the waiting request
*(*iter) = connptr;
} else {
// move the connection to the list of idle connections
m_busyConnections.remove(connptr);
if (deleteFromPool)
delete connptr;
else
m_idleConnections.push_back(connptr);
}
connptr = NULL;
}
// wake up any threads waiting for an idle connection
if (!deleteFromPool)
m_connectionAvailable.Signal();
}
GkSQLResult* GkSQLConnection::ExecuteQuery(
const char* queryStr,
const PStringArray * queryParams,
long timeout)
{
SQLConnPtr connptr;
if (AcquireSQLConnection(connptr, timeout)) {
GkSQLResult* result = NULL;
if (queryParams) {
const PString finalQueryStr = ReplaceQueryParams(connptr, queryStr, *queryParams);
PTRACE(5, GetName() << "\tExecuting query: " << finalQueryStr);
result = ExecuteQuery(connptr, finalQueryStr, timeout);
} else {
PTRACE(5, GetName() << "\tExecuting query: " << queryStr);
result = ExecuteQuery(connptr, queryStr, timeout);
}
ReleaseSQLConnection(connptr, !m_connected);
return result;
} else {
PTRACE(2, GetName() << "\tQuery failed - no idle connection in the pool");
SNMP_TRAP(5, SNMPError, Database, GetName() + " query failed");
return NULL;
}
}
GkSQLResult* GkSQLConnection::ExecuteQuery(
const char* queryStr,
const std::map<PString, PString> & queryParams,
long timeout
)
{
SQLConnPtr connptr;
if (AcquireSQLConnection(connptr, timeout)) {
GkSQLResult * result = NULL;
if (queryParams.empty()) {
PTRACE(5, GetName() << "\tExecuting query: " << queryStr);
result = ExecuteQuery(connptr, queryStr, timeout);
} else {
const PString finalQueryStr = ReplaceQueryParams(connptr, queryStr, queryParams);
PTRACE(5, GetName() << "\tExecuting query: " << finalQueryStr);
result = ExecuteQuery(connptr, finalQueryStr, timeout);
}
ReleaseSQLConnection(connptr, !m_connected);
return result;
} else {
PTRACE(2, GetName() << "\tQuery failed - no idle connection in the pool");
SNMP_TRAP(5, SNMPError, Database, GetName() + " query failed");
return NULL;
}
}
PString GkSQLConnection::ReplaceQueryParams(
/// SQL connection to get escape parameters from
GkSQLConnection::SQLConnPtr conn,
/// parametrized query string
const char* queryStr,
/// parameter values
const PStringArray & queryParams
)
{
const PINDEX numParams = queryParams.GetSize();
PString finalQuery(queryStr);
PINDEX queryLen = finalQuery.GetLength();
PINDEX pos = 0;
char * endChar = NULL;
while (pos != P_MAX_INDEX && pos < queryLen) {
pos = finalQuery.Find('%', pos);
if (pos++ == P_MAX_INDEX)
break;
if (pos >= queryLen) // strings ending with '%' - special case
break;
const char c = finalQuery[pos]; // char next after '%'
if (c == '%') { // replace %% with %
finalQuery.Delete(pos, 1);
queryLen--;
} else if (c >= '0' && c <= '9') { // simple syntax (%1)
const long paramNo = strtol((const char*)finalQuery + pos, &endChar, 10);
const long paramLen = endChar - (const char*)finalQuery - pos;
if (paramNo >= 1 && paramNo <= numParams) {
const PString escapedStr = EscapeString(conn, queryParams[paramNo-1]);
const PINDEX escapedLen = escapedStr.GetLength();
finalQuery.Splice(escapedStr, pos - 1, paramLen + 1);
queryLen = queryLen + escapedLen - paramLen - 1;
pos = pos - 1 + escapedLen;
} else if (paramNo && paramLen) {
// leave unknown placeholders intact so a 2nd stage can replace them
}
} else if (c == '{') { // escaped syntax (%{1})
const PINDEX closingBrace = finalQuery.Find('}', ++pos);
if (closingBrace != P_MAX_INDEX) {
const long paramNo = strtol((const char*)finalQuery + pos, &endChar, 10);
const long paramLen = endChar - (const char*)finalQuery - pos;
if (*endChar == '}' && paramNo >= 1 && paramNo <= numParams) {
const PString escapedStr = EscapeString(conn, queryParams[paramNo-1]);
const PINDEX escapedLen = escapedStr.GetLength();
finalQuery.Splice(escapedStr, pos - 2, paramLen + 3);
queryLen = queryLen + escapedLen - paramLen - 3;
pos = pos - 2 + escapedLen;
} else if (paramNo && paramLen) {
// leave unknown placeholders intact so a 2nd stage can replace them
}
}
}
}
return finalQuery;
}
PString GkSQLConnection::ReplaceQueryParams(
/// SQL connection to get escape parameters from
GkSQLConnection::SQLConnPtr conn,
/// parametrized query string
const char* queryStr,
/// parameter values
const std::map<PString, PString> & queryParams
)
{
PString finalQuery(queryStr);
PINDEX queryLen = finalQuery.GetLength();
PINDEX pos = 0;
while (pos != P_MAX_INDEX && pos < queryLen) {
pos = finalQuery.Find('%', pos);
if (pos++ == P_MAX_INDEX)
break;
if (pos >= queryLen) // strings ending with '%' - special case
break;
const char c = finalQuery[pos]; // char next after '%'
if (c == '%') { // replace %% with %
finalQuery.Delete(pos, 1);
queryLen--;
} else if (c == '{') { // escaped syntax (%{Name})
const PINDEX closingBrace = finalQuery.Find('}', ++pos);
if (closingBrace != P_MAX_INDEX) {
const PINDEX paramLen = closingBrace - pos;
std::map<PString, PString>::const_iterator i = queryParams.find(
finalQuery.Mid(pos, paramLen)
);
if (i != queryParams.end()) {
const PString escapedStr = EscapeString(conn, i->second);
const PINDEX escapedLen = escapedStr.GetLength();
finalQuery.Splice(escapedStr, pos - 2, paramLen + 3);
queryLen = queryLen + escapedLen - paramLen - 3;
pos = pos - 2 + escapedLen;
} else {
// leave unknown placeholders intact so a 2nd stage can replace them
}
}
} else { // simple syntax (%1)
std::map<PString, PString>::const_iterator i = queryParams.find(c);
if (i != queryParams.end()) {
const PString escapedStr = EscapeString(conn, i->second);
const PINDEX escapedLen = escapedStr.GetLength();
finalQuery.Splice(escapedStr, pos - 1, 2);
queryLen = queryLen + escapedLen - 2;
pos = pos - 1 + escapedLen;
} else {
// leave unknown placeholders intact so a 2nd stage can replace them
}
}
}
return finalQuery;
}
void GkSQLConnection::GetInfo(
Info &info /// filled with SQL connection state information upon return
)
{
PWaitAndSignal lock(m_connectionsMutex);
info.m_connected = m_connected;
info.m_minPoolSize = m_minPoolSize;
info.m_maxPoolSize = m_maxPoolSize;
info.m_idleConnections = m_idleConnections.size();
info.m_busyConnections = m_busyConnections.size();
info.m_waitingRequests = m_waitingRequests.size();
}
GkSQLConnection::SQLConnWrapper::~SQLConnWrapper()
{
}