Menu

[r1545]: / cppdb / trunk / postgres_backend.cpp  Maximize  Restore  History

Download this file

623 lines (597 with data), 13.2 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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
#include <postgresql/libpq-fe.h>
#include "backend.h"
#include "errors.h"
#include "utils.h"
#include <sstream>
#include <vector>
#include <limits>
#include <iomanip>
#include <stdlib.h>
#include <string.h>
#include <iostream>
namespace cppdb {
namespace postgresql {
class result : public backend::result {
public:
result(PGresult *res) :
res_(res),
rows_(PQntuples(res)),
cols_(PQnfields(res)),
current_(-1)
{
}
virtual ~result()
{
PQclear(res_);
}
virtual next_row has_next()
{
if(current_ + 1 < rows_)
return next_row_exists;
else
return last_row_reached;
}
virtual bool next()
{
current_ ++;
if(current_ < rows_) {
return true;
}
return false;
}
template<typename T>
bool do_fetch(int col,T &v)
{
if(do_isnull(col))
return false;
std::istringstream ss;
ss.imbue(std::locale::classic());
ss.str(PQgetvalue(res_,current_,col));
ss >> v;
if(!ss || !ss.eof())
throw bad_value_cast();
return true;
}
virtual bool fetch(int col,short &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,unsigned short &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,int &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,unsigned &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,long &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,unsigned long &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,long long &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,unsigned long long &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,float &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,double &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,long double &v)
{
return do_fetch(col,v);
}
virtual bool fetch(int col,std::string &v)
{
if(do_isnull(col))
return false;
v.assign(PQgetvalue(res_,current_,col),PQgetlength(res_,current_,col));
return true;
}
virtual bool fetch(int col,std::ostream &v)
{
if(do_isnull(col))
return false;
unsigned char *val=(unsigned char*)PQgetvalue(res_,current_,col);
size_t len = 0;
unsigned char *buf=PQunescapeBytea(val,&len);
if(!buf) {
throw bad_value_cast();
}
try {
v.write((char *)buf,len);
}catch(...) {
PQfreemem(buf);
throw;
}
PQfreemem(buf);
return true;
}
virtual bool fetch(int col,std::tm &v)
{
if(do_isnull(col))
return false;
v=parse_time(PQgetvalue(res_,current_,col));
return true;
}
virtual bool is_null(int col)
{
return do_isnull(col);
}
virtual int cols()
{
return cols_;
}
virtual int name_to_column(std::string const &n)
{
return PQfnumber(res_,n.c_str());
}
virtual std::string column_to_name(int pos)
{
char const *name = PQfname(res_,pos);
if(!name)
return std::string();
return name;
}
private:
void check(int c)
{
if(c < 0 || c>= cols_)
throw invalid_column();
}
bool do_isnull(int col)
{
check(col);
return PQgetisnull(res_,current_,col);
}
PGresult *res_;
int rows_;
int cols_;
int current_;
};
class statement : public backend::statement {
public:
typedef enum {
null_param,
text_param,
binary_param
} param_type;
statement(PGconn *conn,std::string const &src_query,unsigned long long prepared_id) :
res_(0),
conn_(conn),
orig_query_(src_query),
params_(0)
{
std::ostringstream ss;
ss.imbue(std::locale::classic());
query_.reserve(src_query.size());
bool inside_string=false;
for(unsigned i=0;i<src_query.size();i++) {
char c=src_query[i];
if(c=='\'') {
inside_string = !inside_string;
}
if(!inside_string && c=='?') {
query_+='$';
params_++;
ss<<params_;
query_+=ss.str();
ss.str("");
}
else {
query_+=c;
}
}
reset();
if(prepared_id > 0) {
ss.str("");
ss<<"cppdb_psqlstmt_" << prepared_id;
prepared_id_ = ss.str();
PGresult *r=PQprepare(conn_,prepared_id_.c_str(),query_.c_str(),0,0);
if(!r)
throw std::bad_alloc();
if(PQresultStatus(r)==PGRES_COMMAND_OK) {
PQclear(r);
}
else {
std::string e = "unknown error";
try { e = PQresultErrorMessage(r); }catch(...){}
PQclear(r);
throw cppdb_error("cppdb::postgresql::statement " + e);
}
}
}
virtual ~statement()
{
try {
if(res_)
PQclear(res_);
res_ = 0;
if(!prepared_id_.empty()) {
std::string stmt = "DEALLOCATE " + prepared_id_;
res_ = PQexec(conn_,stmt.c_str());
if(res_)
PQclear(res_);
res_ = 0;
}
}
catch(...)
{
}
}
virtual void reset()
{
if(res_) {
PQclear(res_);
res_ = 0;
}
std::vector<std::string> vals(params_);
std::vector<param_type> flags(params_,null_param);
params_values_.swap(vals);
params_set_.swap(flags);
}
virtual void bind(int col,std::string const &v)
{
check(col);
// FIXME
params_values_[col-1]=v;
params_set_[col-1]=text_param;
}
virtual void bind(int col,char const *s)
{
check(col);
params_values_[col-1]=s;
params_set_[col-1]=text_param;
}
virtual void bind(int col,char const *b,char const *e)
{
check(col);
params_values_[col-1].assign(b,e-b);
params_set_[col-1]=text_param;
}
virtual void bind(int col,std::tm const &v)
{
check(col);
params_values_[col-1]=format_time(v);
params_set_[col-1]=text_param;
}
virtual void bind(int col,std::istream const &in)
{
check(col);
std::ostringstream ss;
ss << in.rdbuf();
params_values_[col-1]=ss.str();
params_set_[col-1]=binary_param;
}
template<typename T>
void do_bind(int col,T v)
{
check(col);
std::ostringstream ss;
ss.imbue(std::locale::classic());
if(!std::numeric_limits<T>::is_integer)
ss << std::setprecision(std::numeric_limits<T>::digits10+1);
ss << v;
params_values_[col-1]=ss.str();
params_set_[col-1]=text_param;
}
virtual void bind(int col,int v)
{
do_bind(col,v);
}
virtual void bind(int col,unsigned v)
{
do_bind(col,v);
}
virtual void bind(int col,long v)
{
do_bind(col,v);
}
virtual void bind(int col,unsigned long v)
{
do_bind(col,v);
}
virtual void bind(int col,long long v)
{
do_bind(col,v);
}
virtual void bind(int col,unsigned long long v)
{
do_bind(col,v);
}
virtual void bind(int col,double v)
{
do_bind(col,v);
}
virtual void bind(int col,long double v)
{
do_bind(col,v);
}
virtual void bind_null(int col)
{
check(col);
params_set_[col-1]=null_param;
std::string tmp;
params_values_[col-1].swap(tmp);
}
void real_query()
{
char const * const *pvalues = 0;
int *plengths = 0;
int *pformats = 0;
std::vector<char const *> values;
std::vector<int> lengths;
std::vector<int> formats;
if(params_>0) {
values.resize(params_,0);
lengths.resize(params_,0);
formats.resize(params_,0);
for(unsigned i=0;i<params_;i++) {
if(params_set_[i]!=null_param) {
values[i]=params_values_[i].c_str();
lengths[i]=params_values_[i].size();
if(params_set_[i]==binary_param) {
formats[i]=1;
}
}
}
pvalues=&values.front();
plengths=&lengths.front();
pformats=&formats.front();
}
if(res_) {
PQclear(res_);
res_ = 0;
}
if(prepared_id_.empty()) {
res_ = PQexecParams(
conn_,
query_.c_str(),
params_,
0, // param types
pvalues,
plengths,
pformats, // format - text
0 // result format - text
);
}
else {
res_ = PQexecPrepared(
conn_,
prepared_id_.c_str(),
params_,
pvalues,
plengths,
pformats, // format - text
0 // result format - text
);
}
}
virtual result *query()
{
real_query();
switch(PQresultStatus(res_)){
case PGRES_TUPLES_OK:
{
result *ptr = new result(res_);
res_ = 0;
return ptr;
}
break;
case PGRES_COMMAND_OK:
throw cppdb_error("Statement used instread of query");
break;
default:
throw cppdb_error(PQresultErrorMessage(res_));
}
}
virtual void exec()
{
real_query();
switch(PQresultStatus(res_)){
case PGRES_TUPLES_OK:
throw cppdb_error("Query used instread of statement");
break;
case PGRES_COMMAND_OK:
break;
default:
throw cppdb_error(PQresultErrorMessage(res_));
}
}
virtual long long sequence_last(std::string const &sequence)
{
PGresult *res = 0;
long long rowid;
try {
char const * const param_ptr = sequence.c_str();
res = PQexecParams( conn_,
"SELECT currval($1)",
1, // 1 param
0, // types
&param_ptr, // param values
0, // lengths
0, // formats
0 // string format
);
if(PQresultStatus(res) != PGRES_TUPLES_OK) {
throw cppdb_error(PQresultErrorMessage(res));
}
char const *val = PQgetvalue(res,0,0);
if(!val || *val==0)
throw cppdb_error("Failed to get sequecne id");
rowid = atoll(val);
}
catch(...) {
if(res) PQclear(res);
throw;
}
PQclear(res);
return rowid;
}
virtual unsigned long long affected()
{
if(res_) {
char const *s=PQcmdTuples(res_);
if(!s || !*s)
return 0;
return atoll(s);
}
return 0;
}
virtual std::string const &sql_query()
{
return orig_query_;
}
private:
void check(int col)
{
if(col < 1 || col > int(params_))
throw invalid_placeholder();
}
PGresult *res_;
PGconn *conn_;
std::string query_;
std::string orig_query_;
unsigned params_;
std::vector<std::string> params_values_;
std::vector<param_type> params_set_;
std::string prepared_id_;
};
class connection : public backend::connection {
public:
void do_simple_exec(char const *s)
{
PGresult *r=PQexec(conn_,s);
try {
}
catch(...) {
PQclear(r);
throw;
}
PQclear(r);
}
virtual void begin()
{
do_simple_exec("begin");
}
virtual void commit()
{
do_simple_exec("commit");
}
virtual void rollback()
{
try {
do_simple_exec("rollback");
}
catch(...) {}
}
virtual statement *prepare_statement(std::string const &q)
{
return new statement(conn_,q,++prepared_id_);
}
virtual statement *create_statement(std::string const &q)
{
return new statement(conn_,q,0);
}
std::string do_escape(char const *b,size_t length)
{
std::vector<char> buf(2*length+1);
size_t len = PQescapeStringConn(conn_,&buf.front(),b,length,0);
return std::string(&buf.front(),len);
}
virtual std::string escape(std::string const &s)
{
return do_escape(s.c_str(),s.size());
}
virtual std::string escape(char const *s)
{
return do_escape(s,strlen(s));
}
virtual std::string escape(char const *b,char const *e)
{
return do_escape(b,e-b);
}
std::string pq_string(connection_info const &ci)
{
std::map<std::string,std::string>::const_iterator p;
std::string pq_str;
for(p=ci.properties.begin();p!=ci.properties.end();p++) {
if(p->first.empty() || p->first[0]=='@')
continue;
pq_str+=p->first;
pq_str+="='";
pq_str+=escape_for_conn(p->second);
pq_str+="' ";
}
return pq_str;
}
std::string escape_for_conn(std::string const &v)
{
std::string res;
res.reserve(v.size());
for(unsigned i=0;i<v.size();i++) {
if(v[i]=='\\')
res+="\\\\";
else if(v[i]=='\'')
res+="\\\'";
else
res+=v[i];
}
return res;
}
connection(connection_info const &ci) :
backend::connection(ci),
conn_(0),
prepared_id_(0)
{
std::string pq=pq_string(ci);
conn_ = PQconnectdb(pq.c_str());
if(!conn_) {
throw cppdb_error("postgresql::connection failed to create connection object");
}
if(PQstatus(conn_)!=CONNECTION_OK) {
std::string message;
try { message = PQerrorMessage(conn_); } catch(...) {}
PQfinish(conn_);
throw cppdb_error("postgresql::connection failed:" + message);
}
}
virtual ~connection()
{
PQfinish(conn_);
}
virtual std::string driver()
{
return "postgresql";
}
virtual std::string engine()
{
return "postgresql";
}
private:
PGconn *conn_;
unsigned long long prepared_id_;
};
} // backend
} // cppdb
extern "C" {
cppdb::backend::connection *cppdb_postgresql_get_connection(cppdb::connection_info const &cs)
{
return new cppdb::postgresql::connection(cs);
}
}
MongoDB Logo MongoDB