-
Notifications
You must be signed in to change notification settings - Fork 11
/
cnuodb.cpp
433 lines (408 loc) · 14.6 KB
/
cnuodb.cpp
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
/*
Copyright (C) 2013 Timo Linna. All Rights Reserved.
*/
#include <cstddef>
#include "cnuodb.h"
#include "NuoDB.h"
#include <cstring>
#include <string>
using namespace NuoDB;
struct nuodb {
Connection *conn;
std::string error;
};
static int setError(struct nuodb *db, SQLException &e) {
db->error.assign(e.getText());
return e.getSqlcode();
}
static int closeDb(struct nuodb *db) {
if (db->conn) {
try {
db->conn->close();
db->conn = 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
return 0;
}
void nuodb_init(struct nuodb **db) {
*db = new struct nuodb;
(*db)->conn = 0;
}
const char *nuodb_error(const struct nuodb *db) {
return db ? db->error.c_str() : "null db";
}
int nuodb_open(struct nuodb *db, const char *database, const char *username,
const char *password, const char **props, int props_count) {
closeDb(db);
Connection *conn = 0;
try {
conn = Connection::create();
Properties *p = conn->allocProperties(); // TODO: freed on conn->close()?
p->putValue("user", username);
p->putValue("password", password);
for (int i = 0; i < props_count; i += 2) {
const char *k = props[i];
const char *v = props[i+1];
if (k && v && std::strlen(k) > 0 && std::strlen(v) > 0) {
p->putValue(k, v);
}
}
conn->openDatabase(database, p);
conn->setAutoCommit(true); // enforce autocommit by default
db->conn = conn;
return 0;
} catch (SQLException &e) {
if (conn) {
conn->close();
}
return setError(db, e);
}
}
int nuodb_close(struct nuodb **db) {
int rc = 0;
if (db && *db) {
rc = closeDb(*db);
delete (*db);
*db = 0;
}
return rc;
}
int nuodb_autocommit(struct nuodb *db, int *state) {
try {
*state = db->conn->getAutoCommit();
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_autocommit_set(struct nuodb *db, int state) {
try {
db->conn->setAutoCommit(!!state);
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_commit(struct nuodb *db) {
try {
db->conn->commit();
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_rollback(struct nuodb *db) {
try {
db->conn->rollback();
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
static int fetchExecuteResult(struct nuodb *db, Statement *stmt,
int64_t *rows_affected, int64_t *last_insert_id) {
ResultSet *resultSet = 0;
try {
resultSet = stmt->getGeneratedKeys();
// NuoDB uses -1 as a flag for zero-rows-affected
*rows_affected = std::max(0, stmt->getUpdateCount());
if (*rows_affected > 0 && resultSet->getMetaData()->getColumnCount() > 0) {
while (resultSet->next()) {
// TODO find out how to read the last id first
}
switch (resultSet->getMetaData()->getColumnType(1)) {
case NUOSQL_TINYINT:
case NUOSQL_SMALLINT:
case NUOSQL_INTEGER:
case NUOSQL_BIGINT:
case NUOSQL_FLOAT:
case NUOSQL_DOUBLE:
case NUOSQL_NUMERIC:
case NUOSQL_DECIMAL:
*last_insert_id = resultSet->getLong(1);
break;
default:
// This is to avoid a failure when trying to call resultSet->getLong() when
// the generated column has a string type and a default sequence. If the user
// passes a string that cannot be converted to long, an exception is thrown.
//
// Since this only happens when the string is user-provided, we don't need to
// worry about trying to parse the returned value to return to the user.
//
// See TestStringSequence for more details.
*last_insert_id = 0;
break;
}
} else {
*last_insert_id = 0;
}
resultSet->close();
return 0;
} catch (SQLException &e) {
if (resultSet) {
resultSet->close();
}
return setError(db, e);
}
}
int nuodb_execute(struct nuodb *db, const char *sql,
int64_t *rows_affected, int64_t *last_insert_id, int64_t timeout_micro_seconds) {
Statement *stmt = 0;
try {
stmt = db->conn->createStatement();
stmt->setQueryTimeoutMicros(timeout_micro_seconds);
stmt->executeUpdate(sql, RETURN_GENERATED_KEYS);
int rc = fetchExecuteResult(db, stmt, rows_affected, last_insert_id);
stmt->close();
return rc;
} catch (SQLException &e) {
if (stmt) {
stmt->close();
}
return setError(db, e);
}
}
int nuodb_statement_prepare(struct nuodb *db, const char *sql,
struct nuodb_statement **st, int *parameter_count) {
PreparedStatement *stmt = 0;
try {
stmt = db->conn->prepareStatement(sql, RETURN_GENERATED_KEYS);
*parameter_count = stmt->getParameterMetaData()->getParameterCount();
*st = reinterpret_cast<struct nuodb_statement *>(stmt);
return 0;
} catch (SQLException &e) {
if (stmt) {
stmt->close();
}
return setError(db, e);
}
}
int nuodb_statement_bind(struct nuodb *db, struct nuodb_statement *st,
struct nuodb_value parameters[]) {
PreparedStatement *stmt = reinterpret_cast<PreparedStatement *>(st);
try {
int parameterCount = stmt->getParameterMetaData()->getParameterCount();
for (int i=0; i < parameterCount; ++i) {
int parameterIndex = i+1;
switch (parameters[i].vt) {
case NUODB_TYPE_NULL:
stmt->setNull(parameterIndex, NUOSQL_NULL);
break;
case NUODB_TYPE_INT64:
stmt->setLong(parameterIndex, parameters[i].i64);
break;
case NUODB_TYPE_FLOAT64: {
union {
int64_t i64;
double float64;
} value = { parameters[i].i64 };
stmt->setDouble(parameterIndex, value.float64);
break;
}
case NUODB_TYPE_BOOL:
stmt->setBoolean(parameterIndex, !!parameters[i].i64);
break;
case NUODB_TYPE_STRING: {
size_t length = parameters[i].i32;
const char *s = reinterpret_cast<const char*>(parameters[i].i64);
// Extra conversion due to missing length param in the setString API
const std::string str(s, length);
stmt->setString(parameterIndex, str.c_str());
break;
}
case NUODB_TYPE_BYTES: {
int length = parameters[i].i32;
const unsigned char *bytes = reinterpret_cast<const unsigned char*>(parameters[i].i64);
stmt->setBytes(parameterIndex, length, bytes);
break;
}
case NUODB_TYPE_TIME: {
int64_t seconds = parameters[i].i64;
int32_t nanos = parameters[i].i32;
SqlTimestamp ts(seconds, nanos);
stmt->setTimestamp(parameterIndex, &ts);
break;
}
}
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_statement_execute(struct nuodb *db, struct nuodb_statement *st,
int64_t *rows_affected, int64_t *last_insert_id) {
PreparedStatement *stmt = reinterpret_cast<PreparedStatement *>(st);
try {
stmt->executeUpdate();
return fetchExecuteResult(db, stmt, rows_affected, last_insert_id);
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_statement_query(struct nuodb *db, struct nuodb_statement *st,
struct nuodb_resultset **rs, int *column_count) {
ResultSet *resultSet = 0;
PreparedStatement *stmt = reinterpret_cast<PreparedStatement *>(st);
try {
bool hasResults = stmt->execute();
if (hasResults) {
resultSet = stmt->getResultSet();
} else {
resultSet = stmt->getGeneratedKeys();
}
*column_count = resultSet->getMetaData()->getColumnCount();
*rs = reinterpret_cast<struct nuodb_resultset *>(resultSet);
return 0;
} catch (SQLException &e) {
if (resultSet) {
resultSet->close();
}
return setError(db, e);
}
}
int nuodb_statement_close(struct nuodb *db, struct nuodb_statement **st) {
try {
if (st && *st) {
PreparedStatement *stmt = reinterpret_cast<PreparedStatement *>(*st);
stmt->close();
*st = 0;
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_statement_set_query_micros(struct nuodb *db, struct nuodb_statement *st,
int64_t timeout_micro_seconds) {
try {
if (st) {
PreparedStatement *stmt = reinterpret_cast<PreparedStatement *>(st);
// Set the timeout in micro seconds; zero means there is no limit.
stmt->setQueryTimeoutMicros(timeout_micro_seconds);
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_resultset_column_names(struct nuodb *db, struct nuodb_resultset *rs,
struct nuodb_value names[]) {
ResultSet *resultSet = reinterpret_cast<ResultSet *>(rs);
try {
ResultSetMetaData *resultSetMetaData = resultSet->getMetaData();
int columnCount = resultSetMetaData->getColumnCount();
for (int i=0; i < columnCount; ++i) {
int columnIndex = i+1;
const char *string = resultSetMetaData->getColumnLabel(columnIndex);
names[i].i64 = reinterpret_cast<int64_t>(string);
names[i].i32 = std::strlen(string);
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_resultset_next(struct nuodb *db, struct nuodb_resultset *rs,
int *has_values, struct nuodb_value values[]) {
ResultSet *resultSet = reinterpret_cast<ResultSet *>(rs);
try {
*has_values = resultSet->next();
if (*has_values) {
ResultSetMetaData *resultSetMetaData = resultSet->getMetaData();
int columnCount = resultSetMetaData->getColumnCount();
for (int i=0; i < columnCount; ++i) {
int64_t i64 = 0;
int32_t i32 = 0;
enum nuodb_value_type vt = NUODB_TYPE_NULL;
int columnIndex = i+1;
switch (resultSetMetaData->getColumnType(columnIndex)) {
case NUOSQL_NULL:
vt = NUODB_TYPE_NULL;
break;
case NUOSQL_TINYINT:
case NUOSQL_SMALLINT:
case NUOSQL_INTEGER:
case NUOSQL_BIGINT:
if (resultSetMetaData->getScale(columnIndex) == 0) {
i64 = resultSet->getLong(columnIndex);
if (!resultSet->wasNull()) {
vt = NUODB_TYPE_INT64;
}
break;
}
// fallthrough; must be fetched as a string
case NUOSQL_NUMERIC:
case NUOSQL_DECIMAL: {
const char *string = resultSet->getString(columnIndex);
if (!resultSet->wasNull()) {
vt = NUODB_TYPE_BYTES; // strings are returned as bytes
i64 = reinterpret_cast<int64_t>(string);
i32 = std::strlen(string);
}
break;
}
case NUOSQL_FLOAT:
case NUOSQL_DOUBLE: {
union {
double float64;
int64_t i64;
} value = { resultSet->getDouble(columnIndex) };
if (!resultSet->wasNull()) {
vt = NUODB_TYPE_FLOAT64;
i64 = value.i64;
}
break;
}
case NUOSQL_BIT:
case NUOSQL_BOOLEAN:
i64 = resultSet->getBoolean(columnIndex);
if (!resultSet->wasNull()) {
vt = NUODB_TYPE_BOOL;
}
break;
case NUOSQL_DATE:
case NUOSQL_TIME:
case NUOSQL_TIMESTAMP: {
Timestamp *ts = resultSet->getTimestamp(columnIndex);
if (ts && !resultSet->wasNull()) {
vt = NUODB_TYPE_TIME;
i64 = ts->getSeconds();
i32 = ts->getNanos();
}
break;
}
default: {
const Bytes b = resultSet->getBytes(columnIndex);
if (!resultSet->wasNull()) {
vt = NUODB_TYPE_BYTES;
i64 = reinterpret_cast<int64_t>(b.data);
i32 = b.length;
}
break;
}
}
values[i].i64 = i64;
values[i].i32 = i32;
values[i].vt = vt;
}
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}
int nuodb_resultset_close(struct nuodb *db, struct nuodb_resultset **rs) {
try {
if (rs && *rs) {
ResultSet *resultSet = reinterpret_cast<ResultSet *>(*rs);
resultSet->close();
*rs = 0;
}
return 0;
} catch (SQLException &e) {
return setError(db, e);
}
}