amalgalite 1.8.0-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/CONTRIBUTING.md +60 -0
  3. data/HISTORY.md +386 -0
  4. data/LICENSE +31 -0
  5. data/Manifest.txt +105 -0
  6. data/README.md +62 -0
  7. data/Rakefile +27 -0
  8. data/TODO.md +57 -0
  9. data/bin/amalgalite-pack +147 -0
  10. data/examples/a.rb +9 -0
  11. data/examples/blob.rb +88 -0
  12. data/examples/bootstrap.rb +36 -0
  13. data/examples/define_aggregate.rb +75 -0
  14. data/examples/define_function.rb +104 -0
  15. data/examples/fts5.rb +152 -0
  16. data/examples/gem-db.rb +94 -0
  17. data/examples/require_me.rb +11 -0
  18. data/examples/requires.rb +42 -0
  19. data/examples/schema-info.rb +34 -0
  20. data/ext/amalgalite/c/amalgalite.c +355 -0
  21. data/ext/amalgalite/c/amalgalite.h +151 -0
  22. data/ext/amalgalite/c/amalgalite_blob.c +240 -0
  23. data/ext/amalgalite/c/amalgalite_constants.c +1432 -0
  24. data/ext/amalgalite/c/amalgalite_database.c +1188 -0
  25. data/ext/amalgalite/c/amalgalite_requires_bootstrap.c +282 -0
  26. data/ext/amalgalite/c/amalgalite_statement.c +649 -0
  27. data/ext/amalgalite/c/extconf.rb +71 -0
  28. data/ext/amalgalite/c/gen_constants.rb +353 -0
  29. data/ext/amalgalite/c/notes.txt +134 -0
  30. data/ext/amalgalite/c/sqlite3.c +243616 -0
  31. data/ext/amalgalite/c/sqlite3.h +12894 -0
  32. data/ext/amalgalite/c/sqlite3_options.h +4 -0
  33. data/ext/amalgalite/c/sqlite3ext.h +705 -0
  34. data/lib/amalgalite/3.1/amalgalite.so +0 -0
  35. data/lib/amalgalite/aggregate.rb +73 -0
  36. data/lib/amalgalite/blob.rb +186 -0
  37. data/lib/amalgalite/boolean.rb +42 -0
  38. data/lib/amalgalite/busy_timeout.rb +47 -0
  39. data/lib/amalgalite/column.rb +99 -0
  40. data/lib/amalgalite/core_ext/kernel/require.rb +21 -0
  41. data/lib/amalgalite/csv_table_importer.rb +75 -0
  42. data/lib/amalgalite/database.rb +933 -0
  43. data/lib/amalgalite/function.rb +61 -0
  44. data/lib/amalgalite/index.rb +43 -0
  45. data/lib/amalgalite/memory_database.rb +15 -0
  46. data/lib/amalgalite/packer.rb +231 -0
  47. data/lib/amalgalite/paths.rb +80 -0
  48. data/lib/amalgalite/profile_tap.rb +131 -0
  49. data/lib/amalgalite/progress_handler.rb +21 -0
  50. data/lib/amalgalite/requires.rb +151 -0
  51. data/lib/amalgalite/schema.rb +225 -0
  52. data/lib/amalgalite/sqlite3/constants.rb +95 -0
  53. data/lib/amalgalite/sqlite3/database/function.rb +48 -0
  54. data/lib/amalgalite/sqlite3/database/status.rb +68 -0
  55. data/lib/amalgalite/sqlite3/status.rb +60 -0
  56. data/lib/amalgalite/sqlite3/version.rb +55 -0
  57. data/lib/amalgalite/sqlite3.rb +6 -0
  58. data/lib/amalgalite/statement.rb +421 -0
  59. data/lib/amalgalite/table.rb +91 -0
  60. data/lib/amalgalite/taps/console.rb +27 -0
  61. data/lib/amalgalite/taps/io.rb +74 -0
  62. data/lib/amalgalite/taps.rb +2 -0
  63. data/lib/amalgalite/trace_tap.rb +35 -0
  64. data/lib/amalgalite/type_map.rb +63 -0
  65. data/lib/amalgalite/type_maps/default_map.rb +166 -0
  66. data/lib/amalgalite/type_maps/storage_map.rb +38 -0
  67. data/lib/amalgalite/type_maps/text_map.rb +21 -0
  68. data/lib/amalgalite/version.rb +8 -0
  69. data/lib/amalgalite/view.rb +26 -0
  70. data/lib/amalgalite.rb +51 -0
  71. data/spec/aggregate_spec.rb +158 -0
  72. data/spec/amalgalite_spec.rb +4 -0
  73. data/spec/blob_spec.rb +78 -0
  74. data/spec/boolean_spec.rb +24 -0
  75. data/spec/busy_handler.rb +157 -0
  76. data/spec/data/iso-3166-country.txt +242 -0
  77. data/spec/data/iso-3166-schema.sql +22 -0
  78. data/spec/data/iso-3166-subcountry.txt +3995 -0
  79. data/spec/data/make-iso-db.sh +12 -0
  80. data/spec/database_spec.rb +505 -0
  81. data/spec/default_map_spec.rb +92 -0
  82. data/spec/function_spec.rb +78 -0
  83. data/spec/integeration_spec.rb +97 -0
  84. data/spec/iso_3166_database.rb +58 -0
  85. data/spec/json_spec.rb +24 -0
  86. data/spec/packer_spec.rb +60 -0
  87. data/spec/paths_spec.rb +28 -0
  88. data/spec/progress_handler_spec.rb +91 -0
  89. data/spec/requires_spec.rb +54 -0
  90. data/spec/rtree_spec.rb +66 -0
  91. data/spec/schema_spec.rb +131 -0
  92. data/spec/spec_helper.rb +48 -0
  93. data/spec/sqlite3/constants_spec.rb +108 -0
  94. data/spec/sqlite3/database_status_spec.rb +36 -0
  95. data/spec/sqlite3/status_spec.rb +22 -0
  96. data/spec/sqlite3/version_spec.rb +28 -0
  97. data/spec/sqlite3_spec.rb +53 -0
  98. data/spec/statement_spec.rb +168 -0
  99. data/spec/storage_map_spec.rb +38 -0
  100. data/spec/tap_spec.rb +57 -0
  101. data/spec/text_map_spec.rb +20 -0
  102. data/spec/type_map_spec.rb +14 -0
  103. data/spec/version_spec.rb +8 -0
  104. data/tasks/custom.rake +101 -0
  105. data/tasks/default.rake +244 -0
  106. data/tasks/extension.rake +28 -0
  107. data/tasks/this.rb +208 -0
  108. metadata +325 -0
@@ -0,0 +1,649 @@
1
+ #include "amalgalite.h"
2
+ /**
3
+ * Copyright (c) 2008 Jeremy Hinegardner
4
+ * All rights reserved. See LICENSE and/or COPYING for details.
5
+ *
6
+ * vim: shiftwidth=4
7
+ */
8
+
9
+ VALUE cAS_Statement; /* class Amalgliate::SQLite3::Statement */
10
+
11
+ /**
12
+ * call-seq:
13
+ * stmt.bind_null( position ) -> int
14
+ *
15
+ * bind a null value to the variable at postion.
16
+ *
17
+ */
18
+ VALUE am_sqlite3_statement_bind_null(VALUE self, VALUE position )
19
+ {
20
+ am_sqlite3_stmt *am_stmt;
21
+ int pos = FIX2INT( position );
22
+ int rc;
23
+
24
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
25
+ rc = sqlite3_bind_null( am_stmt->stmt, pos );
26
+ if ( SQLITE_OK != rc ) {
27
+ rb_raise(eAS_Error, "Error binding NULL at position %d in statement: [SQLITE_ERROR %d] : %s\n",
28
+ pos,
29
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
30
+ }
31
+
32
+ return INT2FIX(rc);
33
+ }
34
+
35
+ /**
36
+ * call-seq:
37
+ * stmt.bind_zeroblob( position, length ) -> int
38
+ *
39
+ * bind a blob with +length+ filled with zeros to the position. This is a Blob
40
+ * that will later filled in with incremental IO routines.
41
+ */
42
+ VALUE am_sqlite3_statement_bind_zeroblob( VALUE self, VALUE position, VALUE length)
43
+ {
44
+ am_sqlite3_stmt *am_stmt;
45
+ int pos = FIX2INT( position );
46
+ int n = (int)FIX2INT( length );
47
+ int rc;
48
+
49
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
50
+ rc = sqlite3_bind_zeroblob( am_stmt->stmt, pos, n );
51
+ if ( SQLITE_OK != rc ) {
52
+ rb_raise(eAS_Error, "Error binding zeroblob of length %d at position %d in statement: [SQLITE_ERROR %d] : %s\n",
53
+ n, pos,
54
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
55
+ }
56
+
57
+ return INT2FIX(rc);
58
+ }
59
+
60
+
61
+ /**
62
+ * call-seq:
63
+ * stmt.bind_blob( position, blob ) -> int
64
+ *
65
+ * bind a blob to the variable at position. This is a blob that is fully held
66
+ * in memory
67
+ */
68
+ VALUE am_sqlite3_statement_bind_blob( VALUE self, VALUE position, VALUE blob )
69
+ {
70
+ am_sqlite3_stmt *am_stmt;
71
+ int pos = FIX2INT( position );
72
+ VALUE str = StringValue( blob );
73
+ int rc;
74
+
75
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
76
+ rc = sqlite3_bind_blob( am_stmt->stmt, pos, RSTRING_PTR( str ), (int)RSTRING_LEN( str ), SQLITE_TRANSIENT);
77
+ if ( SQLITE_OK != rc ) {
78
+ rb_raise(eAS_Error, "Error binding blob at position %d in statement: [SQLITE_ERROR %d] : %s\n",
79
+ pos,
80
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
81
+ }
82
+
83
+ return INT2FIX(rc);
84
+ }
85
+
86
+ /**
87
+ * call-seq:
88
+ * stmt.bind_double( position, value ) -> nil
89
+ *
90
+ * bind a double value to the variable at postion.
91
+ *
92
+ */
93
+ VALUE am_sqlite3_statement_bind_double(VALUE self, VALUE position, VALUE value)
94
+ {
95
+ am_sqlite3_stmt *am_stmt;
96
+ int pos = FIX2INT( position );
97
+ double v = NUM2DBL( value );
98
+ int rc;
99
+
100
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
101
+ rc = sqlite3_bind_double( am_stmt->stmt, pos, v );
102
+ if ( SQLITE_OK != rc ) {
103
+ rb_raise(eAS_Error, "Error binding [%lf] to double at position %d in statement: [SQLITE_ERROR %d] : %s\n",
104
+ v, pos,
105
+ rc, (char*)sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
106
+ }
107
+
108
+ return INT2FIX(rc);
109
+ }
110
+
111
+ /**
112
+ * call-seq:
113
+ * stmt.bind_int( position, value ) -> nil
114
+ *
115
+ * bind a int value to the variable at postion.
116
+ *
117
+ */
118
+ VALUE am_sqlite3_statement_bind_int(VALUE self, VALUE position, VALUE value)
119
+ {
120
+ am_sqlite3_stmt *am_stmt;
121
+ int pos = FIX2INT( position );
122
+ int v = NUM2INT( value );
123
+ int rc;
124
+
125
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
126
+ rc = sqlite3_bind_int( am_stmt->stmt, pos, v );
127
+ if ( SQLITE_OK != rc ) {
128
+ rb_raise(eAS_Error, "Error binding [%d] to int at position %d in statement: [SQLITE_ERROR %d] : %s\n",
129
+ v, pos,
130
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
131
+ }
132
+
133
+ return INT2FIX(rc);
134
+ }
135
+
136
+ /**
137
+ * call-seq:
138
+ * stmt.bind_int64( position, value ) -> nil
139
+ *
140
+ * bind a int64 value to the variable at postion.
141
+ *
142
+ */
143
+ VALUE am_sqlite3_statement_bind_int64(VALUE self, VALUE position, VALUE value)
144
+ {
145
+ am_sqlite3_stmt *am_stmt;
146
+ int pos = FIX2INT( position );
147
+ sqlite3_int64 v = NUM2SQLINT64( value );
148
+ int rc;
149
+
150
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
151
+ rc = sqlite3_bind_int64( am_stmt->stmt, pos, v );
152
+ if ( SQLITE_OK != rc ) {
153
+ rb_raise(eAS_Error, "Error binding [%lld] to int64 at position %d in statement: [SQLITE_ERROR %d] : %s\n",
154
+ v, pos,
155
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
156
+ }
157
+
158
+ return INT2FIX(rc);
159
+ }
160
+
161
+ /**
162
+ * call-seq:
163
+ * stmt.bind_text( position, value ) -> nil
164
+ *
165
+ * bind a string value to the variable at postion.
166
+ *
167
+ */
168
+ VALUE am_sqlite3_statement_bind_text(VALUE self, VALUE position, VALUE value)
169
+ {
170
+ am_sqlite3_stmt *am_stmt;
171
+ int pos = FIX2INT( position );
172
+ VALUE str = StringValue( value );
173
+ int rc;
174
+
175
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
176
+ rc = sqlite3_bind_text( am_stmt->stmt, pos, RSTRING_PTR(str), (int)RSTRING_LEN(str), SQLITE_TRANSIENT);
177
+ if ( SQLITE_OK != rc ) {
178
+ rb_raise(eAS_Error, "Error binding [%s] to text at position %d in statement: [SQLITE_ERROR %d] : %s\n",
179
+ RSTRING_PTR(str), pos,
180
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
181
+ }
182
+
183
+ return INT2FIX(rc);
184
+ }
185
+ /**
186
+ * call-seq:
187
+ * stmt.remaining_sql -> String
188
+ *
189
+ * returns the remainging SQL leftover from the initialization sql, or nil if
190
+ * there is no remaining SQL
191
+ */
192
+ VALUE am_sqlite3_statement_remaining_sql(VALUE self)
193
+ {
194
+ am_sqlite3_stmt *am_stmt;
195
+
196
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
197
+ return am_stmt->remaining_sql;
198
+ }
199
+ /**
200
+ * call-seq:
201
+ * stmt.parameter_index( name ) -> Integer
202
+ *
203
+ * returns the index of the named parameter from the statement. Used to help
204
+ * with the :VVV, @VVV and $VVV pareamter replacement styles.
205
+ */
206
+ VALUE am_sqlite3_statement_bind_parameter_index(VALUE self, VALUE parameter_name)
207
+ {
208
+ am_sqlite3_stmt *am_stmt;
209
+ int idx;
210
+
211
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
212
+ idx = sqlite3_bind_parameter_index( am_stmt->stmt, StringValuePtr( parameter_name ));
213
+ return INT2FIX( idx );
214
+ }
215
+
216
+ /**
217
+ * call-seq:
218
+ * stmt.parameter_count -> Integer
219
+ *
220
+ * return the index of the largest parameter in the in the statement. For all
221
+ * forms except ?NNN this is the number of unique parameters. Using ?NNN can
222
+ * create gaps in the list of parameters.
223
+ *
224
+ */
225
+ VALUE am_sqlite3_statement_bind_parameter_count(VALUE self)
226
+ {
227
+ am_sqlite3_stmt *am_stmt;
228
+
229
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
230
+ return INT2FIX(sqlite3_bind_parameter_count( am_stmt->stmt ) );
231
+ }
232
+
233
+ /**
234
+ * call-seq:
235
+ * stmt.reset! -> nil
236
+ *
237
+ * reset the SQLite3 statement back to its initial state.
238
+ */
239
+ VALUE am_sqlite3_statement_reset(VALUE self)
240
+ {
241
+ am_sqlite3_stmt *am_stmt;
242
+ int rc;
243
+
244
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
245
+ if ( am_stmt->stmt ) {
246
+ rc = sqlite3_reset( am_stmt->stmt );
247
+ if ( rc != SQLITE_OK ) {
248
+ rb_raise(eAS_Error, "Error resetting statement: [SQLITE_ERROR %d] : %s\n",
249
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
250
+ }
251
+ return Qnil;
252
+ } else {
253
+ rb_raise(eAS_Error, "Attempting to free a non-existent statement");
254
+ }
255
+ }
256
+
257
+ /**
258
+ * call-seq:
259
+ * stmt.clear_bindings! -> nil
260
+ *
261
+ * reset the SQLite3 statement back to its initial state.
262
+ */
263
+ VALUE am_sqlite3_statement_clear_bindings(VALUE self)
264
+ {
265
+ am_sqlite3_stmt *am_stmt;
266
+ int rc;
267
+
268
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
269
+ rc = sqlite3_clear_bindings( am_stmt->stmt );
270
+ if ( rc != SQLITE_OK ) {
271
+ rb_raise(eAS_Error, "Error resetting statement: [SQLITE_ERROR %d] : %s\n",
272
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
273
+ }
274
+ return Qnil;
275
+ }
276
+
277
+
278
+ /**
279
+ * call-seq:
280
+ * stmt.step -> int
281
+ *
282
+ * Step through the next piece of the SQLite3 statement
283
+ *
284
+ */
285
+ VALUE am_sqlite3_statement_step(VALUE self)
286
+ {
287
+ am_sqlite3_stmt *am_stmt;
288
+
289
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
290
+ return INT2FIX( sqlite3_step( am_stmt->stmt ) );
291
+ }
292
+
293
+ /**
294
+ * call-seq:
295
+ * stmt.column_count -> Fixnum
296
+ *
297
+ * return the number of columns in the result set.
298
+ *
299
+ */
300
+ VALUE am_sqlite3_statement_column_count(VALUE self)
301
+ {
302
+ am_sqlite3_stmt *am_stmt;
303
+
304
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
305
+ return INT2FIX( sqlite3_column_count( am_stmt->stmt ) );
306
+ }
307
+
308
+ /**
309
+ * call-seq:
310
+ * stmt.column_name( index ) -> String
311
+ *
312
+ * Return the column name at the ith column in the result set. The left-most column
313
+ * is number 0.
314
+ *
315
+ */
316
+ VALUE am_sqlite3_statement_column_name(VALUE self, VALUE v_idx)
317
+ {
318
+ am_sqlite3_stmt *am_stmt;
319
+ int idx = FIX2INT( v_idx );
320
+
321
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
322
+
323
+ return rb_str_new2( sqlite3_column_name( am_stmt->stmt, idx ) );
324
+ }
325
+
326
+
327
+ /**
328
+ * call-seq:
329
+ * stmt.column_declared_type( index ) -> String
330
+ *
331
+ * Return the declared type of the ith column in the result set. This is the
332
+ * value that was in the original CREATE TABLE statement.
333
+ *
334
+ */
335
+ VALUE am_sqlite3_statement_column_decltype(VALUE self, VALUE v_idx)
336
+ {
337
+ am_sqlite3_stmt *am_stmt;
338
+ int idx = FIX2INT( v_idx );
339
+ const char *decltype;
340
+
341
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
342
+ decltype = sqlite3_column_decltype( am_stmt->stmt, idx ) ;
343
+ if ( NULL == decltype) {
344
+ return Qnil;
345
+ } else {
346
+ return rb_str_new2( decltype );
347
+ }
348
+ }
349
+
350
+ /**
351
+ * call-seq:
352
+ * stmt.column_type( index ) -> SQLite3::DataType constant
353
+ *
354
+ * Return the column type at the ith column in the result set. The left-most column
355
+ * is number 0.
356
+ *
357
+ */
358
+ VALUE am_sqlite3_statement_column_type(VALUE self, VALUE v_idx)
359
+ {
360
+ am_sqlite3_stmt *am_stmt;
361
+ int idx = FIX2INT( v_idx );
362
+
363
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
364
+ return INT2FIX( sqlite3_column_type( am_stmt->stmt, idx ) );
365
+ }
366
+
367
+ /**
368
+ * call-seq:
369
+ * stmt.column_text( index ) -> String
370
+ *
371
+ * Return the data in ith column of the result as a String.
372
+ *
373
+ */
374
+ VALUE am_sqlite3_statement_column_text(VALUE self, VALUE v_idx)
375
+ {
376
+ am_sqlite3_stmt *am_stmt;
377
+ int idx = FIX2INT( v_idx );
378
+
379
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
380
+ return rb_str_new2( (const char*)sqlite3_column_text( am_stmt->stmt, idx ) );
381
+ }
382
+
383
+ /**
384
+ * call-seq:
385
+ * stmt.column_blob( index ) -> String
386
+ *
387
+ * Return the data in ith column of the result as a String.
388
+ *
389
+ */
390
+ VALUE am_sqlite3_statement_column_blob(VALUE self, VALUE v_idx)
391
+ {
392
+ am_sqlite3_stmt *am_stmt;
393
+ int idx = FIX2INT( v_idx );
394
+ const char *data;
395
+ long length;
396
+
397
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
398
+ data = sqlite3_column_blob( am_stmt->stmt, idx );
399
+ length = sqlite3_column_bytes( am_stmt->stmt, idx );
400
+ return rb_str_new( data, length );
401
+
402
+ }
403
+
404
+
405
+ /**
406
+ * call-seq:
407
+ * stmt.column_double( index ) -> Float
408
+ *
409
+ * Return the data in ith column of the result as an Float
410
+ *
411
+ */
412
+ VALUE am_sqlite3_statement_column_double(VALUE self, VALUE v_idx)
413
+ {
414
+ am_sqlite3_stmt *am_stmt;
415
+ int idx = FIX2INT( v_idx );
416
+
417
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
418
+ return rb_float_new( sqlite3_column_double( am_stmt->stmt, idx )) ;
419
+ }
420
+
421
+
422
+ /**
423
+ * call-seq:
424
+ * stmt.column_int( index ) -> Integer
425
+ *
426
+ * Return the data in ith column of the result as an Integer
427
+ *
428
+ */
429
+ VALUE am_sqlite3_statement_column_int(VALUE self, VALUE v_idx)
430
+ {
431
+ am_sqlite3_stmt *am_stmt;
432
+ int idx = FIX2INT( v_idx );
433
+
434
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
435
+ return INT2NUM( sqlite3_column_int( am_stmt->stmt, idx )) ;
436
+ }
437
+
438
+
439
+ /**
440
+ * call-seq:
441
+ * stmt.column_int64( index ) -> Integer
442
+ *
443
+ * Return the data in ith column of the result as an Integer
444
+ *
445
+ */
446
+ VALUE am_sqlite3_statement_column_int64(VALUE self, VALUE v_idx)
447
+ {
448
+ am_sqlite3_stmt *am_stmt;
449
+ int idx = FIX2INT( v_idx );
450
+
451
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
452
+ return SQLINT64_2NUM( sqlite3_column_int64( am_stmt->stmt, idx )) ;
453
+ }
454
+
455
+
456
+
457
+ /**
458
+ * call-seq:
459
+ * stmt.column_database_name( index ) -> String
460
+ *
461
+ * Return the database name where the data in the ith column of the result set
462
+ * comes from.
463
+ *
464
+ */
465
+ VALUE am_sqlite3_statement_column_database_name(VALUE self, VALUE v_idx)
466
+ {
467
+ am_sqlite3_stmt *am_stmt;
468
+ int idx = FIX2INT( v_idx );
469
+ const char *n ;
470
+
471
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
472
+ n = sqlite3_column_database_name( am_stmt->stmt, idx ) ;
473
+ return ( n == NULL ? Qnil : rb_str_new2( n ) );
474
+ }
475
+
476
+ /**
477
+ * call-seq:
478
+ * stmt.column_table_name( index ) -> String
479
+ *
480
+ * Return the table name where the data in the ith column of the result set
481
+ * comes from.
482
+ *
483
+ */
484
+ VALUE am_sqlite3_statement_column_table_name(VALUE self, VALUE v_idx)
485
+ {
486
+ am_sqlite3_stmt *am_stmt;
487
+ int idx = FIX2INT( v_idx );
488
+ const char *n ;
489
+
490
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
491
+ n = sqlite3_column_table_name( am_stmt->stmt, idx );
492
+ return ( n == NULL ? Qnil : rb_str_new2( n ) );
493
+ }
494
+
495
+
496
+ /**
497
+ * call-seq:
498
+ * stmt.column_origin_name( index ) -> String
499
+ *
500
+ * Return the column name where the data in the ith column of the result set
501
+ * comes from.
502
+ *
503
+ */
504
+ VALUE am_sqlite3_statement_column_origin_name(VALUE self, VALUE v_idx)
505
+ {
506
+ am_sqlite3_stmt *am_stmt;
507
+ int idx = FIX2INT( v_idx );
508
+ const char *n ;
509
+
510
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
511
+ n = sqlite3_column_origin_name( am_stmt->stmt, idx );
512
+ return ( n == NULL ? Qnil : rb_str_new2( n ) );
513
+ }
514
+
515
+
516
+ /**
517
+ * call-seq:
518
+ * stmt.sql -> String
519
+ *
520
+ * Return a copy of the original string used to create the prepared statement.
521
+ */
522
+ VALUE am_sqlite3_statement_sql(VALUE self)
523
+ {
524
+
525
+ am_sqlite3_stmt *am_stmt;
526
+
527
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
528
+ return rb_str_new2( sqlite3_sql( am_stmt->stmt ) );
529
+
530
+ }
531
+
532
+ /**
533
+ * call-seq:
534
+ * stmt.close -> nil
535
+ *
536
+ * Closes the statement. If there is a problem closing the statement then an
537
+ * error is raised. Closing a statement when there is an existing error is
538
+ * perfectly fine.
539
+ *
540
+ */
541
+ VALUE am_sqlite3_statement_close( VALUE self )
542
+ {
543
+
544
+ am_sqlite3_stmt *am_stmt;
545
+ int rc, existing_errcode;
546
+
547
+ Data_Get_Struct(self, am_sqlite3_stmt, am_stmt);
548
+
549
+ /* check the current error code to see if one exists, we could be
550
+ * closing a statement that has an error, and in that case we do not want to
551
+ * raise an additional error, we want to let the existing error stand
552
+ */
553
+ existing_errcode = sqlite3_errcode( sqlite3_db_handle( am_stmt->stmt ) );
554
+ rc = sqlite3_finalize( am_stmt->stmt );
555
+
556
+ if ( (SQLITE_OK != rc) && (rc != existing_errcode) ) {
557
+ rb_raise(eAS_Error, "Failure to close statement : [SQLITE_ERROR %d] : %s\n",
558
+ rc, sqlite3_errmsg( sqlite3_db_handle( am_stmt->stmt) ));
559
+ }
560
+ am_stmt->stmt = NULL;
561
+
562
+ return Qnil;
563
+ }
564
+
565
+ /***********************************************************************
566
+ * Ruby life cycle methods
567
+ ***********************************************************************/
568
+
569
+
570
+ /*
571
+ * garbage collector free method for the am_sqlite3_statement structure
572
+ */
573
+ void am_sqlite3_statement_free(am_sqlite3_stmt* wrapper)
574
+ {
575
+
576
+ if ( Qnil != wrapper->remaining_sql ) {
577
+ rb_gc_unregister_address( &(wrapper->remaining_sql) );
578
+ wrapper->remaining_sql = Qnil;
579
+ }
580
+ if ( NULL != wrapper->stmt ) {
581
+ sqlite3_finalize( wrapper->stmt );
582
+ wrapper->stmt = NULL;
583
+ }
584
+ free(wrapper);
585
+ return;
586
+ }
587
+
588
+ /*
589
+ * allocate the am_data structure
590
+ */
591
+ VALUE am_sqlite3_statement_alloc(VALUE klass)
592
+ {
593
+ am_sqlite3_stmt *wrapper = ALLOC(am_sqlite3_stmt);
594
+ VALUE obj = (VALUE)NULL;
595
+
596
+ wrapper->remaining_sql = Qnil;
597
+ wrapper->stmt = NULL;
598
+
599
+ obj = Data_Wrap_Struct(klass, NULL, am_sqlite3_statement_free, wrapper);
600
+ return obj;
601
+ }
602
+
603
+ /**
604
+ * Amagalite Database extension
605
+ */
606
+
607
+ void Init_amalgalite_statement( )
608
+ {
609
+
610
+ VALUE ma = rb_define_module("Amalgalite");
611
+ VALUE mas = rb_define_module_under(ma, "SQLite3");
612
+
613
+ /*
614
+ * Encapsulate the SQLite3 Statement handle in a class
615
+ */
616
+ cAS_Statement = rb_define_class_under( mas, "Statement", rb_cObject );
617
+ rb_define_alloc_func(cAS_Statement, am_sqlite3_statement_alloc);
618
+ rb_define_method(cAS_Statement, "sql", am_sqlite3_statement_sql, 0);
619
+ rb_define_method(cAS_Statement, "close", am_sqlite3_statement_close, 0);
620
+ rb_define_method(cAS_Statement, "step", am_sqlite3_statement_step, 0);
621
+
622
+ rb_define_method(cAS_Statement, "column_count", am_sqlite3_statement_column_count, 0);
623
+ rb_define_method(cAS_Statement, "column_name", am_sqlite3_statement_column_name, 1);
624
+ rb_define_method(cAS_Statement, "column_declared_type", am_sqlite3_statement_column_decltype, 1);
625
+ rb_define_method(cAS_Statement, "column_type", am_sqlite3_statement_column_type, 1);
626
+ rb_define_method(cAS_Statement, "column_text", am_sqlite3_statement_column_text, 1);
627
+ rb_define_method(cAS_Statement, "column_blob", am_sqlite3_statement_column_blob, 1);
628
+ rb_define_method(cAS_Statement, "column_int", am_sqlite3_statement_column_int, 1);
629
+ rb_define_method(cAS_Statement, "column_int64", am_sqlite3_statement_column_int64, 1);
630
+ rb_define_method(cAS_Statement, "column_double", am_sqlite3_statement_column_double, 1);
631
+
632
+ rb_define_method(cAS_Statement, "column_database_name", am_sqlite3_statement_column_database_name, 1);
633
+ rb_define_method(cAS_Statement, "column_table_name", am_sqlite3_statement_column_table_name, 1);
634
+ rb_define_method(cAS_Statement, "column_origin_name", am_sqlite3_statement_column_origin_name, 1);
635
+ rb_define_method(cAS_Statement, "reset!", am_sqlite3_statement_reset, 0);
636
+ rb_define_method(cAS_Statement, "clear_bindings!", am_sqlite3_statement_clear_bindings, 0);
637
+ rb_define_method(cAS_Statement, "parameter_count", am_sqlite3_statement_bind_parameter_count, 0);
638
+ rb_define_method(cAS_Statement, "parameter_index", am_sqlite3_statement_bind_parameter_index, 1);
639
+ rb_define_method(cAS_Statement, "remaining_sql", am_sqlite3_statement_remaining_sql, 0);
640
+ rb_define_method(cAS_Statement, "bind_text", am_sqlite3_statement_bind_text, 2);
641
+ rb_define_method(cAS_Statement, "bind_int", am_sqlite3_statement_bind_int, 2);
642
+ rb_define_method(cAS_Statement, "bind_int64", am_sqlite3_statement_bind_int64, 2);
643
+ rb_define_method(cAS_Statement, "bind_double", am_sqlite3_statement_bind_double, 2);
644
+ rb_define_method(cAS_Statement, "bind_null", am_sqlite3_statement_bind_null, 1);
645
+ rb_define_method(cAS_Statement, "bind_blob", am_sqlite3_statement_bind_blob, 2);
646
+ rb_define_method(cAS_Statement, "bind_zeroblob", am_sqlite3_statement_bind_zeroblob, 2);
647
+ }
648
+
649
+
@@ -0,0 +1,71 @@
1
+ require 'mkmf'
2
+ require 'rbconfig'
3
+
4
+ # used by the ext:build_win-1.x.x tasks, really no one else but jeremy should be
5
+ # using this hack
6
+ $ruby = ARGV.shift if ARGV[0]
7
+
8
+ # make available table and column meta data api
9
+ $CFLAGS += " -DSQLITE_ENABLE_BYTECODE_VTAB=1"
10
+ $CFLAGS += " -DSQLITE_ENABLE_COLUMN_METADATA=1"
11
+ $CFLAGS += " -DSQLITE_ENABLE_DBSTAT_VTAB=1"
12
+ $CFLAGS += " -DSQLITE_ENABLE_DBPAGE_VTAB=1"
13
+ $CFLAGS += " -DSQLITE_ENABLE_DESERIALIZE=1"
14
+ $CFLAGS += " -DSQLITE_ENABLE_EXPLAIN_COMMENTS=1"
15
+ $CFLAGS += " -DSQLITE_ENABLE_FTS3=1"
16
+ $CFLAGS += " -DSQLITE_ENABLE_FTS3_PARENTHESIS=1"
17
+ $CFLAGS += " -DSQLITE_ENABLE_FTS4=1"
18
+ $CFLAGS += " -DSQLITE_ENABLE_FTS5=1"
19
+ $CFLAGS += " -DSQLITE_ENABLE_GEOPOLY=1"
20
+ $CFLAGS += " -DSQLITE_ENABLE_JSON1=1"
21
+ $CFLAGS += " -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1"
22
+ $CFLAGS += " -DSQLITE_ENABLE_NULL_TRIM=1"
23
+ $CFLAGS += " -DSQLITE_ENABLE_PREUPDATE_HOOK=1"
24
+ $CFLAGS ++ " -DSQLITE_EANBLE_QPSG=1"
25
+ $CFLAGS += " -DSQLITE_ENABLE_RBU=1"
26
+ $CFLAGS += " -DSQLITE_ENABLE_RTREE=1"
27
+ $CFLAGS += " -DSQLITE_ENABLE_SESSION=1"
28
+ $CFLAGS += " -DSQLITE_ENABLE_SNAPSHOT=1"
29
+ $CFLAGS += " -DSQLITE_ENABLE_STMTVTAB=1"
30
+ $CFLAGS += " -DSQLITE_ENABLE_STAT4=1"
31
+ $CFLAGS += " -DSQLITE_ENABLE_UNLOCK_NOTIFY=1"
32
+
33
+ $CFLAGS += " -DSQLITE_OMIT_DEPRECATED=1"
34
+
35
+ # we compile sqlite the same way that the installation of ruby is compiled.
36
+ if RbConfig::MAKEFILE_CONFIG['configure_args'].include?( "--enable-pthread" ) then
37
+ $CFLAGS += " -DSQLITE_THREADSAFE=1"
38
+ else
39
+ $CFLAGS += " -DSQLITE_THREADSAFE=0"
40
+ end
41
+
42
+ # remove the -g flags if it exists
43
+ %w[ -ggdb\\d* -g\\d* ].each do |debug|
44
+ $CFLAGS = $CFLAGS.gsub(/\s#{debug}\b/,'')
45
+ RbConfig::MAKEFILE_CONFIG['debugflags'] = RbConfig::MAKEFILE_CONFIG['debugflags'].gsub(/\s#{debug}\b/,'') if RbConfig::MAKEFILE_CONFIG['debugflags']
46
+ end
47
+
48
+ ignoreable_warnings = %w[ write-strings ]
49
+ ignore_by_compiler = {
50
+ "clang" => %w[
51
+ empty-body
52
+ incompatible-pointer-types-discards-qualifiers
53
+ shorten-64-to-32
54
+ sign-compare
55
+ unused-const-variable
56
+ unused-variable
57
+ ]
58
+ }
59
+
60
+ if extras = ignore_by_compiler[RbConfig::MAKEFILE_CONFIG["CC"]] then
61
+ ignoreable_warnings.concat(extras)
62
+ end
63
+
64
+ ignoreable_warnings.each do |warning|
65
+ $CFLAGS = $CFLAGS.gsub(/-W#{warning}/,'')
66
+ RbConfig::MAKEFILE_CONFIG['warnflags'] = RbConfig::MAKEFILE_CONFIG['warnflags'].gsub(/-W#{warning}/,'') if RbConfig::MAKEFILE_CONFIG['warnflags']
67
+ $CFLAGS += " -Wno-#{warning}"
68
+ end
69
+
70
+ subdir = RUBY_VERSION.sub(/\.\d$/,'')
71
+ create_makefile("amalgalite/#{subdir}/amalgalite")