]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/basic_rg/brgUntrusted.ml
- simpler attribute system
[helm.git] / helm / software / helena / src / basic_rg / brgUntrusted.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 E  = Entity
15 module B  = Brg
16 module BE = BrgEnvironment
17 module BR = BrgReduction
18 module BT = BrgType
19 module BV = BrgValidity
20
21 (* Interface functions ******************************************************)
22
23 (* to share *)
24 let type_check err f st = function
25    | ra, na, uri, E.Abst t ->
26       let err msg = err (L.Uri uri :: msg) in
27       let f xt tt = 
28          let e = BE.set_entity (ra, na, uri, E.Abst xt) in f tt e
29       in
30       BT.type_of err f st BR.empty_rtm t
31    | ra, na, uri, E.Abbr t ->
32       let err msg = err (L.Uri uri :: msg) in
33       let f xt tt = 
34          let xt = match xt with
35             | B.Cast _ -> xt
36             | _        -> B.Cast (tt, xt)
37          in
38          let e = BE.set_entity (ra, na, uri, E.Abbr xt) in f tt e
39       in
40       BT.type_of err f st BR.empty_rtm t
41    | _, _, _, E.Void       -> assert false
42
43 let validate err f st e =
44    let uri, t = match e with
45       | _, _, uri, E.Abst t -> uri, t
46       | _, _, uri, E.Abbr t -> uri, t
47       | _, _, _,   E.Void   -> assert false
48    in
49    let err msg = err (L.Uri uri :: msg) in
50    let f () = let _ = BE.set_entity e in f () in
51    BV.validate err f st BR.empty_rtm t