Add serialization functions
[SXSI/xpathcomp.git] / main.ml
diff --git a/main.ml b/main.ml
index 48f81bd..c53edf2 100644 (file)
--- 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
-      MM(v,__LOCATION__);
+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
       Printf.eprintf "Parsing query : ";    
       let query = try
        time
@@ -61,17 +62,35 @@ let main filename query output =
        Printf.eprintf "Total time : %fms\n Coherence : %i\n%!" (total_time())
 ;;
                
-let argc = Array.length Sys.argv;;
-if (argc < 3 || argc >4)
-then
-  (prerr_endline ("usage : " ^ Sys.argv.(0) ^ " <document> \'query\'[ <output> ]");
-   exit 1)
-;;
 
+Options.parse_cmdline();;
 
-main Sys.argv.(1) Sys.argv.(2) (if argc == 4 then Some Sys.argv.(3) else None) ;; 
+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