Source file io.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
(** *)
open Types;;
module XR = Xtmpl.Rewrite
let first_that_exists =
let rec iter = function
[] -> None
| (h,data) :: q ->
if Sys.file_exists h then
Some (h, data)
else iter q
in
iter
;;
let topics_of_string s =
List.map Stog_base.Misc.strip_string
(Stog_base.Misc.split_string s [','; ';'])
;;
let keywords_of_string = topics_of_string ;;
let sets_of_string = topics_of_string ;;
let bool_of_string s =
match String.lowercase_ascii s with
"0" | "false" -> false
| _ -> true
;;
let module_defs_of_xml =
let f acc xml =
match xml with
| XR.D _ | XR.C _ | XR.PI _-> acc
| XR.E { XR.name ; atts ; subs } ->
(name, atts, subs) :: acc
in
List.fold_left f []
;;
let module_requires_of_string str =
let l = Stog_base.Misc.split_string str [',' ; ';'] in
let l = List.map Stog_base.Misc.strip_string l in
let f acc = function
"" -> acc
| s -> Types.Str_set.add s acc
in
List.fold_left f Types.Str_set.empty l
;;
let read_module stog file =
let modname = Filename.chop_extension (Filename.basename file) in
let xmldoc = XR.doc_from_file file in
match xmldoc.XR.elements with
| [ XR.E { XR.name ; atts ; subs} ] ->
let mod_requires =
match XR.get_att_cdata atts ("","requires") with
None -> Types.Str_set.empty
| Some s -> module_requires_of_string s
in
let mod_defs = module_defs_of_xml subs in
let m = { mod_requires ; mod_defs } in
let modules = Types.Str_map.add modname m stog.stog_modules in
{ stog with stog_modules = modules }
| _ -> failwith "Only module files with only one xml node are supported by now."
let read_modules stog =
let f_dir stog mod_dir =
Log.info (fun m -> m "reading module directory %s" mod_dir);
if Sys.file_exists mod_dir then
(
let files = Find.find_list
Find.Stderr
[mod_dir]
[ Find.Type Unix.S_REG ; Find.Follow ;
Find.Regexp (Str.regexp ".*\\.stm$")
]
in
List.fold_left read_module stog files
)
else
stog
in
List.fold_left f_dir stog (List.rev stog.stog_mod_dirs)
;;
let used_mods_of_string set s =
let l = Stog_base.Misc.split_string s [';' ; ','] in
List.fold_left
(fun set s ->
match Stog_base.Misc.strip_string s with
"" -> set
| modname -> Types.Str_set.add modname set
)
set
l
;;
let stog doc =
let stog = { stog with stog_title = doc.doc_title } in
let rec iter (stog, defs) = function
[] -> (stog, defs)
| h:: q ->
let (stog, opt) =
match h with
| (("stog", "site-description"), _, xmls) -> { stog with stog_desc = xmls }, None
| (("stog", "site-url"), _, xmls) ->
{ stog with stog_base_url = Url.of_string (XR.to_string xmls) }, None
| (("stog", "site-email)"), _, xmls) -> { stog with stog_email = XR.to_string xmls }, None
| (("stog", "rss-length"), _,xmls) ->
{ stog with
stog_rss_length = int_of_string (XR.to_string xmls) },
None
| (("stog", "use"), _, xmls) ->
let s = XR.to_string xmls in
let stog = { stog with stog_used_mods = used_mods_of_string stog.stog_used_mods s } in
(stog, None)
| (("stog", name), args, body) ->
let stog = { stog with stog_defs = (("",name), args, body) :: stog.stog_defs } in
(stog, None)
| _ ->
(stog, Some h)
in
let defs = match opt with None -> defs | Some x -> h :: defs in
iter (stog, defs) q
in
let (stog, defs) = iter (stog, []) doc.doc_defs in
(stog, { doc with doc_defs = defs })
;;
let is_main =
let f doc att =
match List.find (fun (s,_,_) -> s = ("",att)) doc.doc_defs with
| exception Not_found -> None
| (_,_,[XR.D s]) -> Some (bool_of_string s.Xtmpl.Types.text)
| (_,_,xmls) -> Some false
in
fun doc ->
match f doc "main_" with
| Some b -> b
| None ->
match f doc "main" with
| None -> false
| Some b ->
Log.warn (fun m -> m
"File %S: main attribute is deprecated. Use main_ instead." doc.doc_src);
b
let add_doc stog doc =
let (stog, doc) =
let is_main = is_main doc in
if is_main then
begin
match stog.stog_main_doc with
Some id ->
let doc2 = Types.doc stog id in
failwith
(Printf.sprintf "%S: %S is already defined as main stog document"
doc.doc_src doc2.doc_src)
| None ->
extract_stog_info_from_doc stog doc
end
else
(stog, doc)
in
Types.add_doc stog doc
;;
let fill_doc_from_atts =
let to_s = function [XR.D s] -> s.Xtmpl.Types.text | _ -> "" in
let to_s_loc = function [XR.D s] -> (s.Xtmpl.Types.text, s.loc) | _ -> ("", None) in
let f name v doc =
match name with
| ("","with-contents")-> doc
| ("","title") -> { doc with doc_title = (to_s v) }
| ("","keywords") -> { doc with doc_keywords = keywords_of_string (to_s v) }
| ("","topics") -> { doc with doc_topics = topics_of_string (to_s v) }
| ("","date") ->
let (s, loc) = to_s_loc v in
{ doc with doc_date = Some (Date.of_string_date ?loc s) }
| ("","datetime") ->
let (s, loc) = to_s_loc v in
{ doc with doc_date = Some (Date.of_string ?loc s) }
| ("","sets") -> { doc with doc_sets = sets_of_string (to_s v) }
| ("","language-dep") -> { doc with doc_lang_dep = bool_of_string (to_s v) }
| ("", "use") ->
{ doc with doc_used_mods = used_mods_of_string doc.doc_used_mods (to_s v) }
| _ ->
let defs = (name, XR.atts_empty, v) :: doc.doc_defs in
{ doc with doc_defs = defs }
in
Xml.Name_map.fold f
;;
let fill_doc_from_nodes =
let f doc xml =
match xml with
| XR.D _ | XR.C _ | XR.PI _ -> doc
| XR.E { XR.name ; atts ; subs ; loc } ->
let v = XR.to_string subs in
match name with
| ("", "contents") -> { doc with doc_body = subs }
| ("", "title") -> { doc with doc_title = v }
| ("", "keywords") -> { doc with doc_keywords = keywords_of_string v }
| ("", "topics") -> { doc with doc_topics = topics_of_string v }
| ("", "date") -> { doc with doc_date = Some (Date.of_string_date ?loc v) }
| ("", "datetime") -> { doc with doc_date = Some (Date.of_string ?loc v) }
| ("", "sets") -> { doc with doc_sets = sets_of_string v }
| ("", "language-dep") -> { doc with doc_lang_dep = bool_of_string v }
| ("", "use") -> { doc with doc_used_mods = used_mods_of_string doc.doc_used_mods v }
| s -> { doc with doc_defs = (s, atts, subs) :: doc.doc_defs }
in
List.fold_left f
;;
let fill_doc_from_atts_and_subs doc atts subs =
let doc =
match XR.get_att_cdata atts ("","path") with
None -> doc
| Some s -> { doc with doc_path = Path.of_string s }
in
let doc = fill_doc_from_atts atts doc in
match XR.get_att_cdata atts ("", "with-contents") with
Some s when bool_of_string s ->
fill_doc_from_nodes doc subs
| _ ->
{ doc with doc_body = subs }
;;
let doc_of_file stog file =
let rel_file = Stog_base.Misc.path_under ~parent: stog.stog_dir file in
let path =
let s = "/" ^ rel_file in
Path.of_string s
in
Log.info (fun m ->m "reading document file %S" file);
let doc =
try XR.doc_from_file file
with Xtmpl.Types.Error e ->
failwith (Xtmpl.Types.string_of_error e)
in
let (typ, atts, subs) =
match List.rev (XR.upto_first_element doc.elements) with
| exception Not_found ->
failwith
(Printf.sprintf "File %S does not content an XML tree" file)
| (XR.E { XR.name = (_,tag) ; atts ; subs}) :: _ -> (tag, atts, subs)
| _ -> assert false
in
let doc = Types.make_doc ~path ~typ () in
let doc = { doc with doc_src = rel_file } in
fill_doc_from_atts_and_subs doc atts subs
;;
let read_files cfg stog dir =
let stog_cfg_dir = Config.config_dir dir in
let on_error (e,s1,s2) =
let msg = Printf.sprintf "%s: %s %s" (Unix.error_message e) s1 s2 in
Log.err (fun m -> m "Io.read_files: %s" msg)
in
let pred_ign =
let make_pred re =
let re = Str.regexp re in
fun s -> Str.string_match re s 0
in
let preds = List.map make_pred cfg.Config.ignored in
fun entry ->
entry <> stog_cfg_dir &&
(let base = Filename.basename entry in base <> "." && base <> "..") &&
(
let k = (Unix.stat entry).Unix.st_kind in
match k with
Unix.S_REG | Unix.S_DIR -> not (List.exists (fun f -> f entry) preds)
| _ -> false
)
in
let pred_doc =
let make_pred s_re =
let re = Str.regexp s_re in
fun s -> Str.string_match re s 0
in
let preds_ok = List.map make_pred cfg.Config.documents in
let preds_ko = List.map make_pred cfg.Config.not_documents in
fun entry ->
let result =
(List.exists (fun f -> f entry) preds_ok) &&
not (List.exists (fun f -> f entry) preds_ko)
in
Log.debug
(fun m -> m "File %S %s be processed."
entry (if result then "will" else "will not"));
result
in
let is_dir file = (Unix.stat file).Unix.st_kind = Unix.S_DIR in
let rec iter stog dir =
let entries =
Find.find_list
(Find.Custom on_error)
[dir]
([ Find.Maxdepth 1 ;
Find.Predicate pred_ign ;
] @
(if cfg.Config.follow_symlinks then [Find.Follow] else [])
)
in
let entries = List.filter ((<>) dir) entries in
let (dirs, files) = List.partition is_dir entries in
let (doc_files, files) = List.partition pred_doc files in
let files = List.map Filename.basename files in
let files = List.fold_right Str_set.add files Str_set.empty in
let docs = List.map (doc_of_file stog) doc_files in
let stog = List.fold_left add_doc stog docs in
let (stog, dirs) = List.fold_left
(fun (stog, map) dir ->
let base = Filename.basename dir in
let (stog, tree) = iter stog dir in
(stog, Str_map.add base tree map)
)
(stog, Str_map.empty)
dirs
in
let tree = { files ; dirs } in
(stog, tree)
in
let (stog, tree) = iter stog dir in
{ stog with stog_files = tree }
;;
let read_stog dir =
let len_dir_sep = String.length Filename.dir_sep in
let rec remove_ending_sep s =
let len = String.length s in
if len <= 0 then failwith (Printf.sprintf "Invalid directory %S" dir);
if len <= len_dir_sep then
s
else
(
if String.sub s (len - len_dir_sep) len_dir_sep = Filename.dir_sep then
remove_ending_sep (String.sub s 0 (len - len_dir_sep))
else
s
)
in
let dir = remove_ending_sep dir in
let stog = Types.create_stog dir in
let cfg = Config.read_config dir in
let stog = read_files cfg stog dir in
let stog = read_modules stog in
let stog =
let levels = List.fold_left
(fun map { Config.module_name; levels } ->
Types.Str_map.add module_name levels map)
stog.stog_levels cfg.Config.levels
in
{ stog with stog_levels = levels }
in
stog
;;