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