forked from machack666/pgpool-II
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpool_timestamp.c
More file actions
1213 lines (1047 loc) · 28.4 KB
/
pool_timestamp.c
File metadata and controls
1213 lines (1047 loc) · 28.4 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* -*-pgsql-c-*- */
/*
* $Header: /cvsroot/pgpool/pgpool-II/pool_timestamp.c,v 1.18 2011/06/28 22:48:26 t-ishii Exp $
*
* pgpool: a language independent connection pool server for PostgreSQL
* written by Tatsuo Ishii
*
* Copyright (c) 2003-2011 PgPool Global Development Group
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of the
* author not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. The author makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
*/
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include "pool.h"
#include "pool_timestamp.h"
#include "pool_relcache.h"
#include "pool_select_walker.h"
#include "pool_config.h"
#include "parser/parsenodes.h"
#include "parser/parser.h"
#include "parser/pool_memory.h"
typedef struct {
char *attrname; /* attribute name */
char *adsrc; /* default value expression */
int use_timestamp;
} TSAttr;
typedef struct {
int relnatts;
TSAttr attr[1];
} TSRel;
typedef struct {
A_Const *ts_const;
POOL_CONNECTION_POOL *backend;
char *relname;
int num_params; /* num of original params (for Parse) */
bool rewrite_to_params;
bool rewrite; /* has rewritten? */
List *params; /* list of additional params */
} TSRewriteContext;
static void *ts_register_func(POOL_SELECT_RESULT *res);
static void *ts_unregister_func(void *data);
static TSRel *relcache_lookup(TSRewriteContext *ctx);
static bool isStringConst(Node *node, const char *str);
static bool isSystemType(Node *node, const char *name);
static bool rewrite_timestamp_walker(Node *node, void *context);
static bool rewrite_timestamp_insert(InsertStmt *i_stmt, TSRewriteContext *ctx);
static bool rewrite_timestamp_update(UpdateStmt *u_stmt, TSRewriteContext *ctx);
static char *get_current_timestamp(POOL_CONNECTION_POOL *backend);
static Node *makeTsExpr(TSRewriteContext *ctx);
static A_Const *makeStringConstFromQuery(POOL_CONNECTION_POOL *backend, char *expression);
bool raw_expression_tree_walker(Node *node, bool (*walker) (), void *context);
#define MAX_RELCACHE 32
POOL_RELCACHE *ts_relcache;
static void *
ts_register_func(POOL_SELECT_RESULT *res)
{
/* Number of result columns included in res */
#define NUM_COLS 3
TSRel *rel;
int i;
if (res->numrows == 0)
return NULL;
rel = (TSRel *) malloc(sizeof(TSRel) + sizeof(TSAttr) * (res->numrows - 1));
for (i = 0; i < res->numrows; i++)
{
int index = 0;
rel->attr[i].attrname = strdup(res->data[i * NUM_COLS + index]);
index++;
if (res->data[i * NUM_COLS + index])
rel->attr[i].adsrc = strdup(res->data[i * NUM_COLS + index]);
else
rel->attr[i].adsrc = NULL;
index++;
rel->attr[i].use_timestamp = *(res->data[i * NUM_COLS + index]) == 't';
pool_debug("attrname %s adsrc %s use_timestamp = %d",
rel->attr[i].attrname, (rel->attr[i].adsrc? rel->attr[i].adsrc:"NULL"),
rel->attr[i].use_timestamp);
}
rel->relnatts = res->numrows;
return (void *) rel;
}
static void *
ts_unregister_func(void *data)
{
TSRel *rel = (TSRel *) data;
if (rel == NULL)
return NULL;
free(rel);
return rel;
}
static TSRel*
relcache_lookup(TSRewriteContext *ctx)
{
#define ATTRDEFQUERY "SELECT attname, d.adsrc, coalesce((d.adsrc LIKE '%%now()%%' OR d.adsrc LIKE '%%''now''::text%%')" \
" AND (a.atttypid = 'timestamp'::regtype::oid OR" \
" a.atttypid = 'timestamp with time zone'::regtype::oid OR" \
" a.atttypid = 'date'::regtype::oid OR" \
" a.atttypid = 'time'::regtype::oid OR" \
" a.atttypid = 'time with time zone'::regtype::oid)" \
" , false)" \
" FROM pg_catalog.pg_class c, pg_catalog.pg_attribute a " \
" LEFT JOIN pg_catalog.pg_attrdef d ON (a.attrelid = d.adrelid AND a.attnum = d.adnum)" \
" WHERE c.oid = a.attrelid AND a.attnum >= 1 AND a.attisdropped = 'f' AND c.relname = '%s'" \
" ORDER BY a.attnum"
#define ATTRDEFQUERY2 "SELECT attname, d.adsrc, coalesce((d.adsrc LIKE '%%now()%%' OR d.adsrc LIKE '%%''now''::text%%')" \
" AND (a.atttypid = 'timestamp'::regtype::oid OR" \
" a.atttypid = 'timestamp with time zone'::regtype::oid OR" \
" a.atttypid = 'date'::regtype::oid OR" \
" a.atttypid = 'time'::regtype::oid OR" \
" a.atttypid = 'time with time zone'::regtype::oid)" \
" , false)" \
" FROM pg_catalog.pg_class c, pg_catalog.pg_attribute a " \
" LEFT JOIN pg_catalog.pg_attrdef d ON (a.attrelid = d.adrelid AND a.attnum = d.adnum)" \
" WHERE c.oid = a.attrelid AND a.attnum >= 1 AND a.attisdropped = 'f' AND c.oid = pgpool_regclass('%s')" \
" ORDER BY a.attnum"
char *query;
if (pool_has_pgpool_regclass())
{
query = ATTRDEFQUERY2;
}
else
{
query = ATTRDEFQUERY;
}
if (!ts_relcache)
{
ts_relcache = pool_create_relcache(MAX_RELCACHE, query, ts_register_func, ts_unregister_func, false);
if (ts_relcache == NULL)
{
pool_error("relcache_lookup: pool_create_relcache error");
return NULL;
}
}
return (TSRel *) pool_search_relcache(ts_relcache, ctx->backend, ctx->relname);
}
static Node *
makeTsExpr(TSRewriteContext *ctx)
{
ParamRef *param;
if (!ctx->rewrite_to_params)
return (Node *) ctx->ts_const;
param = makeNode(ParamRef);
param->number = 0;
ctx->params = lappend(ctx->params, param);
return (Node *) param;
}
static bool
isStringConst(Node *node, const char *str)
{
A_Const *a_const;
Value val;
if (!IsA(node, A_Const))
return false;
a_const = (A_Const *) node;
val = a_const->val;
if (val.type == T_String && val.val.str && strcmp(str, val.val.str) == 0)
return true;
return false;
}
static bool
isSystemType(Node *node, const char *name)
{
TypeName *typename;
if (!IsA(node, TypeName))
return false;
typename = (TypeName *) node;
if (list_length(typename->names) == 2 &&
strcmp("pg_catalog", strVal(linitial(typename->names))) == 0 &&
strcmp(name, strVal(lsecond(typename->names))) == 0)
return true;
return false;
}
static bool
isSystemTypeCast(Node *node, const char *name)
{
TypeCast *typecast;
if (!IsA(node, TypeCast))
return false;
typecast = (TypeCast *) node;
return isSystemType((Node *) typecast->typeName, name);
}
/*
* walker function for raw_expression_tree_walker
*/
static bool
rewrite_timestamp_walker(Node *node, void *context)
{
TSRewriteContext *ctx = (TSRewriteContext *) context;
if (node == NULL)
return false;
if (nodeTag(node) == T_FuncCall)
{
/* `now()' FuncCall */
FuncCall *fcall = (FuncCall *) node;
if (list_length(fcall->funcname) == 2 &&
strcmp("pg_catalog", strVal(linitial(fcall->funcname))) == 0 &&
strcmp("now", strVal(lsecond(fcall->funcname))) == 0)
{
TypeCast *tc = makeNode(TypeCast);
tc->arg = makeTsExpr(ctx);
tc->typeName = SystemTypeName("text");
fcall->funcname = SystemFuncName("timestamptz");
fcall->args = list_make1(tc);
ctx->rewrite = true;
}
}
else if (IsA(node, TypeCast))
{
/* CURRENT_DATE, CURRENT_TIME, LOCALTIMESTAMP, LOCALTIME etc.*/
TypeCast *tc = (TypeCast *) node;
if ((isSystemType((Node *) tc->typeName, "date") ||
isSystemType((Node *) tc->typeName, "timestamp") ||
isSystemType((Node *) tc->typeName, "timestamptz") ||
isSystemType((Node *) tc->typeName, "time") ||
isSystemType((Node *) tc->typeName, "timetz")))
{
/* rewrite `'now'::timestamp' and `'now'::text::timestamp' both */
if (isSystemTypeCast(tc->arg, "text"))
tc = (TypeCast *) tc->arg;
if (isStringConst(tc->arg, "now"))
{
tc->arg = (Node *) makeTsExpr(ctx);
ctx->rewrite = true;
}
}
}
else if (IsA(node, ParamRef))
{
ParamRef *param = (ParamRef *) node;
/* count how many params in original query */
if (ctx->num_params < param->number)
ctx->num_params = param->number;
}
return raw_expression_tree_walker(node, rewrite_timestamp_walker, context);
}
/*
* Get `now()' from MASTER node
*/
static char *
get_current_timestamp(POOL_CONNECTION_POOL *backend)
{
POOL_SELECT_RESULT *res;
POOL_STATUS status;
static char timestamp[32];
status = do_query(MASTER(backend), "SELECT now()", &res, MAJOR(backend));
if (status != POOL_CONTINUE)
{
pool_error("get_current_timestamp: do_query faild");
return NULL;
}
if (res->numrows != 1)
{
free_select_result(res);
return NULL;
}
strlcpy(timestamp, res->data[0], sizeof(timestamp));
free_select_result(res);
return timestamp;
}
/*
* rewrite InsertStmt
*/
static bool
rewrite_timestamp_insert(InsertStmt *i_stmt, TSRewriteContext *ctx)
{
int i;
bool rewrite = false;
TSRel *relcache;
if (i_stmt->selectStmt == NULL)
{
List *values = NIL;
SelectStmt *selectStmt = makeNode(SelectStmt);
relcache = relcache_lookup(ctx);
if (relcache == NULL)
return false;
/*
* INSERT INTO rel DEFAULT VALUES
* rewrite to:
* INSERT INTO rel VALUES (DEFAULT, '2009-..',...)
*/
for (i = 0; i < relcache->relnatts; i++)
{
if (relcache->attr[i].use_timestamp)
{
rewrite = true;
if (ctx->rewrite_to_params)
values = lappend(values, makeTsExpr(ctx));
else
values = lappend(values,
makeStringConstFromQuery(ctx->backend, relcache->attr[i].adsrc));
}
else
values = lappend(values, makeNode(SetToDefault));
}
if (rewrite)
{
selectStmt->valuesLists = list_make1(values);
i_stmt->selectStmt = (Node *) selectStmt;
}
return rewrite;
}
else if (IsA(i_stmt->selectStmt, SelectStmt))
{
SelectStmt *selectStmt = (SelectStmt *) i_stmt->selectStmt;
ListCell *lc_row, *lc_val, *lc_col;
/*
* Rewrite `now()' call to timestamp literal.
*/
raw_expression_tree_walker(
(Node *) selectStmt,
rewrite_timestamp_walker, (void *) ctx);
rewrite = ctx->rewrite;
/*
* if `INSERT INTO rel SELECT ...'
*/
if (selectStmt->valuesLists == NIL)
return rewrite;
relcache = relcache_lookup(ctx);
if (relcache == NULL)
return false;
if (i_stmt->cols == NIL)
{
/*
* INSERT INTO rel VALUES (...)
*
* CREATE TABLE r1 (
* i1 int,
* t1 timestamp default now(),
* i2 int,
* t2 timestamp default now(),
* )
*
* INSERT INTO r1 VALUES (1, DEFAULT);
* rewrite to:
* INSERT INTO r1 VALUES (1, '20xx-xx-xx...', DEFAULT, '2..')
*/
foreach (lc_row, selectStmt->valuesLists)
{
List *values = lfirst(lc_row);
i = 0;
foreach (lc_val, values)
{
if (relcache->attr[i].use_timestamp == true && IsA(lfirst(lc_val), SetToDefault))
{
rewrite = true;
if (ctx->rewrite_to_params)
lfirst(lc_val) = makeTsExpr(ctx);
else
lfirst(lc_val) = makeStringConstFromQuery(ctx->backend, relcache->attr[i].adsrc);
}
i++;
}
/* fill rest columns */
for (; i < relcache->relnatts; i++)
{
if (relcache->attr[i].use_timestamp == true)
{
rewrite = true;
if (ctx->rewrite_to_params)
values = lappend(values, makeTsExpr(ctx));
else
values = lappend(values,
makeStringConstFromQuery(ctx->backend, relcache->attr[i].adsrc));
}
else
values = lappend(values, makeNode(SetToDefault));
}
}
}
else
{
/*
* INSERT INTO rel(col1, col2) VALUES (val, val2)
*
* if timestamp column is not given by column list
* add colname to column list and add timestamp to values list.
*/
int append_columns = 0;
int *append_columns_list;
ResTarget *col;
append_columns_list = (int *)malloc(sizeof(int)*relcache->relnatts);
for (i = 0; i < relcache->relnatts; i++)
{
if (relcache->attr[i].use_timestamp == false)
continue;
foreach (lc_col, i_stmt->cols)
{
col = lfirst(lc_col);
if (strcmp(relcache->attr[i].attrname, col->name) == 0)
break;
}
if (lc_col == NULL)
{
/* column not found in query, append it.*/
rewrite = true;
col = makeNode(ResTarget);
col->name = relcache->attr[i].attrname;
col->indirection = NIL;
col->val = NULL;
i_stmt->cols = lappend(i_stmt->cols, col);
append_columns_list[append_columns++] = i;
}
}
foreach (lc_row, selectStmt->valuesLists)
{
List *values = lfirst(lc_row);
/* replace DEFAULT to literal */
forboth (lc_col, i_stmt->cols, lc_val, values)
{
col = lfirst(lc_col);
for (i = 0; i < relcache->relnatts; i++)
{
if (strcmp(relcache->attr[i].attrname, col->name) == 0)
break;
}
if (relcache->attr[i].use_timestamp == true && IsA(lfirst(lc_val), SetToDefault))
{
rewrite = true;
if (ctx->rewrite_to_params)
lfirst(lc_val) = makeTsExpr(ctx);
else
lfirst(lc_val) = makeStringConstFromQuery(ctx->backend, relcache->attr[i].adsrc);
}
}
/* add ts_const to values list */
for (i = 0; i < append_columns; i++)
{
if (ctx->rewrite_to_params)
values = lappend(values, makeTsExpr(ctx));
else
values = lappend(values,
makeStringConstFromQuery(ctx->backend, relcache->attr[append_columns_list[i]].adsrc));
}
free(append_columns_list);
}
}
}
return rewrite;
}
/*
* rewrite UpdateStmt
*/
static bool
rewrite_timestamp_update(UpdateStmt *u_stmt, TSRewriteContext *ctx)
{
TSRel *relcache = NULL;
ListCell *lc;
bool rewrite;
/* rewrite "update ... set col1 = now()" */
raw_expression_tree_walker(
(Node *) u_stmt->targetList,
rewrite_timestamp_walker, (void *) ctx);
raw_expression_tree_walker(
(Node *) u_stmt->whereClause,
rewrite_timestamp_walker, (void *) ctx);
raw_expression_tree_walker(
(Node *) u_stmt->fromClause,
rewrite_timestamp_walker, (void *) ctx);
rewrite = ctx->rewrite;
/* rewrite "update ... set col1 = default" */
foreach (lc, u_stmt->targetList)
{
ResTarget *res = (ResTarget *) lfirst(lc);
int i;
if (IsA(res->val, SetToDefault))
{
relcache = relcache_lookup(ctx);
if (relcache == NULL)
return false;
for (i = 0; i < relcache->relnatts; i++)
{
if (strcmp(relcache->attr[i].attrname, res->name) == 0)
{
if (relcache->attr[i].use_timestamp)
{
if (ctx->rewrite_to_params)
res->val = (Node *) makeTsExpr(ctx);
else
res->val = (Node *)makeStringConstFromQuery(ctx->backend, relcache->attr[i].adsrc);
rewrite = true;
}
break;
}
}
}
}
return rewrite;
}
/*
* Rewrite `now()' to timestamp literal.
* returns query string as palloced string, or NULL if not to need rewrite.
*/
char *
rewrite_timestamp(POOL_CONNECTION_POOL *backend, Node *node,
bool rewrite_to_params, POOL_SENT_MESSAGE *message)
{
TSRewriteContext ctx;
Node *stmt;
bool rewrite = false;
char *timestamp;
char *rewrite_query;
if (node == NULL)
return NULL;
if (!REPLICATION)
return NULL;
/* init context */
ctx.ts_const = makeNode(A_Const);
ctx.ts_const->val.type = T_String;
ctx.rewrite_to_params = rewrite_to_params;
ctx.backend = backend;
ctx.num_params = 0;
ctx.rewrite = false;
ctx.params = NIL;
/*
* Prepare?
*/
if (IsA(node, PrepareStmt))
{
stmt = ((PrepareStmt *) node)->query;
ctx.rewrite_to_params = true;
}
else
stmt = node;
if (IsA(stmt, InsertStmt))
{
InsertStmt *i_stmt = (InsertStmt *) stmt;
ctx.relname = nodeToString(i_stmt->relation);
rewrite = rewrite_timestamp_insert(i_stmt, &ctx);
}
else if (IsA(stmt, UpdateStmt))
{
UpdateStmt *u_stmt = (UpdateStmt *) stmt;
ctx.relname = nodeToString(u_stmt->relation);
rewrite = rewrite_timestamp_update(u_stmt, &ctx);
}
else if (IsA(stmt, DeleteStmt))
{
DeleteStmt *d_stmt = (DeleteStmt *) stmt;
raw_expression_tree_walker(
(Node *) d_stmt->usingClause,
rewrite_timestamp_walker, (void *) &ctx);
raw_expression_tree_walker(
(Node *) d_stmt->whereClause,
rewrite_timestamp_walker, (void *) &ctx);
rewrite = ctx.rewrite;
}
else if (IsA(stmt, ExecuteStmt))
{
ExecuteStmt *e_stmt = (ExecuteStmt *) stmt;
/* rewrite params */
raw_expression_tree_walker(
(Node *) e_stmt->params,
rewrite_timestamp_walker, (void *) &ctx);
rewrite = ctx.rewrite;
/* add params */
if (message)
{
int i;
for (i = 0; i < message->num_tsparams; i++)
{
e_stmt->params = lappend(e_stmt->params, ctx.ts_const);
rewrite = true;
}
}
}
else
;
if (!rewrite)
return NULL;
if (ctx.rewrite_to_params && message)
{
ListCell *lc;
int num = ctx.num_params + 1;
/* renumber params */
foreach (lc, ctx.params)
{
ParamRef *param = (ParamRef *) lfirst(lc);
param->number = num++;
}
/* save to portal */
message->num_tsparams = list_length(ctx.params);
/* add param type */
if (IsA(node, PrepareStmt))
{
int i;
PrepareStmt *p_stmt = (PrepareStmt *) node;
for (i = 0; i < message->num_tsparams; i++)
p_stmt->argtypes =
lappend(p_stmt->argtypes, SystemTypeName("timestamptz"));
}
}
else
{
timestamp = get_current_timestamp(backend);
if (timestamp == NULL)
{
pool_error("rewrite_timestamp: could not get current timestamp");
return NULL;
}
ctx.ts_const->val.val.str = timestamp;
}
rewrite_query = nodeToString(node);
return rewrite_query;
}
/*
* rewrite Bind message to add parameter
*/
char *
bind_rewrite_timestamp(POOL_CONNECTION_POOL *backend,
POOL_SENT_MESSAGE *message,
const char *orig_msg, int *len)
{
int16 tmp2,
num_params,
num_formats;
int32 tmp4;
int i,
ts_len,
copy_len;
const char *copy_from;
char *ts,
*copy_to,
*new_msg;
#ifdef TIMESTAMPDEBUG
fprintf(stderr, "message length:%d\n", *len);
for(i=0;i<*len;i++)
{
fprintf(stderr, "%02x ", orig_msg[i]);
}
#endif
ts = get_current_timestamp(backend);
if (ts == NULL)
{
pool_error("bind_rewrite_timestamp: could not get current timestamp");
return NULL;
}
ts_len = strlen(ts);
*len += (strlen(ts) + sizeof(int32)) * message->num_tsparams;
new_msg = copy_to = (char *) malloc(*len + message->num_tsparams * sizeof(int16));
copy_from = orig_msg;
/* portal_name */
copy_len = strlen(copy_from) + 1;
memcpy(copy_to, copy_from, copy_len);
copy_to += copy_len; copy_from += copy_len;
/* stmt_name */
copy_len = strlen(copy_from) + 1;
memcpy(copy_to, copy_from, copy_len);
copy_to += copy_len; copy_from += copy_len;
/* format code */
memcpy(&tmp2, copy_from, sizeof(int16));
copy_len = sizeof(int16);
tmp2 = num_formats = ntohs(tmp2);
if (num_formats > 1)
{
/* enlarge message length */
*len += message->num_tsparams * sizeof(int16);
tmp2 += message->num_tsparams;
}
tmp2 = htons(tmp2);
memcpy(copy_to, &tmp2, copy_len); /* copy number of format codes */
copy_to += copy_len; copy_from += copy_len;
copy_len = num_formats * sizeof(int16);
memcpy(copy_to, copy_from, copy_len); /* copy format codes */
copy_to += copy_len; copy_from += copy_len;
if (num_formats > 1)
{
/* set format codes to zero(text) */
memset(copy_to, 0, message->num_tsparams * 2);
copy_to += sizeof(int16) * message->num_tsparams;
}
/* num params */
memcpy(&tmp2, copy_from, sizeof(int16));
copy_len = sizeof(int16);
num_params = ntohs(tmp2);
tmp2 = htons(num_params + message->num_tsparams);
memcpy(copy_to, &tmp2, sizeof(int16));
copy_to += copy_len; copy_from += copy_len;
/* params */
copy_len = 0;
for (i = 0; i < num_params; i++)
{
memcpy(&tmp4, copy_from + copy_len, sizeof(int32));
tmp4 = ntohl(tmp4); /* param length */
copy_len += sizeof(int32);
/* If param length is -1, it indicates that the value is NULL
* and we don't have value slot. So we don't add up copy_len.
*/
if (tmp4 > 0)
{
copy_len += tmp4;
}
}
memcpy(copy_to, copy_from, copy_len);
copy_to += copy_len; copy_from += copy_len;
tmp4 = htonl(ts_len);
for (i = 0; i < message->num_tsparams; i++)
{
memcpy(copy_to, &tmp4, sizeof(int32));
copy_to += sizeof(int32);
memcpy(copy_to, ts, ts_len);
copy_to += ts_len;
}
/* result format code */
memcpy(&tmp2, copy_from, sizeof(int16));
copy_len = sizeof(int16);
copy_len += sizeof(int16) * ntohs(tmp2);
memcpy(copy_to, copy_from, copy_len);
return new_msg;
}
static A_Const *makeStringConstFromQuery(POOL_CONNECTION_POOL *backend, char *expression)
{
A_Const *con;
POOL_SELECT_RESULT *res;
POOL_STATUS status;
char query[1024];
int len;
char *str;
snprintf(query, sizeof(query), "SELECT %s", expression);
status = do_query(MASTER(backend), query, &res, MAJOR(backend));
if (status != POOL_CONTINUE)
{
pool_error("makeStringConstFromQuery: do_query faild");
return NULL;
}
if (res->numrows != 1)
{
free_select_result(res);
return NULL;
}
len = strlen(res->data[0]) + 1;
str = palloc(len);
strcpy(str, res->data[0]);
free_select_result(res);
con = makeNode(A_Const);
con->val.type = T_String;
con->val.val.str = str;
return con;
}
/* from nodeFuncs.c start */
/*
* raw_expression_tree_walker --- walk raw parse trees
*
* This has exactly the same API as expression_tree_walker, but instead of
* walking post-analysis parse trees, it knows how to walk the node types
* found in raw grammar output. (There is not currently any need for a
* combined walker, so we keep them separate in the name of efficiency.)
* Unlike expression_tree_walker, there is no special rule about query
* boundaries: we descend to everything that's possibly interesting.
*
* Currently, the node type coverage extends to SelectStmt and everything
* that could appear under it, but not other statement types.
*/
bool
raw_expression_tree_walker(Node *node, bool (*walker) (), void *context)
{
ListCell *temp;
/*
* The walker has already visited the current node, and so we need only
* recurse into any sub-nodes it has.
*/
if (node == NULL)
return false;
/* Guard against stack overflow due to overly complex expressions */
/*
check_stack_depth();
*/
switch (nodeTag(node))
{
case T_SetToDefault:
case T_CurrentOfExpr:
case T_Integer:
case T_Float:
case T_String:
case T_BitString:
case T_Null:
case T_ParamRef:
case T_A_Const:
case T_A_Star:
/* primitive node types with no subnodes */
break;
case T_Alias:
/* we assume the colnames list isn't interesting */
break;
case T_RangeVar:
return walker(((RangeVar *) node)->alias, context);
case T_SubLink:
{
SubLink *sublink = (SubLink *) node;
if (walker(sublink->testexpr, context))
return true;
/* we assume the operName is not interesting */
if (walker(sublink->subselect, context))
return true;
}
break;
case T_CaseExpr:
{
CaseExpr *caseexpr = (CaseExpr *) node;
if (walker(caseexpr->arg, context))
return true;
/* we assume walker doesn't care about CaseWhens, either */
foreach(temp, caseexpr->args)
{
CaseWhen *when = (CaseWhen *) lfirst(temp);
Assert(IsA(when, CaseWhen));
if (walker(when->expr, context))
return true;
if (walker(when->result, context))
return true;
}
if (walker(caseexpr->defresult, context))
return true;
}
break;
case T_RowExpr:
/* Assume colnames isn't interesting */
return walker(((RowExpr *) node)->args, context);
case T_CoalesceExpr:
return walker(((CoalesceExpr *) node)->args, context);
case T_MinMaxExpr:
return walker(((MinMaxExpr *) node)->args, context);
case T_XmlExpr:
{
XmlExpr *xexpr = (XmlExpr *) node;
if (walker(xexpr->named_args, context))
return true;
/* we assume walker doesn't care about arg_names */
if (walker(xexpr->args, context))
return true;
}
break;
case T_NullTest:
return walker(((NullTest *) node)->arg, context);
case T_BooleanTest:
return walker(((BooleanTest *) node)->arg, context);
case T_JoinExpr:
{
JoinExpr *join = (JoinExpr *) node;