]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/test_parser.ml
snapshot (first working implementation of parttern matching from level 2
[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   Helm_registry.load_from "test_parser.conf.xml";
30   Http_getter.init ()
31
32 let _ =
33   let module P = CicNotationPt in
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   if !level = 2 then begin
39     let id =
40       CicNotationParser.extend ~precedence:50 ~associativity:Gramext.LeftA
41         (P.Layout (P.Box (P.H,
42           [
43             P.Magic
44               (P.List1
45                 (P.Layout (P.Box (P.H,
46                   [ P.Literal (`Symbol "|");
47                     P.Variable (P.TermVar "ugo");
48                     P.Magic (P.Opt (P.Layout (P.Box (P.H,
49                       [ P.Literal (`Symbol ",");
50                         P.Variable (P.TermVar "pino")]))));
51                     P.Literal (`Symbol "|");
52                   ])),
53                   Some (`Symbol ";")));
54 (*             P.Literal (`Symbol "+");
55             P.Magic (P.Opt (P.Layout (P.Box (P.H,
56               [
57                 P.Variable (P.TermVar "ugo");
58                 P.Literal (`Symbol "+");
59                 P.Variable (P.TermVar "pino")
60               ])))); *)
61 (*           P.Variable (P.TermVar "a");
62             P.Literal (`Symbol "+");
63             P.Variable (P.TermVar "b"); *)
64           ])))
65         (fun env _ ->
66           prerr_endline "reducing rule" ;
67           prerr_endline (sprintf "env = [ %s ]" (CicNotationPp.pp_env env));
68           P.Sort `Prop)
69     in
70     CicNotationParser.print_l2_pattern ()
71   end;
72   let ic = stdin in
73   try
74     printf "Parsing notation level %d\n" !level; flush stdout;
75     while true do
76       let line = input_line ic in
77       let istream = Stream.of_string line in
78       try
79         (match !level with
80         | -1 ->
81             (match CicNotationParser.parse_phrase istream with
82             | P.Print t -> 
83                 prerr_endline "====";
84                 print_endline (CicNotationPp.pp_term t); flush stdout;
85                 let t' = CicNotationRew.pp_ast t in
86                 print_endline (CicNotationPp.pp_term t'); flush stdout
87             | P.Notation (l1, associativity, precedence, l2) ->
88                 print_endline "Extending parser ..."; flush stdout;
89                 let time1 = Unix.gettimeofday () in
90                 ignore
91                   (CicNotationParser.extend l1 ?precedence ?associativity
92                     (fun env loc ->
93                       prerr_endline "ENV";
94                       prerr_endline (CicNotationPp.pp_env env);
95                       CicNotationFwd.instantiate_level2 env l2));
96                 let time2 = Unix.gettimeofday () in
97                 print_endline "Extending pretty printer ..."; flush stdout;
98                 let time3 = Unix.gettimeofday () in
99                 ignore
100                   (CicNotationRew.add_pretty_printer ?precedence ?associativity
101                     l2 l1);
102                 let time4 = Unix.gettimeofday () in
103                 printf "done (extending parser took %f, extending pretty printer took %f)\n"
104                   (time2 -. time1) (time4 -. time3);
105                 flush stdout
106             | P.Interpretation (l2, l3) ->
107                 print_endline "Adding interpretation ..."; flush stdout;
108                 let time1 = Unix.gettimeofday () in
109                 ignore (CicNotationRew.add_interpretation l2 l3);
110                 let time2 = Unix.gettimeofday () in
111                 printf "done (patterns compilation took %f seconds)\n"
112                   (time2 -. time1);
113                 flush stdout
114             | P.Render uri ->
115                 let obj, _ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
116                 let annobj, _, _, id_to_sort, _, _, _ =
117                   Cic2acic.acic_object_of_cic_object obj
118                 in
119                 let annterm =
120                   match annobj with
121                   | Cic.AConstant (_, _, _, _, ty, _, _)
122                   | Cic.AVariable (_, _, _, ty, _, _) -> ty
123                   | _ -> assert false
124                 in
125                 let time1 = Unix.gettimeofday () in
126                 let t, id_to_uri =
127                   CicNotationRew.ast_of_acic id_to_sort annterm
128                 in
129                 let time2 = Unix.gettimeofday () in
130                 printf "ast creation took %f seconds\n" (time2 -. time1);
131                 prerr_endline "====";
132                 print_endline (CicNotationPp.pp_term t); flush stdout;
133                 flush stdout;
134                 let time3 = Unix.gettimeofday () in
135                 let t' = CicNotationRew.pp_ast t in
136                 let time4 = Unix.gettimeofday () in
137                 printf "pretty printing took %f seconds\n" (time4 -. time3);
138                 print_endline (CicNotationPp.pp_term t'); flush stdout)
139 (*                 CicNotationParser.print_l2_pattern ()) *)
140         | 1 -> ignore (CicNotationParser.parse_syntax_pattern istream)
141         | 2 ->
142             let ast = CicNotationParser.parse_ast_pattern istream in
143             if ast = P.Sort `Prop then
144               prerr_endline "eureka"
145             else
146               prerr_endline ":-("
147         | 3 -> ignore (CicNotationParser.parse_interpretation istream)
148         | _ -> Arg.usage arg_spec usage; exit 1);
149       with CicNotationParser.Parse_error (floc, msg) ->
150         let (x, y) = P.loc_of_floc floc in
151         let before = String.sub line 0 x in
152         let error = String.sub line x (y - x) in
153         let after = String.sub line y (String.length line - y) in
154         eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
155         prerr_endline (sprintf "at character %d-%d: %s" x y msg)
156     done
157   with End_of_file ->
158     close_in ic
159