src/Builder4/config1.builder
[app.Builder.js] / src / Spawn.vala
1
2 /// # valac  --pkg gio-2.0    --pkg posix Spawn.vala -o /tmp/Spawn
3
4 using GLib;
5  
6
7 /**
8  * Revised version?
9  * 
10  * x = new Spawn( "/tmp", {"ls", "-l" })
11  * 
12  * // these are optionall..
13  * x.env = ..... (if you need to set one...
14  * x.output_line.connect((string str) => { 
15  *              if ( Gtk.events_pending()) { Gtk.main_iteration(); } 
16  * });
17  * x.input_line.connect(() => { return string });
18  * 
19  * x.run((int res, string output, string stderr) => { ... });
20
21  * 
22  * 
23  */
24
25
26  
27 public errordomain SpawnError {
28     NO_ARGS,
29     WRITE_ERROR,
30     EXECUTE_ERROR
31
32 }
33
34 /**
35  * @class Spawn
36  * @param cwd {String}            working directory. (defaults to home directory)
37  * @param args {Array}            arguments eg. [ 'ls', '-l' ]
38  * 
39  
40  * @arg env {Array}             enviroment eg. [ 'GITDIR=/home/test' ]
41  * @arg is_async {Boolean} (optional)return instantly, or wait for exit. (default no)
42  * @arg trhow_exceptions {Boolean}    throw exception on failure (default no)
43  
44  * 
45  */
46   
47 public class Spawn : Object
48 {
49         /**
50          * @signal input called at start to send input when process starts?
51          * @return the string or null 
52          */
53         public signal string? input();
54         /**
55          * @signal complete called at when the command has completed.
56          * 
57          */
58         public signal void complete(int res, string str, string stderr);
59         /**
60          * @signal output_line called when a line is recieved from the process.
61          * Note you may want to connect this and run 
62          *   if ( Gtk.events_pending()) { Gtk.main_iteration(); }
63          * 
64          * @param {string} str 
65          */
66     public signal void output_line(string str);
67     
68         public string cwd;
69         public string[] args;
70         public string[] env;
71         
72         public bool is_async = true;
73         public bool throw_exceptions = false;
74         public bool detach = false;
75
76     public Spawn(string cwd, string[] args) throws Error
77     {
78        
79      
80         this.cwd = cwd;
81         this.args = args;
82         this.env = {};
83         
84         this.output = "";
85         this.stderr = "";
86     
87         this.cwd =  this.cwd.length  < 1 ? GLib.Environment.get_home_dir() : this.cwd;
88         if (this.args.length < 0) {
89             throw new SpawnError.NO_ARGS("No arguments");
90         }
91         
92     
93     }
94
95     
96     MainLoop ctx = null; // the mainloop ctx.
97     
98     /**
99      * @property output {String} resulting output
100      */
101     public string output;
102     /**
103      * @property stderr {String} resulting output from stderr
104      */
105     public string stderr;
106      /**
107      * @property result {Number} execution result.
108      */
109     public int result= 0;
110     /**
111      * @property pid {Number} pid of child process (of false if it's not running)
112      */
113     int  pid = -1;
114     /**
115      * @property in_ch {GLib.IOChannel} input io channel
116      */
117     IOChannel in_ch = null;
118     /**
119      * @property out_ch {GLib.IOChannel} output io channel
120      */
121     IOChannel out_ch = null;
122     /**
123      * @property err_ch {GLib.IOChannel} stderr io channel
124      */
125     IOChannel err_ch = null;
126     /**
127      * @property err_src {int} the watch for errors
128      */
129     
130     int err_src = -1;
131       /**
132      * @property err_src {int} the watch for output
133      */
134     int out_src = -1;
135     
136     /**
137      * 
138      * @method run
139      * Run the configured command.
140      * result is applied to object properties (eg. '?' or 'stderr')
141      * @returns {Object} self.
142      */
143         public void run( ) throws SpawnError, GLib.SpawnError, GLib.IOChannelError
144         {
145                 
146                  
147                 err_src = -1;
148                 out_src = -1;
149                 int standard_input;
150                 int standard_output;
151                 int standard_error;
152
153
154                  
155                 GLib.debug("cd %s; %s" , this.cwd , string.joinv(" ", this.args));
156                 
157                 if (this.detach) { 
158                         Process.spawn_async_with_pipes (
159                                 this.cwd,
160                                 this.args,
161                                 this.env.length > 0 ? this.env : null,
162                                 SpawnFlags.SEARCH_PATH | SpawnFlags.DO_NOT_REAP_CHILD,
163                                 null,
164                                 out this.pid);
165                                 ChildWatch.add (this.pid, (pid, status) => {
166                                         // Triggered when the child indicated by child_pid exits
167                                         Process.close_pid (pid);
168                                          
169                                 });
170                                 
171                                 return;
172
173                 }
174                 Process.spawn_async_with_pipes (
175                                 this.cwd,
176                                 this.args,
177                                 this.env.length > 0 ? this.env : null,
178                                 SpawnFlags.SEARCH_PATH | SpawnFlags.DO_NOT_REAP_CHILD,
179                                 null,
180                                 out this.pid,
181                                 out standard_input,
182                                 out standard_output,
183                                 out standard_error);
184
185                 // stdout:
186                  
187                         
188                 //print(JSON.stringify(gret));    
189                  
190                 GLib.debug("PID: %d" ,this.pid);
191                  
192                 
193                 this.in_ch = new GLib.IOChannel.unix_new(standard_input);
194                 this.out_ch = new GLib.IOChannel.unix_new(standard_output);
195                 this.err_ch = new GLib.IOChannel.unix_new(standard_error);
196                 
197                 // make everything non-blocking!
198
199
200
201                           // using NONBLOCKING only works if io_add_watch
202                 //returns true/false in right conditions
203                 this.in_ch.set_flags (GLib.IOFlags.NONBLOCK);
204                 this.out_ch.set_flags (GLib.IOFlags.NONBLOCK);
205                 this.err_ch.set_flags (GLib.IOFlags.NONBLOCK);
206                            
207
208
209  
210                 ChildWatch.add (this.pid, (w_pid, result) => {
211                 
212                         this.result = result;
213                         GLib.debug("child_watch_add : result:%d ", result);
214                         
215                    
216                         this.read(this.out_ch);
217                         this.read(this.err_ch);
218                         
219                         
220                         Process.close_pid(this.pid);
221                         this.pid = -1;
222                         if (this.ctx != null) {
223                                 this.ctx.quit();
224                                 this.ctx = null;
225                         }
226                         this.tidyup();
227                         //print("DONE TIDYUP");
228                         
229                         this.complete(this.result, this.output, this.stderr);
230                         
231                 });
232             
233                           
234         
235         
236        
237             
238             // add handlers for output and stderr.
239         
240         this.out_src = (int) this.out_ch.add_watch (
241             IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
242             (channel, condition) => {
243                return this.read(this.out_ch);
244             }
245         );
246         this.err_src = (int) this.err_ch.add_watch (
247                  IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
248             (channel, condition) => {
249                return this.read(this.err_ch);
250             }
251         );
252               
253         
254         // call input.. 
255         if (this.pid > -1) {
256             // child can exit before we get this far..
257             var input = this.input();
258             if (input != null) {
259                         
260                 try {
261                     this.write(input);
262                      // this probably needs to be a bit smarter...
263                     //but... let's close input now..
264                     this.in_ch.shutdown(true);
265                     this.in_ch = null;
266                      
267                     
268                 } catch (Error e) {
269                     this.tidyup();
270                     return;
271                   //  throw e;
272                     
273                 }
274                 
275             }
276             
277         }
278         // async - if running - return..
279         if (this.is_async && this.pid > -1) {
280             return;
281         }
282          
283         // start mainloop if not async..
284         
285         if (this.pid > -1) {
286             GLib.debug("starting main loop");
287              //if (this.cfg.debug) {
288              //  
289              // }
290                 this.ctx = new MainLoop ();
291             this.ctx.run(); // wait fore exit?
292             
293             GLib.debug("main_loop done!");
294         } else {
295             this.tidyup(); // tidyup get's called in main loop. 
296         }
297         
298         if (this.throw_exceptions && this.result != 0) {
299             
300             throw new SpawnError.EXECUTE_ERROR(this.stderr);
301             //this.toString = function() { return this.stderr; };
302             ///throw new Exception this; // we throw self...
303         }
304         
305         // finally throw, or return self..
306         
307         return;
308     
309     }
310     
311     
312
313     private void tidyup()
314     {
315         if (this.pid > -1) {
316             Process.close_pid(this.pid); // hopefully kills it..
317             this.pid = -1;
318         }
319         try {
320             if (this.in_ch != null)  this.in_ch.shutdown(true);
321             if (this.out_ch != null)  this.out_ch.shutdown(true);
322             if (this.err_ch != null)  this.err_ch.shutdown(true);
323         } catch (Error e) {
324             // error shutting donw.
325         }
326         // blank out channels
327         this.in_ch = null;
328         this.err_ch = null;
329         this.out_ch = null;
330         // rmeove listeners !! important otherwise we kill the CPU
331         //if (this.err_src > -1 ) GLib.source_remove(this.err_src);
332         //if (this.out_src > -1 ) GLib.source_remove(this.out_src);
333         this.err_src = -1;
334         this.out_src = -1;
335         
336     }
337     
338     
339     /**
340      * write to stdin of process
341      * @arg str {String} string to write to stdin of process
342      * @returns GLib.IOStatus (0 == error, 1= NORMAL)
343      */
344     private int write(string str) throws Error // write a line to 
345     {
346         if (this.in_ch == null) {
347             return 0; // input is closed
348         }
349         //print("write: " + str);
350         // NEEDS GIR FIX! for return value.. let's ignore for the time being..
351         //var ret = {};
352         size_t written;
353         var res = this.in_ch.write_chars(str.to_utf8(), out written);
354         
355         //print("write_char retunred:" + JSON.stringify(res) +  ' ' +JSON.stringify(ret)  );
356         
357         if (res != GLib.IOStatus.NORMAL) {
358             throw new SpawnError.WRITE_ERROR("Write failed");
359         }
360         //return ret.value;
361         return str.length;
362         
363     }
364
365
366     
367     /**
368      * read from pipe and call appropriate listerner and add to output or stderr string.
369      * @arg giochannel to read from.
370      * @returns none
371      */
372     private bool read(IOChannel ch) 
373     {
374        // string prop = (ch == this.out_ch) ? "output" : "stderr";
375        // print("prop: " + prop);
376
377         
378         //print(JSON.stringify(ch, null,4));
379         while (true) {
380             string buffer;
381             size_t term_pos;
382             size_t len;
383             IOStatus status;
384             try {
385                 status = ch.read_line( out buffer,  out len,  out term_pos );
386             } catch (Error e) {
387                 //FIXme
388                 break; // ??
389                 
390             }
391
392             // print('status: '  +JSON.stringify(status));
393             // print(JSON.stringify(x));
394              switch(status) {
395                 case GLib.IOStatus.NORMAL:
396                 
397                     //write(fn, x.str);
398                     
399                     //if (this.listeners[prop]) {
400                     //    this.listeners[prop].call(this, x.str_return);
401                     //}
402                     if (ch == this.out_ch) {
403                         this.output += buffer;
404                         this.output_line(  buffer);                  
405                         
406                     } else {
407                         this.stderr += buffer;
408                         this.output_line(  buffer); 
409                     }
410                     //_this[prop] += x.str_return;
411                     //if (this.cfg.debug) {
412                         //GLib.debug("%s : %s", prop , buffer);
413                     //}
414                     if (this.is_async) {
415                          
416                         //if ( Gtk.events_pending()) {
417                         //     Gtk.main_iteration();
418                         //}
419                          
420                     }
421                     
422                     //this.ctx.iteration(true);
423                    continue;
424                 case GLib.IOStatus.AGAIN:
425                                         //print("Should be called again.. waiting for more data..");
426                             return true;
427                     //break;
428                 case GLib.IOStatus.ERROR:    
429                 case GLib.IOStatus.EOF:
430                             return false;
431                     //break;
432                 
433             }
434             break;
435         }
436        
437         //print("RETURNING");
438          return false; // allow it to be called again..
439     }
440     
441 }
442 /*
443  
444 int main (string[] args) {
445         GLib.Log.set_handler(null, 
446                 GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING, 
447                 (dom, lvl, msg) => {
448                 print("%s: %s\n", dom, msg);
449         });
450
451         var ctx = new GLib.MainLoop ();
452         var a = new Spawn("", { "ls" , "-l"});
453         a.run((res, str, stderr) => {
454                 print(str);
455                 ctx.quit();
456         });
457         
458         
459         ctx.run(); // wait for exit?
460             
461         return 0;
462 }
463  */