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
|
(***********************************************************************)
(* *)
(* HEVEA *)
(* *)
(* Luc Maranget, projet PARA, INRIA Rocquencourt *)
(* *)
(* Copyright 1998 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
{
open Printf
open Misc
open Lexing
open Latexmacros
open Lexstate
open MyStack
open Length
(* Compute functions *)
exception Error of string
let sbool = function
| true -> "true"
| false -> "false"
let get_this = ref (fun _ -> assert false)
and get_fun = ref (fun _f _lexbuf -> assert false)
and open_env = ref (fun _ -> ())
and close_env = ref (fun _ -> ())
and get_csname = ref (fun _ -> assert false)
and main = ref (fun _ -> assert false)
;;
let bool_out = ref false
and int_out = ref false
let int_stack = MyStack.create "int_stack"
and bool_stack = MyStack.create "bool_stack"
and group_stack = MyStack.create "group_stack"
and just_opened = ref false
type saved =
bool * bool MyStack.saved *
bool * int MyStack.saved *
(unit -> unit) MyStack.saved * bool
let check () =
!bool_out, MyStack.save bool_stack,
!int_out, MyStack.save int_stack,
MyStack.save group_stack,
!just_opened
and hot (b,bs,i,is,gs,j) =
bool_out := b ; MyStack.restore bool_stack bs ;
int_out := i ; MyStack.restore int_stack is ;
MyStack.restore group_stack gs ;
just_opened := j
let push_int x =
if !verbose > 2 then
prerr_endline ("PUSH INT: "^string_of_int x) ;
just_opened := false ;
push int_stack x
let open_ngroups n =
let rec open_ngroups_rec = function
| 0 ->()
| n -> push group_stack (fun () -> ()) ; open_ngroups_rec (n-1) in
if !verbose > 2 then
prerr_endline ("OPEN NGROUPS: "^string_of_int n) ;
if n > 0 then begin
just_opened := true ;
open_ngroups_rec n
end
let close_ngroups n =
let rec close_ngroups_rec = function
| 0 -> ()
| n ->
let f = pop group_stack in
f() ; close_ngroups_rec (n-1) in
if !verbose > 2 then
prerr_endline ("CLOSE NGROUPS: "^string_of_int n);
close_ngroups_rec n
let open_aftergroup f s =
if !verbose > 2 then
prerr_endline ("OPEN AFTER: "^s) ;
just_opened := true ;
push group_stack f
}
let command_name =
'\\' ((['@''A'-'Z' 'a'-'z']+ '*'?) | [^ '@' 'A'-'Z' 'a'-'z'] | "\\*")
rule result = parse
(* Skip comments and spaces *)
| '%' [^ '\n'] * '\n' {result lexbuf}
| [' ' '\n']+ {result lexbuf}
(* Integers *)
| ['0'-'9']+
{let lxm = Lexing.lexeme lexbuf in
push_int (int_of_string lxm) ;
result lexbuf}
| '\'' ['0'-'7']+
{let lxm = lexeme lexbuf in
push_int
(int_of_string ("0o"^String.sub lxm 1 (String.length lxm-1))) ;
result lexbuf}
| "\"" ['0'-'9' 'a'-'f' 'A'-'F']+
{let lxm = lexeme lexbuf in
push_int
(int_of_string ("0x"^String.sub lxm 1 (String.length lxm-1))) ;
result lexbuf}
| '`'
{let token = !get_csname lexbuf in
after_quote (MyLexing.from_string token) ;
result lexbuf}
| "true"
{push bool_stack true ;
result lexbuf}
| "false"
{push bool_stack false ;
result lexbuf}
(* Operands *)
| '+' | '-' as lxm
{let unary = !just_opened in
if unary then begin
let f = pop group_stack in
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline ("UNARY: "^String.make 1 lxm) ;
MyStack.pretty string_of_int int_stack
end ;
let x1 = pop int_stack in
let r = match lxm with
| '+' -> x1
| '-' -> 0 - x1
| _ -> assert false in
push_int r ; f()) "UNARY"
end else begin
close_ngroups 2 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline ("OPPADD: "^String.make 1 lxm) ;
MyStack.pretty string_of_int int_stack
end ;
let x2 = pop int_stack in
let x1 = pop int_stack in
let r = match lxm with
| '+' -> x1 + x2
| '-' -> x1 - x2
| _ -> assert false in
push_int r) "ADD";
open_ngroups 1 ;
end ;
result lexbuf}
| '/' | '*'
{let lxm = lexeme_char lexbuf 0 in
close_ngroups 1 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline ("MULTOP"^String.make 1 lxm) ;
MyStack.pretty string_of_int int_stack
end ;
let x2 = pop int_stack in
let x1 = pop int_stack in
let r = match lxm with
| '*' -> x1 * x2
| '/' -> x1 / x2
| _ -> assert false in
push_int r) "MULT";
result lexbuf}
(* boolean openrands *)
| '<' | '>' | '='
{let lxm = Lexing.lexeme_char lexbuf 0 in
close_ngroups 3 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline ("COMP: "^String.make 1 lxm) ;
MyStack.pretty string_of_int int_stack
end ;
let x2 = pop int_stack in
let x1 = pop int_stack in
push bool_stack
(match lxm with
| '<' -> x1 < x2
| '>' -> x1 > x2
| '=' -> x1 = x2
| _ -> assert false) ;
if !verbose > 2 then
MyStack.pretty sbool bool_stack) "COMP" ;
open_ngroups 2 ;
result lexbuf}
(* Parenthesis for integer computing *)
| '('|'{'
{open_ngroups 2 ;
result lexbuf}
| ')'|'}'
{close_ngroups 2 ;
result lexbuf}
(* Commands *)
| '#' ['1'-'9']
{let lxm = lexeme lexbuf in
let i = Char.code (lxm.[1]) - Char.code '1' in
scan_arg (scan_this_arg_list result) i ;
result lexbuf}
| command_name as lxm
{let pat,body = Latexmacros.find lxm in
let args = make_stack lxm pat lexbuf in
scan_body
(function
| Subst body -> scan_this_list result body
| Toks l ->
List.iter
(scan_this result)
(List.rev l)
| CamlCode f ->
let rs = !get_fun f lexbuf in
scan_this result rs)
body args ;
result lexbuf}
| _ {raise (Error ("Bad character in Get.result: ``"^lexeme lexbuf^"''"))}
| eof {()}
and after_quote = parse
| '\\' [^ 'A'-'Z' 'a'-'z'] eof
{let lxm = lexeme lexbuf in
push_int (Char.code lxm.[1]);
result lexbuf}
| _ eof
{let lxm = lexeme lexbuf in
push_int (Char.code lxm.[0]);
result lexbuf}
| ""
{Misc.fatal "Cannot understand `-like numerical argument"}
{
let init latexget latexgetfun latexopenenv latexcloseenv latexcsname
latexmain =
get_this := latexget ;
get_fun := latexgetfun ;
open_env := latexopenenv ;
close_env := latexcloseenv ;
get_csname := latexcsname ;
main := latexmain
;;
let def_loc name f =
Latexmacros.def name zero_pat (CamlCode f) ;
;;
let def_commands l =
List.map
(fun (name,f) ->
name,Latexmacros.replace name (Some (zero_pat,CamlCode f)))
l
let def_commands_int () =
def_commands
["\\value",
(fun lexbuf ->
let name = !get_this (save_arg lexbuf) in
push_int (Counter.value_counter name)) ;
"\\@lengthtonchar",
(fun lexbuf ->
let length =
Length.main
(MyLexing.from_string
(!get_this (save_arg lexbuf))) in
let r = match length with
| Length.Char x -> x
| Length.Pixel x -> pixel_to_char x
| _ -> 2 in
push_int r) ;
"\\pushint",
(fun lexbuf ->
let s = !get_this (save_arg lexbuf) in
scan_this result s)]
let def_commands_bool () =
let old_ints = def_commands_int () in
let old_commands =
def_commands
["\\(", (fun _ -> open_ngroups 7) ;
"\\)", (fun _ -> close_ngroups 7) ;
"\\@fileexists",
(fun lexbuf ->
let name = !get_this (save_arg lexbuf) in
push bool_stack
(try
let _,chan = Myfiles.open_tex name in
begin try close_in chan with Sys_error _ -> () end ;
true
with Myfiles.Except | Myfiles.Error _ -> false)) ;
"\\@commandexists",
(fun lexbuf ->
let name = !get_csname lexbuf in
(* Printf.eprintf "EXISTS? '%s'\n" name ; *)
push bool_stack (Latexmacros.exists name)) ;
"\\or",
(fun _ ->
close_ngroups 7 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline "OR" ;
MyStack.pretty sbool bool_stack
end ;
let b1 = pop bool_stack in
let b2 = pop bool_stack in
push bool_stack (b1 || b2)) "OR";
open_ngroups 6) ;
"\\and",
(fun _ ->
close_ngroups 6 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline "AND" ;
MyStack.pretty sbool bool_stack
end ;
let b1 = pop bool_stack in
let b2 = pop bool_stack in
push bool_stack (b1 && b2)) "AND";
open_ngroups 5) ;
"\\not",
(fun _ ->
close_ngroups 4 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline "NOT" ;
MyStack.pretty sbool bool_stack
end ;
let b1 = pop bool_stack in
push bool_stack (not b1)) "NOT";
open_ngroups 3) ;
"\\boolean",
(fun lexbuf ->
let name = !get_this (save_arg lexbuf) in
let b = try
let r = !get_this
(string_to_arg ("\\if"^name^" true\\else false\\fi")) in
match r with
| "true" -> true
| "false" -> false
| _ -> raise (Misc.Fatal ("boolean value: "^r))
with
Latexmacros.Failed -> true in
push bool_stack b) ;
"\\isodd",
(fun _lexbuf ->
close_ngroups 3 ;
open_aftergroup
(fun () ->
if !verbose > 2 then begin
prerr_endline ("ISODD") ;
MyStack.pretty string_of_int int_stack
end ;
let x = pop int_stack in
push bool_stack (x mod 2 = 1) ;
if !verbose > 2 then
MyStack.pretty sbool bool_stack) "ISODD" ;
open_ngroups 2) ] in
let old_equal =
try Some (Latexmacros.find_fail "\\equal") with Failed -> None in
def_loc "\\equal"
(fun lexbuf ->
let arg1 = save_arg lexbuf in
let arg2 = save_arg lexbuf in
scan_this !main "\\begin{@norefs}" ;
let again = List.map (fun (name,x) -> name,Latexmacros.replace name x)
((("\\equal",old_equal)::old_ints)@old_commands) in
push bool_stack (!get_this arg1 = !get_this arg2) ;
let _ =
List.map (fun (name,x) -> Latexmacros.replace name x) again in
scan_this !main "\\end{@norefs}")
type 'a funs =
{ pp : out_channel -> 'a -> unit ;
to_string : 'a -> string ;
scan_this : (Lexing.lexbuf -> unit) -> 'a -> unit; }
let string_funs =
{ pp = output_string ;
to_string = (fun x -> x) ;
scan_this = scan_this; }
let list_funs =
{ pp = pretty_body ;
to_string = String.concat "";
scan_this = scan_this_list; }
let do_get_int f {arg=expr ; subst=subst} =
if !verbose > 1 then eprintf "get_int : '%a'\n%!" f.pp expr ;
let r =
let old_int = !int_out in
int_out := true ;
start_normal subst ;
!open_env "*int*" ;
let _ = def_commands_int () in
open_ngroups 2 ;
begin try f.scan_this result expr with
| x ->
begin
eprintf
"Error while scanning '%a' for integer result\n%!"
f.pp expr ;
raise x
end
end ;
close_ngroups 2 ;
!close_env "*int*" ;
end_normal () ;
if MyStack.empty int_stack then
raise
(Error
(sprintf "'%s'' has no value as an integer" (f.to_string expr))) ;
let r = pop int_stack in
int_out := old_int ;
r in
if !verbose > 1 then eprintf "get_int: '%a' -> %i\n%!" f.pp expr r ;
r
let get_int_string a = do_get_int string_funs a
let get_int a = do_get_int list_funs a
let get_bool {arg=expr ; subst=subst} =
if !verbose > 1 then
prerr_endline ("get_bool : "^expr) ;
let old_bool = !bool_out in
bool_out := true ;
start_normal subst ;
!open_env "*bool*" ;
def_commands_bool () ;
open_ngroups 7 ;
begin try scan_this result expr with
| x ->
begin
prerr_endline
("Error while scanning ``"^expr^"'' for boolean result");
raise x
end
end ;
close_ngroups 7 ;
!close_env "*bool*" ;
end_normal () ;
if MyStack.empty bool_stack then
raise (Error ("``"^expr^"'' has no value as a boolean"));
let r = pop bool_stack in
if !verbose > 1 then
prerr_endline ("get_bool: "^expr^" = "^sbool r);
bool_out := old_bool ;
r
let get_length arg =
if !verbose > 1 then
prerr_endline ("get_length : "^arg) ;
let r = Length.main (MyLexing.from_string arg) in
if !verbose > 2 then begin
prerr_string ("get_length : "^arg^" -> ") ;
prerr_endline (Length.pretty r)
end ;
r
}
|