1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
(* TyXML
* http://www.ocsigen.org/tyxml
* Copyright (C) 2008 Vincent Balat, Mauricio Fernandez
* Copyright (C) 2011 Pierre Chambart, Grégoire Henry
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02111-1307, USA.
*)
let is_control c =
let cc = Char.code c in
(cc <= 8 || cc = 11 || cc = 12 || (14 <= cc && cc <= 31) || cc = 127)
let encode_unsafe_char s =
let b = Buffer.create (String.length s) in
String.iter (function
| '<' -> Buffer.add_string b "<"
| '>' -> Buffer.add_string b ">"
| '"' -> Buffer.add_string b """
| '&' -> Buffer.add_string b "&"
| c when is_control c ->
Buffer.add_string b ("&#" ^ string_of_int (Char.code c) ^ ";")
| c -> Buffer.add_char b c) s;
Buffer.contents b
let encode_unsafe_char_and_at s =
let b = Buffer.create (String.length s) in
String.iter (function
| '<' -> Buffer.add_string b "<"
| '>' -> Buffer.add_string b ">"
| '"' -> Buffer.add_string b """
| '&' -> Buffer.add_string b "&"
| '@' -> Buffer.add_string b "@"
| c when is_control c ->
Buffer.add_string b ("&#" ^ string_of_int (Char.code c) ^ ";")
| c -> Buffer.add_char b c) s;
Buffer.contents b
let compose_decl ?(version = "1.0") ?(encoding = "UTF-8") () =
"<?xml version=\"" ^ version ^ "\" encoding=\"" ^ encoding ^ "\"?>\n"
let compose_doctype dt args =
"<!DOCTYPE " ^ dt
^ (if args = []
then ""
else
" PUBLIC " ^
String.concat " " (List.map (fun a -> "\"" ^ a ^ "\"") args)) ^ ">"
module Make(Xml : Xml_sigs.Iterable)(F : sig val emptytags : string list end)(O : Xml_sigs.Output) = struct
let (++) = O.concat
open Xml
let separator_to_string = function
| Space -> " "
| Comma -> ", "
let attrib_value_to_string encode a = match acontent a with
| AFloat f -> Printf.sprintf "\"%e\"" f
| AInt i -> Printf.sprintf "\"%d\"" i
| AStr s -> Printf.sprintf "\"%s\"" (encode s)
| AStrL (sep, slist) ->
Printf.sprintf "\"%s\""
(encode (String.concat (separator_to_string sep) slist))
let attrib_to_string encode a =
Printf.sprintf "%s=%s" (aname a) (attrib_value_to_string encode a)
let rec xh_print_attrs encode attrs = match attrs with
| [] -> O.empty
| attr::queue ->
O.put (" "^ attrib_to_string encode attr)
++ xh_print_attrs encode queue
and xh_print_text texte = O.put texte
and xh_print_closedtag encode tag attrs =
if F.emptytags = [] || List.mem tag F.emptytags
then
(O.put ("<"^tag)
++ xh_print_attrs encode attrs
++ O.put " />")
else
(O.put ("<"^tag)
++ xh_print_attrs encode attrs
++ O.put ("></"^tag^">"))
and xh_print_tag encode tag attrs taglist =
if taglist = []
then xh_print_closedtag encode tag attrs
else
(O.put ("<"^tag)
++ xh_print_attrs encode attrs
++ O.put ">"
++ xh_print_taglist encode taglist
++ O.put ("</"^tag^">"))
and print_nodes encode name xh_attrs xh_taglist queue =
xh_print_tag encode name xh_attrs xh_taglist
++ xh_print_taglist encode queue
and xh_print_taglist encode taglist =
match taglist with
| [] -> O.empty
| elt :: queue -> match content elt with
| Comment texte ->
O.put ("<!--"^(encode texte)^"-->")
++ xh_print_taglist encode queue
| Entity e ->
O.put ("&"^e^";") (* no encoding *)
++ xh_print_taglist encode queue
| PCDATA texte ->
O.put (encode texte)
++ xh_print_taglist encode queue
| EncodedPCDATA texte ->
O.put texte
++ xh_print_taglist encode queue
| Node (name, xh_attrs, xh_taglist) ->
print_nodes encode name xh_attrs xh_taglist queue
| Leaf (name, xh_attrs) ->
print_nodes encode name xh_attrs [] queue
| Empty ->
xh_print_taglist encode queue
let print_list ?(encode = encode_unsafe_char) foret =
O.make (xh_print_taglist encode foret)
end
module Make_typed(Xml : Xml_sigs.Iterable)
(Typed_xml : Xml_sigs.Iterable_typed_xml with module Xml := Xml)
(O : Xml_sigs.Output) = struct
module P = Make(Xml)(Typed_xml.Info)(O)
let (++) = O.concat
let print_list ?(encode = encode_unsafe_char) foret =
O.make (P.xh_print_taglist encode (List.map Typed_xml.toelt foret))
let print ?(encode = encode_unsafe_char) ?(advert = "") doc =
let doc = Typed_xml.doc_toelt doc in
let doc = match Xml.content doc with
| Xml.Node (n, a, c) ->
let a =
if List.exists (fun a -> Xml.aname a = "xmlns") a
then a
else Xml.string_attrib "xmlns" Typed_xml.Info.namespace :: a
in
Xml.node ~a n c
| _ -> doc in
O.make
(O.put Typed_xml.Info.doctype
++ O.put (if advert <> "" then ("<!-- " ^ advert ^ " -->\n") else "\n")
++ P.xh_print_taglist encode [doc])
end
module Simple_output(M : sig val put: string -> unit end) = struct
type out = unit
type m = unit -> unit
let empty () = ()
let concat f1 f2 () = f1 (); f2 ()
let put s () = M.put s
let make f = f ()
end
module Make_simple(Xml : Xml_sigs.Iterable)(I : sig val emptytags : string list end) = struct
type elt = Xml.elt
type out = unit
let print_list ~output =
let module M = Make(Xml)(I)(Simple_output(struct let put = output end)) in
M.print_list
end
module Make_typed_simple(Xml : Xml_sigs.Iterable)
(Typed_xml : Xml_sigs.Typed_xml with module Xml := Xml) = struct
type out = unit
type 'a elt = 'a Typed_xml.elt
type doc = Typed_xml.doc
let print_list ~output =
let module M = Make_typed(Xml)(Typed_xml)(Simple_output(struct let put = output end)) in
M.print_list
let print ~output =
let module M = Make_typed(Xml)(Typed_xml)(Simple_output(struct let put = output end)) in
M.print
end
|