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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
(****************************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* INRIA Rocquencourt *)
(* *)
(* Copyright 2006-2006 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed under *)
(* the terms of the GNU Library General Public License, with the special *)
(* exception on linking described in LICENSE at the top of the Objective *)
(* Caml source tree. *)
(* *)
(****************************************************************************)
(* Authors:
* - Daniel de Rauglaudre: initial version
* - Nicolas Pouillard: refactoring (Lexer.mll)
* - Gabriel Kerneis : merging with xml-light => xmllexer.mll
* - Boris Yakobowski : simplification of the code, better handling of
XML/Xhtml with quotations mode
*)
(* The lexer definition *)
{
type lexing_error =
| EUnterminatedComment
| EUnterminatedString
| EIdentExpected
| ECloseExpected
| ENodeExpected
| EAttributeNameExpected
| EAttributeValueExpected
| EUnterminatedEntity
| ECamlIdentExpected
| WNestedComments
let lex_error_to_string = function
| EUnterminatedComment -> "Unterminated Comment"
| EUnterminatedString -> "Unterminated String"
| EIdentExpected -> "Ident Expected"
| ECloseExpected -> "Close Expected"
| ENodeExpected -> "Node Expected"
| EAttributeNameExpected -> "Attribute Name Expected"
| EAttributeValueExpected -> "Attribute Value Expected"
| EUnterminatedEntity -> "Unterminated Entity"
| ECamlIdentExpected -> "Caml Ident Expected"
| WNestedComments -> "Nested comments (non valid XML)"
open Camlp4
module Loc = Camlp4.PreCast.Loc
open Lexing
(* To store some context information:
* loc : position of the beginning of a string, quotation and comment
* entity : shall we translate entities or not
*)
type context = {
loc : Loc.t ;
lexbuf : lexbuf ;
buffer : Buffer.t ;
entity : bool ;
}
let default_context lb = {
loc = Loc.ghost ;
lexbuf = lb ;
buffer = Buffer.create 256 ;
entity = true ;
}
(* To buffer string literals *)
let store c = Buffer.add_string c.buffer (Lexing.lexeme c.lexbuf)
let istore_char c i = Buffer.add_char c.buffer (Lexing.lexeme_char c.lexbuf i)
let buff_contents c =
let contents = Buffer.contents c.buffer in
Buffer.reset c.buffer; contents
let loc c = Loc.merge c.loc (Loc.of_lexbuf c.lexbuf)
let with_curr_loc f c = f { (c) with loc = Loc.of_lexbuf c.lexbuf } c.lexbuf
let parse f c = f c c.lexbuf
let lexeme c = Lexing.lexeme c.lexbuf
let store_string c s = Buffer.add_string c.buffer s
(* Deal with entities *)
let entities = [
"gt" ,62, ">";
"lt" ,60, "<";
"amp" ,38, "&";
"apos",39, "'";
"quot",34, "\"";
]
let idents = Hashtbl.create 0
let _ = begin
List.iter (fun (str,code,res) ->
Hashtbl.add idents (str^";") res;
if code > 0
then Hashtbl.add idents ("#" ^ string_of_int code ^ ";") res
) entities
end
(* Update the current location with file name and line number. *)
let update_loc c line absolute chars =
let lexbuf = c.lexbuf in
let pos = lexbuf.lex_curr_p in
lexbuf.lex_curr_p <- { pos with
pos_lnum = if absolute then line else pos.pos_lnum + line;
pos_bol = pos.pos_cnum - chars;
}
(* The lexer is parameterized to handle both Xml and Xhtml with
inlined Caml code modes. *)
module type LexerArgSig = sig
(* We do not raise the same exception in both lexers *)
val error : Camlp4.PreCast.Loc.t -> lexing_error -> exn
type attr_name = private [> `AttrName of string ]
type attr_value = private [> `AttrVal of string ]
type attribute = private [> `Attribute of (attr_name * attr_value) ]
type token = private [>
| `Tag of (string * (attribute list) * bool)
| `PCData of string
| `CDATA of string
| `Endtag of string
| `Comment of string
| `Whitespace of string
| `Eof
]
val parse_dollar_token : context -> lexbuf -> token
val parse_dollar_attrname : context -> Loc.t -> lexbuf -> attr_name
val parse_dollar_attrvalue : context -> Loc.t -> lexbuf -> attr_value
val parse_dollar_attribute : context -> Loc.t -> lexbuf -> attribute
end
module Make (X : LexerArgSig) = struct
let err error loc =
raise (X.error loc error)
}
(******************************************************************************)
(* NB : ignore(buff_contents c) flushes the buffer c *)
let newline = ['\n']
let break = ['\r']
let space = [' ' '\t']
let identchar = ['A'-'Z' 'a'-'z' '_' '0'-'9' ':' '-']
let entitychar = ['A'-'Z' 'a'-'z' '0'-'9']
let pcchar = [^ '\r' '\n' '<' '>' '&' '$']
let camlidentchar = [^ '$' ]
rule token c = parse
| newline { update_loc c 1 false 0; `Whitespace (lexeme c) }
| (space|break) + { `Whitespace (lexeme c) }
(* WARNING: on considre les commentaires comme des noeuds ; c'est mal, mais
c'est la seule solution si on ne veut pas les ignorer. Autre solution :
les ignorer et rajouter un commentaire de remplissage au niveau
du parser si on se retrouve avec une liste de noeuds vide (donc
si le seul noeud analyser tait un commentaire *)
| "<!--" { `Comment(comment c [Loc.of_lexbuf c.lexbuf] lexbuf)}
| "<?" { header c lexbuf; token c lexbuf }
| "<![CDATA[" {
ignore (buff_contents c);
cdata c lexbuf
}
| '<' space* '/' space* {
let tag = ident_name c lexbuf in
ignore_spaces c lexbuf;
close_tag c lexbuf;
`Endtag tag
}
| '<' space* {
let tag = ident_name c lexbuf in
ignore_spaces c lexbuf;
let attribs, closed = attributes c lexbuf in
`Tag(tag, attribs, closed)
}
| '&' {
ignore (buff_contents c);
store_string c (entity c lexbuf);
`PCData (pcdata c lexbuf)
}
| "$" {
ignore (buff_contents c);
X.parse_dollar_token c lexbuf
}
| space* pcchar+ {
ignore (buff_contents c);
store c ;
`PCData (pcdata c lexbuf)
}
| eof { `Eof }
| _ { err ENodeExpected (Loc.of_lexbuf lexbuf) }
and ignore_spaces c = parse
| newline {
update_loc c 1 false 0;
ignore_spaces c lexbuf
}
| (space | break) + { ignore_spaces c lexbuf }
| "" { () }
(* l is a list of the locations of the opened comments, which is used
to keep track of nesting. comment should never be called with an empty
list. *)
and comment c l = parse
(* WARNING: selon la norme XML, le symbole "--" est INTERDIT dans un commentaire.
* Nanmoins, on choisit de grer les commentaires imbriqus, pour faciliter
* l'criture des fichiers de configuration. *)
| newline {
update_loc c 1 false 0;
comment c l lexbuf
}
| "<!--" {
(* warn WNestedComments (Loc.of_lexbuf lexbuf) ; *)
store_string c "<!--" ;
ignore (comment c (loc c :: l) lexbuf);
store_string c "-->" ;
comment c l lexbuf
}
| "-->" {
match l with
| [] (* Should not occur... *)
| [_] -> buff_contents c
| _ -> ""
}
| eof {
err EUnterminatedComment
(match l with | [] -> Loc.of_lexbuf lexbuf
| l :: _ -> l)
}
| _ { store c ; comment c l lexbuf }
and header c = parse
(* Le header est ignor *)
| newline {
update_loc c 1 false 0;
header c lexbuf
}
| "?>" { () }
| eof { err ECloseExpected (loc c) }
| _ { header c lexbuf }
and cdata c = parse
| "]]>" { `CDATA (buff_contents c) }
| _ { store c; cdata c lexbuf }
and pcdata c = parse
| pcchar+ {
store c ;
pcdata c lexbuf
}
| '&' {
store_string c (entity c lexbuf);
pcdata c lexbuf
}
| "$$" { store_string c "$" ; pcdata c lexbuf }
| "" { buff_contents c }
and entity c = parse
| entitychar+ ';' {
let ident = lexeme c in
if not c.entity then "&" ^ ident else
try Hashtbl.find idents (String.lowercase ident)
with Not_found -> "&" ^ ident
}
| '#' ['0'-'9']+ ';' {
let ident = lexeme c in
if not c.entity then "&#" ^ ident else
try Hashtbl.find idents (String.lowercase ident)
with Not_found -> "&#" ^ ident
}
| _ | eof { err EUnterminatedEntity (Loc.of_lexbuf lexbuf) }
and ident_name c = parse
| identchar+ { lexeme c }
| _ | eof { err EIdentExpected (loc c)}
and close_tag c = parse
| '>' { () }
| _ | eof { err ECloseExpected (loc c)}
and attributes c = parse
| '>' { [], false }
| "/>" { [], true }
| "$list:" {
let attribute = X.parse_dollar_attribute c (Loc.of_lexbuf lexbuf) lexbuf in
ignore_spaces c lexbuf;
let others, closed = attributes c lexbuf in
attribute :: others, closed
}
| "" {
let attribute =
let a = attr_name c lexbuf in
let data = attr_data c lexbuf in
`Attribute (a, data)
in
ignore_spaces c lexbuf;
let others, closed = attributes c lexbuf in
attribute :: others, closed
}
and attr_name c = parse
| identchar+ { `AttrName (lexeme c) }
| '$' {
X.parse_dollar_attrname c (loc c) lexbuf
}
| _ | eof { err EAttributeNameExpected (loc c)}
and attr_data c = parse
| space* '=' space* ('$' | "$str:") {
ignore(buff_contents c) ;
X.parse_dollar_attrvalue c (loc c) lexbuf
}
| space* '=' space* '"' {
ignore(buff_contents c) ;
`AttrVal(dq_string c lexbuf)
}
| space* '=' space* '\'' {
ignore(buff_contents c) ;
`AttrVal(q_string c lexbuf)
}
| _ | eof { err EAttributeValueExpected (loc c)}
and dq_string c = parse
| '"' { buff_contents c }
| '\\' [ '"' '\\' ] {
istore_char c 1;
dq_string c lexbuf
}
| eof { err EUnterminatedString (Loc.of_lexbuf lexbuf) }
| _ {
istore_char c 0;
dq_string c lexbuf
}
and q_string c = parse
| '\'' { buff_contents c }
| '\\' [ '\'' '\\' ] {
istore_char c 1;
q_string c lexbuf
}
| eof { err EUnterminatedString (Loc.of_lexbuf lexbuf) }
| _ {
istore_char c 0;
q_string c lexbuf
}
(******************************************************************************)
{
let lexing_store s buff max =
let rec self n s =
if n >= max then n
else
match Stream.peek s with
| Some x ->
Stream.junk s;
buff.[n] <- x;
succ n
| _ -> n
in
self 0 s
let from_context c =
let next _ =
let tok = with_curr_loc token c in
let loc = Loc.of_lexbuf c.lexbuf in
Some ((tok, loc))
in Stream.from next
let from_lexbuf lb e =
let c = { (default_context lb) with
loc = Loc.of_lexbuf lb;
entity = e }
in from_context c
let setup_loc lb loc =
let start_pos = Loc.start_pos loc in
lb.lex_abs_pos <- start_pos.pos_cnum;
lb.lex_curr_p <- start_pos
let from_string loc entity str =
let lb = Lexing.from_string str in
setup_loc lb loc;
from_lexbuf lb entity
let from_stream loc entity strm =
let lb = Lexing.from_function (lexing_store strm) in
setup_loc lb loc;
from_lexbuf lb entity
end
}
|