-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpersist.ml
62 lines (53 loc) · 1.56 KB
/
persist.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
module Line = struct
type t = float array
type envelope = Rtree.Rectangle.t
let t = Repr.(array float)
let envelope arr =
let x0 = Float.min arr.(0) arr.(2) in
let x1 = Float.max arr.(0) arr.(2) in
let y0 = Float.min arr.(1) arr.(3) in
let y1 = Float.max arr.(1) arr.(3) in
Rtree.Rectangle.v ~x0 ~y0 ~x1 ~y1
let mindist _p _e = 0.
let minmaxdist _p _e = 0.
end
module R = Rtree.Make (Rtree.Rectangle) (Line)
let lines =
[
[| 0.; 0.; 0.; 1. |];
[| 0.; 1.; 0.; 2. |];
[| 1.; 1.; 2.; 2. |];
[| 2.; 2.; 3.; 3. |];
[| 0.; 5.; 4.; 4. |];
]
module Ic = struct
let with_open_bin fname fn =
let ic = open_in_bin fname in
Fun.protect ~finally:(fun () -> close_in ic) (fun () -> fn ic)
let input_all ic =
let lines = ref [] in
let rec loop () =
lines := input_line ic :: !lines;
loop ()
in
try loop () with End_of_file -> List.rev !lines |> String.concat "\n"
end
(* Code used to initial persist the index
let initial_persist () =
let idx = R.empty 4 in
let idx = List.fold_left R.insert idx lines in
Out_channel.with_open_bin "r.idx" @@ fun oc ->
Out_channel.output_string oc (Repr.(unstage @@ to_bin_string R.t) idx)
*)
let () =
Ic.with_open_bin "./r.idx" @@ fun ic ->
let idx =
Ic.input_all ic |> Repr.(unstage @@ of_bin_string R.t) |> Result.get_ok
in
let all = R.find idx (Rtree.Rectangle.v ~x0:0. ~y0:0. ~x1:5. ~y1:5.) in
let retrieved =
List.for_all
(fun v -> List.exists (Repr.(unstage @@ equal Line.t) v) lines)
all
in
assert retrieved