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
(** Flattening. *)
module L = Log
open Rdf
module Log = L
open T
open J
type json_map = (J.key * J.json) list
type node_object = J.json list SMap.t ref
type graph = {
mutable nodes: node_object SMap.t ;
rdf_g: Rdf.Graph.graph ;
mutable map : Rdf.Term.blank_id SMap.t ;
}
let pp_node ppf node =
SMap.iter (fun k l ->
Format.fprintf ppf "%s => [" k;
List.iter (fun j -> Format.fprintf ppf "%a;@." J.ppm j) l;
Format.fprintf ppf "]\n")
!node
let pp_graph ppf g =
SMap.iter (fun s n -> Format.fprintf ppf " %s=>%a@." s pp_node n) g.nodes
let make_graph name =
let base = match name with
| `I iri -> iri
| `B _ -> iri_of_string ""
in
{ nodes = SMap.empty ;
rdf_g = Rdf.Graph.open_graph base ;
map = SMap.empty ;
}
let graph_get_node g entry =
match SMap.find_opt entry g.nodes with
| Some n -> n
| None ->
let n = ref (SMap.singleton "@id" [J.string entry]) in
g.nodes <- SMap.add entry n g.nodes ;
n
let gen_blank_node g json =
let bid =
match json.data with
| `Null -> g.rdf_g.Graph.new_blank_id ()
| `String str when is_blank_node_id json ->
(
let str = remove_blank_id_prefix str in
match SMap.find_opt str g.map with
| None ->
let bid = g.rdf_g.Graph.new_blank_id () in
Log.debug (fun m -> m "new blank id map: %s -> %s"
str (Rdf.Term.string_of_blank_id bid));
g.map <- SMap.add str bid g.map;
bid
| Some bid -> bid
)
| _ -> error (Invalid_blank_node_id json)
in
"_:" ^ Rdf.Term.string_of_blank_id bid
let json_gen_blank_node g json =
let id = gen_blank_node g json in
J.string ?loc:json.loc id
type node_map =
{ default : graph ;
mutable graphs : graph Ds.NameMap.t ;
}
let pp_node_map ppf nm =
Format.fprintf ppf "node_map:@.default=%a\n" pp_graph nm.default;
Ds.NameMap.iter (fun name g -> Format.fprintf ppf "
graph %a=%a\n" Ds.pp_name name pp_graph g) nm.graphs
let init_node_map default_g =
let default = { nodes = SMap.empty; rdf_g = default_g ; map = SMap.empty } in
{ default ; graphs = Ds.NameMap.empty }
let get_graph nm = function
| "@default" -> Some nm.default
| str ->
let name =
if str_is_blank_node_id str then
Some (`B (Rdf.Term.blank_id_of_string (String.sub str 2 (String.length str - 2))))
else
match iri_of_string str with
| iri -> Some (`I iri)
| exception _ ->
Log.warn (fun m -> m "Invalid graph name %s" str);
None
in
match name with
| None -> None
| Some name ->
match Ds.NameMap.find_opt name nm.graphs with
| Some g -> Some g
| None ->
let g = make_graph name in
nm.graphs <- Ds.NameMap.add name g nm.graphs ;
Some g
let rec node_map_generation node_map
?(active_graph="@default") ?(active_subject=J.null) ?active_prop ?(list:json_map ref option) element =
Log.debug (fun m -> m "node_map_generation: active_graph=%S, active_subject=%a, active_prop=%S, element=%s"
active_graph J.pp active_subject
(Option.value ~default:"None" active_prop)
(J.to_string element)
);
(match list with
| None -> ()
| Some map ->
Log.debug (fun m -> m "node_map_generation list=[%a]" J.map_pp !map);
);
match element.data with
| `List items ->
List.iter
(fun item -> node_map_generation node_map ~active_graph
~active_subject ?active_prop ?list item)
items
| `Float _ | `Bool _ | `String _ | `Null ->
error (Invalid_expanded_json element)
| `Obj map ->
match get_graph node_map active_graph with
| None -> ()
| Some graph ->
let on_subject_node f =
match active_subject.data with
| `Null -> failwith "Invalid expanded json (no usable subject node)"
| `String sub -> f (graph_get_node graph sub)
| _ -> error (Invalid_expanded_json active_subject)
in
let map = match J.map_get map "@type" with
| None -> map
| Some v ->
let items = J.values v in
let items = List.map (fun item ->
if is_blank_node_id item then
json_gen_blank_node graph item
else
item) items
in
J.map_add_value map "@type" (J.list ?loc:v.loc items)
in
Log.debug (fun m -> m "node_map_generation: map = %a" J.map_pp map);
let element = J.obj ?loc:element.loc map in
match J.map_get map "@value" with
| Some v ->
(match list with
| None ->
(
match active_prop with
| None ->
failwith "Invalid expanded json (no active prop)"
| Some prop ->
on_subject_node (fun subject_node ->
match SMap.find_opt prop !subject_node with
| None ->
Log.debug (fun m -> m "node_map_generation 4.1.1)");
subject_node := SMap.add prop [element] !subject_node
| Some items ->
if not (List.exists (fun item -> J.compare element item = 0) items) then
(
Log.debug (fun m -> m "node_map_generation 4.1.2, adding %s to subject_node @list)"
(J.to_string element));
subject_node := SMap.add prop (element :: items) !subject_node
)
else
Log.debug (fun m -> m "node_map_generation 4.1.2, not adding %s"
(J.to_string element))
)
)
| Some l ->
Log.debug (fun m -> m "node_map_generation 4.2)");
match J.map_get !l "@list" with
| Some {data=`List items} -> l := J.map_add_value !l "@list" (J.list (items @ [element]))
| _ -> assert false
)
| _ ->
match J.map_get map "@list" with
| Some v ->
(
let result = [ranged "@list", J.list []] in
let result = ref result in
node_map_generation node_map ~active_graph ~active_subject ?active_prop
~list:result v;
Log.debug (fun m -> m "new result=%a" J.map_pp !result);
let result = J.obj !result in
match list with
| None ->
(
match active_prop with
| None ->
failwith "Invalid expanded json (no active prop)"
| Some prop ->
on_subject_node (fun subject_node ->
let prop_v =
match SMap.find_opt prop !subject_node with
| None -> []
| Some items -> items
in
subject_node := SMap.add prop (prop_v @ [result]) !subject_node
)
)
| Some l ->
match J.map_get !l "@list" with
| Some {data=`List items} -> l := J.map_add_value !l "@list" (J.list (items @ [result]))
| _ -> assert false
)
| None ->
let map, id =
match J.map_get map "@id" with
| Some ({ data = `String s_id } as id) ->
let map = J.map_remove_value map "@id" in
let id =
if is_blank_node_id id
then gen_blank_node graph id
else s_id
in
map, id
| Some {data=`Null} ->
let map = J.map_remove_value map "@id" in
map, gen_blank_node graph J.null
| None -> map, gen_blank_node graph J.null
| Some _ ->
failwith "Invalid expanded json (@id not a string)"
in
Log.debug (fun m -> m "node_map_generation: new blank id %S" id);
let node = graph_get_node graph id in
Log.debug (fun m -> m "node_map_generation: node = %a" pp_node node);
let () =
match active_subject.data with
| `Obj sub_map->
(match active_prop with
| None -> failwith "Invalid expanded json (no active prop)"
| Some prop ->
match SMap.find_opt prop !node with
| None ->
node := SMap.add prop [active_subject] !node
| Some items ->
if not (List.exists (fun item -> J.compare active_subject item = 0) items) then
node := SMap.add prop (active_subject :: items) !node
)
| _ ->
match active_prop with
| None -> ()
| Some prop ->
let reference = J.obj [ranged "@id", J.string id] in
Log.debug (fun m -> m "node_map_generation: 6.6.1 id=%s" id);
match list with
| None ->
on_subject_node (fun subject_node ->
match SMap.find_opt prop !subject_node with
| None ->
subject_node := SMap.add prop [reference] !subject_node
| Some items ->
if not (List.exists (fun item -> J.compare reference item = 0) items) then
subject_node := SMap.add prop (reference :: items) !subject_node
)
| Some l ->
match J.map_get !l "@list" with
| Some {data=`List items} ->
l := J.map_add_value !l "@list" (J.list (items @ [reference]))
| _ -> assert false
in
let map =
match J.map_get map "@type" with
| None -> map
| Some v ->
let items = J.values v in
let node_type_items = match SMap.find_opt "@type" !node with
| None -> []
| Some l -> l
in
let node_type_items = List.fold_left (fun acc item ->
if List.exists (fun t -> J.compare t item = 0) node_type_items then
acc
else item :: acc)
items node_type_items
in
node := SMap.add "@type" (List.rev node_type_items) !node;
J.map_remove_value map "@type"
in
Log.debug (fun m -> m "node_map_generation: 6.8. node = %a" pp_node node);
Log.debug (fun m -> m "node_map_generation: 6.8. map = %a" J.map_pp map);
let map =
match J.map_get map "@index", SMap.find_opt "@index" !node with
| None, _ -> map
| Some v, None ->
node := SMap.add "@index" [v] !node;
J.map_remove_value map "@index"
| Some v_elt, Some v_node ->
if List.compare J.compare [v_elt] v_node <> 0 then
error (Conflicting_indexes element)
else
map
in
let map =
match J.map_get map "@reverse" with
| None -> map
| Some v ->
let referenced_node = [ranged "@id", J.string id] in
match v.data with
| `Obj prop_values ->
List.iter (fun (prop, l) ->
List.iter (fun value ->
node_map_generation node_map ~active_graph
~active_subject:(J.obj referenced_node)
~active_prop:prop.data
value;
) (J.values l)
) prop_values;
J.map_remove_value map "@reverse"
| _ -> failwith "Invalid expanded json (@reverse value is not a map)"
in
let map =
match J.map_get map "@graph" with
| None -> map
| Some v ->
node_map_generation node_map ~active_graph:id v;
J.map_remove_value map "@graph"
in
let map =
match J.map_get map "@included" with
| None -> map
| Some v ->
node_map_generation node_map ~active_graph v;
J.map_remove_value map "@included"
in
Log.debug (fun m -> m "node_map_generation: 6.12 map = %a" J.map_pp map);
let map = sort_map map in
List.iter (fun (prop, v) ->
let prop_json = J.string prop.data in
let prop_str =
if is_blank_node_id prop_json then
gen_blank_node graph prop_json
else prop.data
in
if not (SMap.mem prop_str !node) then node := SMap.add prop_str [] !node;
node_map_generation node_map ~active_graph
~active_subject:(J.string id) ~active_prop:prop_str v
)
map