1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
open Lexing
|
|
|
|
|
|
|
|
type t =
|
|
|
|
{ loc_start: int; loc_end: int }
|
|
|
|
|
|
|
|
let none = { loc_start = -1; loc_end = -1 }
|
|
|
|
|
|
|
|
let symbol_loc () =
|
|
|
|
{ loc_start = Parsing.symbol_start(); loc_end = Parsing.symbol_end() }
|
|
|
|
|
|
|
|
let rhs_loc n =
|
|
|
|
{ loc_start = Parsing.rhs_start n; loc_end = Parsing.rhs_end n }
|
|
|
|
|
|
|
|
let input_name = ref ""
|
|
|
|
|
|
|
|
let input_lexbuf = ref (None : lexbuf option)
|
|
|
|
|
|
|
|
(* Terminal info *)
|
|
|
|
|
|
|
|
type terminal_info_status = Unknown | Bad_term | Good_term
|
|
|
|
|
|
|
|
let status = ref Unknown
|
|
|
|
and num_lines = ref 0
|
|
|
|
and cursor_up = ref ""
|
1995-09-08 01:55:59 -07:00
|
|
|
and cursor_down = ref ""
|
1995-05-04 03:15:53 -07:00
|
|
|
and start_standout = ref ""
|
|
|
|
and end_standout = ref ""
|
|
|
|
|
|
|
|
let setup_terminal_info() =
|
|
|
|
try
|
|
|
|
Terminfo.setupterm();
|
|
|
|
num_lines := Terminfo.getnum "li";
|
|
|
|
cursor_up := Terminfo.getstr "up";
|
1995-09-08 01:55:59 -07:00
|
|
|
cursor_down := Terminfo.getstr "do";
|
1995-05-04 03:15:53 -07:00
|
|
|
begin try
|
|
|
|
start_standout := Terminfo.getstr "us";
|
|
|
|
end_standout := Terminfo.getstr "ue"
|
|
|
|
with Not_found ->
|
|
|
|
start_standout := Terminfo.getstr "so";
|
|
|
|
end_standout := Terminfo.getstr "se"
|
|
|
|
end;
|
|
|
|
status := Good_term
|
|
|
|
with _ ->
|
|
|
|
status := Bad_term
|
|
|
|
|
|
|
|
(* Print the location using standout mode. *)
|
|
|
|
|
1995-09-08 01:55:59 -07:00
|
|
|
let num_loc_lines = ref 0 (* number of lines already printed after input *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let rec highlight_location loc =
|
|
|
|
match !status with
|
|
|
|
Unknown ->
|
|
|
|
setup_terminal_info(); highlight_location loc
|
|
|
|
| Bad_term ->
|
|
|
|
false
|
|
|
|
| Good_term ->
|
|
|
|
match !input_lexbuf with
|
|
|
|
None -> false
|
|
|
|
| Some lb ->
|
|
|
|
(* Char 0 is at offset -lb.lex_abs_pos in lb.lex_buffer. *)
|
|
|
|
let pos0 = -lb.lex_abs_pos in
|
|
|
|
(* Do nothing if the buffer does not contain the whole phrase. *)
|
|
|
|
if pos0 < 0 then false else begin
|
|
|
|
(* Count number of lines in phrase *)
|
1995-09-08 01:55:59 -07:00
|
|
|
let lines = ref !num_loc_lines in
|
1995-05-04 03:15:53 -07:00
|
|
|
for i = pos0 to String.length lb.lex_buffer - 1 do
|
|
|
|
if lb.lex_buffer.[i] = '\n' then incr lines
|
|
|
|
done;
|
|
|
|
(* If too many lines, give up *)
|
|
|
|
if !lines >= !num_lines - 2 then false else begin
|
|
|
|
(* Move cursor up that number of lines *)
|
|
|
|
for i = 1 to !lines do
|
|
|
|
Terminfo.puts stdout !cursor_up 1
|
|
|
|
done;
|
|
|
|
(* Print the input, switching to standout for the location *)
|
1996-08-22 11:12:24 -07:00
|
|
|
let bol = ref false in
|
|
|
|
print_string "# ";
|
1995-05-04 03:15:53 -07:00
|
|
|
for pos = 0 to String.length lb.lex_buffer - pos0 - 1 do
|
1996-08-22 11:12:24 -07:00
|
|
|
if !bol then (print_string " "; bol := false);
|
1995-05-04 03:15:53 -07:00
|
|
|
if pos = loc.loc_start then
|
|
|
|
Terminfo.puts stdout !start_standout 1;
|
|
|
|
if pos = loc.loc_end then
|
|
|
|
Terminfo.puts stdout !end_standout 1;
|
|
|
|
let c = lb.lex_buffer.[pos + pos0] in
|
|
|
|
print_char c;
|
1996-08-22 11:12:24 -07:00
|
|
|
bol := (c = '\n')
|
1995-05-04 03:15:53 -07:00
|
|
|
done;
|
1995-11-29 05:38:38 -08:00
|
|
|
(* Make sure standout mode is over *)
|
|
|
|
Terminfo.puts stdout !end_standout 1;
|
1995-09-08 01:55:59 -07:00
|
|
|
(* Position cursor back to original location *)
|
|
|
|
for i = 1 to !num_loc_lines do
|
|
|
|
Terminfo.puts stdout !cursor_down 1
|
|
|
|
done;
|
1995-05-04 03:15:53 -07:00
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
(* Print the location in some way or another *)
|
|
|
|
|
|
|
|
open Format
|
|
|
|
|
1995-09-08 01:55:59 -07:00
|
|
|
let reset () =
|
|
|
|
num_loc_lines := 0
|
|
|
|
|
1996-11-02 10:03:23 -08:00
|
|
|
let (msg_file, msg_line, msg_chars, msg_to, msg_colon, warn_head) =
|
1996-11-07 03:01:05 -08:00
|
|
|
match Sys.os_type with
|
1996-11-02 10:03:23 -08:00
|
|
|
| "MacOS" -> ("File \"", "\"; line ", "; characters ", " to ", "", "### ")
|
|
|
|
| _ -> ("File \"", "\", line ", ", characters ", "-", ":", "")
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let print loc =
|
|
|
|
if String.length !input_name = 0 then
|
|
|
|
if highlight_location loc then () else begin
|
|
|
|
print_string "Characters ";
|
|
|
|
print_int loc.loc_start; print_string "-";
|
|
|
|
print_int loc.loc_end; print_string ":";
|
|
|
|
force_newline()
|
|
|
|
end
|
|
|
|
else begin
|
1997-02-04 07:40:22 -08:00
|
|
|
let (filename, linenum, linebeg) =
|
|
|
|
Linenum.for_position !input_name loc.loc_start in
|
1997-01-01 07:36:18 -08:00
|
|
|
print_string msg_file; print_string filename;
|
|
|
|
print_string msg_line; print_int linenum;
|
|
|
|
print_string msg_chars; print_int (loc.loc_start - linebeg);
|
|
|
|
print_string msg_to; print_int (loc.loc_end - linebeg);
|
|
|
|
print_string msg_colon;
|
1995-05-04 03:15:53 -07:00
|
|
|
force_newline()
|
|
|
|
end
|
|
|
|
|
|
|
|
let print_warning loc msg =
|
1997-05-15 06:27:15 -07:00
|
|
|
if not !Sys.interactive then Format.set_formatter_out_channel stderr;
|
1995-05-04 03:15:53 -07:00
|
|
|
print loc;
|
1996-11-02 10:03:23 -08:00
|
|
|
print_string warn_head;
|
1995-09-08 01:55:59 -07:00
|
|
|
print_string "Warning: "; print_string msg; print_newline();
|
1997-05-15 06:27:15 -07:00
|
|
|
incr num_loc_lines;
|
|
|
|
if not !Sys.interactive then Format.set_formatter_out_channel stdout
|
1995-09-08 01:55:59 -07:00
|
|
|
|
1997-04-15 12:18:41 -07:00
|
|
|
let echo_eof () =
|
|
|
|
print_newline ();
|
1997-05-13 07:45:28 -07:00
|
|
|
incr num_loc_lines
|
1997-05-15 06:27:15 -07:00
|
|
|
|