8 |
|
#include <signal.h> |
9 |
|
#include <ctype.h> |
10 |
|
|
11 |
– |
#include "mkillum.h" |
11 |
|
#include "platform.h" |
12 |
+ |
#include "mkillum.h" |
13 |
+ |
#include "random.h" |
14 |
|
|
15 |
|
/* default parameters */ |
16 |
|
#define SAMPDENS 48 /* points per projected steradian */ |
31 |
|
char *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-", |
32 |
|
"-fff", "-y", "0", NULL }; |
33 |
|
|
34 |
< |
struct rtproc rt; /* our rtrace process */ |
34 |
> |
struct rtproc rt0; /* head of rtrace process list */ |
35 |
|
|
36 |
|
struct illum_args thisillum = { /* our illum and default values */ |
37 |
|
0, |
49 |
|
|
50 |
|
FUN ofun[NUMOTYPE] = INIT_OTYPE; /* object types */ |
51 |
|
|
52 |
+ |
char persistfn[] = "pfXXXXXX"; /* persist file name */ |
53 |
+ |
|
54 |
|
int gargc; /* global argc */ |
55 |
|
char **gargv; /* global argv */ |
56 |
|
#define progname gargv[0] |
60 |
|
|
61 |
|
int warnings = 1; /* print warnings? */ |
62 |
|
|
63 |
+ |
int done_rprocs(struct rtproc *rtp); |
64 |
+ |
void init(int np); |
65 |
+ |
void filter(register FILE *infp, char *name); |
66 |
+ |
void xoptions(char *s, char *nm); |
67 |
+ |
void printopts(void); |
68 |
+ |
void printhead(register int ac, register char **av); |
69 |
+ |
void xobject(FILE *fp, char *nm); |
70 |
|
|
71 |
< |
main(argc, argv) /* compute illum distributions using rtrace */ |
72 |
< |
int argc; |
73 |
< |
char *argv[]; |
71 |
> |
|
72 |
> |
int |
73 |
> |
main( /* compute illum distributions using rtrace */ |
74 |
> |
int argc, |
75 |
> |
char *argv[] |
76 |
> |
) |
77 |
|
{ |
78 |
+ |
int nprocs = 1; |
79 |
|
char *rtpath; |
80 |
|
FILE *fp; |
81 |
|
register int i; |
82 |
|
/* set global arguments */ |
83 |
|
gargv = argv; |
84 |
+ |
/* check for -n option */ |
85 |
+ |
if (!strcmp(argv[1], "-n")) { |
86 |
+ |
nprocs = atoi(argv[2]); |
87 |
+ |
if (nprocs <= 0) |
88 |
+ |
error(USER, "illegal number of processes"); |
89 |
+ |
i = 3; |
90 |
+ |
} else |
91 |
+ |
i = 1; |
92 |
|
/* set up rtrace command */ |
93 |
< |
for (i = 1; i < argc; i++) { |
93 |
> |
for ( ; i < argc; i++) { |
94 |
|
if (argv[i][0] == '<' && argv[i][1] == '\0') |
95 |
|
break; |
96 |
|
rtargv[rtargc++] = argv[i]; |
114 |
|
} |
115 |
|
} |
116 |
|
gargc = i; |
117 |
< |
rtargc--; |
117 |
> |
if (!strcmp(rtargv[--rtargc], "-defaults")) |
118 |
> |
nprocs = 0; |
119 |
> |
if (nprocs > 1) { /* add persist file if parallel invocation */ |
120 |
> |
rtargv[rtargc++] = "-PP"; |
121 |
> |
rtargv[rtargc++] = mktemp(persistfn); |
122 |
> |
} |
123 |
> |
/* add "mandatory" rtrace options */ |
124 |
|
for (i = 0; myrtopts[i] != NULL; i++) |
125 |
|
rtargv[rtargc++] = myrtopts[i]; |
126 |
+ |
/* finally, put back final argument */ |
127 |
|
rtargv[rtargc++] = argv[gargc-1]; |
128 |
|
rtargv[rtargc] = NULL; |
129 |
< |
/* just asking for defaults? */ |
101 |
< |
if (!strcmp(argv[gargc-1], "-defaults")) { |
129 |
> |
if (!nprocs) { /* just asking for defaults? */ |
130 |
|
printopts(); fflush(stdout); |
131 |
|
rtpath = getpath(rtargv[0], getenv("PATH"), X_OK); |
132 |
|
if (rtpath == NULL) { |
135 |
|
exit(1); |
136 |
|
} |
137 |
|
execv(rtpath, rtargv); |
138 |
< |
perror(rtpath); |
138 |
> |
perror(rtpath); /* execv() should not return */ |
139 |
|
exit(1); |
140 |
|
} |
141 |
|
if (gargc < 2 || argv[gargc-1][0] == '-') |
142 |
|
error(USER, "missing octree argument"); |
143 |
|
/* else initialize and run our calculation */ |
144 |
< |
init(); |
144 |
> |
init(nprocs); |
145 |
|
if (gargc+1 < argc) |
146 |
|
for (i = gargc+1; i < argc; i++) { |
147 |
|
if ((fp = fopen(argv[i], "r")) == NULL) { |
157 |
|
quit(0); |
158 |
|
} |
159 |
|
|
160 |
+ |
static void |
161 |
+ |
killpersist(void) /* kill persistent rtrace process */ |
162 |
+ |
{ |
163 |
+ |
FILE *fp = fopen(persistfn, "r"); |
164 |
+ |
int pid; |
165 |
|
|
166 |
+ |
if (fp == NULL) |
167 |
+ |
return; |
168 |
+ |
if (fscanf(fp, "%*s %d", &pid) != 1 || kill(pid, SIGALRM) < 0) |
169 |
+ |
unlink(persistfn); |
170 |
+ |
fclose(fp); |
171 |
+ |
} |
172 |
+ |
|
173 |
+ |
int |
174 |
+ |
done_rprocs(struct rtproc *rtp) |
175 |
+ |
{ |
176 |
+ |
int st0, st1 = 0; |
177 |
+ |
|
178 |
+ |
if (rtp->next != NULL) { /* close last opened first! */ |
179 |
+ |
st1 = done_rprocs(rtp->next); |
180 |
+ |
free((void *)rtp->next); |
181 |
+ |
rtp->next = NULL; |
182 |
+ |
} |
183 |
+ |
st0 = close_process(&rtp->pd); |
184 |
+ |
if (st0 < 0) |
185 |
+ |
error(WARNING, "unknown return status from rtrace process"); |
186 |
+ |
else if (st0 > 0) |
187 |
+ |
return(st0); |
188 |
+ |
return(st1); |
189 |
+ |
} |
190 |
+ |
|
191 |
|
void |
192 |
< |
quit(status) /* exit with status */ |
135 |
< |
int status; |
192 |
> |
quit(int status) /* exit with status */ |
193 |
|
{ |
194 |
|
int rtstat; |
195 |
|
|
196 |
< |
rtstat = close_process(&(rt.pd)); |
197 |
< |
if (status == 0) { |
198 |
< |
if (rtstat < 0) |
199 |
< |
error(WARNING, |
200 |
< |
"unknown return status from rtrace process"); |
201 |
< |
else |
145 |
< |
status = rtstat; |
146 |
< |
} |
196 |
> |
if (rt0.next != NULL) /* terminate persistent rtrace */ |
197 |
> |
killpersist(); |
198 |
> |
/* clean up rtrace process(es) */ |
199 |
> |
rtstat = done_rprocs(&rt0); |
200 |
> |
if (status == 0) |
201 |
> |
status = rtstat; |
202 |
|
exit(status); |
203 |
|
} |
204 |
|
|
205 |
< |
|
206 |
< |
init() /* start rtrace and set up buffers */ |
205 |
> |
void |
206 |
> |
init(int np) /* start rtrace and set up buffers */ |
207 |
|
{ |
208 |
< |
extern int o_face(), o_sphere(), o_ring(); |
208 |
> |
struct rtproc *rtp; |
209 |
> |
int i; |
210 |
|
int maxbytes; |
211 |
|
/* set up object functions */ |
212 |
|
ofun[OBJ_FACE].funp = o_face; |
216 |
|
#ifdef SIGPIPE /* not present on Windows */ |
217 |
|
signal(SIGPIPE, quit); |
218 |
|
#endif |
219 |
< |
/* start rtrace process */ |
220 |
< |
errno = 0; |
221 |
< |
maxbytes = open_process(&(rt.pd), rtargv); |
222 |
< |
if (maxbytes == 0) { |
223 |
< |
eputs(rtargv[0]); |
224 |
< |
eputs(": command not found\n"); |
225 |
< |
exit(1); |
219 |
> |
rtp = &rt0; /* start rtrace process(es) */ |
220 |
> |
for (i = 0; i++ < np; ) { |
221 |
> |
errno = 0; |
222 |
> |
maxbytes = open_process(&rtp->pd, rtargv); |
223 |
> |
if (maxbytes == 0) { |
224 |
> |
eputs(rtargv[0]); |
225 |
> |
eputs(": command not found\n"); |
226 |
> |
exit(1); |
227 |
> |
} |
228 |
> |
if (maxbytes < 0) |
229 |
> |
error(SYSTEM, "cannot start rtrace process"); |
230 |
> |
rtp->bsiz = maxbytes/(6*sizeof(float)); |
231 |
> |
rtp->buf = (float *)malloc(6*sizeof(float)*rtp->bsiz--); |
232 |
> |
rtp->dest = (float **)calloc(rtp->bsiz, sizeof(float *)); |
233 |
> |
if (rtp->buf == NULL || rtp->dest == NULL) |
234 |
> |
error(SYSTEM, "out of memory in init"); |
235 |
> |
rtp->nrays = 0; |
236 |
> |
if (i == np) /* last process? */ |
237 |
> |
break; |
238 |
> |
if (np > 1) |
239 |
> |
sleep(2); /* wait for persist file */ |
240 |
> |
rtp->next = (struct rtproc *)malloc(sizeof(struct rtproc)); |
241 |
> |
if (rtp->next == NULL) |
242 |
> |
error(SYSTEM, "out of memory in init"); |
243 |
> |
rtp = rtp->next; |
244 |
|
} |
245 |
< |
if (maxbytes < 0) |
172 |
< |
error(SYSTEM, "cannot start rtrace process"); |
173 |
< |
rt.bsiz = maxbytes/(6*sizeof(float)); |
174 |
< |
rt.buf = (float *)malloc(6*sizeof(float)*rt.bsiz--); |
175 |
< |
rt.dest = (float **)malloc(sizeof(float *)*rt.bsiz); |
176 |
< |
if (rt.buf == NULL || rt.dest == NULL) |
177 |
< |
error(SYSTEM, "out of memory in init"); |
178 |
< |
rt.nrays = 0; |
245 |
> |
rtp->next = NULL; |
246 |
|
/* set up urand */ |
247 |
|
initurand(16384); |
248 |
|
} |
249 |
|
|
250 |
|
|
251 |
|
void |
252 |
< |
eputs(s) /* put string to stderr */ |
253 |
< |
register char *s; |
252 |
> |
eputs( /* put string to stderr */ |
253 |
> |
register char *s |
254 |
> |
) |
255 |
|
{ |
256 |
|
static int midline = 0; |
257 |
|
|
274 |
|
} |
275 |
|
|
276 |
|
|
277 |
< |
filter(infp, name) /* process stream */ |
278 |
< |
register FILE *infp; |
279 |
< |
char *name; |
277 |
> |
void |
278 |
> |
filter( /* process stream */ |
279 |
> |
register FILE *infp, |
280 |
> |
char *name |
281 |
> |
) |
282 |
|
{ |
283 |
|
char buf[512]; |
284 |
|
FILE *pfp; |
308 |
|
} |
309 |
|
|
310 |
|
|
311 |
< |
xoptions(s, nm) /* process options in string s */ |
312 |
< |
char *s; |
313 |
< |
char *nm; |
311 |
> |
void |
312 |
> |
xoptions( /* process options in string s */ |
313 |
> |
char *s, |
314 |
> |
char *nm |
315 |
> |
) |
316 |
|
{ |
317 |
|
extern FILE *freopen(); |
318 |
|
char buf[64]; |
471 |
|
printf("# %s", s+2); |
472 |
|
} |
473 |
|
|
474 |
< |
|
475 |
< |
printopts() /* print out option default values */ |
474 |
> |
void |
475 |
> |
printopts(void) /* print out option default values */ |
476 |
|
{ |
477 |
|
printf("m=%-15s\t\t# material name\n", thisillum.matname); |
478 |
|
printf("f=%-15s\t\t# data file name\n", thisillum.datafile); |
493 |
|
} |
494 |
|
|
495 |
|
|
496 |
< |
printhead(ac, av) /* print out header */ |
497 |
< |
register int ac; |
498 |
< |
register char **av; |
496 |
> |
void |
497 |
> |
printhead( /* print out header */ |
498 |
> |
register int ac, |
499 |
> |
register char **av |
500 |
> |
) |
501 |
|
{ |
502 |
|
putchar('#'); |
503 |
|
while (ac-- > 0) { |
508 |
|
} |
509 |
|
|
510 |
|
|
511 |
< |
xobject(fp, nm) /* translate an object from fp */ |
512 |
< |
FILE *fp; |
513 |
< |
char *nm; |
511 |
> |
void |
512 |
> |
xobject( /* translate an object from fp */ |
513 |
> |
FILE *fp, |
514 |
> |
char *nm |
515 |
> |
) |
516 |
|
{ |
517 |
|
OBJREC thisobj; |
518 |
|
char str[MAXSTR]; |
563 |
|
checkhead(); |
564 |
|
/* process object */ |
565 |
|
if (doit) |
566 |
< |
(*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt, nm); |
566 |
> |
(*ofun[thisobj.otype].funp)(&thisobj, &thisillum, &rt0, nm); |
567 |
|
else |
568 |
|
printobj(thisillum.altmat, &thisobj); |
569 |
|
/* free arguments */ |