]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/basic_ag/bagEnvironment.ml
Preparing for 0.5.9 release.
[helm.git] / helm / software / helena / src / 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 UH = U.UriHash
14 module L  = Log
15 module E  = Entity
16 module Z  = Bag
17
18 exception ObjectNotFound of Z.message
19
20 let hsize = 7000 
21 let env = UH.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 (ra, na, uri, b) =
34    let age = get_age () in
35    let entry = ra, {na with E.n_apix = age}, uri, b in
36    UH.add env uri entry; f entry
37
38 let get_entity f uri =
39    try f (UH.find env uri) with Not_found -> error uri