]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicLibrary.ml
Library factorized out.
[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 exception ObjectNotFound of string Lazy.t
13
14 let cache = NUri.UriHash.create 313;;
15
16 let get_obj u =
17   try NUri.UriHash.find cache u
18   with Not_found ->
19     (* in the final implementation should get it from disk *)
20     let ouri = NUri.ouri_of_nuri u in
21     let o,_ = CicEnvironment.get_obj CicUniv.oblivion_ugraph ouri in
22     let l = OCic2NCic.convert_obj ouri o in
23     List.iter (fun (u,_,_,_,_ as o) -> 
24 (*       prerr_endline ("+"^NUri.string_of_uri u);  *)
25       NUri.UriHash.add cache u o) l;
26     HExtlib.list_last l
27 ;;