Stdin, stdout and stderr updated, tested.
[Faustine.git] / interpreter / main.ml
1 (**
2 Module: Interpreter
3 Description: Input wave -> interpretation -> output wave
4 @author WANG Haisheng
5 Created: 15/05/2013 Modified: 14/08/2013
6 *)
7
8 open Aux;;
9 open Beam;;
10 open Process;;
11 open Faustio;;
12
13 exception Missing_Expression;;
14
15 let version = "Faustine: 0.0.1";;
16
17 let set_GC () =
18 let _ = Gc.set { (Gc.get())
19 with Gc.minor_heap_size = 0xFFFFFF } in
20 let _ = Gc.set { (Gc.get())
21 with Gc.major_heap_increment = 0xFFFFFF } in
22 let _ = Gc.set { (Gc.get())
23 with Gc.space_overhead = 100 } in
24 let _ = Gc.set { (Gc.get())
25 with Gc.max_overhead = 0xFFF } in
26 let _ = Gc.set { (Gc.get())
27 with Gc.stack_limit = 0xFFFFF } in
28 let _ = Gc.set { (Gc.get())
29 with Gc.allocation_policy = 1 } in
30 () ;;
31
32 let path_dsp = ref "";;
33 let size_input = ref 0;;
34 let inputs = ref [];;
35 let time_max = ref 0xFFFF;;
36 let dir_output = ref "";;
37 let format_output = ref "";;
38 let basename_output = ref "";;
39 let output = ref "";;
40
41 let option_usage = "usage: " ^ Sys.argv.(0)
42 ^ " [-f dsp_src] [-i input] [-l length] [--odir dir] [--oformat wav/csv] [--obasename name]";;
43
44 let option_unknown =
45 fun x -> raise (Arg.Bad ("Bad argument : " ^ x))
46
47 let speclist = [
48 ("-f", Arg.String (fun s -> path_dsp := s), ": faust .dsp source file");
49 ("-i", Arg.String (fun s -> incr size_input; inputs := !inputs @ [s]), ": set input wave file");
50 ("-l", Arg.Int (fun i -> time_max := i), ": maximun number of output samples");
51 ("--odir", Arg.String (fun s -> dir_output := s), ": set output directory");
52 ("--oformat", Arg.String (fun s -> format_output := s), ": set output format");
53 ("--obasename", Arg.String (fun s -> basename_output := s), ": set output basename");
54 ];;
55
56 let file_of_path : string -> string =
57 fun (path : string) ->
58 let fragments = Str.split (Str.regexp "/") path in
59 let n = List.length fragments in
60 List.nth fragments (n - 1);;
61
62 let stdinput = fun (x : unit) ->
63 let path = Unix.readlink "/proc/self/fd/0" in
64 if path <> "/dev/pts/4" then
65 ( incr size_input;
66 inputs := !inputs @ [path] )
67 else ();;
68
69 let stdoutput = fun (x : unit) ->
70 let path = Unix.readlink "/proc/self/fd/1" in
71 if path <> "/dev/pts/4" then output := path
72 else ();;
73
74 let stdio = fun (x : unit) ->
75 stdinput ();
76 stdoutput ();;
77
78 let main () =
79
80 let () = Arg.parse speclist option_unknown option_usage in
81 let () = stdio () in
82 let _ = Sys.signal Sys.sigalrm Sys.Signal_ignore in
83 let _ = set_GC () in
84 let io = new iomanager in
85 let () = io#set !output !dir_output !format_output !basename_output in
86
87
88 let () = output_string stderr ("\n Faustine -> Reading input ...") in
89 let tic0 = Unix.time () in
90 let input : beam = io#read !inputs in
91 let toc0 = Unix.time () in
92 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc0 -. tic0)) ^ "s.)\n") in
93
94
95 let () = output_string stderr (" Faustine -> Preprocessing...") in
96 let tic1 = Unix.time () in
97 let faust_core = Preprocess.preprocess !path_dsp in
98 let toc1 = Unix.time () in
99 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc1 -. tic1)) ^ "s.)\n") in
100
101
102 let () = output_string stderr (" Faustine -> Constructing process...") in
103 let tic2 = Unix.time () in
104 let faust_exp = exp_of_string faust_core in
105 let proc = (new proc_factory)#make faust_exp in
106 let toc2 = Unix.time () in
107 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc2 -. tic2)) ^ "s.)\n") in
108
109
110 let () = output_string stderr (" Faustine -> Constructing signals...") in
111 let tic3 = Unix.time () in
112 let output : beam = proc#eval input in
113 let toc3 = Unix.time () in
114 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc3 -. tic3)) ^ "s.)\n") in
115
116
117 let () = output_string stderr (" Faustine -> Evaluating...") in
118 let tic4 = Unix.time () in
119 let data = output#output !time_max in
120 let rates = output#frequency in
121 let toc4 = Unix.time () in
122 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc4 -. tic4)) ^ "s.)\n") in
123
124
125 let () = output_string stderr (" Faustine -> Writing output...") in
126 let tic5 = Unix.time () in
127 let output_paths = io#write rates data in
128 let toc5 = Unix.time () in
129 let () = output_string stderr (" Done. (duration: " ^ (string_of_float (toc5 -. tic5)) ^ "s.)\n") in
130
131 let _ = Array.map (output_string stderr)
132 (Array.map decorate output_paths) in
133 ();;
134
135 main();;
136