]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_annotations/cicAnnotation2Xml.ml
Conjectures and Hypotheses inside every conjecture and in the sequents now
[helm.git] / helm / ocaml / cic_annotations / cicAnnotation2Xml.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 (*CSC codice cut & paste da cicPp e xmlcommand *)
27
28 exception NotImplemented;;
29
30 let dtdname = "http://www.cs.unibo.it/helm/dtd/annotations.dtd";;
31
32 let get_ann ids_to_annotations =
33  CicXPath.get_annotation ids_to_annotations
34 ;;
35
36 let print_ann i2a id =
37  let module X = Xml in
38   let ann = get_ann i2a id in
39    match ann with
40       None -> [<>]
41     | Some ann -> (X.xml_nempty "Annotation" ["of", id] (X.xml_cdata ann))
42 ;;
43
44 (*CSC ottimizzazione: al posto di curi cdepth (vedi codice) *)
45 (* It takes in input a hash table mapping ids to annotations, an annotated 
46 term, and gives back a Xml.token Stream.t representing the .ann file *)
47 let print_term i2a =
48  let rec aux =
49   let module C = Cic in
50   let module X = Xml in
51   let module U = UriManager in
52     function
53        C.ARel (id,_,_) -> print_ann i2a id
54      | C.AVar (id,_) -> print_ann i2a id
55      | C.AMeta (id,_,_) -> print_ann i2a id
56      | C.ASort (id,_) -> print_ann i2a id
57      | C.AImplicit _ -> raise NotImplemented
58      | C.AProd (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >]
59      | C.ACast (id,v,t) -> [< print_ann i2a id ; aux v ; aux t >]
60      | C.ALambda (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >]
61      | C.ALetIn (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >]
62      | C.AAppl (id,li) ->
63         [< print_ann i2a id ;
64            List.fold_right (fun x i -> [< (aux x) ; i >]) li [<>]
65         >]
66      | C.AConst (id,_,_) -> print_ann i2a id
67      | C.AAbst (id,_) -> raise NotImplemented
68      | C.AMutInd (id,_,_,_) -> print_ann i2a id
69      | C.AMutConstruct (id,_,_,_,_) -> print_ann i2a id
70      | C.AMutCase (id,_,_,_,ty,te,patterns) ->
71         [< print_ann i2a id ;
72            aux ty ;
73            aux te ;
74            List.fold_right
75             (fun x i -> [< aux x ; i>])
76             patterns [<>]
77         >]
78      | C.AFix (id,_,funs) ->
79         [< print_ann i2a id ;
80            List.fold_right
81             (fun (_,_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>]
82         >]
83      | C.ACoFix (id,no,funs) ->
84         [< print_ann i2a id ;
85            List.fold_right
86             (fun (_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>]
87         >]
88  in
89   aux
90 ;;
91
92 let print_mutual_inductive_type i2a (_,_,arity,constructors) =
93  [< print_term i2a arity ;
94     List.fold_right
95      (fun (name,ty,_) i -> [< print_term i2a ty ; i >]) constructors [<>]
96  >]
97 ;;
98
99 let pp_annotation obj i2a curi =
100  let module C = Cic in
101  let module X = Xml in
102   [< X.xml_cdata "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" ;
103      X.xml_cdata ("<!DOCTYPE Annotations SYSTEM \"" ^ dtdname ^ "\">\n\n") ;
104      X.xml_nempty "Annotations"
105       ["of", UriManager.string_of_uri (UriManager.cicuri_of_uri curi)]
106       begin
107        match obj with
108          C.ADefinition (xid, _, te, ty, _) ->
109           [< print_ann i2a xid ; print_term i2a te ; print_term i2a ty >]
110        | C.AAxiom (xid, _, ty, _) -> [< print_ann i2a xid ; print_term i2a ty >]
111        | C.AVariable (xid, _, bo, ty) ->
112           [< print_ann i2a xid ;
113              (match bo with
114                  None -> [<>]
115                | Some bo -> print_term i2a bo
116              ) ;
117              print_term i2a ty
118           >]
119        | C.ACurrentProof (xid, _, conjs, bo, ty) ->
120           [< print_ann i2a xid ;
121              List.fold_right
122               (fun (cid, _, context, t) i ->
123                 [< print_ann i2a cid ;
124                    List.fold_right
125                     (fun (hid,context_entry) i -> 
126                       [<print_ann i2a hid ;
127                         (match context_entry with
128                             Some (_,C.ADecl at) -> print_term i2a at
129                           | Some (_,C.ADef at) -> print_term i2a at
130                           | None -> [< >]
131                         ) ; i
132                        >]
133                     ) context [< >];
134                    print_term i2a t ; i
135                 >]
136               ) conjs [<>] ;
137              print_term i2a bo ;
138              print_term i2a ty
139           >]
140        | C.AInductiveDefinition (xid, tys, params, paramsno) ->
141           [< print_ann i2a xid ;
142              List.fold_right
143               (fun x i -> [< print_mutual_inductive_type i2a x ; i >])
144               tys [< >]
145           >]
146       end
147   >]
148 ;;
149
150
151