Read References field; referred by listing; test & tidy documentation

git-svn-id: file:///srv/svn/repo/kosuzu/trunk@39 eb64cd80-c68d-6f47-b6a3-0ada418499da
This commit is contained in:
fox
2022-12-12 22:52:55 +00:00
parent e6452a861d
commit 1547dc4d27
9 changed files with 108 additions and 38 deletions

View File

@@ -12,7 +12,7 @@ let random_state = Random.State.make_self_init
(*end*)
type t = string
let compare = String.compare
let compare = String.compare
let nil = ""
let short ?(len) id =

1
lib/reference_set.ml Normal file
View File

@@ -0,0 +1 @@
module Map = Map.Make(String)

View File

@@ -1,7 +1,12 @@
include Set.Make(String)
let list_of_csv x = Str.(split (regexp " *, *")) (String.trim x)
let of_string x = of_list (list_of_csv x)
let list_of_ssv x = Str.(split (regexp " +")) (String.trim x)
let of_string ?(separator=list_of_csv) x = of_list (separator x)
let of_csv_string x = of_string ~separator:list_of_csv x
let of_ssv_string x = of_string ~separator:list_of_ssv x
let to_string ?(pre="") ?(sep=", ") s =
let j a x = match a, x with "", _ -> x | _, "" -> a | _ -> a ^ sep ^ x in
fold (fun x acc -> j acc x) s pre

View File

@@ -25,8 +25,8 @@ let oldest a b = Date.(compare b.date a.date)
let str key m = try String_map.find (String.lowercase_ascii key) m.string_map with Not_found -> ""
let set key m = try String_map.find (String.lowercase_ascii key) m.stringset_map with Not_found -> String_set.empty
let str_set key m = String_set.to_string @@ set key m
let with_str_set m key str = { m with
stringset_map = String_map.add (String.lowercase_ascii key) (String_set.of_string str) m.stringset_map
let with_str_set ?(separator=String_set.of_csv_string) m key str = { m with
stringset_map = String_map.add (String.lowercase_ascii key) (separator str) m.stringset_map
}
let with_kv x (k,v) =
@@ -39,7 +39,11 @@ let with_kv x (k,v) =
| "authors" -> { x with authors = Person.Set.of_string (trim v)}
| "date" -> { x with date = Date.{ x.date with created = Date.of_string v }}
| "date-edited"-> { x with date = Date.{ x.date with edited = Date.of_string v }}
| "licences" | "topics" | "keywords" | "references" | "series" as k -> with_str_set x k v
| "licences" | "topics" | "keywords" | "series" as k -> with_str_set x k v
| "references" -> with_str_set
~separator:(fun x -> String_set.map (fun x -> String.(sub x 1 (length x-2)))
(String_set.of_ssv_string x))
x k v
| k -> { x with string_map = String_map.add k (trim v) x.string_map }
let kv_of_string line = match Str.(bounded_split (regexp ": *")) line 2 with