Source file otc.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
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
module B = Bytes
let next_prefix (prefix: string): string option =
let next_char c =
let code = Char.code c + 1 in
match code with
| 256 -> Char.chr 0, true
| code -> Char.chr code, false in
let rec inner (s: bytes) (pos: int): string option =
let c, carry = next_char (B.get s pos) in
B.set s pos c;
match carry, pos with
| false, _ -> Some (B.to_string s)
| true, 0 -> None
| true, pos -> inner s (pos - 1) in
let copy = B.of_string prefix in
inner copy ((B.length copy) - 1)
module S = String
let prefix_match (prefix: string) (k: string) =
let pl = S.length prefix in
let rec ok i = (i = pl) || (S.get prefix i = S.get k i && ok (i+1)) in
S.length k >= pl && ok 0
module Bdb = struct
type bdb
let oreader = 1
let owriter = 2
let ocreat = 4
let otrunc = 8
let onolck = 16
let olcknb = 32
let otsync = 64
let default_mode = (oreader lor owriter lor ocreat lor olcknb)
let readonly_mode = (oreader lor onolck)
type bdbcur
external first: bdb -> bdbcur -> unit = "bdb_first"
external next: bdb -> bdbcur -> unit = "bdb_next"
external prev: bdb -> bdbcur -> unit = "bdb_prev"
external last: bdb -> bdbcur -> unit = "bdb_last"
external key: bdb -> bdbcur -> string = "bdb_key"
external value: bdb -> bdbcur -> string = "bdb_value"
external key3: bdb -> bdbcur -> string = "bdb_key3"
external value3: bdb -> bdbcur -> string = "bdb_value3"
external record: bdb -> bdbcur -> string * string = "bdb_record"
external jump: bdb -> bdbcur -> string -> unit = "bdb_jump"
let current = 0
let before = 1
let after = 2
external cur_put: bdb -> bdbcur -> string -> int -> unit = "bdb_cur_put"
external cur_out: bdb -> bdbcur -> unit = "bdb_cur_out"
external out: bdb -> string -> unit = "bdb_out"
external put: bdb -> string -> string -> unit = "bdb_put"
external get: bdb -> string -> string = "bdb_get"
external get3: bdb -> string -> string = "bdb_get3"
external get3_generic: bdb -> string -> int -> int -> string = "bdb_get3_generic"
external get_nolock : bdb -> string -> string = "bdb_get_nolock"
external putkeep: bdb -> string -> string -> unit = "bdb_putkeep"
external _make: unit -> bdb = "bdb_make"
external _delete: bdb -> unit = "bdb_delete"
external _dbopen: bdb -> string -> int -> unit = "bdb_dbopen"
external _dbclose: bdb -> unit = "bdb_dbclose"
external _dbsync: bdb -> unit = "bdb_dbsync"
external _dbsync_nolock: bdb -> unit = "bdb_dbsync_nolock"
external _cur_make: bdb -> bdbcur = "bdb_cur_make"
external _cur_delete: bdbcur -> unit = "bdb_cur_delete"
external _tranbegin: bdb -> unit = "bdb_tranbegin"
external _trancommit: bdb -> unit = "bdb_trancommit"
external _tranabort: bdb -> unit = "bdb_tranabort"
external range: bdb -> string option -> bool -> string option -> bool -> int -> string array
= "bdb_range_bytecode" "bdb_range_native"
external prefix_keys: bdb -> string -> int -> string array = "bdb_prefix_keys"
external bdb_optimize: bdb -> unit = "bdb_optimize"
external _bdb_defrag: bdb -> int64 -> int = "bdb_defrag"
let defrag ?(step=Int64.max_int) bdb = _bdb_defrag bdb step
external get_key_count: bdb -> int64 = "bdb_key_count"
external setcache: bdb -> int -> int -> unit = "bdb_setcache"
type opt = BDBTLARGE
external _tune : bdb -> int -> unit = "bdb_tune"
let tune bdb opts =
let int_of_opt = function
BDBTLARGE -> 1 lsl 0
in
let int_of_opts = List.fold_left (fun a b -> a lor int_of_opt b) 0 in
_tune bdb (int_of_opts opts)
let with_cursor bdb (f:bdb -> 'a) =
let cursor = _cur_make bdb in
try
let x = f bdb cursor in
let () = _cur_delete cursor in
x
with
| exn ->
let () = _cur_delete cursor in
raise exn
let delete_prefix bdb (prefix: string) =
let count = ref 0 in
with_cursor bdb
(fun bdb cur ->
try
let () = jump bdb cur prefix in
let rec step () =
let jumped_key = key bdb cur in
if prefix_match prefix jumped_key
then
let () = cur_out bdb cur in
let () = incr count in
step ()
else
()
in
step ()
with
| Not_found -> ()
);
!count
let exists bdb key =
try
let _ = get bdb key in true
with
| Not_found -> false
type direction =
| Ascending
| Descending
type include_key = bool
type start_and_direction =
| Key of string * include_key * direction
| OmegaDescending
let range'
bdb
start_key_and_direction
(accumulate : (string * string) -> 'a -> ('a * bool))
(initial : 'a) : 'a =
let cursor_init, move_next =
match start_key_and_direction with
| Key (start_key, include_key, dir) ->
begin
match dir with
| Ascending ->
let skip_till_start_key bdb cur =
try
jump bdb cur start_key;
if include_key
then
()
else
next bdb cur;
false
with Not_found ->
true
in
skip_till_start_key, next
| Descending ->
let init_cur bdb cur =
try
jump bdb cur start_key;
if include_key && key bdb cur = start_key
then
()
else
prev bdb cur;
false
with Not_found ->
last bdb cur;
false
in
init_cur, prev
end
| OmegaDescending ->
(fun bdb cur -> last bdb cur; false), prev
in
with_cursor bdb
(fun bdb cur ->
let isempty = cursor_init bdb cur in
let rec loop (acc, continue) =
if not continue
then
acc
else
begin
let record_ = record bdb cur in
let (acc', _) as res = accumulate record_ acc in
try
let () = move_next bdb cur in
loop res
with Not_found ->
acc'
end in
if isempty
then
initial
else
loop (initial, true))
type upper_border =
| BKey of string * include_key
| BOmega
let range_ascending
bdb (first : string) finc (last_ : upper_border)
accumulate initial =
let comp key =
match last_ with
| BOmega ->
true
| BKey (last_, linc) ->
begin
match S.compare key last_ with
| 0 -> linc
| 1 -> false
| -1 -> true
| _ -> failwith "impossible compare result"
end
in
range'
bdb
(Key (first, finc, Ascending))
(fun ((key, value) as kv) acc ->
if comp key
then
accumulate kv acc
else
(acc, false))
initial
let range_descending
bdb (first : upper_border) (last_ : string) linc
accumulate initial =
let comp key =
match S.compare key last_ with
| 0 -> linc
| 1 -> true
| -1 -> false
| _ -> failwith "impossible compare result"
in
range'
bdb
(match first with
| BOmega ->
OmegaDescending
| BKey (k, inc) ->
Key (k, inc, Descending))
(fun ((key, value) as kv) acc ->
if comp key
then
accumulate kv acc
else
(acc, false))
initial
let range_entries (prefix: string) bdb first finc last_ linc max =
let first = match first with
| Some x -> prefix ^ x
| None -> prefix in
let last_ = match last_ with
| None ->
begin
match next_prefix prefix with
| None ->
BOmega
| Some nprefix ->
BKey (nprefix, false)
end
| Some x ->
BKey ((prefix ^ x), linc) in
let pl = S.length prefix in
let _, result =
range_ascending
bdb
first
finc
last_
(fun (key, value) (count, result) ->
if count = max
then
((count, result), false)
else
let l = S.length key in
let key2 = S.sub key pl (l - pl) in
(count + 1, (key2, value) :: result), true)
(0, []) in
Array.of_list (List.rev result)
let rev_range_entries prefix bdb first finc last_ linc max =
let pl = S.length prefix in
let _, result =
range_descending
bdb
(match first with
| None ->
begin
match next_prefix prefix with
| None ->
BOmega
| Some x ->
BKey (x, false)
end
| Some x ->
BKey (prefix ^ x, finc))
(match last_ with
| None -> prefix
| Some x -> prefix ^ x)
linc
(fun (key, value) (count, result) ->
if count = max
then
((count, result), false)
else
let l = S.length key in
let key2 = S.sub key pl (l - pl) in
(count + 1, (key2, value) :: result), true)
(0, []) in
result
external _flags : bdb -> int = "bdb_flags"
type flag = BDBFOPEN | BDBFFATAL
let flags bdb =
let f = _flags bdb in
List.fold_left
(fun acc (s, c) -> if f land c <> 0 then s :: acc else acc)
[]
[(BDBFOPEN, 1 lsl 0); (BDBFFATAL, 1 lsl 1)]
external _copy_from_cursor : bdb -> bdbcur -> bdb -> int -> int = "bdb_copy_from_cursor"
let copy_from_cursor ~source ~cursor ~target ~max =
let count = match max with
| None -> -1
| Some i -> i
in
_copy_from_cursor source cursor target count
let create
?(mode = default_mode)
?(lcnum = 1024)
?(ncnum = 512)
filename opts =
let bdb = _make () in
setcache bdb lcnum ncnum;
tune bdb opts;
_dbopen bdb filename mode;
bdb
let close db =
_dbclose db
let delete db =
_delete db
let sync db =
_dbsync db
let get_cursor bdb =
_cur_make bdb
end