-
Notifications
You must be signed in to change notification settings - Fork 9
/
dest.c
199 lines (179 loc) · 7.07 KB
/
dest.c
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
#include "include.h"
#include <unistd.h>
#include <utils/lsyscache.h>
extern emit_log_hook_type emit_log_hook_prev;
extern Task task;
static char *SPI_getvalue_my(TupleTableSlot *slot, TupleDesc tupdesc, int fnumber) {
bool isnull;
bool typisvarlena;
Datum attr = slot_getattr(slot, fnumber, &isnull);
Oid foutoid;
if (isnull) return NULL;
getTypeOutputInfo(TupleDescAttr(tupdesc, fnumber - 1)->atttypid, &foutoid, &typisvarlena);
return OidOutputFunctionCall(foutoid, attr);
}
static void headers(TupleDesc tupdesc) {
if (task.output.len) appendStringInfoString(&task.output, "\n");
for (int col = 1; col <= tupdesc->natts; col++) {
if (col > 1) appendStringInfoChar(&task.output, task.delimiter);
appendBinaryStringInfoEscapeQuote(&task.output, SPI_fname(tupdesc, col), strlen(SPI_fname(tupdesc, col)), false, task.escape, task.quote);
}
}
static
#if PG_VERSION_NUM >= 90600
bool
#else
void
#endif
receiveSlot(TupleTableSlot *slot, DestReceiver *self) {
TupleDesc tupdesc = slot->tts_tupleDescriptor;
if (!task.output.data) initStringInfoMy(&task.output);
if (task.header && !task.row && tupdesc->natts > 1) headers(tupdesc);
if (task.output.len) appendStringInfoString(&task.output, "\n");
for (int col = 1; col <= tupdesc->natts; col++) {
char *value = SPI_getvalue_my(slot, tupdesc, col);
if (col > 1) appendStringInfoChar(&task.output, task.delimiter);
if (!value) appendStringInfoString(&task.output, task.null); else {
appendBinaryStringInfoEscapeQuote(&task.output, value, strlen(value), !init_oid_is_string(SPI_gettypeid(tupdesc, col)) && task.string, task.escape, task.quote);
pfree(value);
}
}
task.row++;
#if PG_VERSION_NUM >= 90600
return true;
#endif
}
static void rStartup(DestReceiver *self, int operation, TupleDesc tupdesc) {
switch (operation) {
case CMD_UNKNOWN: elog(DEBUG1, "id = %li, operation = CMD_UNKNOWN", task.shared->id); break;
case CMD_SELECT: elog(DEBUG1, "id = %li, operation = CMD_SELECT", task.shared->id); break;
case CMD_UPDATE: elog(DEBUG1, "id = %li, operation = CMD_UPDATE", task.shared->id); break;
case CMD_INSERT: elog(DEBUG1, "id = %li, operation = CMD_INSERT", task.shared->id); break;
case CMD_DELETE: elog(DEBUG1, "id = %li, operation = CMD_DELETE", task.shared->id); break;
case CMD_UTILITY: elog(DEBUG1, "id = %li, operation = CMD_UTILITY", task.shared->id); break;
case CMD_NOTHING: elog(DEBUG1, "id = %li, operation = CMD_NOTHING", task.shared->id); break;
default: elog(DEBUG1, "id = %li, operation = %i", task.shared->id, operation); break;
}
task.row = 0;
task.skip = 1;
}
static void rShutdown(DestReceiver *self) {
elog(DEBUG1, "id = %li", task.shared->id);
}
static void rDestroy(DestReceiver *self) {
elog(DEBUG1, "id = %li", task.shared->id);
}
static
#if PG_VERSION_NUM >= 120000
const
#endif
DestReceiver myDestReceiver = {
.receiveSlot = receiveSlot,
.rStartup = rStartup,
.rShutdown = rShutdown,
.rDestroy = rDestroy,
.mydest = DestDebug,
};
static DestReceiver *CreateDestReceiverMy(CommandDest dest) {
elog(DEBUG1, "id = %li", task.shared->id);
#if PG_VERSION_NUM >= 120000
return unconstify(DestReceiver *, &myDestReceiver);
#else
return &myDestReceiver;
#endif
}
static void ReadyForQueryMy(CommandDest dest) {
elog(DEBUG1, "id = %li", task.shared->id);
}
static void NullCommandMy(CommandDest dest) {
elog(DEBUG1, "id = %li", task.shared->id);
}
#if PG_VERSION_NUM >= 130000
static void BeginCommandMy(CommandTag commandTag, CommandDest dest) {
elog(DEBUG1, "id = %li, commandTag = %s", task.shared->id, GetCommandTagName(commandTag));
}
static void EndCommandMy(const QueryCompletion *qc, CommandDest dest, bool force_undecorated_output) {
char completionTag[COMPLETION_TAG_BUFSIZE];
CommandTag tag = qc->commandTag;
const char *tagname = GetCommandTagName(tag);
if (command_tag_display_rowcount(tag) && !force_undecorated_output) snprintf(completionTag, COMPLETION_TAG_BUFSIZE, tag == CMDTAG_INSERT ? "%s 0 " UINT64_FORMAT : "%s " UINT64_FORMAT, tagname, qc->nprocessed);
else snprintf(completionTag, COMPLETION_TAG_BUFSIZE, "%s", tagname);
elog(DEBUG1, "id = %li, completionTag = %s", task.shared->id, completionTag);
if (task.skip) task.skip = 0; else {
if (!task.output.data) initStringInfoMy(&task.output);
if (task.output.len) appendStringInfoString(&task.output, "\n");
appendStringInfoString(&task.output, completionTag);
}
}
#else
static void BeginCommandMy(const char *commandTag, CommandDest dest) {
elog(DEBUG1, "id = %li, commandTag = %s", task.shared->id, commandTag);
}
static void EndCommandMy(const char *commandTag, CommandDest dest) {
elog(DEBUG1, "id = %li, commandTag = %s", task.shared->id, commandTag);
if (task.skip) task.skip = 0; else {
if (!task.output.data) initStringInfoMy(&task.output);
if (task.output.len) appendStringInfoString(&task.output, "\n");
appendStringInfoString(&task.output, commandTag);
}
}
#endif
#if PG_VERSION_NUM < 90500
#define PQArgBlock undef
#endif
#include <postgres.c>
static void dest_execute(void) {
MemoryContext oldMemoryContext = MemoryContextSwitchTo(MessageContext);
MemoryContextResetAndDeleteChildren(MessageContext);
InvalidateCatalogSnapshotConditionally();
MemoryContextSwitchTo(oldMemoryContext);
whereToSendOutput = DestDebug;
ReadyForQueryMy(whereToSendOutput);
SetCurrentStatementStartTimestamp();
exec_simple_query(task.input);
if (IsTransactionState()) exec_simple_query(SQL(COMMIT));
if (IsTransactionState()) ereport(ERROR, (errcode(ERRCODE_ACTIVE_SQL_TRANSACTION), errmsg("still active sql transaction")));
}
static void dest_catch(void) {
HOLD_INTERRUPTS();
disable_all_timeouts(false);
QueryCancelPending = false;
emit_log_hook_prev = emit_log_hook;
emit_log_hook = task_error;
EmitErrorReport();
debug_query_string = NULL;
AbortOutOfAnyTransaction();
#if PG_VERSION_NUM >= 110000
PortalErrorCleanup();
#endif
if (MyReplicationSlot) ReplicationSlotRelease();
#if PG_VERSION_NUM >= 170000
ReplicationSlotCleanup(false);
#elif PG_VERSION_NUM >= 100000
ReplicationSlotCleanup();
#endif
#if PG_VERSION_NUM >= 110000
jit_reset_after_error();
#endif
FlushErrorState();
xact_started = false;
RESUME_INTERRUPTS();
}
bool dest_timeout(void) {
int StatementTimeoutMy = StatementTimeout;
if (task_work(&task)) return true;
elog(DEBUG1, "id = %li, timeout = %i, input = %s, count = %i", task.shared->id, task.timeout, task.input, task.count);
set_ps_display_my("timeout");
StatementTimeout = task.timeout;
PG_TRY();
if (!task.active) ereport(ERROR, (errcode(ERRCODE_QUERY_CANCELED), errmsg("task not active")));
dest_execute();
PG_CATCH();
dest_catch();
PG_END_TRY();
StatementTimeout = StatementTimeoutMy;
pgstat_report_stat(false);
pgstat_report_activity(STATE_IDLE, NULL);
set_ps_display_my("idle");
return task_done(&task);
}