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