]> 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   Helm_registry.load_from "test_parser.conf.xml"
30 (*   Http_getter.init () *)
31
32 let xml_stream_of_markup =
33   let rec print_box (t: CicNotationPres.boxml_markup) =
34     Box.box2xml print_mpres t
35   and print_mpres (t: CicNotationPres.mathml_markup) =
36     Mpresentation.print_mpres print_box t
37   in
38   print_mpres
39
40 let dump_xml t id_to_uri fname =
41   print_endline (sprintf "dumping MathML to %s ..." fname);
42   flush stdout;
43   let oc = open_out fname in
44   let markup = CicNotationPres.render id_to_uri t in
45   Xml.pp_to_outchan (xml_stream_of_markup markup) oc;
46   close_out oc
47
48 let _ =
49   let module P = CicNotationPt in
50   let level = ref ~-1 in
51   let arg_spec = [ "-level", Arg.Set_int level, "set the notation level" ] in
52   let usage = "test_parser -level { 1 | 2 | 3 }" in
53   Arg.parse arg_spec (fun _ -> raise (Arg.Bad usage)) usage;
54   let ic = stdin in
55   try
56     printf "Parsing notation level %d\n" !level; flush stdout;
57     while true do
58       let line = input_line ic in
59       let istream = Stream.of_string line in
60       try
61         (match !level with
62         | -1 ->
63             (match CicNotationParser.parse_phrase istream with
64             | P.Print t -> 
65                 prerr_endline "====";
66                 print_endline (CicNotationPp.pp_term t); flush stdout;
67                 let t' = CicNotationRew.pp_ast t in
68                 print_endline (CicNotationPp.pp_term t'); flush stdout;
69                 let tbl = Hashtbl.create 0 in
70                 dump_xml t' tbl "out.xml"
71             | P.Notation (l1, associativity, precedence, l2) ->
72                 print_endline "Extending parser ..."; flush stdout;
73                 let time1 = Unix.gettimeofday () in
74                 ignore
75                   (CicNotationParser.extend l1 ?precedence ?associativity
76                     (fun env loc -> CicNotationFwd.instantiate_level2 env l2));
77                 let time2 = Unix.gettimeofday () in
78                 print_endline "Extending pretty printer ..."; flush stdout;
79                 let time3 = Unix.gettimeofday () in
80                 ignore
81                   (CicNotationRew.add_pretty_printer ?precedence ?associativity
82                     l2 l1);
83                 let time4 = Unix.gettimeofday () in
84                 printf "done (extending parser took %f, extending pretty printer took %f)\n"
85                   (time2 -. time1) (time4 -. time3);
86                 flush stdout
87             | P.Interpretation (l2, l3) ->
88                 print_endline "Adding interpretation ..."; flush stdout;
89                 let time1 = Unix.gettimeofday () in
90                 ignore (CicNotationRew.add_interpretation l2 l3);
91                 let time2 = Unix.gettimeofday () in
92                 printf "done (patterns compilation took %f seconds)\n"
93                   (time2 -. time1);
94                 flush stdout
95             | P.Render uri ->
96                 let obj, _ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
97                 let annobj, _, _, id_to_sort, _, _, _ =
98                   Cic2acic.acic_object_of_cic_object obj
99                 in
100                 let annterm =
101                   match annobj with
102                   | Cic.AConstant (_, _, _, _, ty, _, _)
103                   | Cic.AVariable (_, _, _, ty, _, _) -> ty
104                   | _ -> assert false
105                 in
106                 let time1 = Unix.gettimeofday () in
107                 let t, id_to_uri =
108                   CicNotationRew.ast_of_acic id_to_sort annterm
109                 in
110                 let time2 = Unix.gettimeofday () in
111                 printf "ast creation took %f seconds\n" (time2 -. time1);
112                 prerr_endline "====";
113                 print_endline (CicNotationPp.pp_term t); flush stdout;
114                 flush stdout;
115                 let time3 = Unix.gettimeofday () in
116                 let t' = CicNotationRew.pp_ast t in
117                 let time4 = Unix.gettimeofday () in
118                 printf "pretty printing took %f seconds\n" (time4 -. time3);
119                 dump_xml t id_to_uri "out.xml";
120                 print_endline (CicNotationPp.pp_term t'); flush stdout
121                 )
122 (*                 CicNotationParser.print_l2_pattern ()) *)
123         | 1 -> ignore (CicNotationParser.parse_syntax_pattern istream)
124         | 2 ->
125             let ast = CicNotationParser.parse_ast_pattern istream in
126             if ast = P.Sort `Prop then
127               prerr_endline "eureka"
128             else
129               prerr_endline ":-("
130         | 3 -> ignore (CicNotationParser.parse_interpretation istream)
131         | _ -> Arg.usage arg_spec usage; exit 1);
132       with CicNotationParser.Parse_error (floc, msg) ->
133         let (x, y) = P.loc_of_floc floc in
134         let before = String.sub line 0 x in
135         let error = String.sub line x (y - x) in
136         let after = String.sub line y (String.length line - y) in
137         eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
138         prerr_endline (sprintf "at character %d-%d: %s" x y msg)
139     done
140   with End_of_file ->
141     close_in ic
142