X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=main.ml;h=b98932972e3c1382cb6c8709871ef58a0a486e55;hb=36154bd9b953b84d539d2505d94c414b2e3c72e6;hp=b342388335958edefd9c501051245f8843388e36;hpb=eebef30070a951d852ce5811b289d8131a5300eb;p=SXSI%2Fxpathcomp.git diff --git a/main.ml b/main.ml index b342388..b989329 100644 --- a/main.ml +++ b/main.ml @@ -22,14 +22,15 @@ 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 = + (* + (* 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 _ = Tag.init (Tree.Binary.tag_pool v) in - MM(v,__LOCATION__); Printf.eprintf "Parsing query : "; let query = try time @@ -41,8 +42,8 @@ let main filename query output = 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; *) +(* 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); @@ -64,8 +65,32 @@ let main filename query output = 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%!"; Tree.DEBUGTREE.print_stats Format.err_formatter;; Gc.full_major() +ENDIF