bd7fcce58af748f2e37a61a06576393bd6a45d69
[SXSI/xpathcomp.git] / options.ml
1 let index_empty_texts = ref false
2 let sample_factor = ref 64
3 let disable_text_collection = ref false
4
5 let query = ref ""
6 let input_file = ref ""
7 let output_file = ref None
8 let save_file = ref ""
9 let count_only = ref false
10
11
12 let usage_msg = Printf.sprintf "%s <input.{xml|srx}> 'query' [output]" Sys.argv.(0)
13
14
15 let pos = ref 0
16 let anon_fun = 
17   fun s -> match !pos with
18     | 0 -> input_file:= s;incr pos
19     | 1 -> query := s; incr pos
20     | 2 -> output_file := Some s; incr pos
21     | _ -> raise (Arg.Bad(s))
22
23 let spec = [ "-c", Arg.Set(count_only), "counting only (don't materialize the result set";
24              "-f", Arg.Set_int(sample_factor), "sample factor [default=64]";
25              "-i", Arg.Set(index_empty_texts), "index empty texts [default=false]";
26              "-d", Arg.Set(disable_text_collection), "disable text collection[default=false]"; 
27              "-s", Arg.Set_string(save_file), "save the intermediate representation into file.srx"; 
28            ]
29
30 let parse_cmdline() = 
31   let _ = Arg.parse spec anon_fun usage_msg
32   in
33     if (!pos > 3 || !pos < 2)
34     then begin Arg.usage spec usage_msg; exit 1 end
35
36       
37              
38