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
|
(**************************************************************************)
(* Copyright © 2010- Markus Mottl *)
(* Copyright © 2007-2010 Jane Street Holding, LLC *)
(* Copyright © 2005-2007 Christian Szegedy *)
(* *)
(* Permission is hereby granted, free of charge, to any person *)
(* obtaining a copy of this software and associated documentation files *)
(* (the "Software"), to deal in the Software without restriction, *)
(* including without limitation the rights to use, copy, modify, merge, *)
(* publish, distribute, sublicense, and/or sell copies of the Software, *)
(* and to permit persons to whom the Software is furnished to do so, *)
(* subject to the following conditions: *)
(* *)
(* The above copyright notice and this permission notice shall be *)
(* included in all copies or substantial portions of the Software. *)
(* *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *)
(* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *)
(* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *)
(* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS *)
(* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN *)
(* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN *)
(* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE *)
(* SOFTWARE. *)
(**************************************************************************)
open Printf
exception InternalError of string
exception Error of string
exception RangeError of int * int
exception DataTypeError of string
exception SqliteError of string
type db
type stmt
module Rc = struct
type unknown
external int_of_unknown : unknown -> int = "%identity"
type t =
| OK
| ERROR
| INTERNAL
| PERM
| ABORT
| BUSY
| LOCKED
| NOMEM
| READONLY
| INTERRUPT
| IOERR
| CORRUPT
| NOTFOUND
| FULL
| CANTOPEN
| PROTOCOL
| EMPTY
| SCHEMA
| TOOBIG
| CONSTRAINT
| MISMATCH
| MISUSE
| NOFLS
| AUTH
| FORMAT
| RANGE
| NOTADB
| ROW
| DONE
| UNKNOWN of unknown
let to_string = function
| OK -> "OK"
| ERROR -> "ERROR"
| INTERNAL -> "INTERNAL"
| PERM -> "PERM"
| ABORT -> "ABORT"
| BUSY -> "BUSY"
| LOCKED -> "LOCKED"
| NOMEM -> "NOMEM"
| READONLY -> "READONLY"
| INTERRUPT -> "INTERRUPT"
| IOERR -> "IOERR"
| CORRUPT -> "CORRUPT"
| NOTFOUND -> "NOTFOUND"
| FULL -> "FULL"
| CANTOPEN -> "CANTOPEN"
| PROTOCOL -> "PROTOCOL"
| EMPTY -> "EMPTY"
| SCHEMA -> "SCHEMA"
| TOOBIG -> "TOOBIG"
| CONSTRAINT -> "CONSTRAINT"
| MISMATCH -> "MISMATCH"
| MISUSE -> "MISUSE"
| NOFLS -> "NOLFS"
| AUTH -> "AUTH"
| FORMAT -> "FORMAT"
| RANGE -> "RANGE"
| NOTADB -> "NOTADB"
| ROW -> "ROW"
| DONE -> "DONE"
| UNKNOWN n -> sprintf "UNKNOWN %d" (int_of_unknown n)
let is_success = function OK | DONE -> true | _ -> false
let check rc = if not (is_success rc) then raise (SqliteError (to_string rc))
end
module Data = struct
type t =
| NONE
| NULL
| INT of int64
| FLOAT of float
| TEXT of string
| BLOB of string
let opt_text = function Some s -> TEXT s | None -> NULL
let opt_int = function Some n -> INT (Int64.of_int n) | None -> NULL
let opt_nativeint = function
| Some n -> INT (Int64.of_nativeint n)
| None -> NULL
let opt_int32 = function Some n -> INT (Int64.of_int32 n) | None -> NULL
let opt_int64 = function Some n -> INT n | None -> NULL
let opt_float = function Some n -> FLOAT n | None -> NULL
let opt_bool = function
| Some false -> INT Int64.zero
| Some true -> INT Int64.one
| None -> NULL
(* Exception-based type conversion *)
let to_string_debug = function
| NONE -> "NONE"
| NULL -> "NULL"
| INT i -> sprintf "INT <%Ld>" i
| FLOAT f -> sprintf "FLOAT <%f>" f
| TEXT t -> sprintf "TEXT <%S>" t
| BLOB b -> sprintf "BLOB <%d>" (String.length b)
let data_type_error tp data =
let got = to_string_debug data in
raise (DataTypeError (Printf.sprintf "Expected %s but got %s" tp got))
let to_string_exn = function
| TEXT s | BLOB s -> s
| data -> data_type_error "TEXT or BLOB" data
let min_int_as_int64 = Int64.of_int min_int
let max_int_as_int64 = Int64.of_int max_int
let min_nativeint_as_int64 = Int64.of_nativeint Nativeint.min_int
let max_nativeint_as_int64 = Int64.of_nativeint Nativeint.max_int
let min_int32_as_int64 = Int64.of_int32 Int32.min_int
let max_int32_as_int64 = Int64.of_int32 Int32.max_int
let safe_get_int n =
if n > max_int_as_int64 then
failwith (Printf.sprintf "Sqlite3.Data.safe_get_int: overflow: %Ld" n)
else if n < min_int_as_int64 then
failwith (Printf.sprintf "Sqlite3.Data.safe_get_int: underflow: %Ld" n)
else Int64.to_int n
let safe_get_nativeint n =
if n > max_nativeint_as_int64 then
failwith
(Printf.sprintf "Sqlite3.Data.safe_get_nativeint: overflow: %Ld" n)
else if n < min_nativeint_as_int64 then
failwith
(Printf.sprintf "Sqlite3.Data.safe_get_nativeint: underflow: %Ld" n)
else Int64.to_nativeint n
let safe_get_int32 n =
if n > max_int32_as_int64 then
failwith (Printf.sprintf "Sqlite3.Data.safe_get_int32: overflow: %Ld" n)
else if n < min_int32_as_int64 then
failwith (Printf.sprintf "Sqlite3.Data.safe_get_int32: underflow: %Ld" n)
else Int64.to_int32 n
let to_int_exn = function
| INT n -> safe_get_int n
| data -> data_type_error "INT" data
let to_nativeint_exn = function
| INT n -> safe_get_nativeint n
| data -> data_type_error "INT" data
let to_int32_exn = function
| INT n -> safe_get_int32 n
| data -> data_type_error "INT" data
let to_int64_exn = function INT n -> n | data -> data_type_error "INT" data
let to_float_exn = function
| FLOAT n -> n
| data -> data_type_error "FLOAT" data
let bool_of_int64 = function
| 0L -> false
| 1L -> true
| n -> failwith (Printf.sprintf "Sqlite3.Data.bool_of_native_int: %Ld" n)
let int64_of_bool = function false -> 0L | true -> 1L
let to_bool_exn = function
| INT n -> bool_of_int64 n
| data -> data_type_error "INT 0L/1L" data
(* Option-based type conversion *)
let to_string = function TEXT s | BLOB s -> Some s | _ -> None
let to_int = function INT n -> Some (safe_get_int n) | _ -> None
let to_nativeint = function INT n -> Some (safe_get_nativeint n) | _ -> None
let to_int32 = function INT n -> Some (safe_get_int32 n) | _ -> None
let to_int64 = function INT n -> Some n | _ -> None
let to_float = function FLOAT n -> Some n | _ -> None
let to_bool = function
| INT 0L -> Some false
| INT 1L -> Some true
| _ -> None
(* Simplified string coercion *)
let to_string_coerce = function
| NONE | NULL -> ""
| INT n -> Int64.to_string n
| FLOAT n -> string_of_float n
| TEXT t | BLOB t -> t
end
type header = string
type headers = header array
type row = string option array
type row_not_null = string array
module Mode = struct
type t = Read_write_create | Read_write | Read_only
let lift = function
| None -> Read_write_create
| Some `READONLY -> Read_only
| Some `NO_CREATE -> Read_write
end
module Mut = struct
type t = NOTHING | NO | FULL
let lift = function None -> NOTHING | Some `NO -> NO | Some `FULL -> FULL
end
module Cache = struct
type t = NOTHING | SHARED | PRIVATE
let lift = function
| None -> NOTHING
| Some `SHARED -> SHARED
| Some `PRIVATE -> PRIVATE
end
external sqlite_version : unit -> int = "caml_sqlite3_version"
external sqlite_version_info : unit -> string = "caml_sqlite3_version_info"
external db_open :
mode:Mode.t ->
uri:bool ->
memory:bool ->
mutex:Mut.t ->
cache:Cache.t ->
?vfs:string ->
string ->
db = "caml_sqlite3_open_bc" "caml_sqlite3_open"
let db_open ?mode ?(uri = false) ?(memory = false) ?mutex ?cache ?vfs name =
let mode = Mode.lift mode in
let mutex = Mut.lift mutex in
let cache = Cache.lift cache in
db_open ~mode ~uri ~memory ~mutex ~cache ?vfs name
external db_close : db -> bool = "caml_sqlite3_close"
let ( let& ) db f =
let close_or_exn () =
if not (db_close db) then
failwith "Sqlite3.( let& ): could not close database"
in
Fun.protect ~finally:close_or_exn (fun () -> f db)
external errcode : db -> Rc.t = "caml_sqlite3_errcode"
external errmsg : db -> string = "caml_sqlite3_errmsg"
external extended_errcode_int : db -> int = "caml_sqlite3_extended_errcode_int"
external last_insert_rowid : db -> (int64[@unboxed])
= "caml_sqlite3_last_insert_rowid_bc" "caml_sqlite3_last_insert_rowid"
[@@noalloc]
external exec :
db -> ?cb:(string option array -> headers -> unit) -> string -> Rc.t
= "caml_sqlite3_exec"
external exec_no_headers :
db -> cb:(string option array -> unit) -> string -> Rc.t
= "caml_sqlite3_exec_no_headers"
external exec_not_null :
db -> cb:(string array -> headers -> unit) -> string -> Rc.t
= "caml_sqlite3_exec_not_null"
external exec_not_null_no_headers :
db -> cb:(string array -> unit) -> string -> Rc.t
= "caml_sqlite3_exec_not_null_no_headers"
external changes : db -> (int[@untagged])
= "caml_sqlite3_changes_bc" "caml_sqlite3_changes"
external prepare : db -> string -> stmt = "caml_sqlite3_prepare"
external prepare_tail : stmt -> stmt option = "caml_sqlite3_prepare_tail"
external recompile : stmt -> unit = "caml_sqlite3_recompile"
external step : stmt -> Rc.t = "caml_sqlite3_step"
external reset : stmt -> Rc.t = "caml_sqlite3_stmt_reset"
let prepare_or_reset db opt_stmt_ref sql =
match !opt_stmt_ref with
| Some stmt ->
reset stmt |> Rc.check;
stmt
| None ->
let stmt = prepare db sql in
opt_stmt_ref := Some stmt;
stmt
external sleep : (int[@untagged]) -> (int[@untagged])
= "caml_sqlite3_sleep_bc" "caml_sqlite3_sleep"
external finalize : stmt -> Rc.t = "caml_sqlite3_stmt_finalize"
external data_count : stmt -> (int[@untagged])
= "caml_sqlite3_data_count_bc" "caml_sqlite3_data_count"
external column_count : stmt -> (int[@untagged])
= "caml_sqlite3_column_count_bc" "caml_sqlite3_column_count"
external column_is_null : stmt -> (int[@untagged]) -> bool
= "caml_sqlite3_column_is_null_bc" "caml_sqlite3_column_is_null"
external column_blob : stmt -> (int[@untagged]) -> string
= "caml_sqlite3_column_blob_bc" "caml_sqlite3_column_blob"
external column_double : stmt -> (int[@untagged]) -> (float[@unboxed])
= "caml_sqlite3_column_double_bc" "caml_sqlite3_column_double"
external column_int32 : stmt -> (int[@untagged]) -> (int32[@unboxed])
= "caml_sqlite3_column_int32_bc" "caml_sqlite3_column_int32"
external column_int64 : stmt -> (int[@untagged]) -> (int64[@unboxed])
= "caml_sqlite3_column_int64_bc" "caml_sqlite3_column_int64"
let column_int stmt pos = Data.safe_get_int (column_int64 stmt pos)
let column_nativeint stmt pos = Data.safe_get_nativeint (column_int64 stmt pos)
external column_text : stmt -> (int[@untagged]) -> string
= "caml_sqlite3_column_text_bc" "caml_sqlite3_column_text"
let column_bool stmt pos = Data.bool_of_int64 (column_int64 stmt pos)
external column : stmt -> (int[@untagged]) -> Data.t
= "caml_sqlite3_column_bc" "caml_sqlite3_column"
external column_name : stmt -> (int[@untagged]) -> string
= "caml_sqlite3_column_name_bc" "caml_sqlite3_column_name"
external column_decltype : stmt -> (int[@untagged]) -> string option
= "caml_sqlite3_column_decltype_bc" "caml_sqlite3_column_decltype"
external bind : stmt -> (int[@untagged]) -> Data.t -> Rc.t
= "caml_sqlite3_bind_bc" "caml_sqlite3_bind"
external bind_parameter_count : stmt -> (int[@untagged])
= "caml_sqlite3_bind_parameter_count_bc" "caml_sqlite3_bind_parameter_count"
external bind_parameter_name : stmt -> (int[@untagged]) -> string option
= "caml_sqlite3_bind_parameter_name_bc" "caml_sqlite3_bind_parameter_name"
external bind_parameter_index : stmt -> string -> (int[@untagged])
= "caml_sqlite3_bind_parameter_index_bc" "caml_sqlite3_bind_parameter_index"
external bind_blob : stmt -> (int[@untagged]) -> string -> Rc.t
= "caml_sqlite3_bind_blob_bc" "caml_sqlite3_bind_blob"
external bind_double : stmt -> (int[@untagged]) -> (float[@unboxed]) -> Rc.t
= "caml_sqlite3_bind_double_bc" "caml_sqlite3_bind_double"
external bind_int32 : stmt -> (int[@untagged]) -> (int32[@unboxed]) -> Rc.t
= "caml_sqlite3_bind_int32_bc" "caml_sqlite3_bind_int32"
external bind_int64 : stmt -> (int[@untagged]) -> (int64[@unboxed]) -> Rc.t
= "caml_sqlite3_bind_int64_bc" "caml_sqlite3_bind_int64"
let bind_int stmt pos n = bind_int64 stmt pos (Int64.of_int n)
let bind_nativeint stmt pos n = bind_int64 stmt pos (Int64.of_nativeint n)
let bind_bool stmt pos b = bind_int64 stmt pos (Data.int64_of_bool b)
external bind_text : stmt -> (int[@untagged]) -> string -> Rc.t
= "caml_sqlite3_bind_text_bc" "caml_sqlite3_bind_text"
let bind_name stmt name data = bind stmt (bind_parameter_index stmt name) data
let bind_names stmt lst =
let rec loop = function
| [] -> Rc.OK
| (name, data) :: rest ->
let rc = bind_name stmt name data in
if rc = Rc.OK then loop rest else rc
in
loop lst
let bind_values stmt lst =
let rec loop i = function
| [] -> Rc.OK
| data :: rest ->
let rc = bind stmt i data in
if rc = Rc.OK then loop (i + 1) rest else rc
in
loop 1 lst
external clear_bindings : stmt -> Rc.t = "caml_sqlite3_clear_bindings"
external busy_timeout : db -> (int[@untagged]) -> unit
= "caml_sqlite3_busy_timeout_bc" "caml_sqlite3_busy_timeout"
external enable_load_extension : db -> bool -> bool
= "caml_sqlite3_enable_load_extension"
let row_blobs stmt = Array.init (data_count stmt) (column_blob stmt)
let row_data stmt = Array.init (data_count stmt) (column stmt)
let row_names stmt = Array.init (data_count stmt) (column_name stmt)
let row_decltypes stmt = Array.init (data_count stmt) (column_decltype stmt)
let attempt_reset stmt rc =
match reset stmt with Rc.OK -> rc | reset_rc -> reset_rc
let iter stmt ~f =
let rec loop () =
match step stmt with
| Rc.ROW ->
f (row_data stmt);
loop ()
| rc -> attempt_reset stmt rc
in
loop ()
let fold stmt ~f ~init =
let rec loop acc =
match step stmt with
| Rc.ROW -> loop (f acc (row_data stmt))
| rc -> (attempt_reset stmt rc, acc)
in
loop init
(* Function registration *)
external create_function :
db -> string -> (int[@untagged]) -> (Data.t array -> Data.t) -> unit
= "caml_sqlite3_create_function_bc" "caml_sqlite3_create_function"
let create_funN db name f = create_function db name (-1) f
let create_fun0 db name f = create_function db name 0 (fun _ -> f ())
let create_fun1 db name f = create_function db name 1 (fun args -> f args.(0))
let create_fun2 db name f =
create_function db name 2 (fun args -> f args.(0) args.(1))
let create_fun3 db name f =
create_function db name 3 (fun args -> f args.(0) args.(1) args.(2))
external delete_function : db -> string -> unit = "caml_sqlite3_delete_function"
module Aggregate = struct
external create_function :
db ->
string ->
(int[@untagged]) ->
'a ->
('a -> Data.t array -> 'a) ->
('a -> Data.t array -> 'a) option ->
('a -> Data.t) option ->
('a -> Data.t) ->
unit
= "caml_sqlite3_create_aggregate_function_bc"
"caml_sqlite3_create_aggregate_function"
let create_funN ?inverse ?value db name ~init ~step ~final =
create_function db name (-1) init step inverse value final
let create_fun0 ?inverse ?value db name ~init ~step ~final =
create_function db name 0 init
(fun acc _ -> step acc)
(match inverse with
| Some inv -> Some (fun acc _ -> inv acc)
| None -> None)
value final
let create_fun1 ?inverse ?value db name ~init ~step ~final =
create_function db name 1 init
(fun acc args -> step acc args.(0))
(match inverse with
| Some inv -> Some (fun acc args -> inv acc args.(0))
| None -> None)
value final
let create_fun2 ?inverse ?value db name ~init ~step ~final =
create_function db name 2 init
(fun acc args -> step acc args.(0) args.(1))
(match inverse with
| Some inv -> Some (fun acc args -> inv acc args.(0) args.(1))
| None -> None)
value final
let create_fun3 ?inverse ?value db name ~init ~step ~final =
create_function db name 3 init
(fun acc args -> step acc args.(0) args.(1) args.(2))
(match inverse with
| Some inv -> Some (fun acc args -> inv acc args.(0) args.(1) args.(2))
| None -> None)
value final
end
(* Collation registration *)
external create_collation : db -> string -> (string -> string -> int) -> unit
= "caml_sqlite3_create_collation"
external delete_collation : db -> string -> unit
= "caml_sqlite3_delete_collation"
module Backup = struct
module Raw = struct
type t
external init : dst:db -> dst_name:string -> src:db -> src_name:string -> t
= "caml_sqlite3_backup_init"
external step : t -> (int[@untagged]) -> Rc.t
= "caml_sqlite3_backup_step_bc" "caml_sqlite3_backup_step"
external finish : t -> Rc.t = "caml_sqlite3_backup_finish"
external remaining : t -> (int[@untagged])
= "caml_sqlite3_backup_remaining_bc" "caml_sqlite3_backup_remaining"
[@@noalloc]
external pagecount : t -> (int[@untagged])
= "caml_sqlite3_backup_pagecount_bc" "caml_sqlite3_backup_pagecount"
[@@noalloc]
end
type t = Raw.t * db * db
(* Databases must not be garbage-collected before backup objects (which have
references to them) so we bind their lifetime together. *)
let init ~dst ~dst_name ~src ~src_name =
(Raw.init ~dst ~dst_name ~src ~src_name, dst, src)
let step (b, _, _) i = Raw.step b i
let finish (b, _, _) = Raw.finish b
let remaining (b, _, _) = Raw.remaining b
let pagecount (b, _, _) = Raw.pagecount b
end
(* Initialisation *)
external init : unit -> unit = "caml_sqlite3_init"
external cleanup : unit -> unit = "caml_sqlite3_cleanup"
let () =
Callback.register_exception "Sqlite3.InternalError" (InternalError "");
Callback.register_exception "Sqlite3.Error" (Error "");
Callback.register_exception "Sqlite3.RangeError" (RangeError (0, 0));
at_exit cleanup;
init ()
|