-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbridge.c
375 lines (333 loc) · 7.53 KB
/
bridge.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
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
/*-------------------------------------------------------------------------
*
* bridge.c
* Bridge between C and Rust
*
* Portions Copyright (c) 2016, Mitsunori Komatsu
*
* IDENTIFICATION
* bridge.c
*
*-------------------------------------------------------------------------
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "bridge.h"
#ifndef WITHOUT_PG
#include <postgres.h>
#define LOG_LEVEL_DEBUG DEBUG1
#define LOG_LEVEL_ERROR ERROR
#define ALLOC(sz) (palloc(sz))
#define FREE(p) (pfree(p))
#else
#include <string.h>
#define bool char
#define LOG_LEVEL_DEBUG 0
#define LOG_LEVEL_ERROR 0
#define ALLOC(sz) (malloc(sz))
#define FREE(p) (free(p))
#endif
typedef struct
{
char **values;
int index;
} fetch_result_context;
static int add_nil(fetch_result_context *context);
static int add_bytes(fetch_result_context *context, size_t len, const char *s);
static void *pgstrdup(size_t len, const char* s);
static void *pgalloc(size_t len);
static void debug_log(size_t len, const char *msg);
static void error_log(size_t len, const char *msg);
extern void *issue_query(
const char *apikey,
const char *endpoint,
const char *query_engine,
const char *database,
const char *query,
const char *query_download_dir,
void (*debug_log)(size_t, const char*),
void (*error_log)(size_t, const char*)
);
extern bool fetch_result_row(
void *query_state,
fetch_result_context *context,
int (*add_nil)(fetch_result_context *),
int (*add_bytes)(fetch_result_context *, size_t, const char *),
void (*debug_log)(size_t, const char *),
void (*error_log)(size_t, const char *)
);
extern void release_query_resource(void *td_query_state);
extern void create_table(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
void (*debug_log)(size_t, const char*),
void (*error_log)(size_t, const char*)
);
extern void copy_table_schema(
const char *apikey,
const char *endpoint,
const char *src_database,
const char *src_table,
const char *dst_database,
const char *dst_table,
void (*debug_log)(size_t, const char*),
void (*error_log)(size_t, const char*)
);
extern void append_table_schema(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
int column_size,
const char **coltypes,
const char **colnames,
void (*debug_log)(size_t, const char *),
void (*error_log)(size_t, const char *)
);
extern void delete_table(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
void (*debug_log)(size_t, const char*),
void (*error_log)(size_t, const char*)
);
extern void *import_begin(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
int column_size,
const char **coltypes,
const char **colnames,
void (*debug_log)(size_t, const char*),
void (*error_log)(size_t, const char*)
);
extern size_t import_append(
void *import_state,
const char **values,
void (*debug_log)(size_t, const char *),
void (*error_log)(size_t, const char *)
);
extern void import_commit(
void *import_state,
void (*debug_log)(size_t, const char *),
void (*error_log)(size_t, const char *)
);
extern table_schemas_t *get_table_schemas(
const char *apikey,
const char *endpoint,
const char *database,
void *(*pgstrdup)(size_t, const char*),
void *(*pgalloc)(size_t),
void (*debug_log)(size_t, const char *),
void (*error_log)(size_t, const char *)
);
void *issueQuery(
const char *apikey,
const char *endpoint,
const char *query_engine,
const char *database,
const char *query,
const char *query_download_dir)
{
return issue_query(
apikey,
endpoint,
query_engine,
database,
query,
query_download_dir,
debug_log,
error_log);
}
int fetchResultRow(void *td_query_state, int natts, char **values)
{
int ret;
fetch_result_context context;
context.index = 0;
context.values = values;
ret = fetch_result_row(
td_query_state,
&context,
add_nil,
add_bytes,
debug_log,
error_log);
/* If the return value is true, it means there are more results */
if (ret)
{
return 0;
}
return 1;
}
void releaseQueryResource(void *td_query_state)
{
release_query_resource(td_query_state);
}
void createTable(
const char *apikey,
const char *endpoint,
const char *database,
const char *table)
{
create_table(
apikey,
endpoint,
database,
table,
debug_log,
error_log);
}
void copyTableSchema(
const char *apikey,
const char *endpoint,
const char *src_database,
const char *src_table,
const char *dst_database,
const char *dst_table)
{
copy_table_schema(
apikey,
endpoint,
src_database,
src_table,
dst_database,
dst_table,
debug_log,
error_log);
}
void appendTableSchema(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
int column_size,
const char **coltypes,
const char **colnames)
{
append_table_schema(
apikey,
endpoint,
database,
table,
column_size,
coltypes,
colnames,
debug_log,
error_log);
}
void deleteTable(
const char *apikey,
const char *endpoint,
const char *database,
const char *table)
{
delete_table(
apikey,
endpoint,
database,
table,
debug_log,
error_log);
}
void *importBegin(
const char *apikey,
const char *endpoint,
const char *database,
const char *table,
int column_size,
const char **coltypes,
const char **colnames)
{
return import_begin(
apikey,
endpoint,
database,
table,
column_size,
coltypes,
colnames,
debug_log,
error_log);
}
size_t importAppend(void *import_state, const char **values)
{
return import_append(
import_state,
values,
debug_log,
error_log);
}
void importCommit(void *import_state)
{
import_commit(
import_state,
debug_log,
error_log);
}
static void *pgalloc(size_t len)
{
return ALLOC(len);
}
static void *pgstrdup(size_t len, const char *s)
{
char *buf = (char*)ALLOC(len + 1);
memcpy(buf, s, len);
buf[len] = '\0';
return buf;
}
table_schemas_t *getTableSchemas(
const char *apikey,
const char *endpoint,
const char *database)
{
return get_table_schemas(
apikey,
endpoint,
database,
pgstrdup,
pgalloc,
debug_log,
error_log);
}
static int add_nil(fetch_result_context *context)
{
context->values[context->index] = NULL;
context->index++;
return 0;
}
static int add_bytes(fetch_result_context *context, size_t len, const char *s)
{
char *buf = (char*)ALLOC(len + 1);
memcpy(buf, s, len);
buf[len] = '\0';
context->values[context->index] = buf;
context->index++;
return 0;
}
static void call_elog(int mode, size_t len, const char *msg)
{
char *buf = (char*)ALLOC(len + 1);
memcpy(buf, msg, len);
buf[len] = '\0';
#ifndef WITHOUT_PG
elog(mode, "%s", buf);
#else
printf("%s\n", buf);
#endif
FREE(buf);
}
static void
debug_log(size_t len, const char *msg)
{
call_elog(LOG_LEVEL_DEBUG, len, msg);
}
static void
error_log(size_t len, const char *msg)
{
call_elog(LOG_LEVEL_ERROR, len, msg);
}