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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
(**************************************************************************)
(* The CDuce compiler *)
(* Alain Frisch <Alain.Frisch@inria.fr> and the CDuce team *)
(* Copyright CNRS,INRIA, 2003,2004,2005,2006,2007 (see LICENSE for details) *)
(**************************************************************************)
(* TODO:
special treatment of prefixes xml and xmlns.
Disallow: namespace xml="..."
*)
module U = Encodings.Utf8
let empty_str = U.mk ""
let split_qname s =
let s = U.get_str s in
try
let i = String.rindex s ':' in
let ns = String.sub s 0 i in
let s = String.sub s (i + 1) (String.length s - i - 1) in
(ns,U.mk s)
with Not_found ->
("",U.mk s)
let form_qname ns local =
let ns' = U.get_str ns and local' = U.get_str local in
if ns' = "" then local else U.mk (ns' ^ ":" ^ local')
module Uri = struct
include Upool.Make(U)
let print ppf x = U.print ppf (value x)
end
let empty = Uri.mk empty_str
let xml_ns_str = "http://www.w3.org/XML/1998/namespace"
let xml_ns = Uri.mk (U.mk xml_ns_str)
let xsd_ns = Uri.mk (U.mk "http://www.w3.org/2001/XMLSchema")
let xsi_ns = Uri.mk (U.mk "http://www.w3.org/2001/XMLSchema-instance")
module Table = Map.Make(U)
type table = Uri.t Table.t
(* Tables prefix->uri *)
let mktbl = List.fold_left (fun table (pr,ns) -> Table.add (U.mk pr) ns table)
let empty_table = mktbl Table.empty ["", empty; "xml", xml_ns]
let def_table = mktbl empty_table ["xsd", xsd_ns; "xsi", xsi_ns]
let mk_table =
List.fold_left (fun table (pr,ns) -> Table.add pr ns table) empty_table
let get_table table =
Table.fold
(fun prefix ns r ->
let std =
try Uri.equal (Table.find prefix empty_table) ns
with Not_found -> false in
if std then r else (prefix,ns)::r) table []
(* TODO: avoid re-inserting the same hint for the same
namespace ==> otherwise memory leak with load_xml ... *)
let global_hints = Hashtbl.create 63
module Printer = struct
(* TODO: detect the case when there is no unqualified tag.
In this case, it is possible to use a default namespace for
the whole document... *)
type slot = Hint of U.t list | Set of U.t
module H = Hashtbl.Make(Uri)
type printer = {
ns_to_prefix : slot ref H.t;
mutable prefixes : (U.t * Uri.t) list;
table : table;
mutable hints : U.t list;
mutable counter : int;
}
let get_prefix p ns =
try H.find p.ns_to_prefix ns
with Not_found ->
let r = ref (Hint []) in
H.add p.ns_to_prefix ns r;
r
let printer table =
let p =
{ ns_to_prefix = H.create 63;
prefixes = [];
table = table;
hints = [];
counter = 0
} in
H.add p.ns_to_prefix empty (ref (Set empty_str));
Table.iter
(fun pr ns ->
if (U.get_str pr <> "") && not (Uri.equal empty ns) then
match get_prefix p ns with
| { contents = Hint l } as r ->
p.hints <- pr::p.hints;
r := Hint (pr::l)
| _ -> assert false) table;
p
let is_prefix_free p pr =
not (List.exists (fun (pr',_) -> U.equal pr pr') p.prefixes)
let is_really_free p pr =
(is_prefix_free p pr) &&
not (List.exists (fun pr' -> U.equal pr pr') p.hints)
let rec fresh_prefix p =
p.counter <- succ p.counter;
let s = U.mk (Printf.sprintf "ns%i" p.counter) in
if (is_really_free p s) then s else fresh_prefix p
let find_good_prefix p ns hint =
try List.find (is_prefix_free p) hint
with Not_found ->
try List.find (is_really_free p) (Hashtbl.find_all global_hints ns)
with Not_found -> fresh_prefix p
let add_prefix p pr ns =
if (ns != empty) || (U.get_str pr <> "")
then p.prefixes <- (pr, ns) :: p.prefixes
let register_ns p ns =
if ns == xml_ns then ()
else match get_prefix p ns with
| { contents = Hint l } as r ->
let pr = find_good_prefix p ns l in
r := Set pr;
add_prefix p pr ns
| _ -> ()
let register_qname p (ns,_) = register_ns p ns
let prefixes p = p.prefixes
let tag p (ns,l) =
let l = U.get_str l in
if ns == xml_ns then "xml:" ^ l
else match !(get_prefix p ns) with
| Set pr ->
let pr = U.get_str pr in
if pr = "" then l
else pr ^ ":" ^ l
| _ -> assert false
let attr p (ns,l) =
let l = U.get_str l in
if ns == xml_ns then "xml:" ^ l
else if ns == empty then l
else
match !(get_prefix p ns) with
| Set pr ->
let pr = U.get_str pr in
assert(pr <> "");
pr ^ ":" ^ l
| _ -> assert false
let any_ns p ns =
match !(get_prefix p ns) with
| Set pr ->
let pr = U.get_str pr in
if pr = "" then ".:*"
else pr ^ ":*"
| _ -> assert false
end
module InternalPrinter =
struct
let p = ref (Printer.printer def_table)
let set_table t =
p := Printer.printer t
let any_ns ns =
Printer.register_ns !p ns;
Printer.any_ns !p ns
let tag q =
Printer.register_qname !p q;
Printer.tag !p q
let attr q =
Printer.register_qname !p q;
Printer.attr !p q
let dump ppf =
List.iter
(fun (pr, ns) ->
Format.fprintf ppf "%a=>\"%a\"@." U.print pr Uri.print ns
) (Printer.prefixes !p)
let print_tag ppf q =
Format.fprintf ppf "%s" (tag q)
let print_attr ppf q =
Format.fprintf ppf "%s" (attr q)
let print_any_ns ppf ns =
Format.fprintf ppf "%s" (any_ns ns)
end
module Label = struct
include Upool.Make(Custom.Pair(Uri)(U))
let print_attr ppf q = InternalPrinter.print_attr ppf (value q)
let print_tag ppf q = InternalPrinter.print_tag ppf (value q)
let print_quote ppf q = Format.fprintf ppf "`"; print_tag ppf q
let string_of_attr q = InternalPrinter.attr (value q)
let string_of_tag q = InternalPrinter.tag (value q)
(*
let to_string s = U.to_string (value s)
let print ppf s = U.print ppf (value s)
*)
let mk_ascii s = mk (empty, U.mk s)
let get_ascii q = U.get_str (snd (value q))
(*
let split q =
let ns,local = split_qname (value q) in
U.mk ns, local
*)
end
let add_prefix pr ns table =
if (U.get_str pr <> "") then Hashtbl.add global_hints ns pr;
Table.add pr ns table
let merge_tables t1 t2 =
Table.fold add_prefix t2 t1
let dump_table ppf table =
Table.iter
(fun pr ns ->
Format.fprintf ppf "%a=>\"%a\"@." U.print pr Uri.print ns
) table
exception UnknownPrefix of U.t
let map_prefix table pr =
try Table.find pr table
with Not_found -> raise (UnknownPrefix pr)
let map_tag table tag =
let pr, local = split_qname tag in
(map_prefix table (U.mk pr), local)
let map_attr table n =
let pr, local = split_qname n in
((if pr="" then empty else map_prefix table (U.mk pr)),local)
let att table ((pr,local),v) =
Label.mk
((if pr="" then empty else map_prefix table (U.mk pr)),local), v
let process_start_tag table tag attrs =
let rec aux (table : table) (attrs : ((string * U.t) * U.t) list) = function
| [] -> (table, map_tag table (U.mk tag), List.rev_map (att table) attrs)
| ("xmlns",uri)::rest ->
let table = add_prefix empty_str (Uri.mk (U.mk uri)) table in
aux table attrs rest
| (n,v)::rest ->
match split_qname (U.mk n) with
| ("xmlns",pr) ->
let table = add_prefix pr (Uri.mk (U.mk v)) table in
aux table attrs rest
| x ->
aux table ((x,U.mk v)::attrs) rest in
aux table [] attrs
module QName = struct
include Custom.Pair(Uri)(U)
let print = InternalPrinter.print_tag
(* let mk_ascii s = (empty, U.mk s)
let get_ascii (_,s) = U.get_str s *)
let to_string = InternalPrinter.tag
end
|