X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Ftest.ml;h=42dc011990d5a86b0baa17775f04e095f36ab000;hp=935023d35fe3c8166135cdd7a2f2a7f999cc676f;hb=a43a51c51314468a47a36904c2b904f5a9a14bca;hpb=445457b2dc5ca11cb3d305c346fe7937f29ba2a9 diff --git a/src/test.ml b/src/test.ml index 935023d..42dc011 100644 --- a/src/test.ml +++ b/src/test.ml @@ -14,9 +14,9 @@ (***********************************************************************) -(** use: xml_file "XPath querie" - or : xml_file -f XPath_querie_file - only the first line of XPath_querie_file is read +(** use: [./test xml_file "XPath querie"] + or : [./test xml_file -f XPath_querie_file] + only the first line of [XPath_querie_file] is read *) open Format @@ -56,6 +56,8 @@ let () = let query = query () in let asta = build_asta query in let run = compute_run doc asta in + let selected_nodes = Run.selected_nodes doc asta in + Format.pp_set_margin err_formatter 80; fprintf err_formatter "@[##### Query #####@. %a@]\n" XPath.Ast.print query; output_string stderr "\n##### Doc #####\n"; @@ -63,4 +65,12 @@ let () = output_string stderr "\n"; Asta.print err_formatter asta; Run.print err_formatter run; + output_string stderr "\n # Doc with positions: \n"; + Tree.print_xml_preorder stderr doc (Tree.root doc); + let rec print_selec fmt l = match l with + | [x] -> fprintf fmt "%s" (string_of_int x) + | x :: tl -> fprintf fmt "%s" ((string_of_int x)^"; ");print_selec fmt tl + | [] -> fprintf fmt "%s" "ø" in + fprintf err_formatter "@.@. # Selected nodes: {%a}@." + print_selec selected_nodes; exit 0