Source file stog_writing.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
(** *)
let module_name = "writing";;
let info f = Stog.Log.info (fun m -> f (m ~header:module_name));;
let warn f = Stog.Log.warn (fun m -> f (m ~header:module_name));;
let err f = Stog.Log.err (fun m -> f (m ~header:module_name));;
let rc_file stog = Stog.Plug.plugin_config_file stog module_name;;
open Stog.Types;;
type auto_id_spec = Nolink | Link of string option
module Smap = Stog.Types.Str_map;;
module XR = Xtmpl.Rewrite
module XH = Xtmpl.Xhtml
module Xml = Xtmpl.Xml
module W = Ocf.Wrapper
module J = Yojson.Safe
let smap_wrapper w = W.string_map
~fold: Smap.fold ~add: Smap.add ~empty: Smap.empty w
let auto_id_spec_wrapper =
let to_json ?with_doc = function
Nolink -> `Bool false
| Link None -> `Bool true
| Link (Some str) -> `String str
in
let from_json ?def = function
| `Bool false -> Nolink
| `Bool true -> Link None
| `String str -> Link (Some str)
| json -> Ocf.invalid_value json
in
Ocf.Wrapper.make to_json from_json
let default_tags =
List.fold_left
(fun acc (tag, spec) -> Smap.add tag spec acc)
Smap.empty
[ "p", Link None ; "pre", Link (Some "div") ]
type spec = {
links : bool [@ocf W.bool, true] ;
tags : auto_id_spec Smap.t [@ocf smap_wrapper auto_id_spec_wrapper, Smap.empty] ;
} [@@ocf]
let default_spec = { default_spec with tags = default_tags }
let spec_wrapper default =
let to_json = spec_wrapper.W.to_json in
let from_json ?def = function
| `Bool links -> { links ; tags = if default then default_tags else Smap.empty}
| json -> spec_wrapper.W.from_json ?def json
in
W.make to_json from_json
type auto_ids =
{ default : spec [@ocf spec_wrapper true, default_spec] ;
by_type : spec Smap.t
[@ocf smap_wrapper (spec_wrapper false), Smap.empty]
[@ocf.doc "associations between document type and boolean, like { page: false, post: true, ..}"] ;
} [@@ocf]
type wdata =
{ auto_ids : auto_ids ;
bib_entries : (Stog.Path.path * Bibtex.entry) Smap.t ;
bibs_by_path : Bibtex.entry list Smap.t Stog.Path.Map.t;
generated_by_doc : Stog.Types.Str_set.t Stog.Path.Map.t ;
}
let empty_data = {
auto_ids = default_auto_ids ;
bib_entries = Smap.empty ;
bibs_by_path = Stog.Path.Map.empty;
generated_by_doc = Stog.Path.Map.empty ;
}
let load_config env (stog, data) docs =
let auto_ids = Ocf.option auto_ids_wrapper default_auto_ids in
let group = Ocf.add Ocf.group ["automatic_ids"] auto_ids in
let rc_file = rc_file stog in
if not (Sys.file_exists rc_file) then
Ocf.to_file group rc_file;
try
Ocf.from_file group rc_file ;
let data =
{ data with
auto_ids = Ocf.get auto_ids ;
}
in
(stog, data)
with
Ocf.Error e -> failwith (Ocf.string_of_error e)
;;
(** Notes *)
let note_source_id n = Printf.sprintf "source_note_%d" n;;
let note_target_id n = Printf.sprintf "target_note_%d" n;;
let fun_prepare_notes data env ?loc args subs =
let count = ref 0 in
let notes = ref [] in
let rec iter xml =
match xml with
| XR.D _ | XR.C _ | XR.PI _ -> xml
| XR.E { XR.name = ("", "note"); atts ; subs} ->
incr count ;
let note_id = XR.get_att_cdata atts ("","id") in
notes := (!count, note_id, subs) :: !notes ;
let target =
match note_id with
None -> note_target_id !count
| Some id -> id
in
let source = note_source_id !count in
XH.sup ~id: source ~class_: "footnote-link"
[
XH.a ~href: ("#"^target) [ XR.cdata (string_of_int !count)]
]
| XR.E node ->
XR.E { node with XR.subs = List.map iter node.XR.subs }
in
let subs = List.map iter subs in
let xml_of_note (n, note_id, xml) =
let source = note_source_id n in
let target = match note_id with None -> note_target_id n | Some id -> id in
XH.div ~class_: "note" ~id: target
(
(XH.sup [XH.a ~href: ("#"^source) [XR.cdata (string_of_int n)]]) ::
(XR.cdata " ") :: xml
)
in
let xml =
XH.div ~class_: "notes"
(List.rev_map xml_of_note !notes)
in
let atts = XR.atts_one ("", "notes") [ xml ] in
(data, [ XR.node ("", XR.tag_env) ~atts subs ])
;;
let rules_notes = [ ("", "prepare-notes"), fun_prepare_notes ];;
let fun_level_notes = Stog.Engine.fun_apply_stog_data_doc_rules (fun _ _ -> rules_notes);;
(** Bibliographies *)
let add_bib_entry data path e =
try
ignore(Smap.find e.Bibtex.id data.bib_entries);
warn (fun m -> m "duplicate entry %S" e.Bibtex.id);
raise Not_found
with Not_found ->
{ data with
bib_entries = Smap.add e.Bibtex.id (path, e) data.bib_entries ;
}
;;
let bib_entries_of_file ?prefix ?loc file =
info (fun m -> m "loading bibtex file %S" file);
let inch =
try open_in file
with Sys_error s -> failwith (Xtmpl.Types.loc_sprintf loc "%s" s)
in
try
let lexbuf = Lexing.from_channel inch in
let entries =
try Bibtex_parser.entries Bibtex_lexer.main lexbuf
with
| Bibtex_parser.Error ->
let pos = lexbuf.Lexing.lex_curr_p in
let msg = Printf.sprintf "Parse error line %d, character %d"
pos.Lexing.pos_lnum (pos.Lexing.pos_cnum - pos.Lexing.pos_bol)
in
failwith msg
| e ->
failwith (Printf.sprintf "line %d: %s"
!Bibtex_lexer.line_number (Printexc.to_string e))
in
close_in inch;
info (fun m -> m "done");
match prefix with
None -> entries
| Some prefix ->
List.map (fun e -> { e with Bibtex.id = prefix ^ e.Bibtex.id }) entries
with
Sys_error s
| Failure s ->
close_in inch ;
failwith s
;;
let get_bib_entry_field entry = function
"id" -> entry.Bibtex.id
| "kind" -> entry.Bibtex.kind
| field ->
try List.assoc field entry.Bibtex.fields
with Not_found ->
warn (fun m -> m "No field %S for bib entry %S" field entry.Bibtex.id);
""
;;
let sort_bib_entries sort_fields reverse entries =
let comp e1 e2 =
let l1 = List.map (get_bib_entry_field e1) sort_fields in
let l2 = List.map (get_bib_entry_field e2) sort_fields in
if reverse then
Stdlib.compare l2 l1
else
Stdlib.compare l1 l2
in
List.sort comp entries
;;
let add_bibliography ?(name="default") ?(sort="id") ?(reverse=false)
?prefix ?loc doc (data, bib_map, rank) s_files =
let sort_fields = Stog_base.Misc.split_string sort [';' ; ',' ] in
let sort_fields = List.map Stog_base.Misc.strip_string sort_fields in
let files =
let l = Stog_base.Misc.split_string s_files [','; ';'] in
List.map Stog_base.Misc.strip_string l
in
let files = List.map
(fun file ->
if Filename.is_relative file then
Filename.concat (Filename.dirname doc.Stog.Types.doc_src) file
else
file
) files
in
let entries = List.flatten
(List.map (fun f -> bib_entries_of_file ?prefix ?loc f) files)
in
let entries = sort_bib_entries sort_fields reverse entries in
let (entries, rank) = List.fold_left
(fun (acc, rank) e ->
let rank = rank + 1 in
let e = { e with Bibtex.fields = ("rank", string_of_int rank) :: e.Bibtex.fields } in
((e :: acc), rank)
) ([], rank) entries
in
let entries = List.rev entries in
let data = List.fold_left
(fun data e -> add_bib_entry data doc.Stog.Types.doc_path e)
data entries
in
try
ignore(Smap.find name bib_map);
let msg = Xtmpl.Types.loc_sprintf loc "A bibliography %S is already defined in %S"
name (Stog.Path.to_string doc.Stog.Types.doc_path)
in
failwith msg
with Not_found ->
(data, Smap.add name entries bib_map, rank)
;;
let init_bib env (stog,data) docs =
let f_bib doc ?sort ?reverse ?prefix (data, bib_map, rank) = function
| XR.E { XR.name = ("", "bibliography") ; atts ; subs ; loc } ->
let name = XR.get_att_cdata atts ("", "name") in
let sort = match XR.get_att_cdata atts ("", "sort") with None -> sort | x -> x in
let prefix = match XR.get_att_cdata atts ("", "prefix") with None -> prefix | x -> x in
let reverse = match XR.get_att_cdata atts ("", "reverse") with None -> reverse | x -> x in
let reverse = Stog_base.Misc.map_opt Stog.Io.bool_of_string reverse in
let files =
match XR.get_att_cdata atts ("", "files") with
None -> failwith
(Printf.sprintf "%s: No 'files' given for bibliography%s"
(Stog.Path.to_string doc.Stog.Types.doc_path)
(match name with None -> "" | Some s -> Printf.sprintf "%S" s)
)
| Some s -> s
in
add_bibliography ?name ?sort ?reverse ?prefix ?loc doc (data, bib_map, rank) files
| XR.D _ | XR.C _ | XR.PI _
| XR.E _ -> (data, bib_map, rank)
in
let f_def doc (data, bib_map, rank) ((prefix, name), atts, xmls) =
match prefix, name with
"", "bib-files" ->
add_bibliography doc (data, bib_map, rank) (XR.to_string xmls)
| "", "bibliographies" ->
let sort = XR.get_att_cdata atts ("", "sort") in
let prefix = XR.get_att_cdata atts ("", "prefix") in
let reverse = XR.get_att_cdata atts ("", "reverse") in
List.fold_left (f_bib doc ?sort ?reverse ?prefix) (data, bib_map, rank) xmls
| _ -> (data, bib_map, rank)
in
let f_doc doc_id data =
let doc = Stog.Types.doc stog doc_id in
let (data, bib_map, _) = List.fold_left (f_def doc)
(data, Smap.empty, 0) doc.Stog.Types.doc_defs
in
{ data with
bibs_by_path = Stog.Path.Map.add
doc.Stog.Types.doc_path
bib_map
data.bibs_by_path ;
}
in
let data = Stog.Types.Doc_set.fold f_doc docs data in
(stog, data)
;;
let fun_level_init = Stog.Engine.Fun_stog_data init_bib;;
let fun_bib_field e data env ?loc atts _ =
match XR.get_att_cdata atts ("", "name") with
None ->
warn
(fun m -> m "No \"name\" attribute for bib entry %S" (e.Bibtex.id));
(data, [])
| Some name ->
(data, [XR.cdata (get_bib_entry_field e name)])
;;
let add_bib_entry_env env e =
let env = List.fold_left
(fun env (fd, v) ->
XR.env_add_xml
(Printf.sprintf "bib-entry-%s" fd) [XR.cdata v] env
)
env
e.Bibtex.fields
in
let env = XR.env_add_cb "bib-field" (fun_bib_field e) env in
let env = XR.env_add_xml "bib-entry-id" [XR.cdata e.Bibtex.id] env in
let env = XR.env_add_xml "bib-entry-kind" [XR.cdata e.Bibtex.kind] env in
env
;;
let xml_of_format fmt =
let re = Str.regexp "\\$(\\([a-zA-Z0-9:_]+\\))" in
let f _ =
let field = Str.matched_group 1 fmt in
Printf.sprintf "<bib-entry-%s/>" field
in
let xml_s = Str.global_substitute re f fmt in
XR.from_string xml_s
;;
let escape_bib_entry_id s =
let len = String.length s in
let b = Buffer.create len in
for i = 0 to len - 1 do
match s.[i] with
'a'..'z' | 'A'..'Z' | '0'..'9' | '_' -> Buffer.add_char b s.[i]
| c -> Buffer.add_char b '-'
done;
Buffer.contents b
;;
let mk_bib_entry_anchor e =
Printf.sprintf "bibentry_%s" (escape_bib_entry_id e.Bibtex.id)
;;
let mk_bib_entry_link stog path e subs =
let href =
(Stog.Path.to_string path)^"#"^(mk_bib_entry_anchor e)
in
XR.node ("", "doc")
~atts: (XR.atts_one ("", "href") [XR.cdata href])
subs
;;
let fun_cite (stog, data) env ?loc atts subs =
match XR.get_att_cdata atts ("", "href") with
None ->
err (fun m -> m "Missing href in <cite>");
((stog, data), subs)
| Some href ->
try
let refs = List.map Stog_base.Misc.strip_string
(Stog_base.Misc.split_string href [','])
in
let get_def (stog, data) tag def =
match XR.get_att atts ("", tag) with
Some xml -> ((stog, data), xml)
| None ->
let nodes = [XR.node ("", "cite-"^tag) []] in
let ((stog, data), nodes2) = XR.apply_to_xmls (stog, data) env nodes in
let res = if nodes = nodes2 then def else nodes2 in
((stog, data), res)
in
let ((stog, data), cite_begin) = get_def (stog,data) "begin" [] in
let ((stog, data), cite_end) = get_def (stog,data) "end" [] in
let ((stog, data), cite_sep) = get_def (stog,data) "sep" [XR.cdata ", "] in
let f href ((stog, data), acc) =
let (path, entry) = Smap.find href data.bib_entries in
let env = add_bib_entry_env env entry in
let ((stog, data), xml) =
match subs with
[] -> get_def (stog, data) "format"
[XR.node ("", "bib-field")
~atts: (XR.atts_one ("","name") [XR.cdata "rank"])
[]
]
| _ -> ((stog, data), subs)
in
let ((stog, data), text) = XR.apply_to_xmls (stog, data) env xml in
let link = mk_bib_entry_link stog path entry text in
let acc =
match acc with
[] -> [link]
| acc -> link :: cite_sep @ acc
in
((stog, data), acc)
in
let ((stog, data), xmls) = List.fold_right f refs ((stog,data), []) in
let xmls = cite_begin @ xmls @ cite_end in
((stog,data), xmls)
with
Not_found ->
err (fun m -> m "Unknown bib entry %S" href);
((stog, data), subs)
;;
let xml_of_bib_entry env doc_id doc ((stog, data), acc) entry =
let tmpl = Stog.Tmpl.get_template_file stog doc "bib-entry.tmpl" in
let env2 =
let base_rules = Stog.Html.build_base_rules stog doc_id in
let env = XR.env_of_list base_rules in
add_bib_entry_env env entry
in
let (stog, xmls) = XR.apply_to_file stog env2 tmpl in
let ((stog, data), xmls) = XR.apply_to_xmls (stog,data) env xmls in
((stog, data),
(XH.div ~class_: "bib-entry" ~id: (mk_bib_entry_anchor entry) xmls) :: acc
)
;;
let get_in_env = Stog.Html.get_in_env;;
let get_in_args_or_env = Stog.Engine.get_in_args_or_env;;
let get_path = Stog.Html.get_path;;
let fun_bibliography doc_id (stog, data) env ?loc atts subs =
let ((stog, data), path) = get_path (stog, data) env in
let name = XR.opt_att_cdata ~def: "default" atts ("", "name") in
let entries =
try
let bib_map = Stog.Path.Map.find
path data.bibs_by_path
in
try Smap.find name bib_map
with Not_found ->
failwith (Xtmpl.Types.loc_sprintf loc "Unknown bibliography %S in %S"
name (Stog.Path.to_string path))
with Not_found ->
failwith (Xtmpl.Types.loc_sprintf loc "No bibliographies for %S"
(Stog.Path.to_string path))
in
let entries =
match XR.get_att_cdata atts ("", "keywords") with
None -> entries
| Some s ->
let kwds = Stog_base.Misc.split_string s [',' ; ';'] in
let pred entry =
let e_kwds =
try Stog_base.Misc.split_string
(List.assoc "keywords" entry.Bibtex.fields) [',' ; ';']
with Not_found -> []
in
List.for_all (fun kwd -> List.mem kwd e_kwds) kwds
in
List.filter pred entries
in
let doc = Stog.Types.doc stog doc_id in
List.fold_left (xml_of_bib_entry env doc_id doc) ((stog, data), []) (List.rev entries)
;;
let rules_bib stog doc_id = [
("", "bibliography"), fun_bibliography doc_id ;
("", "cite"), fun_cite ;
];;
let fun_level_bib = Stog.Engine.fun_apply_stog_data_doc_rules rules_bib ;;
(** Adding references to paragraphs and
handling blocks (like environments in latex).
*)
let add_string b s =
for i = 0 to String.length s - 1 do
match s.[i] with
'a'..'z' | 'A'..'Z' | '0'..'9' | '_' -> Buffer.add_char b s.[i]
| _ -> ()
done
;;
let rec text_of_xml with_atts b = function
XR.D s -> add_string b s.Xtmpl.Types.text
| XR.C _ | XR.PI _ -> ()
| XR.E { XR.subs ; XR.atts } ->
if with_atts then text_of_atts b atts ;
text_of_xmls with_atts b subs
and text_of_atts b atts =
Xtmpl.Xml.Name_map.iter
(fun _ xmls -> text_of_xmls true b xmls) atts
and text_of_xmls with_atts b l = List.iter (text_of_xml with_atts b) l;;
let max_size = 24 ;;
let create_id xmls =
let b = Buffer.create 256 in
text_of_xmls false b xmls;
let s =
match Stog_base.Misc.strip_string (Buffer.contents b) with
"" ->
Buffer.reset b ;
text_of_xmls true b xmls ;
Stog_base.Misc.strip_string (Buffer.contents b)
| s -> s
in
let len = String.length s in
String.sub s 0 (min len max_size)
;;
let fun_p ?embed tag doc (stog, data) env ?loc atts subs =
let (id, atts) =
match XR.get_att_cdata atts ("", "id") with
Some s -> (s, atts)
| None ->
let id = create_id subs in
(id, XR.atts_one ~atts ("", "id") [XR.cdata id])
in
let set =
try Stog.Path.Map.find
doc.doc_path data.generated_by_doc
with Not_found -> Stog.Types.Str_set.empty
in
match Stog.Types.Str_set.mem id set with
true ->
raise XR.No_change
| false ->
let ((stog,data), xmls) = XR.apply_to_string (stog,data) env "<site-url/>" in
let base_url =
match xmls with
[XR.D s] -> s.Xtmpl.Types.text
| xml ->
let s = XR.to_string xml in
failwith (Xtmpl.Types.loc_sprintf loc "<site-url/> does not reduce to PCData but to %S" s)
in
let link =
XH.a ~class_:"paragraph-url" ~href:("#"^id)
[XH.img
~atts: (XR.atts_of_list
[ ("", "alt"), [XR.cdata ""] ;
("","src"), [XR.cdata (base_url^"/paragraph-url.png")] ;
])
[]
]
in
let set = Stog.Types.Str_set.add id set in
let generated_by_doc = Stog.Path.Map.add
doc.doc_path set data.generated_by_doc
in
let data = { data with generated_by_doc } in
let xml =
match embed with
None -> XR.node tag ~atts (link :: subs)
| Some str ->
let block_tag = Xtmpl.Xml.name_of_string str in
let block_atts = XR.atts_one ("","class") [XR.cdata "anchor-block"] in
XR.node block_tag ~atts: block_atts [ link; XR.node tag ~atts subs]
in
((stog, data), [xml])
;;
let tags_of_tag_spec map =
Smap.fold
(fun tag spec acc ->
match spec with
Link x -> (tag, x) :: acc
| Nolink -> acc
)
map []
let rules_auto_ids stog data doc_id =
let doc = Stog.Types.doc stog doc_id in
let handled_tags =
try
let spec = Smap.find doc.Stog.Types.doc_type data.auto_ids.by_type in
if spec.links then
if Smap.is_empty spec.tags then
tags_of_tag_spec data.auto_ids.default.tags
else
tags_of_tag_spec spec.tags
else
[]
with Not_found ->
if data.auto_ids.default.links then
tags_of_tag_spec data.auto_ids.default.tags
else
[]
in
let f ?embed tag (stog, data) env ?loc atts subs =
fun_p ?embed tag doc (stog, data) env atts subs
in
List.map
(fun (tag, embed) ->
let tag = Xtmpl.Xml.name_of_string tag in
(tag, f ?embed tag)
)
handled_tags
;;
let fun_level_auto_ids =
let f env (stog, data) docs =
Stog.Types.Doc_set.fold
(fun doc_id acc ->
let rules = rules_auto_ids stog data doc_id in
let env = XR.env_of_list ~env rules in
Stog.Engine.apply_stog_data_env_doc acc env doc_id
)
docs (stog, data)
in
Stog.Engine.Fun_stog_data f
;;
let level_funs =
[
"load-config", Stog.Engine.Fun_stog_data load_config ;
"init", fun_level_init ;
"notes", fun_level_notes ;
"bib", fun_level_bib ;
"auto-ids", fun_level_auto_ids ;
]
;;
let default_levels =
List.fold_left
(fun map (name, levels) -> Stog.Types.Str_map.add name levels map)
Stog.Types.Str_map.empty
[
"load-config", [ -2 ] ;
"init", [ -1 ] ;
"notes", [ 2 ] ;
"bib", [ 3 ] ;
"auto-ids", [ 4 ] ;
]
let make_engine ?levels () =
let levels = Stog.Html.mk_levels module_name level_funs default_levels ?levels () in
let module M =
struct
type data = wdata
let modul = {
Stog.Engine.mod_name = module_name ;
mod_levels = levels ;
mod_data = empty_data ;
}
type cache_data = {
bibs : Bibtex.entry list Smap.t ;
}
let cache_load _stog data doc t =
let path = doc.doc_path in
let bibs_by_path = Stog.Path.Map.add path t.bibs data.bibs_by_path in
let data = { data with bibs_by_path } in
Smap.fold
(fun _ entries data -> List.fold_left
(fun data e -> add_bib_entry data path e) data entries)
t.bibs data
let cache_store _stog data doc =
let path = doc.doc_path in
{
bibs = (try Stog.Path.Map.find path data.bibs_by_path with Not_found -> Smap.empty) ;
}
end
in
(module M : Stog.Engine.Module)
;;
let f stog =
let levels =
try Some (Stog.Types.Str_map.find module_name stog.Stog.Types.stog_levels)
with Not_found -> None
in
make_engine ?levels ()
;;
let () = Stog.Engine.register_module module_name f;;