Source file debug.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
open Utils
open Result_lwt.Infix
open Cursor
open Node_type
let segment seg =
  let s = Segment.to_string seg in
  if String.length s > 16 then
    String.sub s 0 8 ^ ".." ^ String.sub s (String.length s - 8) 8
  else s
let simple_string_of_node : node -> string = fun node ->
  
  let string_of_node n =
    match Node_type.index n with
    | None -> "no index"
    | Some i -> Int64.to_string @@ Index.to_int64 i
  in
  match node with
  | Disk (index, _) -> Format.asprintf "Disk %a" Index.pp index
  | Hash h -> Format.asprintf "Hash %a" Hash.pp h
  | View (Leaf (value, Indexed i, Hashed hp)) ->
      Format.asprintf "Leaf %S (%a, %s)\n" (Value.to_string value)
        Index.pp i (Hash.Prefix.to_hex_string hp)
  | View (Leaf (value, _, _)) ->
      Printf.sprintf "Leaf %S\n" (Value.to_string value)
  | View (Bud  (node , _, _)) ->
      let recursive =
        match node with
        | Some node -> string_of_node node
        | None     ->  "Empty"
      in
      Printf.sprintf "Bud: %s" recursive
  | View (Internal (left, right, _, _)) ->
      Printf.sprintf "Internal: %s%s"
        (string_of_node left)
        (string_of_node right)
  | View (Extender (seg, node, _, _)) ->
      Printf.sprintf "[%s]- %s"
        (segment seg)
        (string_of_node node)
let rec string_of_node : node -> int -> string = fun node indent ->
  
  let indent_string = String.concat "" (List.init indent (fun _ -> "  ")) in
  match node with
  | Disk (index, _) -> Format.asprintf "%sDisk %a" indent_string Index.pp index
  | Hash h -> Format.asprintf "%sHash %a" indent_string Hash.pp h
  | View (Leaf (value, Indexed i, Hashed hp)) ->
      Format.asprintf "%sLeaf %S (%a, %s)\n" indent_string (Value.to_string value)
        Index.pp i (Hash.Prefix.to_hex_string hp)
  | View (Leaf (value, _, _)) ->
      Printf.sprintf "%sLeaf %S\n" indent_string (Value.to_string value)
  | View (Bud  (node , _, _)) ->
      let recursive =
        match node with
        | Some node -> string_of_node node (indent + 1)
        | None     ->  "Empty"
      in
      Printf.sprintf "%sBud:\n%s" indent_string recursive
  | View (Internal (left, right, _, Hashed hp)) ->
      Format.asprintf "%sInternal: %a\n%s%s" indent_string
        Hash.Prefix.pp hp
        (string_of_node left (indent + 1))
        (string_of_node right (indent + 1))
  | View (Internal (left, right, _, Not_Hashed)) ->
      Printf.sprintf "%sInternal: no hash\n%s%s" indent_string
        (string_of_node left (indent + 1))
        (string_of_node right (indent + 1))
  | View (Extender (seg, node, _, _)) ->
      Printf.sprintf "%s[%s]- %s" indent_string (segment seg)
        (string_of_node node (indent + 1))
module Dot = struct
  
  let link ?label n1 n2 =
    match label with
    | None -> Printf.sprintf "%s -> %s;" n1 n2
    | Some l -> Printf.sprintf "%s -> %s [label=\"%s\"];" n1 n2 l
  let linkX ?label n1 n2 =
    match label with
    | None -> Printf.sprintf "%s -> %s [color=red];" n1 n2
    | Some l -> Printf.sprintf "%s -> %s [label=\"%s\", color=red];" n1 n2 l
  let indexed = function
    | Indexed i -> Int64.to_string @@ Index.to_int64 i
    | Not_Indexed -> "n/i"
  let modified = function
    | Modified -> "*"
    | Unmodified (ir, _) -> indexed ir
  let disk n = Printf.sprintf "%s [shape=box];" n
  let hash n = Printf.sprintf "%s [shape=box];" n
  let leaf n value ir = Printf.sprintf "%s [label=%S];"
      n
      (let s = Value.to_string value in
       (if String.length s > 9 then String.sub s 0 8 ^ ".." else s) ^ ir)
  let bud n ir = Printf.sprintf "%s [shape=diamond, label=\"%s\"];" n ir
  let internal n ir = Printf.sprintf "%s [shape=circle, label=\"%s\"];" n ir
  let extender = internal
  let of_node_aux cntr root =
    let rec aux : int -> node -> (string * string list * int) = fun cntr -> function
      | Disk (index, _) ->
          let n = Format.asprintf "Disk%a" Index.pp index in
          (n, [disk n], cntr)
      | Hash h ->
          let n = Format.asprintf "Hash%a" Hash.pp h in
          (n, [hash n], cntr)
      | View (Leaf (value, ir, _)) ->
          let n = Printf.sprintf "Leaf%d\n" cntr in
          (n, [leaf n value (indexed ir)], cntr+1)
      | View (Bud  (Some node , ir, _)) ->
          let n', s, cntr = aux cntr node in
          let n = Printf.sprintf "Bud%d" cntr in
          (n,
           [bud n (indexed ir);
            link n n'
           ] @ s,
           cntr + 1)
      | View (Bud  (None , ir, _)) ->
          let n = Printf.sprintf "Bud%d" cntr in
          (n,
           [bud n (indexed ir)],
           cntr + 1)
      | View (Internal (left, right, ir, _)) ->
          let ln, ls, cntr = aux cntr left in
          let rn, rs, cntr = aux cntr right in
          let n = Printf.sprintf "Internal%d" cntr in
          (n,
           [ internal n (indexed ir);
             link n ln ~label:"L";
             link n rn ~label:"R" ]
           @ ls @ rs,
           cntr + 1)
      | View (Extender (seg, node, ir, _)) ->
          let n', s, cntr = aux cntr node in
          let n = Printf.sprintf "Extender%d" cntr in
          (n,
           extender n (indexed ir)
           :: linkX n n' ~label:(segment seg)
           :: s,
           cntr + 1)
    in
    aux cntr root
  let rec of_trail dst cntr = function
    | Top -> ([], cntr)
    | Left (trail, r, mr) ->
        let n = Printf.sprintf "Internal%d" cntr in
        let cntr = cntr + 1 in
        let r, ss, cntr = of_node_aux cntr r in
        let (ss', cntr) = of_trail n cntr trail in
        ([ internal n (modified mr);
           link n dst ~label:"L";
           link n r ~label:"R" ]
         @ ss @ ss',
         cntr)
    | Right (l, trail, mr) ->
        let n = Printf.sprintf "Internal%d" cntr in
        let cntr = cntr + 1 in
        let l, ss, cntr = of_node_aux cntr l in
        let (ss', cntr) = of_trail n cntr trail in
        ([ internal n (modified mr);
           link n l ~label:"L";
           link n dst ~label:"R" ]
         @ ss @ ss',
         cntr)
    | Budded (trail, mr) ->
        let n = Printf.sprintf "Bud%d" cntr in
        let cntr = cntr + 1 in
        let (ss, cntr) = of_trail n cntr trail in
        ([ bud n (modified mr);
           link n dst ]
         @ ss,
         cntr)
    | Extended (trail, seg, mr) ->
        let n = Printf.sprintf "Extender%d" cntr in
        let cntr = cntr + 1 in
        let (ss, cntr) = of_trail n cntr trail in
        ([ extender n (modified mr);
           link n dst ~label:(segment seg) ]
         @ ss,
         cntr)
  let make_digraph ss = "digraph G {\n" ^ String.concat "\n" ss ^ "\n}\n"
  let of_node root =
    let (_name, ss, _cntr) = of_node_aux 0 root in
    make_digraph ss
  let of_cursor (Cursor (trail, node, _, _)) =
    let (n, ss, cntr) = of_node_aux 0 node in
    let ss', _ = of_trail n cntr trail in
    let s = Printf.sprintf "cursor [shape=point, label=\"\"]; cursor -> %s [style=bold];" n in
    make_digraph (s :: ss @ ss')
end
let dot_of_node = Dot.of_node
let dot_of_cursor = Dot.of_cursor
let () = Cursor.dot_of_cursor_ref := dot_of_cursor
let validate_node context (node : node) =
  let rec aux : node -> (unit, string) Result.t =
    fun node ->
      let indexed : view -> bool = function
        | Internal (_, _, Indexed _, _) -> true
        | Bud (_, Indexed _, _) -> true
        | Leaf (_, Indexed _, _) -> true
        | Extender (_, _, Indexed _, _) -> true
        | _ -> false
      in
      let hashed_is_transitive : view -> bool = function
        | Internal (_, _, _, Hashed _) -> true
        | Bud (_, _, Hashed _) -> true
        | Leaf (_, _, Hashed _) -> true
        | Extender (_, _, _, Hashed _) -> true
        
        | Internal (_, _, Indexed _, _) -> true
        | Bud (_, Indexed _, _) -> true
        | Leaf (_, Indexed _, _) -> true
        | Extender (_, _, Indexed _, _) -> true
        | _ -> false
      in
      match node with
      | Disk  (i, wit) ->
          aux @@ View (Node_storage.read_node context i wit)
      | Hash _ -> Ok ()
      | View v ->
          match v with
          | Leaf _ -> Ok ()
          | Bud (None, _, _) -> Ok ()
          | Bud (Some child, ir, hit) ->
              begin
                aux child >>? fun () ->
                match child with
                | Disk _ -> Ok () 
                | Hash _ -> Ok ()
                | View (Bud _) -> Error "Bud cannot carry Bud"
                | View (Leaf _) -> Error "Bud cannot carry Leaf"
                | View v' ->
                    (match ir, indexed v' with
                     | _, true -> Ok ()
                     | Not_Indexed, _ -> Ok ()
                     | _ -> Error "Bud: Strange indexed") >>? fun () ->
                    (match hit, hashed_is_transitive v' with
                     | _, true -> Ok ()
                     | Not_Hashed, _ -> Ok ()
                     | _ -> Error "Bud: Strange hashed_is_transitive")
                end
          | Internal (l, r, ir, hit) ->
              begin
                aux l >>? fun () ->
                aux r >>? fun () ->
                let indexed_or_hash = function
                  | Disk _ -> true
                  | Hash _ -> true
                  | View v -> indexed v
                in
                (match ir, indexed_or_hash l, indexed_or_hash r with
                 | _, true, true -> Ok ()
                 | Not_Indexed, _, _ -> Ok ()
                 | Indexed _, _, _ -> Error "Internal: Strange indexed") >>? fun () ->
                let hashed_is_transitive_or_hash = function
                  | Disk _ -> true
                  | Hash _ -> true
                  | View v -> hashed_is_transitive v
                in
                (match hit, hashed_is_transitive_or_hash l, hashed_is_transitive_or_hash r with
                 | _, true, true -> Ok ()
                 | Not_Hashed, _, _ -> Ok ()
                 | _ -> Error "Internal: Strange hashed_is_transitive")
              end
          | Extender (seg, n, ir, hit) ->
              aux n >>? fun () ->
              match n with
              | Disk (_, Not_Extender) -> Ok ()
              | Disk _ -> Error "Extender cannot carry a Disk not with Not_Extender"
              | Hash (_, s) when s <> "" -> Error "Extender cannot carry Hash with a postfix"
              | View (Extender _) -> Error "Extender cannot carry Extender"
              | Hash _ ->
                  if Segment.length seg > Segment.max_length then
                    Error "segment too long"
                  else
                    Ok ()
              | View v' ->
                  if Segment.length seg > Segment.max_length then
                    Error "segment too long"
                  else
                    (match ir, indexed v' with
                     | _, true -> Ok ()
                     | Not_Indexed, _ -> Ok ()
                     | _ -> Error "Extender: Strange hashed_is_transitive") >>? fun () ->
                    (match hit, hashed_is_transitive v' with
                     | _, true -> Ok ()
                     | Not_Hashed, _ -> Ok ()
                     | _ -> Error "Extender: Strange hashed_is_transitive")
  in
  aux node >>? fun () ->
  match node with
  | Hash (_, s) when s <> "" -> Error "Root cannot be Hash with a postfix"
  | Hash _ -> Ok ()
  | Disk _ -> Ok ()
  | View (Bud _) -> Ok ()
  | _ -> Error "Tree must start with a Bud"
let save_cursor_to_dot name c = to_file ~file:name @@ dot_of_cursor c
let save_node_to_dot name n = to_file ~file:name @@ dot_of_node n