forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_ut.c
More file actions
411 lines (342 loc) · 8.17 KB
/
Copy pathdb_ut.c
File metadata and controls
411 lines (342 loc) · 8.17 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
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
/*
* Copyright (C) 2001-2003 FhG Fokus
* Copyright (C) 2007-2008 1&1 Internet AG
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* \file db/db_ut.c
* \brief Utility functions for database drivers.
*
* This utility methods are used from the database SQL driver to convert
* values and print SQL queries from the internal API representation.
*/
#include "db_ut.h"
#include "../mem/mem.h"
#include "../dprint.h"
#include <limits.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
inline int db_str2int(const char* _s, int* _v)
{
long tmp;
char* p = NULL;
if (!_s || !_v) {
LM_ERR("Invalid parameter value\n");
return -1;
}
tmp = strtol(_s, &p, 10);
if (((tmp == LONG_MAX || tmp == LONG_MIN) && errno == ERANGE) ||
(tmp < INT_MIN) || (tmp > INT_MAX)) {
LM_ERR("Value out of range\n");
return -1;
}
if (p && *p != '\0') {
LM_ERR("Unexpected characters: [%s]\n", p);
return -2;
}
*_v = (int)tmp;
return 0;
}
inline int db_str2bigint(const char* _s, long long* _v)
{
long long tmp;
char* p = NULL;
if (!_s || !_v) {
LM_ERR("Invalid parameter value\n");
return -1;
}
tmp = strtoll(_s, &p, 10);
if ((tmp == LLONG_MIN || tmp == LLONG_MAX) && errno == ERANGE) {
LM_ERR("Value out of range\n");
return -1;
}
if (p && *p != '\0') {
LM_ERR("Unexpected characters: [%s]\n", p);
return -2;
}
*_v = tmp;
return 0;
}
/*
* Convert a string to double
*/
inline int db_str2double(const char* _s, double* _v)
{
if ((!_s) || (!_v)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
*_v = atof(_s);
return 0;
}
/*
* Convert an integer to string
*/
inline int db_int2str(int _v, char* _s, int* _l)
{
int ret;
if ((!_s) || (!_l) || (!*_l)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
ret = snprintf(_s, *_l, "%-d", _v);
if (ret < 0 || ret >= *_l) {
LM_ERR("Error in snprintf\n");
return -1;
}
*_l = ret;
return 0;
}
/*
* Convert an integer to string
*/
inline int db_bigint2str(long long _v, char* _s, int* _l)
{
int ret;
if ((!_s) || (!_l) || (!*_l)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
ret = snprintf(_s, *_l, "%-lld", _v);
if (ret < 0 || ret >= *_l) {
LM_ERR("Error in snprintf\n");
return -1;
}
*_l = ret;
return 0;
}
/*
* Convert a double to string
*/
inline int db_double2str(double _v, char* _s, int* _l)
{
int ret;
if ((!_s) || (!_l) || (!*_l)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
ret = snprintf(_s, *_l, "%-10.2f", _v);
if (ret < 0 || ret >= *_l) {
LM_ERR("Error in snprintf\n");
return -1;
}
*_l = ret;
return 0;
}
/*
* Convert a string to time_t
*/
inline int db_str2time(const char* _s, time_t* _v)
{
struct tm time;
if ((!_s) || (!_v)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
/* Convert database time representation to time_t structure
It is necessary to zero tm structure first */
memset(&time, '\0', sizeof(struct tm));
if (strptime(_s, "%Y-%m-%d %H:%M:%S", &time) == NULL &&
strptime(_s, "%Y-%m-%d", &time) == NULL) {
LM_ERR("Error during time conversion\n");
return -1;
}
/* Daylight saving information got lost in the database
* so let mktime to guess it. This eliminates the bug when
* contacts reloaded from the database have different time
* of expiration by one hour when daylight saving is used
*/
time.tm_isdst = -1;
*_v = mktime(&time);
return 0;
}
inline int db_time2str_nq(time_t _v, char* _s, int* _l)
{
struct tm* t;
int l;
if ((!_s) || (!_l) || (*_l < 2)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
/* Convert time_t structure to format accepted by the database */
t = localtime(&_v);
l = strftime(_s, *_l -1, "%Y-%m-%d %H:%M:%S", t);
if (l == 0) {
LM_ERR("Error during time conversion\n");
/* the value of _s is now unspecified */
_s = NULL;
_l = 0;
return -1;
}
*_l = l;
return 0;
}
inline int db_time2str(time_t _v, char* _s, int* _l)
{
if ((!_s) || (!_l) || (*_l < 2)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
*_s++ = '\'';
if (db_time2str_nq(_v, _s, _l)!=0)
return -1;
*(_s + *_l) = '\'';
*_l += 2;
return 0;
}
/*
* Print list of columns separated by comma
*/
inline int db_print_columns(char* _b, const int _l, const db_key_t* _c, const int _n)
{
int i, ret, len = 0;
if ((!_c) || (!_n) || (!_b) || (!_l)) {
LM_ERR("Invalid parameter value\n");
return -1;
}
for(i = 0; i < _n; i++) {
if (i == (_n - 1)) {
ret = snprintf(_b + len, _l - len, "%.*s ", _c[i]->len, _c[i]->s);
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
} else {
ret = snprintf(_b + len, _l - len, "%.*s,", _c[i]->len, _c[i]->s);
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
}
}
return len;
error:
LM_ERR("Error in snprintf\n");
return -1;
}
/*
* Print values of SQL statement
*/
int db_print_values(const db_con_t* _c, char* _b, const int _l, const db_val_t* _v,
const int _n, int (*val2str)(const db_con_t*, const db_val_t*, char*, int*))
{
int i, l, len = 0;
if (!_c || !_b || !_l || !_v || !_n) {
LM_ERR("Invalid parameter value\n");
return -1;
}
for(i = 0; i < _n; i++) {
if (CON_HAS_PS(_c)) {
*(_b+len++) = '?';
} else {
l = _l - len;
if ( (*val2str)(_c, _v + i, _b + len, &l) < 0) {
LM_ERR("Error while converting value to string\n");
return -1;
}
len += l;
}
if (i != (_n - 1)) {
*(_b + len) = ',';
len++;
}
}
return len;
}
/*
* Print where clause of SQL statement
*/
int db_print_where(const db_con_t* _c, char* _b, const int _l, const db_key_t* _k,
const db_op_t* _o, const db_val_t* _v, const int _n, int (*val2str)
(const db_con_t*, const db_val_t*, char*, int*))
{
int i, l, ret, len = 0;
if (!_c || !_b || !_l || !_k || !_v || !_n) {
LM_ERR("Invalid parameter value\n");
return -1;
}
for(i = 0; i < _n; i++) {
if (_o) {
ret = snprintf(_b + len, _l - len, "%.*s%s",
_k[i]->len, _k[i]->s, _o[i]);
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
} else {
ret = snprintf(_b + len, _l - len, "%.*s=", _k[i]->len, _k[i]->s);
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
}
if (CON_HAS_PS(_c)) {
*(_b+len++) = '?';
} else {
l = _l - len;
if ( (*val2str)(_c, &(_v[i]), _b + len, &l) < 0) {
LM_ERR("Error while converting value to string\n");
return -1;
}
len += l;
}
if (i != (_n - 1)) {
if (_c->flags & CON_OR_OPERATOR)
ret = snprintf(_b + len, _l - len, " OR ");
else
ret = snprintf(_b + len, _l - len, " AND ");
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
}
}
return len;
error:
LM_ERR("Error in snprintf\n");
return -1;
}
/*
* Print set clause of update SQL statement
*/
int db_print_set(const db_con_t* _c, char* _b, const int _l, const db_key_t* _k,
const db_val_t* _v, const int _n, int (*val2str)(const db_con_t*,
const db_val_t*,char*, int*))
{
int i, l, ret, len = 0;
if (!_c || !_b || !_l || !_k || !_v || !_n) {
LM_ERR("Invalid parameter value\n");
return -1;
}
for(i = 0; i < _n; i++) {
ret = snprintf(_b + len, _l - len, "%.*s=", _k[i]->len, _k[i]->s);
if (ret < 0 || ret >= (_l - len)) goto error;
len += ret;
if (CON_HAS_PS(_c)) {
*(_b+len++) = '?';
} else {
l = _l - len;
if ( (*val2str)(_c, &(_v[i]), _b + len, &l) < 0) {
LM_ERR("Error while converting value to string\n");
return -1;
}
len += l;
}
if (i != (_n - 1)) {
if ((_l - len) >= 1) {
*(_b + len++) = ',';
}
}
}
return len;
error:
LM_ERR("Error in snprintf\n");
return -1;
}