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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
|
{
(* Ocsimore
* Copyright (C) 2008
* Laboratoire PPS - Universit Paris Diderot - CNRS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
(**
Parser for Wikicreole
@author Jrme Vouillon
*)
type ('flow, 'inline, 'a_content) builder =
{ chars : string -> 'a_content;
strong_elem : 'inline list -> 'a_content;
em_elem : 'inline list -> 'a_content;
br_elem : unit -> 'a_content;
img_elem : string -> string -> 'a_content;
tt_elem : 'inline list -> 'a_content;
a_elem : string -> 'a_content list -> 'inline;
youtube_elem : string -> 'a_content list -> 'inline;
p_elem : 'inline list -> 'flow;
pre_elem : string list -> 'flow;
h1_elem : 'inline list -> 'flow;
h2_elem : 'inline list -> 'flow;
h3_elem : 'inline list -> 'flow;
h4_elem : 'inline list -> 'flow;
h5_elem : 'inline list -> 'flow;
h6_elem : 'inline list -> 'flow;
ul_elem : ('inline list * 'flow option) list -> 'flow;
ol_elem : ('inline list * 'flow option) list -> 'flow;
hr_elem : unit -> 'flow;
table_elem : (bool * 'inline list) list list -> 'flow;
inline : 'a_content -> 'inline }
type style = Bold | Italic
type list_kind = Unordered | Ordered
type ('inline, 'flow) stack =
Style of style * 'inline list * ('inline, 'flow) stack
| Link of string * ('inline, 'flow) stack
(* Not that we do not save anything in the case of links, as
links cannot be nested *)
| Paragraph
| Heading of int
| List_item of ('inline, 'flow) stack
| List of
list_kind * ('inline list * 'flow option) list * ('inline, 'flow) stack
| Table of (bool * 'inline list) list list
| Row of (bool * 'inline list) list * ('inline, 'flow) stack
| Entry of bool * ('inline, 'flow) stack
type ('flow, 'inline, 'a_content) ctx =
{ build : ('flow, 'inline, 'a_content) builder;
mutable italic : bool;
mutable bold : bool;
mutable heading : bool;
mutable link : bool;
mutable list_level : int;
mutable inline_mix : 'inline list;
mutable link_content : 'a_content list;
mutable pre_content : string list;
mutable list : ('inline list * 'flow option) list;
mutable flow : 'flow list;
mutable stack : ('inline, 'flow) stack }
let count c s =
let n = ref 0 in
for i = 0 to String.length s - 1 do if s.[i] = c then incr n done;
!n
let push c v =
match c.stack with
Link _ -> c.link_content <- v :: c.link_content
| _ -> c.inline_mix <- c.build.inline v :: c.inline_mix
let push_string c s = push c (c.build.chars s)
let push_chars c lexbuf = push_string c (Lexing.lexeme lexbuf)
let get_style c style =
match style with Bold -> c.bold | Italic -> c.italic
let set_style c style v =
match style with Bold -> c.bold <- v | Italic -> c.italic <- v
let pop_style c style inline stack =
let elt =
match style with
Bold -> c.build.strong_elem
| Italic -> c.build.em_elem
in
let inline' = c.inline_mix in
c.stack <- stack;
c.inline_mix <- inline;
push c (elt (List.rev inline'));
set_style c style false
let style_change c style =
if get_style c style then begin
match c.stack with
Style (s, inline, stack) when s = style ->
pop_style c style inline stack
| _ ->
match style with
Italic -> push_string c "//"
| Bold -> push_string c "**"
end else begin
c.stack <- Style (style, c.inline_mix, c.stack);
c.inline_mix <- [];
set_style c style true
end
let pop_link c addr stack =
c.stack <- stack;
c.inline_mix <-
c.build.a_elem addr (List.rev c.link_content) :: c.inline_mix;
c.link_content <- [];
c.link <- false
let close_entry c =
match c.stack with
Entry (heading, Row (entries, stack)) ->
c.stack <- Row ((heading, List.rev c.inline_mix) :: entries, stack);
c.inline_mix <- [];
true
| Row _ ->
true
| Table _ ->
c.stack <- Row ([(false, List.rev c.inline_mix)], c.stack);
c.inline_mix <- [];
true
| _ ->
false
let close_row c =
close_entry c &&
match c.stack with
Row (entries, Table rows) ->
c.stack <- Table (List.rev entries :: rows);
true
| Table _ ->
true
| _ ->
assert false
let rec end_paragraph c lev =
match c.stack with
Style (style, inline, stack) ->
pop_style c style inline stack;
end_paragraph c lev
| Link (addr, stack) ->
pop_link c addr stack;
end_paragraph c lev
| Paragraph ->
if c.inline_mix <> [] then begin
c.flow <- c.build.p_elem (List.rev c.inline_mix) :: c.flow;
c.inline_mix <- []
end;
c.stack <- Paragraph
| Heading l ->
let f =
match l with
| 1 -> c.build.h1_elem
| 2 -> c.build.h2_elem
| 3 -> c.build.h3_elem
| 4 -> c.build.h4_elem
| 5 -> c.build.h5_elem
| _ -> c.build.h6_elem
in
c.flow <- f (List.rev c.inline_mix) :: c.flow;
c.inline_mix <- [];
c.heading <- false;
c.stack <- Paragraph
| List_item stack ->
c.list <- (List.rev c.inline_mix, None) :: c.list;
c.stack <- stack;
c.inline_mix <- [];
end_paragraph c lev
| List (kind, lst, stack) ->
if lev < c.list_level then begin
c.list_level <- c.list_level - 1;
let elt =
match kind with
Unordered -> c.build.ul_elem
| Ordered -> c.build.ol_elem
in
let cur_lst = elt (List.rev c.list) in
if c.list_level = 0 then
c.flow <- cur_lst :: c.flow
else begin
match lst with
(l, None) :: rem -> c.list <- (l, Some cur_lst) :: rem;
| _ -> assert false
end;
c.stack <- stack;
end_paragraph c lev
end
| Entry _ ->
ignore (close_row c);
end_paragraph c lev
| Row _ ->
assert false
| Table rows ->
c.flow <- c.build.table_elem (List.rev rows) :: c.flow;
c.stack <- Paragraph
let rec correct_kind_rec stack kind n =
match stack with
List_item stack ->
correct_kind_rec stack kind n
| List (k, _lst, stack) ->
if n = 0 then k = kind else
correct_kind_rec stack kind (n - 1)
| Style (_, _, stack) ->
correct_kind_rec stack kind n
| Link _ | Heading _ | Paragraph | Entry _ | Row _ | Table _ ->
assert false
let correct_kind c kind lev =
lev = c.list_level + 1
||
(lev <= c.list_level &&
correct_kind_rec c.stack kind (c.list_level - lev))
let start_list_item c kind lev =
let correct = correct_kind c kind lev in
if lev = 1 || correct then begin
(* If we have an item of a different kind at level 1, we close the
previous list and start a new one of the right kind *)
end_paragraph c (if correct then lev else 0);
if lev = c.list_level then begin
c.stack <- List_item c.stack
end else (* if lev = c.list_level + 1 then *) begin
c.list_level <- lev;
c.stack <- List_item (List (kind, c.list, c.stack));
c.list <- []
end;
true
end else
false
let start_table_row c heading =
if not (close_row c) then begin
end_paragraph c 0;
c.stack <- Table []
end;
c.stack <- Entry (heading, Row ([], c.stack))
}
let line_break = '\n' | '\r' | "\r\n"
let white_space = [ ' ' '\t' ]
(* XXX Should we consider form feed and zero-width space as white
spaces as well ? *)
let not_line_break = [^ '\n' '\r']
let reserved_chars = [ '*' '/' '\\' '=' '[' ']' '{' '~' '|' 'h' 'f' ]
let punctuation = [ ',' '.' '?' '!' ':' ';' '"' '\'' ]
let first_char = (not_line_break # ['~' '|']) | ('=' +)
let next_chars = not_line_break # reserved_chars
rule parse_bol c =
parse
line_break {
end_paragraph c 0;
parse_bol c lexbuf
}
| white_space * ("=" | "==" | "===" | "====" | "=====" | "======") {
end_paragraph c 0;
assert (c.stack = Paragraph);
c.stack <- Heading (count '=' (Lexing.lexeme lexbuf));
c.heading <- true;
parse_rem c lexbuf
}
| white_space * "*" + {
let lev = count '*' (Lexing.lexeme lexbuf) in
if not (start_list_item c Unordered lev) then begin
let s = Lexing.lexeme lexbuf in
let l = String.length s - lev in
if l > 0 then push_string c (String.sub s 0 l);
for _i = 1 to lev / 2 do
style_change c Bold
done;
if lev land 1 = 1 then push_string c "*"
end;
parse_rem c lexbuf
}
| white_space * "#" + {
let lev = count '#' (Lexing.lexeme lexbuf) in
if not (start_list_item c Ordered lev) then
push_chars c lexbuf;
parse_rem c lexbuf
}
| white_space * "----" white_space * (line_break | eof) {
end_paragraph c 0;
c.flow <- c.build.hr_elem () :: c.flow;
parse_bol c lexbuf
}
| white_space * "{{{" (line_break | eof) {
end_paragraph c 0;
parse_nowiki c lexbuf
}
| white_space * "|" {
start_table_row c false;
parse_rem c lexbuf
}
| white_space * "|=" {
start_table_row c true;
parse_rem c lexbuf
}
| "" {
parse_rem c lexbuf
}
and parse_rem c =
parse
line_break {
(* Headings are single lines *)
if c.heading then
end_paragraph c 0
else
push_chars c lexbuf;
parse_bol c lexbuf
}
| "**" {
style_change c Bold;
parse_rem c lexbuf
}
| "//" {
style_change c Italic;
parse_rem c lexbuf
}
| "=" + white_space * (line_break | eof) {
if c.heading then
end_paragraph c 0
else
push_chars c lexbuf;
parse_bol c lexbuf
}
| "[[" (']' ? (not_line_break # [ ']' '|' ])) + "]]" {
if c.link then
push_chars c lexbuf
else
let s = Lexing.lexeme lexbuf in
let addr = String.sub s 2 (String.length s - 4) in
c.inline_mix <-
c.build.a_elem addr [c.build.chars addr] :: c.inline_mix;
parse_rem c lexbuf
}
| "<<youtube " ('>' ? (not_line_break # [ '>' ])) + ">>" {
if c.link then
push_chars c lexbuf
else
let s = Lexing.lexeme lexbuf in
let addr = String.sub s 10 (String.length s - 12) in
c.inline_mix <-
c.build.youtube_elem addr [c.build.chars addr] :: c.inline_mix;
parse_rem c lexbuf
}
| "[[" (']' ? (not_line_break # [ ']' '|' ])) + "|" {
if c.link then
push_chars c lexbuf
else begin
let s = Lexing.lexeme lexbuf in
let addr = String.sub s 2 (String.length s - 3) in
c.stack <- Link (addr, c.stack);
c.link <- true
end;
parse_rem c lexbuf
}
| "]]" {
begin match c.stack with
Link (addr, stack) ->
pop_link c addr stack
| _ ->
push_chars c lexbuf
end;
parse_rem c lexbuf
}
| ("http:" | "ftp:") (not_line_break # white_space) *
(not_line_break # white_space # punctuation) {
if c.link then
push_chars c lexbuf
else
let addr = Lexing.lexeme lexbuf in
c.inline_mix <-
c.build.a_elem addr [c.build.chars addr] :: c.inline_mix;
parse_rem c lexbuf
}
| "\\\\" {
push c (c.build.br_elem ());
parse_rem c lexbuf
}
| "{{" (not_line_break # ['|' '{']) (not_line_break # '|') * '|'
('}' ? (not_line_break # '}')) * "}}" {
let s = Lexing.lexeme lexbuf in
let i = String.index s '|' in
let url = String.sub s 2 (i - 2) in
let alt = String.sub s (i + 1) (String.length s - i - 3) in
push c (c.build.img_elem url alt);
parse_rem c lexbuf
}
| "{{{" ('}' ? '}' ? (not_line_break # '}')) * '}' * "}}" {
let s = Lexing.lexeme lexbuf in
let txt = String.sub s 3 (String.length s - 6) in
push c (c.build.tt_elem [c.build.inline (c.build.chars txt)]);
parse_rem c lexbuf
}
| '~' (not_line_break # white_space) {
let s = Lexing.lexeme lexbuf in
(* It amounts to the same to quote a UTF-8 char or its first byte *)
push_string c (String.sub s 1 1);
parse_rem c lexbuf
}
| '|' white_space* (line_break | eof) {
if not (close_row c) then
push_chars c lexbuf;
parse_bol c lexbuf
}
| '|' {
if close_entry c then
c.stack <- Entry (false, c.stack)
else
push_chars c lexbuf;
parse_rem c lexbuf
}
| "|=" {
if close_entry c then
c.stack <- Entry (true, c.stack)
else
push_chars c lexbuf;
parse_rem c lexbuf
}
| first_char next_chars * | '~' {
push_chars c lexbuf;
parse_rem c lexbuf
}
| eof {
end_paragraph c 0
}
and parse_nowiki c =
parse
white_space + "}}}" (line_break | eof) {
let s = Lexing.lexeme lexbuf in
c.pre_content <- String.sub s 1 (String.length s - 1) :: c.pre_content;
parse_nowiki c lexbuf
}
| ("}}}" (line_break | eof)) | eof {
c.flow <- c.build.pre_elem (List.rev c.pre_content) :: c.flow;
c.pre_content <- [];
parse_bol c lexbuf
}
| not_line_break * (line_break | eof) {
c.pre_content <- Lexing.lexeme lexbuf :: c.pre_content;
parse_nowiki c lexbuf
}
{
let context b =
{ build = b; italic = false; bold = false;
heading = false; link = false; list_level = 0;
inline_mix = []; link_content = []; pre_content = []; list = []; flow = [];
stack = Paragraph }
let from_lexbuf b lexbuf =
let c = context b in
parse_bol c lexbuf;
List.rev c.flow
let from_channel b ch = from_lexbuf b (Lexing.from_channel ch)
let from_string b s = from_lexbuf b (Lexing.from_string s)
}
|