-
Notifications
You must be signed in to change notification settings - Fork 11
/
dbm.ml
58 lines (47 loc) · 2.16 KB
/
dbm.ml
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
(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Francois Rouaix, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the GNU Library General Public License, with *)
(* the special exception on linking described in file ../../LICENSE. *)
(* *)
(***********************************************************************)
(* $Id: dbm.ml 11156 2011-07-27 14:17:02Z doligez $ *)
type t
type open_flag =
Dbm_rdonly | Dbm_wronly | Dbm_rdwr | Dbm_create
type dbm_flag =
DBM_INSERT
| DBM_REPLACE
exception Dbm_error of string
external raw_opendbm : string -> open_flag list -> int -> t
= "caml_dbm_open"
let opendbm file flags mode =
try
raw_opendbm file flags mode
with Dbm_error msg ->
raise(Dbm_error("Can't open file " ^ file))
(* By exporting opendbm as val, we are sure to link in this
file (we must register the exception). Since t is abstract, programs
have to call it in order to do anything *)
external close : t -> unit = "caml_dbm_close"
external find : t -> string -> string = "caml_dbm_fetch"
external add : t -> string -> string -> unit = "caml_dbm_insert"
external replace : t -> string -> string -> unit = "caml_dbm_replace"
external remove : t -> string -> unit = "caml_dbm_delete"
external firstkey : t -> string = "caml_dbm_firstkey"
external nextkey : t -> string = "caml_dbm_nextkey"
let _ = Callback.register_exception "dbmerror" (Dbm_error "")
(* Usual iterator *)
let iter f t =
let rec walk = function
None -> ()
| Some k ->
f k (find t k);
walk (try Some(nextkey t) with Not_found -> None)
in
walk (try Some(firstkey t) with Not_found -> None)