-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocaml-sqlite3.c
852 lines (740 loc) · 18.6 KB
/
ocaml-sqlite3.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
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
#include <string.h>
#include <assert.h>
#define CAML_NAME_SPACE
#include <caml/alloc.h>
#include <caml/memory.h>
#include <caml/fail.h>
#include <caml/callback.h>
#include <caml/custom.h>
#include <sqlite3.h>
#include "ocaml-sqlite3.h"
/* Not wrapped :
- user-defined aggregate functions
- collation functions
- sqlite3_db_handle -> should not be wrapped !
- sqlite3_commit_hook
- sqlite3_global_recover
- sqlite3_set_authorizer
*/
/* compatibility for OCaml < 3.10 */
#ifndef CAMLreturnT
# define CAMLreturnT(t,e) CAMLreturn(e)
#endif
/* Error handling */
void ml_sqlite3_raise_exn (int status, const char *errmsg, int static_errmsg)
{
static value *sqlite3_exn;
/* check this is really an error */
assert (status > SQLITE_OK && status < SQLITE_ROW);
if (sqlite3_exn == NULL)
{
sqlite3_exn = caml_named_value ("mlsqlite3_exn");
if (sqlite3_exn == NULL)
caml_failwith ("Sqlite3 exception not registered");
}
{
CAMLlocal1(bucket);
bucket = caml_alloc (3, 0);
Store_field(bucket, 0, *sqlite3_exn);
Store_field(bucket, 1, Val_long (status - 1));
Store_field(bucket, 2, caml_copy_string (errmsg ? (char *) errmsg : ""));
if (! static_errmsg)
sqlite3_free ((char *) errmsg);
caml_raise (bucket);
}
}
static value *
ml_sqlite3_global_root_new (value v)
{
value *p = caml_stat_alloc (sizeof (value));
*p = v;
caml_register_global_root (p);
return p;
}
static void
ml_sqlite3_global_root_destroy (void *data)
{
value *p = data;
caml_remove_global_root (p);
caml_stat_free (data);
}
/* 0 -> busy
* 1 -> trace
* 2 -> progress
*/
#define NUM_CALLBACKS 3
static void
ml_finalize_sqlite3 (value v)
{
struct ml_sqlite3_data *data = Sqlite3_data_val(v);
caml_remove_global_root (&data->callbacks);
caml_remove_global_root (&data->stmt_store);
caml_stat_free (data);
}
static int
ml_sqlite3_pointer_compare(value v1, value v2)
{
struct ml_sqlite3_data *d1 = Sqlite3_data_val(v1);
struct ml_sqlite3_data *d2 = Sqlite3_data_val(v2);
return (d1 > d2) - (d1 < d2);
}
static intnat
ml_sqlite3_pointer_hash(value v)
{
struct ml_sqlite3_data *d = Sqlite3_data_val(v);
return (intnat) d;
}
static value
ml_wrap_sqlite3 (sqlite3 *db)
{
static struct custom_operations ops = {
"mlsqlite3/001",
ml_finalize_sqlite3,
ml_sqlite3_pointer_compare,
ml_sqlite3_pointer_hash,
custom_serialize_default,
custom_deserialize_default,
#ifdef custom_compare_ext_default
custom_compare_ext_default
#endif
};
CAMLparam0();
CAMLlocal1(v);
struct ml_sqlite3_data **store, *data;
data = caml_stat_alloc (sizeof *data);
v = caml_alloc_custom (&ops, sizeof data, 1, 100);
store = Data_custom_val (v);
*store = data;
data->db = db;
data->callbacks = caml_alloc (NUM_CALLBACKS, 0);
data->stmt_store = Val_unit;
caml_register_global_root (&data->callbacks);
caml_register_global_root (&data->stmt_store);
CAMLreturn(v);
}
CAMLprim value
ml_sqlite3_open (value filename)
{
sqlite3 *db;
int status;
status = sqlite3_open (String_val(filename), &db);
if (status != SQLITE_OK)
{
char *errmsg;
errmsg = (char *) sqlite3_errmsg (db);
sqlite3_close (db); /* ignore status here */
ml_sqlite3_raise_exn (status, errmsg, TRUE);
}
return ml_wrap_sqlite3 (db);
}
CAMLprim value
ml_sqlite3_close (value db)
{
struct ml_sqlite3_data *data = Sqlite3_data_val(db);
if (data->db != NULL)
{
int status;
status = sqlite3_close (data->db);
if (status != SQLITE_OK)
raise_sqlite3_exn (db);
data->db = NULL;
}
return Val_unit;
}
CAMLprim value
ml_sqlite3_set_stmt_store (value db, value s)
{
struct ml_sqlite3_data *data = Sqlite3_data_val (db);
if (Is_block (s))
data->stmt_store = Field (s, 0);
else
data->stmt_store = Val_unit;
return Val_unit;
}
CAMLprim value
ml_sqlite3_get_stmt_store (value db, value s)
{
struct ml_sqlite3_data *data = Sqlite3_data_val (db);
if (data->stmt_store == Val_unit)
caml_raise_not_found();
return data->stmt_store;
}
/* Misc general functions */
CAMLprim value
ml_sqlite3_interrupt (value db)
{
sqlite3_interrupt (Sqlite3_val (db));
return Val_unit;
}
CAMLprim value
ml_sqlite3_complete (value sql)
{
#ifdef HAVE_SQLITE3_COMPLETE
return Val_bool (sqlite3_complete (String_val (sql)));
#else
caml_failwith ("sqlite3_complete unavailable");
#endif
}
CAMLprim value
ml_sqlite3_version (value unit)
{
return caml_copy_string (sqlite3_version);
}
CAMLprim value
ml_sqlite3_last_insert_rowid (value db)
{
return caml_copy_int64 (sqlite3_last_insert_rowid (Sqlite3_val (db)));
}
CAMLprim value
ml_sqlite3_changes (value db)
{
return Val_long (sqlite3_changes (Sqlite3_val (db)));
}
CAMLprim value
ml_sqlite3_total_changes (value db)
{
return Val_long (sqlite3_total_changes (Sqlite3_val (db)));
}
CAMLprim value
ml_sqlite3_get_autocommit (value db)
{
#ifdef HAVE_SQLITE3_GET_AUTOCOMMIT
return Val_bool (sqlite3_get_autocommit (Sqlite3_val (db)));
#else
caml_failwith ("sqlite3_get_autocommit unavailable");
#endif
}
CAMLprim value
ml_sqlite3_sleep (value ms)
{
#if HAVE_SQLITE3_SLEEP
return Val_int (sqlite3_sleep (Int_val (ms)));
#else
caml_failwith ("sqlite3_sleep unavailable");
#endif
}
CAMLprim value
ml_sqlite3_compileoption_get(value i)
{
CAMLparam0();
CAMLlocal2(v, s);
const char *o;
o = sqlite3_compileoption_get(Int_val(i));
if (o) {
s = caml_copy_string(o);
v = caml_alloc_small(1, 0);
Field(v, 0) = s;
}
else {
v = Val_long(0);
}
CAMLreturn(v);
}
/* callbacks */
#define MLTAG_RETRY -915497327L
#define MLTAG_FAIL 1559036861L
static int
ml_sqlite3_busy_handler_cb (void *data, int num)
{
struct ml_sqlite3_data *db = data;
value res;
res = caml_callback_exn (Field (db->callbacks, 0), Val_int (num));
if (Is_exception_result (res))
return 0;
return (res == MLTAG_RETRY);
}
CAMLprim value
ml_sqlite3_busy_handler (value db, value cb)
{
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_busy_handler (Sqlite3_val(db),
ml_sqlite3_busy_handler_cb, db_data);
Store_field (db_data->callbacks, 0, cb);
return Val_unit;
}
CAMLprim value
ml_sqlite3_busy_handler_unset (value db)
{
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_busy_handler (Sqlite3_val(db), NULL, NULL);
Store_field (db_data->callbacks, 0, Val_unit);
return Val_unit;
}
CAMLprim value
ml_sqlite3_busy_timeout (value db, value t)
{
sqlite3_busy_timeout (Sqlite3_val (db), Int_val (t));
return Val_unit;
}
static void
ml_sqlite3_trace_handler (void *data, const char *req)
{
struct ml_sqlite3_data *db = data;
value s = caml_copy_string (req);
caml_callback_exn (Field (db->callbacks, 1), s);
}
CAMLprim value
ml_sqlite3_trace (value db, value cb)
{
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_trace (Sqlite3_val (db), ml_sqlite3_trace_handler, db_data);
Store_field (db_data->callbacks, 1, cb);
return Val_unit;
}
CAMLprim value
ml_sqlite3_trace_unset (value db)
{
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_trace (Sqlite3_val (db), NULL, NULL);
Store_field (db_data->callbacks, 1, Val_unit);
return Val_unit;
}
#ifdef HAVE_SQLITE3_PROGRESS_HANDLER
static int
ml_sqlite3_progress_handler_cb (void *data)
{
struct ml_sqlite3_data *db = data;
value res;
res = caml_callback_exn (Field (db->callbacks, 2), Val_unit);
return Is_exception_result(res);
}
#endif
CAMLprim value
ml_sqlite3_progress_handler (value db, value delay, value cb)
{
#ifdef HAVE_SQLITE3_PROGRESS_HANDLER
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_progress_handler (Sqlite3_val (db), Int_val (delay),
ml_sqlite3_progress_handler_cb, db_data);
Store_field (db_data->callbacks, 2, cb);
#endif
return Val_unit;
}
CAMLprim value
ml_sqlite3_progress_handler_unset (value db)
{
#ifdef HAVE_SQLITE3_PROGRESS_HANDLER
struct ml_sqlite3_data *db_data = Sqlite3_data_val(db);
sqlite3_progress_handler (Sqlite3_val(db), 0, NULL, NULL);
Store_field (db_data->callbacks, 2, Val_unit);
#endif
return Val_unit;
}
#define MLTAG_INTEGER 769598269L
#define MLTAG_FLOAT 17431289L
#define MLTAG_TEXT 1869949275L
#define MLTAG_BLOB 1471417019L
#define MLTAG_NULL 1738460431L
#define MLTAG_INT 7295391L
#define MLTAG_INT64 2015220635L
#define MLTAG_VALUE 1598910115L
static value
convert_sqlite3_type (int t)
{
switch (t)
{
case SQLITE_INTEGER:
return MLTAG_INTEGER;
case SQLITE_FLOAT:
return MLTAG_FLOAT;
case SQLITE_TEXT:
return MLTAG_TEXT;
case SQLITE_BLOB:
return MLTAG_BLOB;
default:
return MLTAG_NULL;
}
}
/* Prepared statements */
CAMLprim value
ml_sqlite3_finalize_noerr (value s)
{
sqlite3_stmt **p_stmt = (sqlite3_stmt **) s;
if (*p_stmt != NULL)
{
sqlite3_finalize (*p_stmt);
*p_stmt = NULL;
}
return Val_unit;
}
static sqlite3_stmt *
ml_sqlite3_prepare_stmt (value db, value sql, value sql_off, unsigned int *tail_pos)
{
CAMLparam2(db, sql);
sqlite3_stmt *stmt = NULL;
const char *tail;
int status;
unsigned int off = Unsigned_int_val (sql_off);
status = sqlite3_prepare_v2 (Sqlite3_val (db),
String_val (sql) + off,
caml_string_length (sql) - off + 1,
&stmt, &tail);
if (status != SQLITE_OK)
raise_sqlite3_exn (db);
if (tail_pos != NULL)
*tail_pos = tail - String_val (sql);
CAMLreturnT (sqlite3_stmt *, stmt);
}
CAMLprim value
ml_sqlite3_prepare (value db, value sql, value sql_off)
{
CAMLparam2(db, sql);
CAMLlocal3(t, o, s);
sqlite3_stmt *stmt;
unsigned int tail_pos;
stmt = ml_sqlite3_prepare_stmt (db, sql, sql_off, &tail_pos);
if (stmt == NULL)
o = Val_unit;
else
{
s = caml_alloc_small (1, Abstract_tag);
Field (s, 0) = Val_bp (stmt);
o = caml_alloc_small (1, 0);
Field (o, 0) = s;
}
t = caml_alloc_small (2, 0);
Field (t, 0) = o;
Field (t, 1) = Val_int (tail_pos);
CAMLreturn (t);
}
CAMLprim value
ml_sqlite3_reset (value stmt)
{
sqlite3_stmt *s = Sqlite3_stmt_val (stmt);
sqlite3_reset (s);
return Val_unit;
}
CAMLprim value
ml_sqlite3_expired (value stmt)
{
sqlite3_stmt *s = * ((sqlite3_stmt **) stmt);
return Val_bool (s == NULL);
}
#define MLTAG_ROW 8190965L
#define MLTAG_DONE 1516073221L
CAMLprim value
ml_sqlite3_step (value stmt)
{
CAMLparam1(stmt);
CAMLlocal1(r);
int status;
sqlite3_stmt *s = Sqlite3_stmt_val (stmt);
status = sqlite3_step (s);
switch (status)
{
case SQLITE_ROW:
r = MLTAG_ROW; break;
case SQLITE_DONE:
r = MLTAG_DONE; break;
default:
{
sqlite3 *db;
db = sqlite3_db_handle (s);
ml_sqlite3_raise_exn (status, sqlite3_errmsg (db), TRUE);
}
}
CAMLreturn (r);
}
/* sqlite3_bind_* */
CAMLprim value
ml_sqlite3_bind (value s, value idx, value v)
{
sqlite3_stmt *stmt = Sqlite3_stmt_val (s);
int i = Int_val (idx);
int status;
if (Is_long (v))
status = sqlite3_bind_null (stmt, i);
else
{
value val = Field (v, 1);
switch (Field (v, 0))
{
case MLTAG_INT:
status = sqlite3_bind_int (stmt, i, Int_val (val)); break;
case MLTAG_INT64:
status = sqlite3_bind_int64 (stmt, i, Int64_val (val)); break;
case MLTAG_FLOAT:
status = sqlite3_bind_double (stmt, i, Double_val (val)); break;
case MLTAG_TEXT:
status = sqlite3_bind_text (stmt, i,
String_val (val),
caml_string_length (val),
SQLITE_TRANSIENT);
break;
case MLTAG_BLOB:
status = sqlite3_bind_blob (stmt, i,
String_val (val),
caml_string_length (val),
SQLITE_TRANSIENT);
break;
case MLTAG_VALUE:
#if HAVE_SQLITE3_BIND_VALUE
status = sqlite3_bind_value (stmt, i, Sqlite3_value_val (val)); break;
#else
caml_failwith ("sqlite3_bind_value unavailable");
#endif
default:
status = SQLITE_MISUSE;
}
}
if (status != SQLITE_OK)
ml_sqlite3_raise_exn (status, "sqlite3_bind failed", TRUE);
return Val_unit;
}
CAMLprim value
ml_sqlite3_bind_parameter_count (value s)
{
return Val_int (sqlite3_bind_parameter_count (Sqlite3_stmt_val (s)));
}
CAMLprim value
ml_sqlite3_bind_parameter_index (value s, value n)
{
return Val_int (sqlite3_bind_parameter_index (Sqlite3_stmt_val (s),
String_val(n)));
}
CAMLprim value
ml_sqlite3_bind_parameter_name (value s, value idx)
{
return caml_copy_string (sqlite3_bind_parameter_name (Sqlite3_stmt_val (s),
Int_val (idx)));
}
CAMLprim value
ml_sqlite3_clear_bindings (value s)
{
#if HAVE_SQLITE3_CLEAR_BINDINGS
int status;
status = sqlite3_clear_bindings (Sqlite3_stmt_val (s));
if (status != SQLITE_OK)
ml_sqlite3_raise_exn (status, "clear_bindings failed", TRUE);
return Val_unit;
#else
sqlite3_stmt *stmt = Sqlite3_stmt_val (s);
int i, n, status;
n = sqlite3_bind_parameter_count(stmt);
for (i = 1; i <= n; i++)
{
status = sqlite3_bind_null(stmt, i);
if (status != SQLITE_OK)
ml_sqlite3_raise_exn (status, "clear_bindings failed", TRUE);
}
return Val_unit;
#endif
}
/* sqlite3_column_* */
CAMLprim value
ml_sqlite3_column_blob (value s, value i)
{
CAMLparam1(s);
CAMLlocal1(r);
int len;
const void * data;
len = sqlite3_column_bytes (Sqlite3_stmt_val (s), Int_val (i));
r = caml_alloc_string (len);
data = sqlite3_column_blob (Sqlite3_stmt_val (s), Int_val(i));
memcpy (Bp_val (r), data, len);
CAMLreturn(r);
}
CAMLprim value
ml_sqlite3_column_double (value s, value i)
{
return caml_copy_double (sqlite3_column_double (Sqlite3_stmt_val (s), Int_val(i)));
}
CAMLprim value
ml_sqlite3_column_int (value s, value i)
{
return Val_int (sqlite3_column_int (Sqlite3_stmt_val (s), Int_val(i)));
}
CAMLprim value
ml_sqlite3_column_int64 (value s, value i)
{
return caml_copy_int64 (sqlite3_column_int64 (Sqlite3_stmt_val (s), Int_val(i)));
}
CAMLprim value
ml_sqlite3_column_text (value s, value i)
{
CAMLparam1(s);
CAMLlocal1(r);
int len;
const void * data;
len = sqlite3_column_bytes (Sqlite3_stmt_val (s), Int_val (i));
r = caml_alloc_string (len);
data = sqlite3_column_text (Sqlite3_stmt_val (s), Int_val(i));
memcpy (Bp_val (r), data, len);
CAMLreturn(r);
}
CAMLprim value
ml_sqlite3_column_type (value s, value i)
{
return convert_sqlite3_type (sqlite3_column_type (Sqlite3_stmt_val (s), Int_val(i)));
}
CAMLprim value
ml_sqlite3_data_count (value s)
{
return Val_int (sqlite3_data_count (Sqlite3_stmt_val (s)));
}
CAMLprim value
ml_sqlite3_column_count (value s)
{
return Val_int (sqlite3_column_count (Sqlite3_stmt_val (s)));
}
CAMLprim value
ml_sqlite3_column_name (value s, value i)
{
return caml_copy_string (sqlite3_column_name (Sqlite3_stmt_val (s),
Int_val(i)));
}
CAMLprim value
ml_sqlite3_column_decltype (value s, value i)
{
return caml_copy_string (sqlite3_column_decltype (Sqlite3_stmt_val (s),
Int_val(i)));
}
/* User-defined functions */
static value
ml_sqlite3_wrap_values (int argc, sqlite3_value **args)
{
int i;
CAMLparam0();
CAMLlocal2(a, v);
if (argc <= 0 || args == NULL)
CAMLreturn (Atom (0));
a = caml_alloc (argc, 0);
for (i=0; i<argc; i++)
{
v = caml_alloc_small (1, Abstract_tag);
Field (v, 0) = Val_bp (args[i]);
Store_field (a, i, v);
}
CAMLreturn (a);
}
static void
ml_sqlite3_wipe_values (value a)
{
mlsize_t i, len = Wosize_val (a);
for (i=0; i<len; i++)
Store_field (Field (a, i), 0, 0);
}
CAMLprim value
ml_sqlite3_value_blob (value v)
{
CAMLparam1(v);
CAMLlocal1(r);
int len;
const void *data;
len = sqlite3_value_bytes (Sqlite3_value_val (v));
r = caml_alloc_string (len);
data = sqlite3_value_blob (Sqlite3_value_val (v));
memcpy (Bp_val (r), data, len);
CAMLreturn(r);
}
CAMLprim value
ml_sqlite3_value_double (value v)
{
return caml_copy_double (sqlite3_value_double (Sqlite3_value_val (v)));
}
CAMLprim value
ml_sqlite3_value_int (value v)
{
return Val_long (sqlite3_value_int (Sqlite3_value_val (v)));
}
CAMLprim value
ml_sqlite3_value_int64 (value v)
{
return caml_copy_int64 (sqlite3_value_int64 (Sqlite3_value_val (v)));
}
CAMLprim value
ml_sqlite3_value_text (value v)
{
CAMLparam1(v);
CAMLlocal1(r);
int len;
const void *data;
len = sqlite3_value_bytes (Sqlite3_value_val (v));
r = caml_alloc_string (len);
data = sqlite3_value_text (Sqlite3_value_val (v));
memcpy (Bp_val (r), data, len);
CAMLreturn(r);
}
CAMLprim value
ml_sqlite3_value_type (value v)
{
return convert_sqlite3_type (sqlite3_value_type (Sqlite3_value_val (v)));
}
static void
ml_sqlite3_set_result (sqlite3_context *ctx, value res)
{
if (Is_exception_result (res))
sqlite3_result_error (ctx, "ocaml callback raised an exception", -1);
else if (Is_long (res))
sqlite3_result_null (ctx);
else
{
value v = Field (res, 1);
switch (Field (res, 0))
{
case MLTAG_INT:
sqlite3_result_int (ctx, Long_val (v));
break;
case MLTAG_INT64:
sqlite3_result_int64 (ctx, Int64_val (v));
break;
case MLTAG_FLOAT:
sqlite3_result_double (ctx, Double_val (v));
break;
case MLTAG_TEXT:
sqlite3_result_text (ctx, String_val (v), caml_string_length (v), SQLITE_TRANSIENT);
break;
case MLTAG_BLOB:
sqlite3_result_blob (ctx, String_val (v), caml_string_length (v), SQLITE_TRANSIENT);
break;
case MLTAG_VALUE:
{
sqlite3_result_value (ctx, Sqlite3_value_val (v));
break;
}
default:
sqlite3_result_error (ctx, "unknown value returned by callback", -1);
}
}
}
static void
ml_sqlite3_user_function (sqlite3_context *ctx, int argc, sqlite3_value **argv)
{
value *fun = sqlite3_user_data (ctx);
CAMLparam0();
CAMLlocal2(res, args);
args = ml_sqlite3_wrap_values (argc, argv);
res = caml_callback_exn (*fun, args);
ml_sqlite3_set_result (ctx, res);
ml_sqlite3_wipe_values (args);
CAMLreturn0;
}
CAMLprim value
ml_sqlite3_create_function (value db, value name, value nargs, value fun)
{
CAMLparam3(db, name, fun);
int status;
sqlite3 *s_db = Sqlite3_val(db);
value *param;
param = ml_sqlite3_global_root_new(fun);
status = sqlite3_create_function_v2 (s_db, String_val (name),
Int_val (nargs), SQLITE_UTF8, param,
ml_sqlite3_user_function, NULL, NULL,
ml_sqlite3_global_root_destroy);
if (status != SQLITE_OK)
raise_sqlite3_exn (db);
CAMLreturn(Val_unit);
}
CAMLprim value
ml_sqlite3_delete_function (value db, value name)
{
int status;
sqlite3 *s_db = Sqlite3_val(db);
status = sqlite3_create_function_v2 (s_db, String_val (name),
0, SQLITE_UTF8, NULL,
NULL, NULL, NULL,
NULL);
if (status != SQLITE_OK)
raise_sqlite3_exn (db);
return Val_unit;
}