Switched -u to -n for pnd_run
[pandora-libraries.git] / lib / pnd_apps.c
1
2 #include <stdio.h> /* for FILE etc */
3 #include <stdlib.h> /* for malloc */
4 #include <string.h> /* for memset */
5 #include <unistd.h> /* for fork/exec */
6
7 #include <sys/types.h> /* for wait */
8 #include <sys/wait.h> /* for wait */
9
10 #include "pnd_container.h"
11 #include "pnd_pxml.h"
12 #include "pnd_apps.h"
13
14 unsigned char pnd_apps_exec ( char *pndrun, char *fullpath, char *unique_id,
15                               char *rel_exec, char *rel_startdir,
16                               unsigned int clockspeed, unsigned int options )
17 {
18   char *argv [ 20 ];
19   int f;
20
21   //printf ( "Entering pnd_apps_exec\n" );
22
23   if ( ! pndrun ) {
24     return ( 0 );
25   }
26
27   if ( ! fullpath ) {
28     return ( 0 );
29   }
30
31   if ( ! unique_id ) {
32     return ( 0 );
33   }
34
35   if ( ! rel_exec ) {
36     return ( 0 );
37   }
38
39 #if 0
40   printf ( "  runscript: %s\n", pndrun );
41   printf ( "  path: %s\n", fullpath );
42   printf ( "  id: %s\n", unique_id );
43   printf ( "  exec: %s\n", rel_exec );
44   printf ( "  cwd: %s\n", rel_startdir );
45   printf ( "  clock: %u\n", clockspeed );
46 #endif
47
48   memset ( argv, '\0', sizeof(char*) * 20 );
49
50   f = 0;
51   argv [ f++ ] = pndrun;
52   argv [ f++ ] = "-p";
53   argv [ f++ ] = fullpath;
54   argv [ f++ ] = "-e";
55   argv [ f++ ] = rel_exec;
56   if ( rel_startdir ) {
57     argv [ f++ ] = "-s";
58     argv [ f++ ] = rel_startdir;
59   }
60   // skip -a (arguments) for now
61
62   //argv [ f++ ] = "-b";
63   //argv [ f++ ] = baename;
64
65   if ( options & PND_EXEC_OPTION_NOUNION ) {
66     argv [ f++ ] = "-n"; // no union for now
67   }
68
69   // finish
70   argv [ f++ ] = NULL; // for execv
71
72   // debug
73 #if 0
74   int i;
75   for ( i = 0; i < f; i++ ) {
76     printf ( "exec's argv %u [ %s ]\n", i, argv [ i ] );
77   }
78 #endif
79
80   // invoke it!
81
82   if ( ( f = fork() ) < 0 ) {
83     // error forking
84   } else if ( f > 0 ) {
85     // parent
86   } else {
87     // child, do it
88     execv ( pndrun, argv );
89   } 
90
91   // by definition, either error occurred or we are the original application.
92
93   // do we wish to wait until the child process completes? (we don't
94   // care if it crashed, was killed, was suspended, whatever.)
95   if ( options & PND_EXEC_OPTION_BLOCK ) {
96     int status = 0;
97     //waitpid ( f, &status. 0 /* no options */ );
98     wait ( &status );
99   }
100
101   // printf ( "Exiting pnd_apps_exec\n" );
102
103   return ( 1 );
104 }