]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/basic_ag/bagEnvironment.ml
Additional contribs.
[helm.git] / helm / software / lambda-delta / basic_ag / bagEnvironment.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 L = Log
14 module H = U.UriHash
15 module Y = Entity
16 module B = Bag
17
18 exception ObjectNotFound of B.message
19
20 let hsize = 7000 
21 let env = H.create hsize
22
23 (* Internal functions *******************************************************)
24
25 let get_age = 
26    let age = ref 0 in
27    fun () -> incr age; !age
28
29 let error uri = raise (ObjectNotFound (L.items1 (U.string_of_uri uri)))
30
31 (* Interface functions ******************************************************)
32
33 let set_entity f (a, uri, b) =
34    let age = get_age () in
35    let entry = (Y.Apix age :: a), uri, b in
36    H.add env uri entry; f entry
37
38 let get_entity f uri =
39    try f (H.find env uri) with Not_found -> error uri