]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicLibrary.ml
Lookup_in_library implemented for new objects. Basically, this stupid (??),
[helm.git] / helm / software / components / ng_kernel / nCicLibrary.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 (* $Id$ *)
13
14 exception ObjectNotFound of string Lazy.t
15
16 let storage = ref [];;
17
18 let aliases = ref [];;
19
20 let resolve name =
21  try
22   HExtlib.filter_map
23    (fun (name',nref) -> if name'=name then Some nref else None) !aliases
24  with
25   Not_found -> raise (ObjectNotFound (lazy name))
26 ;;
27
28 let add_obj u obj =
29  storage := (u,obj)::!storage;
30   let _,height,_,_,obj = obj in
31   let references =
32    match obj with
33       NCic.Constant (_,name,None,_,_) ->
34        [name,NReference.reference_of_spec u NReference.Decl]
35     | NCic.Constant (_,name,Some _,_,_) ->
36        [name,NReference.reference_of_spec u (NReference.Def height)]
37     | NCic.Fixpoint (is_ind,fl,_) ->
38        HExtlib.list_mapi
39         (fun (_,name,recno,_,_) i ->
40           if is_ind then
41            name,NReference.reference_of_spec u (NReference.Fix(i,recno,height))
42           else
43            name,NReference.reference_of_spec u (NReference.CoFix i)) fl
44     | NCic.Inductive (inductive,leftno,il,_) ->
45        List.flatten
46         (HExtlib.list_mapi
47          (fun (_,iname,_,cl) i ->
48            HExtlib.list_mapi
49             (fun (_,cname,_) j->
50               cname,NReference.reference_of_spec u (NReference.Con (i,j,leftno))
51             ) cl @
52            [iname,
53              NReference.reference_of_spec u
54               (NReference.Ind (inductive,i,leftno))]
55          ) il)
56   in
57    aliases := references @ !aliases
58 ;;
59
60 let cache = NUri.UriHash.create 313;;
61
62 let get_obj u =
63  try List.assq u !storage
64  with Not_found ->
65   try NUri.UriHash.find cache u
66   with Not_found ->
67     (* in the final implementation should get it from disk *)
68     let ouri = NCic2OCic.ouri_of_nuri u in
69     try
70       let o,_ = CicEnvironment.get_obj CicUniv.oblivion_ugraph ouri in
71       let l = OCic2NCic.convert_obj ouri o in
72       List.iter (fun (u,_,_,_,_ as o) -> 
73   (*       prerr_endline ("+"^NUri.string_of_uri u);  *)
74         NUri.UriHash.add cache u o) l;
75       HExtlib.list_last l
76     with CicEnvironment.Object_not_found u -> 
77       raise (ObjectNotFound 
78                (lazy (NUri.string_of_uri (OCic2NCic.nuri_of_ouri u))))
79 ;;
80
81 let clear_cache () = NUri.UriHash.clear cache;;