]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/common/entity.ml
ab99e24cd5641c0285e825cf858911c0127f0502
[helm.git] / helm / software / helena / src / common / entity.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 N = Layer
14
15 type uri = U.uri
16
17 type id = string (* identifier *)
18
19 type name = id * bool (* token, real? *)
20
21 type arity = int * int (* sort, degree *)
22
23 type meta = Main     (* main object *)
24           | InProp   (* inhabitant of a proposition *)
25           | Progress (* uncompleted object *)
26           | Private  (* private global definition *)
27
28 type node_attrs = {
29    n_apix: int; (* additional position index *)
30 }
31
32 type bind_attrs = {
33    b_name: name option; (* name *)
34    b_main: arity;       (* main arity *)
35    b_side: arity;       (* side arity *)
36 }
37
38 type root_attrs = {
39    r_meta: meta list;                (* metaliguistic classification *) 
40    r_info: (string * string) option; (* metaliguistic annotation: language (defaults to "en-US"), text *)
41 }
42
43 type 'term bind = Abst of 'term (* declaration: domain *)
44                 | Abbr of 'term (* definition: body    *)
45                 | Void          (* exclusion           *)
46
47 type 'term entity = root_attrs * node_attrs * uri * 'term bind (* attrs, uri, binder *)
48
49 (* helpers ******************************************************************)
50
51 let node_attrs ?(apix=0) () = {
52    n_apix = apix;
53 }
54
55 let bind_attrs ?name ?(main=(0,0)) ?(side=(0,0)) () = {
56    b_name = name; b_main = main; b_side = side;
57 }
58
59 let root_attrs ?(meta=[]) ?info () = {
60    r_meta = meta; r_info = info;
61 }
62
63 let empty_node = node_attrs ()
64
65 let empty_bind = bind_attrs ()
66
67 let empty_root = root_attrs ()
68
69 let common f (ra, na, u, _) = f ra na u
70
71 let succ (sort, degr) = sort, succ degr
72
73 let compose av at = {av with b_main = at.b_main}
74
75 let shift av = {av with b_side = av.b_main}
76
77 let rec name err f a = match a.b_name with
78    | Some (n, r) -> f n r
79    | None        -> err ()
80
81 let rec info err f a = match a.r_info with
82    | Some (lg, tx) -> f lg tx
83    | None          -> err ()
84
85 let xlate f xlate_term = function
86    | ra, na, uri, Abst t ->
87       let f t = f (ra, na, uri, Abst t) in xlate_term f t
88    | ra, na, uri, Abbr t ->
89       let f t = f (ra, na, uri, Abbr t) in xlate_term f t
90    | _, _, _, Void       ->
91       assert false