]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/automath/autCrg.ml
level disambiguation cmpleted! the Grafite file is succesfully generated.
[helm.git] / helm / software / helena / src / automath / autCrg.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 U  = NUri
13 module UH = U.UriHash
14 module C  = Cps
15 module G  = Options
16 module N  = Level
17 module E  = Entity
18 module S  = Status
19 module A  = Aut
20 module D  = Crg
21
22 (* qualified identifier: uri, name, qualifiers *)
23 type qid = D.uri * D.id * D.id list
24
25 type context_node = qid option (* context node: None = root *)
26
27 type status = {
28    path: D.id list;          (* current section path *) 
29    node: context_node;       (* current context node *)
30    nodes: context_node list; (* context node list *)
31    line: int;                (* line number *)
32    mk_uri: G.uri_generator;  (* uri generator *)
33 }
34
35 let henv_size, hcnt_size = 7000, 4300 (* hash tables initial sizes *)
36
37 let henv = UH.create henv_size (* optimized global environment *)
38
39 let hcnt = UH.create hcnt_size (* optimized context *)
40
41 (* Internal functions *******************************************************)
42
43 let empty_cnt = D.empty_lenv
44
45 let alpha id =
46    if id.[0] >= '0' && id.[0] <= '9' then !G.alpha ^ id else id
47
48 let add_abst cnt id d w =
49    let id = if !G.alpha <> "" then alpha id else id in
50    let a = E.node_attrs ~name:(id, true) ~degr:(succ d) () in 
51    D.EBind (cnt, a, D.Abst (N.two, w)) 
52
53 let mk_lref f a i = f a.E.n_degr (D.TLRef (E.empty_node, i))
54
55 let id_of_name (id, _, _) =
56    if !G.alpha <> "" then alpha id else id
57
58 let mk_qid f lst id path =
59    let str = String.concat "/" path in
60    let str = Filename.concat str id in 
61    let str = lst.mk_uri str in
62    f (U.uri_of_string str, id, path)
63
64 let uri_of_qid (uri, _, _) = uri
65
66 let complete_qid f lst (id, is_local, qs) =
67    let f path = C.list_rev_append (mk_qid f lst id) path ~tail:qs in
68    let rec skip f = function
69       | phd :: ptl, qshd :: _ when phd = qshd -> f ptl
70       | _ :: ptl, _ :: _                      -> skip f (ptl, qs)
71       | _                                     -> f []
72    in
73    if is_local then f lst.path else skip f (lst.path, qs)
74
75 let relax_qid f lst (_, id, path) =
76    let f = function
77       | _ :: tl -> C.list_rev (mk_qid f lst id) tl
78       | []      -> assert false
79    in
80    C.list_rev f path
81
82 let relax_opt_qid f lst = function
83    | None     -> f None
84    | Some qid -> let f qid = f (Some qid) in relax_qid f lst qid
85
86 let resolve_gref err f lst qid =
87    try let a, cnt = UH.find henv (uri_of_qid qid) in f qid a cnt
88    with Not_found -> err qid
89
90 let resolve_gref_relaxed f lst qid =
91 (* this is not tail recursive *)   
92    let rec err qid = relax_qid (resolve_gref err f lst) lst qid in
93    resolve_gref err f lst qid
94
95 let get_cnt err f lst = function
96    | None             -> f empty_cnt
97    | Some qid as node ->
98       try let cnt = UH.find hcnt (uri_of_qid qid) in f cnt
99       with Not_found -> err node
100
101 let get_cnt_relaxed f lst =
102 (* this is not tail recursive *)   
103    let rec err node = relax_opt_qid (get_cnt err f lst) lst node in
104    get_cnt err f lst lst.node
105
106 let push_abst f a w lenv =
107    let bw = D.Abst (N.infinite, w) in
108    D.push_bind f a bw lenv
109
110 let add_proj e t = match e with
111    | D.ESort                 -> t
112    | D.EBind (D.ESort, a, b) -> D.TBind (a, b, t) 
113    | _                       -> D.TProj (E.empty_node, e, t)
114
115 (* this is not tail recursive in the GRef branch *)
116 let rec xlate_term f st lst y lenv = function
117    | A.Sort s            ->
118       let f h = f 0 (D.TSort (E.empty_node, h)) in
119       if s then f 0 else f 1
120    | A.Appl (v, t)       ->
121       let f vv d tt = f d (D.TAppl (E.empty_node, vv, tt)) in
122       let f _ vv = xlate_term (f vv) st lst y lenv t in
123       xlate_term f st lst false lenv v
124    | A.Abst (name, w, t) ->
125       let name = if !G.alpha <> "" then alpha name else name in
126       let f dw ww = 
127          let a = E.node_attrs ~name:(name, true) () in
128          let f dt tt =
129 (*          let a = {a with E.n_degr = dt} in *)
130             let l = if !G.cc then match y, dt with
131                | true, _ -> N.one
132                | _   , 0 -> N.one
133                | _   , 1 -> N.unknown st.S.lenv
134                | _   , 2 -> N.two
135                | _       -> assert false
136                else N.infinite
137             in
138             let b = D.Abst (l, ww) in
139             f dt (D.TBind (a, b, tt))
140          in
141          let f lenv = xlate_term f st lst y lenv t in
142          push_abst f {a with E.n_degr = succ dw} ww lenv
143       in
144       xlate_term f st lst true lenv w
145    | A.GRef (name, args) ->
146       let map1 args (id, _) = A.GRef ((id, true, []), []) :: args in
147       let map2 f arg args = 
148          let f _ arg = f (D.EAppl (args, E.empty_node, arg)) in 
149          xlate_term f st lst false lenv arg
150       in
151       let g qid a cnt =
152          let gref = D.TGRef (a, uri_of_qid qid) in
153          if cnt = D.ESort then f a.E.n_degr gref else
154          let f = function 
155             | D.EAppl (D.ESort, b, v) -> f a.E.n_degr (D.TAppl (b, v, gref))
156             | args                    -> f a.E.n_degr (D.TProj (E.empty_node, args, gref))
157          in
158          let f args = C.list_fold_right f map2 args D.ESort in
159          D.sub_list_strict (D.fold_names f map1 args) cnt args
160       in
161       let g qid = resolve_gref_relaxed g lst qid in
162       let err () = complete_qid g lst name in
163       D.resolve_lref err (mk_lref f) (id_of_name name) lenv
164
165 let xlate_entity err f st lst = function
166    | A.Section (Some (_, name))     ->
167       err {lst with path = name :: lst.path; nodes = lst.node :: lst.nodes}
168    | A.Section None            ->
169       begin match lst.path, lst.nodes with
170          | _ :: ptl, nhd :: ntl -> 
171             err {lst with path = ptl; node = nhd; nodes = ntl}
172          | _                    -> assert false
173       end
174    | A.Context None            ->
175       err {lst with node = None}
176    | A.Context (Some name)     ->
177       let f name = err {lst with node = Some name} in
178       complete_qid f lst name 
179    | A.Block (name, w)         ->
180       let f qid = 
181          let f cnt =
182             let f d ww = 
183                UH.add hcnt (uri_of_qid qid) (add_abst cnt name d ww);
184                err {lst with node = Some qid}
185             in
186             xlate_term f st lst true cnt w
187          in
188          get_cnt_relaxed f lst
189       in
190       complete_qid f lst (name, true, [])
191    | A.Decl (name, w)          ->
192       let f lenv =
193          let f qid = 
194             let f d ww =
195                let a = E.node_attrs ~apix:lst.line ~degr:(succ d) () in
196                UH.add henv (uri_of_qid qid) (a, lenv);
197                let t = add_proj lenv ww in
198 (*
199             print_newline (); CrgOutput.pp_term print_string t;
200 *)
201                let b = E.Abst t in
202                let entity = E.empty_root, a, uri_of_qid qid, b in
203                f {lst with line = succ lst.line} entity
204             in
205             xlate_term f st lst true lenv w
206          in
207          complete_qid f lst (name, true, [])
208       in
209       get_cnt_relaxed (D.sta f) lst
210    | A.Def (name, w, trans, v) ->
211       let f lenv =
212          let f qid = 
213             let f _ ww =
214                let f d vv =
215                   let na = E.node_attrs ~apix:lst.line ~degr:d () in
216                   UH.add henv (uri_of_qid qid) (na, lenv);
217                   let t = add_proj lenv (D.TCast (E.empty_node, ww, vv)) in
218 (*
219             print_newline (); CrgOutput.pp_term print_string t;
220 *)
221                   let b = E.Abbr t in
222                   let ra = if trans then E.empty_root else E.root_attrs ~meta:[E.Private] () in
223                   let entity = ra, na, uri_of_qid qid, b in
224                   f {lst with line = succ lst.line} entity
225                in
226                xlate_term f st lst false lenv v
227             in
228             xlate_term f st lst true lenv w
229          in
230          complete_qid f lst (name, true, [])
231       in
232       get_cnt_relaxed f lst
233
234 (* Interface functions ******************************************************)
235
236 let initial_status () =
237    UH.clear henv; UH.clear hcnt; {
238    path = []; node = None; nodes = []; line = 1; mk_uri = G.get_mk_uri ();
239 }
240
241 let refresh_status lst = {lst with
242    mk_uri = G.get_mk_uri ()
243 }
244
245 let crg_of_aut = xlate_entity