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