1 (* Copyright (C) 2000, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
26 (******************************************************************************)
30 (* A tactic to print Coq objects in XML *)
32 (* Claudio Sacerdoti Coen <sacerdot@cs.unibo.it> *)
35 (* This module defines a pretty-printer and the stream of commands to the pp *)
37 (******************************************************************************)
42 (* the type token for XML cdata, empty elements and not-empty elements *)
45 (* Empty (prefix, element_name, *)
46 (* [prefix1, attrname1, value1 ; ... ; prefixn, attrnamen, valuen] *)
47 (* NEmpty (prefix, element_name, *)
48 (* [prefix1, attrname1, value1 ; ... ; prefixn, attrnamen, valuen], *)
52 | Empty of string option * string * (string option * string * string) list
53 | NEmpty of string option * string * (string option * string * string) list *
57 (* currified versions of the constructors make the code more readable *)
58 let xml_empty ?prefix name attrs =
59 [< 'Empty(prefix,name,attrs) >]
60 let xml_nempty ?prefix name attrs content =
61 [< 'NEmpty(prefix,name,attrs,content) >]
65 (** low level for other PPs: pretty print each token of strm applying 'f' to a
66 canonical string representation of each token *)
71 | Some p -> p ^ ":" in
78 | [< 'Empty(p,n,l) ; s >] ->
80 f ("<" ^ (pprefix p) ^ n) ;
81 List.iter (fun (p,n,v) -> f (" " ^ (pprefix p) ^ n ^ "=\"" ^ v ^ "\"")) l;
84 | [< 'NEmpty(p,n,l,c) ; s >] ->
86 f ("<" ^ (pprefix p) ^ n) ;
87 List.iter (fun (p,n,v) -> f (" " ^ (pprefix p) ^ n ^ "=\"" ^ v ^ "\"")) l;
91 f ("</" ^ (pprefix p) ^ n ^ ">\n") ;
95 for i = 1 to m do f " " done
100 (** pretty printer on output channels *)
101 let pp_to_outchan strm oc =
102 pp_gen (fun s -> output_string oc s) strm;
106 let pp_to_gzipchan strm oc =
107 pp_gen (fun s -> Gzip.output oc s 0 (String.length s)) strm
110 (** pretty printer to string *)
111 let pp_to_string strm =
112 let buf = Buffer.create 10240 in
113 pp_gen (Buffer.add_string buf) strm;
117 (** pretty printer to file *)
119 (* pp tokens None pretty prints the output on stdout *)
120 (* pp tokens (Some filename) pretty prints the output on the file filename *)
121 let pp ?(gzip=false) strm fn =
125 let outchan = Gzip.open_out filename in
127 pp_to_gzipchan strm outchan;
129 Gzip.close_out outchan;
131 Gzip.close_out outchan
132 | None -> failwith "Can't sent gzipped output to stdout"
136 let outchan = open_out filename in
138 pp_to_outchan strm outchan;
143 | None -> pp_to_outchan strm stdout
147 let profiler = HExtlib.profile "Xml.pp" in
149 profiler.HExtlib.profile (pp ?gzip strm) fn
152 let add_xml_declaration stream =
153 let box_prefix = "b" in
155 xml_cdata "<?xml version=\"1.0\" ?>\n" ;
157 xml_nempty ~prefix:box_prefix "box"
158 [ Some "xmlns","m","http://www.w3.org/1998/Math/MathML" ;
159 Some "xmlns","b","http://helm.cs.unibo.it/2003/BoxML" ;
160 Some "xmlns","helm","http://www.cs.unibo.it/helm" ;
161 Some "xmlns","xlink","http://www.w3.org/1999/xlink"
165 (* TODO BRRRRR .... *)
166 (** strip first 4 line of a string, used to strip xml declaration and doctype
167 declaration from XML strings generated by Xml.pp_to_string *)
168 let strip_xml_headings s =
171 then String.sub s pos (String.length s - pos)
172 else aux (n - 1) (String.index_from s pos '\n' + 1)