X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=main.ml;h=8b2bc463484ab69ada58872bd80ac46851e61492;hb=f84dd2f6de7d5da16da729dc2e91cbdeb3585d75;hp=b342388335958edefd9c501051245f8843388e36;hpb=eebef30070a951d852ce5811b289d8131a5300eb;p=SXSI%2Fxpathcomp.git diff --git a/main.ml b/main.ml index b342388..8b2bc46 100644 --- a/main.ml +++ b/main.ml @@ -6,7 +6,7 @@ (******************************************************************************) INCLUDE "debug.ml" -open Automaton +open Ata let l = ref [] ;; @@ -22,14 +22,8 @@ let time f x = let total_time () = List.fold_left (+.) 0. !l;; -let main filename query output = - (* Just a trick to allow the C++ code to print debugging stuff first *) - let v = time (fun () -> let v = Tree.Binary.parse_xml_uri filename; - in Printf.eprintf "Parsing document : %!";v - ) () - in +let main v query output = let _ = Tag.init (Tree.Binary.tag_pool v) in - MM(v,__LOCATION__); Printf.eprintf "Parsing query : "; let query = try time @@ -40,32 +34,55 @@ let main filename query output = Printf.eprintf "Compiling query : "; let auto = time XPath.Compile.compile query in XPath.Ast.print Format.err_formatter query; - Format.eprintf "\n%!"; - (* Format.eprintf "Internal rep of the tree is :\n%!"; - Tree.Binary.dump v; *) Printf.eprintf "Execution time : "; - time (fun v -> ignore (TopDown.accept auto v)) v; - Printf.eprintf "Number of nodes in the result set : %i\n" (BST.cardinal auto.result); - begin - match output with - | None -> () - | Some f -> - - Printf.eprintf "Serializing results : "; - time( fun () -> - let oc = open_out f in - output_string oc "\n"; - BST.iter (fun t -> Tree.Binary.print_xml_fast oc t; - output_char oc '\n') auto.result) (); - end; - Printf.eprintf "Total time : %fms\n Coherence : %i\n%!" (total_time()) + let result = time (BottomUpNew.run auto) v in + Printf.eprintf "Number of nodes in the result set : %i\n" (List.length result); + begin + match output with + | None -> () + | Some f -> + + Printf.eprintf "Serializing results : "; + time( fun () -> + let oc = open_out f in + output_string oc "\n"; + List.iter (fun t -> Tree.Binary.print_xml_fast oc t; + output_char oc '\n') result) (); + end; + Printf.eprintf "Total time : %fms\n Coherence : %i\n%!" (total_time()) ;; Options.parse_cmdline();; -main !Options.input_file !Options.query !Options.output_file;; +let v = + if (Filename.check_suffix !Options.input_file ".srx") + then + begin + Printf.eprintf "Loading from file : "; + time (Tree.Binary.load ~sample:!Options.sample_factor ) + (Filename.chop_suffix !Options.input_file ".srx"); + end + else + let v = + time (fun () -> let v = Tree.Binary.parse_xml_uri !Options.input_file; + in Printf.eprintf "Parsing document : %!";v + ) () + in + if !Options.save_file <> "" + then begin + Printf.eprintf "Writing file to disk : "; + time (Tree.Binary.save v) !Options.save_file; + end; + v +in + main v !Options.query !Options.output_file;; +IFDEF DEBUG +THEN Printf.eprintf "\n=================================================\nDEBUGGING\n%!"; +Format.eprintf "\nAutomaton is:\n%!"; +Ata.dump Format.err_formatter auto; Tree.DEBUGTREE.print_stats Format.err_formatter;; Gc.full_major() +ENDIF