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