Refactor xpath parser and ast in a submodule.
[tatoo.git] / src / test.ml
index 770d4c5..dec8918 100644 (file)
 (*                                                                     *)
 (***********************************************************************)
 
+(*
+  Time-stamp: <Last modified on 2013-02-05 14:39:43 CET by Kim Nguyen>
+*)
+
+(** use: xml_file "XPath querie"
+    or : xml_file -f XPath_querie_file
+    only the first line of XPath_querie_file is read 
+*)
 
 module F = Formula
+module A = Ata
 (* to force ocaml build to add Formula to the dependency chain even if
    we don't use it yet*)
 
@@ -24,13 +33,14 @@ let doc =
   close_in fd; d
 
 
-
-let query = XPath.parse Sys.argv.(2)
+let query =
+  let arg2 = Sys.argv.(2) in
+  XPath.Parser.parse (Ulexing.from_latin1_string arg2)
 
 open Format
 
 let () =
-  fprintf err_formatter "Query: %a\n%!" XPath.Ast.print query;
+  fprintf err_formatter "Query: %a\n%!" XPath.Ast.print_path query;
   fprintf err_formatter "Document:\n%!";
   Tree.print_xml stderr doc (Tree.root doc);
   exit 0