]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/test_parser.ml
snapshot
[helm.git] / helm / ocaml / cic_notation / test_parser.ml
1 (* Copyright (C) 2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 (* cut and past from CicAst.loc_of_floc *)
29 let loc_of_floc = function
30   | { Lexing.pos_cnum = loc_begin }, { Lexing.pos_cnum = loc_end } ->
31       (loc_begin, loc_end)
32
33 let _ =
34   let level = ref ~-1 in
35   let arg_spec = [ "-level", Arg.Set_int level, "set the notation level" ] in
36   let usage = "test_parser -level { 1 | 2 | 3 }" in
37   Arg.parse arg_spec (fun _ -> raise (Arg.Bad usage)) usage;
38   let parse_fun s =
39     match !level with
40     | 1 -> ignore (CicNotationParser.parse_syntax_pattern s)
41     | 2 -> ignore (CicNotationParser.parse_ast_pattern s)
42     | 3 -> ignore (CicNotationParser.parse_interpretation s)
43     | _ -> Arg.usage arg_spec usage; exit 1
44   in
45   let ic = stdin in
46   try
47     printf "Parsing notation level %d\n" !level; flush stdout;
48     while true do
49       let line = input_line ic in
50       let istream = Stream.of_string line in
51       try
52         parse_fun istream;
53         print_endline "ok"
54       with CicNotationParser.Parse_error (floc, msg) ->
55         let (x, y) = loc_of_floc floc in
56         let before = String.sub line 0 x in
57         let error = String.sub line x (y - x) in
58         let after = String.sub line y (String.length line - y) in
59         eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
60         prerr_endline (sprintf "at character %d-%d: %s" x y msg)
61     done
62   with End_of_file ->
63     close_in ic
64