Source file ttl.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
(** *)
open Graph ;;
open Ttl_types;;
type error =
| Parse_error of Loc.loc * string
| Unknown_namespace of string
exception Error of error
let string_of_error = function
Parse_error (loc, s) ->
(Loc.string_of_loc loc) ^ s
| Unknown_namespace s ->
"Unknown namespace '" ^ s ^ "'"
;;
let () = Printexc.register_printer
(function
| Error e ->
Some (Printf.sprintf "Parse error: %s" (string_of_error e))
| _ -> None)
let iri_of_iriref ctx s =
Iri.resolve ~base: ctx.base (Iri.of_string ~pctdecode:true s);;
let iri_of_resource ctx = function
Iriref iri -> iri_of_iriref ctx iri
| Qname (p, n) ->
let p = match p with None -> "" | Some s -> s in
begin
let base =
try SMap.find p ctx.prefixes
with Not_found ->
raise (Error (Unknown_namespace p))
in
match n with
None -> base
| Some n ->
let iri = (Iri.to_string ~pctencode: false base)^n in
Iri.of_string ~pctdecode: true iri
end
;;
let rec mk_blank ctx g = function
NodeId id ->
let (node, gstate) = Xml.get_blank_node g ctx.gstate id in
(node, { ctx with gstate }, g)
| Empty ->
let node = Term.Blank_ (g.new_blank_id ()) in
(node, ctx, g)
| PredObjs l ->
let node = Term.Blank_ (g.new_blank_id ()) in
let (ctx, g) = List.fold_left (insert_sub_predobj node) (ctx, g) l in
(node, ctx, g)
| Collection [] -> (Term.Iri Rdf_.nil, ctx, g)
| Collection objects ->
let node = Term.Blank_ (g.new_blank_id ()) in
let (ctx, g) = mk_collection ctx g node objects in
(node, ctx, g)
and mk_collection ctx g node = function
[] -> assert false
| h :: q ->
let (obj, ctx, g) = mk_object_node ctx g h in
g.add_triple ~sub: node ~pred: Rdf_.first ~obj;
match q with
[] ->
g.add_triple ~sub: node
~pred: Rdf_.rest
~obj: (Term.Iri Rdf_.nil);
(ctx, g)
| _ ->
let obj = Term.Blank_ (g.new_blank_id ()) in
g.add_triple ~sub: node
~pred: Rdf_.rest
~obj ;
mk_collection ctx g obj q
and mk_object_node ctx g = function
| Obj_iri res -> (Term.Iri (iri_of_resource ctx res), ctx, g)
| Obj_blank b -> mk_blank ctx g b
| Obj_literal (String (s, lang, typ)) ->
let typ =
match typ with
None -> None
| Some r -> Some (iri_of_resource ctx r)
in
let lit = Term.mk_literal ?typ ?lang s in
(Term.Literal lit, ctx, g)
and insert_pred sub pred (ctx, g) obj =
let (obj, ctx, g) = mk_object_node ctx g obj in
g.add_triple ~sub ~pred ~obj;
(ctx, g)
and insert_sub_predobj sub (ctx, g) (pred, objs) =
let pred =
match pred with
Pred_iri r -> iri_of_resource ctx r
| Pred_a -> Rdf_.type_
in
List.fold_left (insert_pred sub pred) (ctx, g) objs
and insert_sub_predobjs ctx g sub l =
let (sub, ctx, g) =
match sub with
Sub_iri r -> (Term.Iri (iri_of_resource ctx r), ctx, g)
| Sub_blank b -> mk_blank ctx g b
in
List.fold_left (insert_sub_predobj sub) (ctx, g) l
;;
let apply_statement (ctx, g) = function
Directive (Prefix (s, iri)) ->
let iri = iri_of_iriref ctx iri in
let ctx = { ctx with prefixes = SMap.add s iri ctx.prefixes } in
(ctx, g)
| Directive (Base iri) ->
let iri = iri_of_iriref ctx iri in
let ctx = { ctx with base = iri } in
(ctx, g)
| Triples (subject, predobjs) ->
insert_sub_predobjs ctx g subject predobjs
;;
let apply_statements ctx g l =
List.fold_left apply_statement (ctx, g) l
;;
open Lexing;;
let from_lexbuf g ?(base=g.Graph.name()) ?fname lexbuf =
let gstate = {
Xml.blanks = SMap.empty ;
gnamespaces = Iri.Map.empty ;
}
in
let ctx = {
base = base ;
prefixes = Ttl_types.SMap.empty ;
gstate }
in
let parse = Sedlex.menhir_with_ulex Ttl_parser.main Ttl_lex.main ?fname in
let statements =
try parse lexbuf
with Sedlex.Parse_error (e, pos)->
let msg =
match e with
Ttl_parser.Error ->
let lexeme = Sedlexing.Utf8.lexeme lexbuf in
Printf.sprintf "Error on lexeme %S" lexeme
| Failure msg -> msg
| Iri.Error e -> Iri.string_of_error e
| e -> Printexc.to_string e
in
let loc = { Loc.loc_start = pos ; loc_end = pos } in
raise (Error (Parse_error (loc,msg)))
in
let (ctx, g) = apply_statements ctx g statements in
let add_ns prefix iri = g.add_namespace iri prefix in
Ttl_types.SMap.iter add_ns ctx.prefixes
;;
let from_string g ?base s =
let lexbuf = Sedlexing.Utf8.from_string s in
from_lexbuf g ?base lexbuf
;;
let from_file g ?base file =
let ic = open_in_bin file in
let lexbuf = Sedlexing.Utf8.from_channel ic in
try from_lexbuf g ?base ~fname: file lexbuf; close_in ic
with e ->
close_in ic;
raise e
;;
let escape_reserved_chars =
let rec iter b len s i =
if i >= len then
()
else
begin
let size = Utf8.utf8_nb_bytes_of_char s.[i] in
(match size with
1 when Types.CSet.mem s.[i] Ttl_lex.reserved_chars ->
Buffer.add_char b '\\' ;
Buffer.add_char b s.[i]
| _ ->
Buffer.add_string b (String.sub s i size)
);
iter b len s (i+size)
end
in
fun s ->
let len = String.length s in
let b = Buffer.create len in
iter b len s 0;
Buffer.contents b
;;
let escape_iriref =
let is_safe = function
| 60
| 62
| 92
| 34
| 123
| 125
| 124
| 94
| 96 -> false
| n -> n > 0x20
in
let f b () _i = function
| `Malformed str -> Buffer.add_string b str
| `Uchar codepoint ->
let n = Uchar.to_int codepoint in
if is_safe n then
Uutf.Buffer.add_utf_8 b codepoint
else
if n >= 65536 then
Printf.bprintf b "\\U%08X" n
else
Printf.bprintf b "\\u%04X" n
in
fun s ->
let b = Buffer.create (String.length s) in
Uutf.String.fold_utf_8 (f b) () s ;
let res = Buffer.contents b in
res
let string_of_term_ns ns term =
match term with
| Term.Blank | Term.Blank_ _ -> Term.string_of_term term
| Term.Literal lit ->
(Term.quote_str lit.Term.lit_value) ^
(match lit.Term.lit_language with
None -> ""
| Some l -> "@" ^ l
) ^
(match lit.Term.lit_type with
None -> ""
| Some iri ->
let iri = Iri.to_string ~pctencode: false iri in
let s =
match Dot.apply_namespaces ns iri with
("",iri) -> "<" ^ escape_iriref iri ^ ">"
| (pref,s) -> pref ^ ":" ^ (escape_reserved_chars s)
in
"^^" ^ s
)
| Term.Iri iri ->
let s = Iri.to_string ~pctencode: false iri in
match Dot.apply_namespaces ns s with
("",iri) -> "<" ^ escape_iriref iri ^ ">"
| (pref,s) -> pref ^ ":" ^ (escape_reserved_chars s)
let string_of_term = string_of_term_ns []
let string_of_triple_ns ns ~sub ~pred ~obj =
let sub = string_of_term_ns ns sub in
let pred = string_of_term_ns ns (Term.Iri pred) in
let obj = string_of_term_ns ns obj in
sub ^ " " ^ pred ^ " " ^ obj^ " ."
;;
let string_of_triple = string_of_triple_ns [];;
let f_triple ns print (sub, pred, obj) =
print (string_of_triple_ns ns ~sub ~pred ~obj);
print "\n"
;;
let string_of_namespace (pref,iri) = "@prefix "^pref^": <"^escape_iriref iri^"> .";;
let print_compact =
let iter_obj print ns g obj first =
if not first then print ", " ;
print (string_of_term_ns ns obj);
false
in
let iter_pred print ns g pred objs first =
if not first then print " ;\n " ;
print (string_of_term_ns ns (Term.Iri pred)) ;
print " " ;
ignore(Term.TSet.fold (iter_obj print ns g) objs true) ;
false
in
let iter_sub print ns g sub preds =
print (string_of_term_ns ns sub) ;
print " " ;
ignore(Iri.Map.fold (iter_pred print ns g) preds true) ;
print ".\n"
in
fun print ns g map ->
Term.TMap.iter (iter_sub print ns g) map
let to_ ?(compact=false) ?namespaces print g =
let ns = Dot.build_namespaces ?namespaces g in
List.iter (fun ns -> print (string_of_namespace ns); print "\n") ns;
match g.folder () with
Some map when compact ->
print_compact print ns g map
| _ ->
List.iter (f_triple ns print) (g.find ())
let to_string ?compact ?namespaces g =
let b = Buffer.create 256 in
let print s = Buffer.add_string b s in
to_ ?compact ?namespaces print g;
Buffer.contents b
;;
let to_file ?compact ?namespaces g file =
let oc = open_out_bin file in
try
let print s = output_string oc s in
to_ ?compact ?namespaces print g;
close_out oc
with e ->
close_out oc;
raise e
;;