X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Ftest.ml;h=3216e71712a84f4a22f5a802f49856cbae62da9e;hb=7aa6c5c4e2b329bbf5fa7cc31a7542ba48ace84f;hp=dec8918dc92cead215150e361dbcc1137a82035a;hpb=9c0b145d050a5981010435f54848dc862782709c;p=tatoo.git diff --git a/src/test.ml b/src/test.ml index dec8918..3216e71 100644 --- a/src/test.ml +++ b/src/test.ml @@ -14,34 +14,46 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) (** use: xml_file "XPath querie" or : xml_file -f XPath_querie_file - only the first line of XPath_querie_file is read + only the first line of XPath_querie_file is read *) -module F = Formula -module A = Ata +module F = Auto.Formula +module A = Auto.Ata +module X = Xpath.Compile + (* to force ocaml build to add Formula to the dependency chain even if we don't use it yet*) let doc = let fd = open_in Sys.argv.(1) in - let d = Tree.load_xml_file fd in + let d = Tree.Naive.load_xml_file fd in close_in fd; d let query = let arg2 = Sys.argv.(2) in - XPath.Parser.parse (Ulexing.from_latin1_string arg2) + Xpath.Parser.parse (Ulexing.from_latin1_string arg2) + +let auto = + Xpath.Compile.path query open Format let () = - 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 + fprintf err_formatter "Query: %a\n%!" Xpath.Ast.print_path query; + fprintf err_formatter "Automata: %a\n%!" Auto.Ata.print auto; + fprintf err_formatter "Evaluating automaton:\n%!"; + let module Naive = Auto.Eval.Make(Tree.Naive) in + let results = Naive.eval auto doc (Tree.Naive.root doc) in + List.iter (fun n -> + Tree.Naive.print_xml stderr doc n; + flush stderr; + output_string stderr "\n-------------------\n"; + ) results +