]> 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 let _ =
29   let module P = CicNotationPt in
30   let level = ref ~-1 in
31   let arg_spec = [ "-level", Arg.Set_int level, "set the notation level" ] in
32   let usage = "test_parser -level { 1 | 2 | 3 }" in
33   Arg.parse arg_spec (fun _ -> raise (Arg.Bad usage)) usage;
34   if !level = 2 then begin
35     let id =
36       CicNotationParser.extend ~precedence:50 ~associativity:Gramext.LeftA
37         (P.Layout (P.Box (P.H,
38           [
39             P.Magic
40               (P.List1
41                 (P.Layout (P.Box (P.H,
42                   [ P.Literal (`Symbol "|");
43                     P.Variable (P.TermVar "ugo");
44                     P.Magic (P.Opt (P.Layout (P.Box (P.H,
45                       [ P.Literal (`Symbol ",");
46                         P.Variable (P.TermVar "pino")]))));
47                     P.Literal (`Symbol "|");
48                   ])),
49                   Some (`Symbol ";")));
50 (*             P.Literal (`Symbol "+");
51             P.Magic (P.Opt (P.Layout (P.Box (P.H,
52               [
53                 P.Variable (P.TermVar "ugo");
54                 P.Literal (`Symbol "+");
55                 P.Variable (P.TermVar "pino")
56               ])))); *)
57 (*           P.Variable (P.TermVar "a");
58             P.Literal (`Symbol "+");
59             P.Variable (P.TermVar "b"); *)
60           ])))
61         (fun env _ ->
62           prerr_endline "reducing rule" ;
63           prerr_endline (sprintf "env = [ %s ]" (CicNotationPp.pp_env env));
64           P.Sort `Prop)
65     in
66     CicNotationParser.print_l2_pattern ()
67   end;
68   let ic = stdin in
69   try
70     printf "Parsing notation level %d\n" !level; flush stdout;
71     while true do
72       let line = input_line ic in
73       let istream = Stream.of_string line in
74       try
75         (match !level with
76         | -1 ->
77             (match CicNotationParser.parse_phrase istream with
78             | P.Print t -> 
79                 print_endline (CicNotationPp.pp_term t); flush stdout
80             | P.Notation (l1, associativity, precedence, l2) ->
81                 prerr_endline "foo";
82                 print_endline "Extending notation ..."; flush stdout;
83                 ignore
84                   (CicNotationParser.extend l1 ?precedence ?associativity
85                     (fun env loc ->
86                       prerr_endline "ENV";
87                       prerr_endline (CicNotationPp.pp_env env);
88                       CicNotationEnv.instantiate env l2));
89                 CicNotationParser.print_l2_pattern ())
90         | 1 -> ignore (CicNotationParser.parse_syntax_pattern istream)
91         | 2 ->
92             let ast = CicNotationParser.parse_ast_pattern istream in
93             if ast = P.Sort `Prop then
94               prerr_endline "eureka"
95             else
96               prerr_endline ":-("
97         | 3 -> ignore (CicNotationParser.parse_interpretation istream)
98         | _ -> Arg.usage arg_spec usage; exit 1);
99       with CicNotationParser.Parse_error (floc, msg) ->
100         let (x, y) = P.loc_of_floc floc in
101         let before = String.sub line 0 x in
102         let error = String.sub line x (y - x) in
103         let after = String.sub line y (String.length line - y) in
104         eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
105         prerr_endline (sprintf "at character %d-%d: %s" x y msg)
106     done
107   with End_of_file ->
108     close_in ic
109