]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/xml/xmlLibrary.ml
- new attributes system
[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 module U = NUri
14 module C = Cps
15 module H = Hierarchy
16 module G = Options
17 module E = Entity
18 module N = Level
19 module Q = Ccs
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 n =
109    "level", N.to_string n
110
111 let meta a =
112    let map = function
113       | E.Main     -> "Main"
114       | E.InProp   -> "InProp"
115       | E.Progress -> "Progress"
116       | E.Private  -> "Private"
117    in
118    "meta", String.concat " " (List.rev_map map a.E.r_meta)
119
120 let arity l =
121    "arity", string_of_int (List.length l)
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
147
148 let prec_map (i, _) = string_of_int i
149
150 let next_map (_, i) = string_of_int i
151
152 let marks = function
153    | [] -> "mark", ""
154    | l  -> "mark", String.concat " " (List.rev_map string_of_int l)
155
156 let precs = function
157    | [] -> "prec", ""
158    | l  -> "prec", String.concat " " (List.rev_map prec_map l)
159
160 let nexts = function
161    | [] -> "next", ""
162    | l  -> "next", String.concat " " (List.rev_map next_map l)
163 (*
164 let export_csys s = 
165    let path = path_of_uri !G.xdir s.Q.buri in
166    let _ = Sys.command (Printf.sprintf "mkdir -p %s" path) in
167    let name = F.concat path (ccs_name ^ ext) in
168    let och = open_out name in
169    let out = output_string och in
170    xml out "1.0" "UTF-8"; doctype out ccs_root system;
171    let attrs = [xmlns; uri s.Q.buri] in
172    let contents out tab =
173       tag "ToPositive" [arity s.Q.tp; marks s.Q.tp] out tab;
174       tag "ToOne" [arity s.Q.t1; marks s.Q.t1] out tab;
175       tag "ToNext" [arity s.Q.tn; precs s.Q.tn; nexts s.Q.tn] out tab
176    in
177    tag ccs_root attrs ~contents out 0;
178    close_out och
179 *)