]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/xml/xmlLibrary.ml
- bug fix in the static disambiguation of unified binders
[helm.git] / helm / software / helena / src / xml / xmlLibrary.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.              
9      \ /   This software is distributed as is, NO WARRANTY.              
10       V_______________________________________________________________ *)
11
12 module F = Filename
13
14 module U = NUri
15 module C = Cps
16 module G = Options
17 module H = Hierarchy
18 module N = Level
19 module E = Entity
20
21 (* internal functions *******************************************************)
22
23 let base = "xml"
24
25 let ext = ".xml"
26
27 let obj_root = "ENTITY"
28
29 let ccs_name = "ccs.ldc"
30
31 let ccs_root = "CCS"
32
33 let home = "http://lambdadelta.info/"
34
35 let system = F.concat (F.concat home base) "ld.dtd"
36
37 let xmlns = "xmlns", home
38
39 let path_of_uri xdir uri =
40    let base = F.concat xdir base in 
41    F.concat base (Str.string_after (U.string_of_uri uri) 3)
42
43 (* interface functions ******************************************************)
44
45 type och = string -> unit
46
47 type attr = string * string
48
49 type pp = och -> int -> unit
50
51 let attribute out (name, contents) =
52    if contents <> "" then begin
53       out " "; out name; out "=\""; out contents; out "\""
54    end
55
56 let xml out version encoding =
57    out "<?xml";
58       attribute out ("version", version);
59       attribute out ("encoding", encoding);
60    out "?>\n\n"
61
62 let doctype out root system =
63    out "<!DOCTYPE "; out root; out " SYSTEM \""; out system; out "\">\n\n"
64
65 let tag tag attrs ?contents out indent =
66    let spc = String.make indent ' ' in
67    out spc; out "<"; out tag; List.iter (attribute out) attrs;
68    match contents with
69       | None      -> out "/>\n"
70       | Some cont -> 
71          out ">\n"; cont out (indent + 3); out spc; 
72          out "</"; out tag; out ">\n"
73
74 let sort = "Sort"
75
76 let lref = "LRef"
77
78 let gref = "GRef"
79
80 let cast = "Cast"
81
82 let appl = "Appl"
83
84 let proj = "Proj"
85
86 let abst = "Abst"
87
88 let abbr = "Abbr"
89
90 let void = "Void"
91
92 let position i =
93    "position", string_of_int i
94
95 let uri u =
96    "uri", U.string_of_uri u
97
98 let name a =
99    let err () = "name", "" in
100    let f n r = "name", if r then n else "-" ^ n in 
101    E.name err f a
102
103 let apix a =
104    let err () = "age", "" in
105    let f i = "age", string_of_int i in
106    E.apix err f a
107
108 let level st n =
109    "level", N.to_string st n
110
111 let degr a =
112    "degr", string_of_int a.E.n_degr
113
114 let meta a =
115    let map = function
116       | E.Main     -> "Main"
117       | E.InProp   -> "InProp"
118       | E.Progress -> "Progress"
119       | E.Private  -> "Private"
120    in
121    "meta", String.concat " " (List.rev_map map a.E.r_meta)
122
123 (* TODO: the string tx must be quoted *)
124 let info a =
125    let err () = ["lang", ""; "info", ""] in
126    let f lg tx = ["lang", lg; "info", tx] in
127    E.info err f a
128
129 let export_entity pp_term (ra, na, u, b) = 
130    let path = path_of_uri !G.xdir u in
131    let _ = Sys.command (Printf.sprintf "mkdir -p %s" (F.dirname path)) in
132    let och = open_out (path ^ ext) in
133    let out = output_string och in
134    xml out "1.0" "UTF-8"; doctype out obj_root system;
135    let na = {na with E.n_name = Some (U.name_of_uri u, true)} in
136    let attrs = uri u :: name na :: apix na :: meta ra :: info ra in 
137    let contents = match b with
138       | E.Abst w -> tag "GDec" attrs ~contents:(pp_term w) 
139       | E.Abbr v -> tag "GDef" attrs ~contents:(pp_term v)
140       | E.Void   -> assert false
141    in
142    let opts = if !G.si then "si" else "" in
143    let shp = H.string_of_graph () in
144    let attrs = [xmlns; "hierarchy", shp; "options", opts] in
145    tag obj_root attrs ~contents out 0;
146    close_out och