main.c++
5.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
//////////////////////////////////////////////////////////////////////
// This is a driver ViewKit program generated by RapidApp 1.1
//
// This program instantiates a ViewKit VkApp object and creates
// any main window objects that are meant to be shown at startup.
// There should rarely be a reason to modify this file.
// Make application-specific changes in the classes created
// by the main window classes
// Some applications may wish to change this code to instantiate
// a different application class, however.
//////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/prctl.h>
#include <sys/dir.h>
#include <sys/stat.h>
#include <sys/procfs.h>
#include <fcntl.h>
#include <paths.h>
#include <unistd.h>
#include <errno.h>
#include "MidiMain.h"
#include "AeN64Driver.h"
#include "AeTypes.h"
#include <sys/u64gio.h>
extern void AeMainProc (void *);
static char isAppRunning (char *);
static void parseArgs (int, char **);
static void finiDriver (void);
static void initSignals (void);
static void initSubProcesses (void);
static void mySigHandler (int signo);
int gArgc;
char ** gArgv;
int midiPID;
int aePID;
int gloadPID;
int parentPID;
int parentDie = 0;
char verbose = False;
char * bankFileName = NULL;
char * cFileName = NULL;
AeN64Driver * n64Driver = NULL;
void main (int argc, char **argv)
{
struct sigaction sigAct;
gArgc = argc;
gArgv = argv;
// Check to see if there is another copy of AudioEditor already running
if (isAppRunning (argv[0]))
{
fprintf (stdout,"%s is already running, will exit\n", argv[0]);
exit(-1);
}
parseArgs (argc, argv);
initSignals ();
initSubProcesses ();
while (!parentDie)
sleep (0x7FFFFFF);
finiDriver ();
}
void
parseArgs (int argc, char ** argv)
{
int c;
while ((c = getopt(argc, argv, "vb:c:")) != EOF)
{
switch (c)
{
case 'v':
verbose = True;
break;
case 'c':
cFileName = optarg;
break;
case 'b':
bankFileName = optarg;
break;
case '?':
fprintf(stdout,"Usage [-b <.inst file] [-c <.cnfg file>] [-v]\n");
fprintf(stdout,"-v verbose (debugging)\n-b .inst file\n-c configuration file\n");
exit(0);
break;
}
}
}
void
finiDriver (void)
{
if (n64Driver)
delete n64Driver; // to to free the n64 device
}
//
// Setup the signal handling which is needed
// to handle subprocesses.
//
static void
initSignals (void)
{
struct sigaction sigAct;
sigAct.sa_handler = (void(*)(...))mySigHandler;
sigemptyset (&sigAct.sa_mask);
sigAct.sa_flags = 0;
if(sigaction(SIGCHLD,&sigAct,NULL) < 0)
{
perror("Unable to install signal handler SIGCHLD");
exit(-1);
}
if(sigaction(SIGINT,&sigAct,NULL) < 0)
{
perror("Unable to install signal handler SIGINT");
exit(-1);
}
if(sigaction(SIGTERM,&sigAct,NULL) < 0)
{
perror("Unable to install signal handler SIGTERM");
exit(-1);
}
if(sigaction(SIGQUIT,&sigAct,NULL) < 0)
{
perror("Unable to install signal handler SIGQUIT");
exit(-1);
}
}
void runGload(void * arg)
{
(void)execlp("gload", "gload", "-n", 0); // never returns unless failure
}
void
initSubProcesses (void)
{
parentPID = getpid();
int tmpFD;
aePID = sproc(AeMainProc, PR_SALL, NULL);
if(aePID < 0)
{
fprintf (stdout, "error: ie: unable to start main thread, will exit\n");
exit(-1);
}
midiPID = sproc(midiMain, PR_SALL, NULL);
if(midiPID < 0)
{
fprintf (stdout, "error: ie: unable to start midi thread, will exit\n");
exit(-1);
}
tmpFD = open( DEV_U64_PRINT, O_RDWR);
if(tmpFD == -1 && errno != EBUSY)
{
if(errno != ENOENT) /* ENOENT indicates that there is no dev system board */
{
fprintf(stderr,"error: ie: unable to open DEV_U64_PRINT, errno = %d, will exit\n", errno);
exit(-1);
}
if(verbose)
fprintf(stderr,"debug: ie: no dev board found on this system\n");
}
else
{
if(tmpFD != -1)
close(tmpFD);
gloadPID = sproc(runGload, PR_SALL, NULL);
if(gloadPID < 0)
{
fprintf (stdout, "error: ie: unable to start gload thread, will exit\n");
exit(-1);
}
}
}
static char
isAppRunning (char *appname)
{
DIR *dirp; /* Directory pointer */
struct direct *dp; /* Directory entry */
char pbuf[PATH_MAX]; /* Buffer for procfs file name */
int pfd; /* Process file descriptor */
prpsinfo_t psinfo; /* Process information */
char found = 0; /* Flag indicating that we found a match */
pid_t mypid; /* My Process ID */
/* Open the process info directory */
if ((dirp = opendir(_PATH_PROCFSPI)) == NULL)
return True;
mypid = getpid();
/* Iterate through all of the files in the directory */
while ((dp = readdir(dirp)) != NULL && !found)
{
/* We don't care about ourselves */
if (mypid == atoi(dp->d_name))
continue;
/* Open the actual process file */
strcpy(pbuf, _PATH_PROCFSPI);
strcat(pbuf, dp->d_name);
if ((pfd = open(pbuf, O_RDONLY)) < 0)
continue;
/* Try and retrieve the process info */
if (ioctl(pfd, PIOCPSINFO, &psinfo) == -1)
{
close(pfd);
continue;
}
close(pfd);
if (strcmp(appname, psinfo.pr_fname) == 0)
found = psinfo.pr_pid;
}
closedir(dirp);
return found;
}
static void
mySigHandler (int signo)
{
kill (midiPID, SIGKILL);
kill (aePID, SIGKILL);
kill (gloadPID, SIGKILL);
parentDie = 1;
}