]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_annotations/cicAnnotation2Xml.ml
Initial revision
[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.AMutInd (id,_,_,_) -> print_ann i2a id
68      | C.AMutConstruct (id,_,_,_,_) -> print_ann i2a id
69      | C.AMutCase (id,_,_,_,ty,te,patterns) ->
70         [< print_ann i2a id ;
71            aux ty ;
72            aux te ;
73            List.fold_right
74             (fun x i -> [< aux x ; i>])
75             patterns [<>]
76         >]
77      | C.AFix (id,_,funs) ->
78         [< print_ann i2a id ;
79            List.fold_right
80             (fun (_,_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>]
81         >]
82      | C.ACoFix (id,no,funs) ->
83         [< print_ann i2a id ;
84            List.fold_right
85             (fun (_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>]
86         >]
87  in
88   aux
89 ;;
90
91 let print_mutual_inductive_type i2a (_,_,arity,constructors) =
92  [< print_term i2a arity ;
93     List.fold_right
94      (fun (name,ty,_) i -> [< print_term i2a ty ; i >]) constructors [<>]
95  >]
96 ;;
97
98 let pp_annotation obj i2a curi =
99  let module C = Cic in
100  let module X = Xml in
101   [< X.xml_cdata "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" ;
102      X.xml_cdata ("<!DOCTYPE Annotations SYSTEM \"" ^ dtdname ^ "\">\n\n") ;
103      X.xml_nempty "Annotations"
104       ["of", UriManager.string_of_uri (UriManager.cicuri_of_uri curi)]
105       begin
106        match obj with
107          C.ADefinition (xid, _, te, ty, _) ->
108           [< print_ann i2a xid ; print_term i2a te ; print_term i2a ty >]
109        | C.AAxiom (xid, _, ty, _) -> [< print_ann i2a xid ; print_term i2a ty >]
110        | C.AVariable (xid, _, bo, ty) ->
111           [< print_ann i2a xid ;
112              (match bo with
113                  None -> [<>]
114                | Some bo -> print_term i2a bo
115              ) ;
116              print_term i2a ty
117           >]
118        | C.ACurrentProof (xid, _, conjs, bo, ty) ->
119           [< print_ann i2a xid ;
120              List.fold_right
121               (fun (cid, _, context, t) i ->
122                 [< print_ann i2a cid ;
123                    List.fold_right
124                     (fun (hid,context_entry) i -> 
125                       [<print_ann i2a hid ;
126                         (match context_entry with
127                             Some (_,C.ADecl at) -> print_term i2a at
128                           | Some (_,C.ADef at) -> print_term i2a at
129                           | None -> [< >]
130                         ) ; i
131                        >]
132                     ) context [< >];
133                    print_term i2a t ; i
134                 >]
135               ) conjs [<>] ;
136              print_term i2a bo ;
137              print_term i2a ty
138           >]
139        | C.AInductiveDefinition (xid, tys, params, paramsno) ->
140           [< print_ann i2a xid ;
141              List.fold_right
142               (fun x i -> [< print_mutual_inductive_type i2a x ; i >])
143               tys [< >]
144           >]
145       end
146   >]
147 ;;
148
149
150