b4c4c20998a4882df9955a37433bdf477c332419
[roobuilder] / 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     public int  pid {
114         get;
115         private set;
116         default = -1;
117         }
118     /**
119      * @property in_ch {GLib.IOChannel} input io channel
120      */
121     IOChannel in_ch = null;
122     /**
123      * @property out_ch {GLib.IOChannel} output io channel
124      */
125     IOChannel out_ch = null;
126     /**
127      * @property err_ch {GLib.IOChannel} stderr io channel
128      */
129     IOChannel err_ch = null;
130     /**
131      * @property err_src {int} the watch for errors
132      */
133     
134     int err_src = -1;
135       /**
136      * @property err_src {int} the watch for output
137      */
138     int out_src = -1;
139     
140     /**
141      * 
142      * @method run
143      * Run the configured command.
144      * result is applied to object properties (eg. '?' or 'stderr')
145      * @returns {Object} self.
146      */
147         public void run( ) throws SpawnError, GLib.SpawnError, GLib.IOChannelError
148         {
149                 
150                  
151                 err_src = -1;
152                 out_src = -1;
153                 int standard_input;
154                 int standard_output;
155                 int standard_error;
156
157
158                  
159                 GLib.debug("cd %s; %s" , this.cwd , string.joinv(" ", this.args));
160                 var pid = -1;
161                 
162                 if (this.detach) { 
163                         //Process.spawn_async_with_pipes (
164                         Process.spawn_async (   
165                                 this.cwd,
166                                 this.args,
167                                 this.env.length > 0 ? this.env : GLib.Environ.get (),
168                                 SpawnFlags.SEARCH_PATH | SpawnFlags.DO_NOT_REAP_CHILD,
169                                 null,
170                                 out pid);
171
172                         this.pid = pid; 
173         
174                         ChildWatch.add (this.pid, (pid, status) => {
175                                 
176                                  Process.close_pid (pid);
177                                  
178                         });
179                         
180                         return;
181
182                 }
183         
184                                 
185                 Process.spawn_async_with_pipes (
186                                 this.cwd,
187                                 this.args,
188                                 this.env.length > 0 ? this.env : null,
189                                 SpawnFlags.SEARCH_PATH | SpawnFlags.DO_NOT_REAP_CHILD,
190                                 null,
191                                 out pid,
192                                 out standard_input,
193                                 out standard_output,
194                                 out standard_error);
195                 this.pid = pid;
196                 // stdout:
197                  
198                         
199                 //print(JSON.stringify(gret));    
200                  
201                 GLib.debug("PID: %d" ,this.pid);
202                  
203                 
204                 this.in_ch = new GLib.IOChannel.unix_new(standard_input);
205                 this.out_ch = new GLib.IOChannel.unix_new(standard_output);
206                 this.err_ch = new GLib.IOChannel.unix_new(standard_error);
207                 
208                 // make everything non-blocking!
209
210
211
212                           // using NONBLOCKING only works if io_add_watch
213                 //returns true/false in right conditions
214                 this.in_ch.set_flags (GLib.IOFlags.NONBLOCK);
215                 this.out_ch.set_flags (GLib.IOFlags.NONBLOCK);
216                 this.err_ch.set_flags (GLib.IOFlags.NONBLOCK);
217                            
218
219
220  
221                 ChildWatch.add (this.pid, (w_pid, result) => {
222                 
223                         this.result = result;
224                         GLib.debug("child_watch_add : result:%d ", result);
225                         
226                    
227                         this.read(this.out_ch);
228                         this.read(this.err_ch);
229                         
230                         
231                         Process.close_pid(this.pid);
232                         this.pid = -1;
233                         if (this.ctx != null) {
234                                 this.ctx.quit();
235                                 this.ctx = null;
236                         }
237                         // since it's closed - we might not need to remove the watches?
238                         
239                         this.err_src = -1;
240                         this.out_src = -1;
241                         this.tidyup();
242                         GLib.debug("DONE TIDYUP - calling complete");
243                         
244                         this.complete(this.result, this.output, this.stderr);
245                         
246                 });
247             
248                           
249         
250         
251        
252             
253             // add handlers for output and stderr.
254         
255         this.out_src = (int) this.out_ch.add_watch (
256             IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
257             (channel, condition) => {
258                return this.out_ch == null ? true : this.read(this.out_ch);
259             }
260         );
261         this.err_src = (int) this.err_ch.add_watch (
262                  IOCondition.OUT | IOCondition.IN  | IOCondition.PRI |  IOCondition.HUP |  IOCondition.ERR  ,
263             (channel, condition) => {
264                return this.err_ch == null ? true : this.read(this.err_ch);
265             }
266         );
267               
268         
269         // call input.. 
270         if (this.pid > -1) {
271             // child can exit before we get this far..
272             var input = this.input();
273             if (input != null) {
274                         
275                 try {
276                     this.write(input);
277                      // this probably needs to be a bit smarter...
278                     //but... let's close input now..
279                     this.in_ch.shutdown(true);
280                     this.in_ch = null;
281                      
282                     
283                 } catch (Error e) {
284                     this.tidyup();
285                     return;
286                   //  throw e;
287                     
288                 }
289                 
290             }
291             
292         }
293         // async - if running - return..
294         if (this.is_async && this.pid > -1) {
295             return;
296         }
297          
298         // start mainloop if not async..
299         
300         if (this.pid > -1) {
301             GLib.debug("starting main loop");
302              //if (this.cfg.debug) {
303              //  
304              // }
305                 this.ctx = new MainLoop ();
306             this.ctx.run(); // wait fore exit?
307             
308             GLib.debug("main_loop done!");
309         } else {
310             this.tidyup(); // tidyup get's called in main loop. 
311         }
312         
313         if (this.throw_exceptions && this.result != 0) {
314             
315             throw new SpawnError.EXECUTE_ERROR(this.stderr);
316             //this.toString = function() { return this.stderr; };
317             ///throw new Exception this; // we throw self...
318         }
319         
320         // finally throw, or return self..
321         
322         return;
323     
324     }
325     
326     
327
328     public void tidyup() // or kill
329     {
330         if (this.pid > -1) {
331             Process.close_pid(this.pid); // hopefully kills it..
332             this.pid = -1;
333         }
334         try {
335             if (this.in_ch != null)  this.in_ch.shutdown(true);
336             if (this.out_ch != null)  this.out_ch.shutdown(true);
337             if (this.err_ch != null)  this.err_ch.shutdown(true);
338         } catch (Error e) {
339             // error shutting donw.
340         }
341         // blank out channels
342         this.in_ch = null;
343         this.err_ch = null;
344         this.out_ch = null;
345         // rmeove listeners !! important otherwise we kill the CPU
346         if (this.err_src > -1 ) GLib.Source.remove(this.err_src);
347         if (this.out_src > -1 ) GLib.Source.remove(this.out_src);
348         this.err_src = -1;
349         this.out_src = -1;
350         
351     }
352     
353     
354     /**
355      * write to stdin of process
356      * @arg str {String} string to write to stdin of process
357      * @returns GLib.IOStatus (0 == error, 1= NORMAL)
358      */
359     private int write(string str) throws Error // write a line to 
360     {
361         if (this.in_ch == null) {
362             return 0; // input is closed
363         }
364         //print("write: " + str);
365         // NEEDS GIR FIX! for return value.. let's ignore for the time being..
366         //var ret = {};
367         size_t written;
368         var res = this.in_ch.write_chars(str.to_utf8(), out written);
369         
370         //print("write_char retunred:" + JSON.stringify(res) +  ' ' +JSON.stringify(ret)  );
371         
372         if (res != GLib.IOStatus.NORMAL) {
373             throw new SpawnError.WRITE_ERROR("Write failed");
374         }
375         //return ret.value;
376         return str.length;
377         
378     }
379
380
381     
382     /**
383      * read from pipe and call appropriate listerner and add to output or stderr string.
384      * @arg giochannel to read from.
385      * @returns none
386      */
387         private bool read(IOChannel ch) 
388         {
389            // string prop = (ch == this.out_ch) ? "output" : "stderr";
390            // print("prop: " + prop);
391
392             
393             //print(JSON.stringify(ch, null,4));
394             while (true) {
395                 string buffer;
396                 size_t term_pos;
397                 size_t len;
398                 IOStatus status;
399                 try {
400                     status = ch.read_line( out buffer,  out len,  out term_pos );
401                 } catch (Error e) {
402                     //FIXme
403                     break; // ??
404                     
405                 }
406
407                 // print('status: '  +JSON.stringify(status));
408                 // print(JSON.stringify(x));
409                  switch(status) {
410                     case GLib.IOStatus.NORMAL:
411                 
412                         //write(fn, x.str);
413                         
414                         //if (this.listeners[prop]) {
415                         //    this.listeners[prop].call(this, x.str_return);
416                         //}
417                         if (ch == this.out_ch) {
418                             this.output += buffer;
419                             this.output_line(  buffer);                  
420                             
421                         } else {
422                             this.stderr += buffer;
423                             this.output_line(  buffer); 
424                         }
425                         //_this[prop] += x.str_return;
426                         //if (this.cfg.debug) {
427                             //GLib.debug("%s : %s", prop , buffer);
428                         //}
429                         if (this.is_async) {
430                              
431                             //if ( Gtk.events_pending()) {
432                             //     Gtk.main_iteration();
433                             //}
434                              
435                         }
436                         
437                         //this.ctx.iteration(true);
438                        continue;
439                     case GLib.IOStatus.AGAIN:
440                                         //print("Should be called again.. waiting for more data..");
441                                 return true;
442                         //break;
443                     case GLib.IOStatus.ERROR:    
444                     case GLib.IOStatus.EOF:
445                                 return false;
446                         //break;
447                     
448                 }
449                 break;
450             }
451            
452             //print("RETURNING");
453              return false; // allow it to be called again..
454         }
455         public bool isZombie()
456         {
457                 if (!GLib.FileUtils.test("/proc/%d".printf(this.pid), FileTest.EXISTS)) {
458                         return false;
459                 }
460                 size_t sz;
461                 string f;
462                 try {
463                         if (!GLib.FileUtils.get_contents("/proc/%d/stat".printf(this.pid), out f, out sz)) {
464                                 return false;
465                         }
466                 } catch(GLib.Error e) {
467                         return false;
468                 }
469                 var bits = f.split(" ");
470                 if (bits.length > 3  && bits[2] == "Z") {
471                         GLib.debug("Process pid:%d is a zombie - trying waitpid", this.pid);
472                         int status;
473                         Posix.waitpid(this.pid, out status, 0);
474                         GLib.debug("Process pid:%d is a zombie - done waitpid", this.pid);
475                         return true;
476                 }
477                 return false;
478                 
479                 
480                 
481         
482         }
483     
484 }
485 /*
486  
487 int main (string[] args) {
488         GLib.Log.set_handler(null, 
489                 GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING, 
490                 (dom, lvl, msg) => {
491                 print("%s: %s\n", dom, msg);
492         });
493
494         var ctx = new GLib.MainLoop ();
495         var a = new Spawn("", { "ls" , "-l"});
496         a.run((res, str, stderr) => {
497                 print(str);
498                 ctx.quit();
499         });
500         
501         
502         ctx.run(); // wait for exit?
503             
504         return 0;
505 }
506  */