]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/basic_ag/bagEnvironment.ml
3f2b5534d96aa601d57b8db00399ec0ccb88e79a
[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 G  = Options
16 module E  = Entity
17 module Z  = Bag
18
19 exception ObjectNotFound of Z.message
20
21 let hsize = 7000
22 let env = UH.create hsize
23
24 (* Internal functions *******************************************************)
25
26 let error uri = raise (ObjectNotFound (L.items1 (U.string_of_uri uri)))
27
28 (* Interface functions ******************************************************)
29
30 let set_entity f entity =
31 IFDEF EXPAND THEN
32    let ra, na, uri, b = entity in
33    let entity0 = if !G.expand then ra, E.node_attrs ~apix:0 (), uri, b else entity in
34    UH.add env uri entity0; f entity
35 ELSE
36    let _, _, uri, _ = entity in
37    UH.add env uri entity; f entity
38 END
39
40 let get_entity f uri =
41    try f (UH.find env uri) with Not_found -> error uri