Compilation works for all XPath queries from the core specified in the thesis
[tatoo.git] / src / test.ml
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16
17 (** use: xml_file "XPath querie"
18     or : xml_file -f XPath_querie_file
19     only the first line of XPath_querie_file is read 
20 *)
21
22 open Format
23
24 let doc () =
25   let fd = open_in Sys.argv.(1) in
26   let d = Tree.load_xml_file fd in
27   close_in fd;
28   fprintf err_formatter "Parse Tree OK ! ";
29   d
30
31
32 let query () = 
33   let arg2 = Sys.argv.(2) in
34   if arg2 = "-f"
35   then  let fq = open_in Sys.argv.(3) in
36         let q = XPath.parse_file fq in
37         close_in fq;
38         fprintf err_formatter "Parse query OK ! ";
39         q
40   else let q = XPath.parse_string arg2 in
41        fprintf err_formatter "Parse query OK ! ";
42        q
43
44 let build_asta query =
45   let asta = Compil.trans query in
46   fprintf err_formatter "Compil OK !\n";
47   asta
48
49 let () =
50   let query = query () in
51   let doc = doc () in
52   let asta = build_asta query in
53   fprintf err_formatter "@[<v 0> ##### Query #####@.      %a@]@ "
54     XPath.Ast.print query;
55   Asta.print err_formatter asta;
56   fprintf err_formatter "@[<v 0> ##### Doc #####@.%a@]@ "
57     Tree.print_xml doc (Tree.root doc);
58   exit 0
59