ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rpiece.c
Revision: 2.29
Committed: Mon Feb 28 09:22:32 1994 UTC (30 years, 1 month ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.28: +2 -1 lines
Log Message:
added newheader() call

File Contents

# Content
1 /* Copyright (c) 1993 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * Generate sections of a picture.
9 */
10
11 #include "standard.h"
12
13 #ifndef F_SETLKW
14
15 main(argc, argv)
16 int argc;
17 char *argv[];
18 {
19 fprintf(stderr, "%s: no NFS lock manager on this machine\n", argv[0]);
20 exit(1);
21 }
22
23 #else
24
25 #include <signal.h>
26 #include "color.h"
27 #include "view.h"
28 #include "resolu.h"
29
30 #ifndef NFS
31 #define NFS 1
32 #endif
33 /* set the following to 0 to forgo forking */
34 #ifndef MAXFORK
35 #if NFS
36 #define MAXFORK 3 /* allotment of duped processes */
37 #else
38 #define MAXFORK 0
39 #endif
40 #endif
41 /* protection from SYSV signals(!) */
42 #if defined(sgi)
43 #define guard_io() sighold(SIGALRM)
44 #define unguard() sigrelse(SIGALRM)
45 #endif
46 #ifndef guard_io
47 #define guard_io() 0
48 #define unguard() 0
49 #endif
50 /* rpict command */
51 char *rpargv[128] = {"rpict", "-S", "1"};
52 int rpargc = 3;
53 int rpd[3];
54 FILE *torp, *fromrp;
55 COLR *pbuf;
56 /* our view parameters */
57 VIEW ourview = STDVIEW;
58 double pixaspect = 1.0;
59 int hres = 1024, vres = 1024, hmult = 4, vmult = 4;
60 /* output file */
61 char *outfile = NULL;
62 int outfd;
63 long scanorig;
64 FILE *syncfp = NULL; /* synchronization file pointer */
65 int synclst = F_UNLCK; /* synchronization file lock status */
66 int nforked = 0;
67
68 #define sflock(t) if ((t)!=synclst) dolock(fileno(syncfp),synclst=t)
69
70 char *progname;
71 int verbose = 0;
72 int rvrlim = -1;
73
74 extern long lseek(), ftell();
75
76 int gotalrm = 0;
77 int onalrm() { gotalrm++; }
78
79
80 main(argc, argv)
81 int argc;
82 char *argv[];
83 {
84 register int i, rval;
85
86 progname = argv[0];
87 for (i = 1; i < argc; i++) {
88 /* expand arguments */
89 while (rval = expandarg(&argc, &argv, i))
90 if (rval < 0) {
91 fprintf(stderr, "%s: cannot expand '%s'",
92 argv[0], argv[i]);
93 exit(1);
94 }
95 if (argv[i][0] == '-')
96 switch (argv[i][1]) {
97 case 'v':
98 switch (argv[i][2]) {
99 case '\0': /* verbose option */
100 verbose = !verbose;
101 continue;
102 case 'f': /* view file */
103 if (viewfile(argv[++i], &ourview, NULL) <= 0) {
104 fprintf(stderr,
105 "%s: not a view file\n", argv[i]);
106 exit(1);
107 }
108 continue;
109 default: /* view option? */
110 rval = getviewopt(&ourview, argc-i, argv+i);
111 if (rval >= 0) {
112 i += rval;
113 continue;
114 }
115 break;
116 }
117 break;
118 case 'p': /* pixel aspect ratio? */
119 if (argv[i][2] != 'a' || argv[i][3])
120 break;
121 pixaspect = atof(argv[i+1]);
122 continue;
123 case 'x': /* overall x resolution */
124 if (argv[i][2])
125 break;
126 hres = atoi(argv[++i]);
127 continue;
128 case 'y': /* overall y resolution */
129 if (argv[i][2])
130 break;
131 vres = atoi(argv[++i]);
132 continue;
133 case 'X': /* horizontal multiplier */
134 if (argv[i][2])
135 break;
136 hmult = atoi(argv[++i]);
137 continue;
138 case 'Y': /* vertical multiplier */
139 if (argv[i][2])
140 break;
141 vmult = atoi(argv[++i]);
142 continue;
143 case 'R': /* recover */
144 if (argv[i][2])
145 break;
146 rvrlim = 0;
147 /* fall through */
148 case 'F': /* syncronization file */
149 if (argv[i][2])
150 break;
151 if ((syncfp =
152 fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) {
153 fprintf(stderr, "%s: cannot open\n",
154 argv[i]);
155 exit(1);
156 }
157 continue;
158 case 'z': /* z-file ist verbotten */
159 fprintf(stderr, "%s: -z option not allowed\n",
160 argv[0]);
161 exit(1);
162 case 'o': /* output file */
163 if (argv[i][2])
164 break;
165 outfile = argv[++i];
166 continue;
167 } else if (i >= argc-1)
168 break;
169 rpargv[rpargc++] = argv[i];
170 }
171 if (i >= argc) {
172 fprintf(stderr, "%s: missing octree argument\n", argv[0]);
173 exit(1);
174 }
175 if (outfile == NULL) {
176 fprintf(stderr, "%s: missing output file\n", argv[0]);
177 exit(1);
178 }
179 init(argc, argv);
180 rpiece();
181 exit(cleanup(0));
182 }
183
184
185 dolock(fd, ltyp) /* lock or unlock a file */
186 int fd;
187 int ltyp;
188 {
189 static struct flock fls; /* static so initialized to zeroes */
190 extern char *sys_errlist[];
191
192 fls.l_type = ltyp;
193 if (fcntl(fd, F_SETLKW, &fls) < 0) {
194 fprintf(stderr, "%s: cannot lock/unlock file: %s\n",
195 progname, sys_errlist[errno]);
196 exit(1);
197 }
198 }
199
200
201 init(ac, av) /* set up output file and start rpict */
202 int ac;
203 char **av;
204 {
205 static char hrbuf[16], vrbuf[16];
206 extern char VersionID[];
207 char *err;
208 FILE *fp;
209 int hr, vr;
210 /* set up view */
211 if ((err = setview(&ourview)) != NULL) {
212 fprintf(stderr, "%s: %s\n", progname, err);
213 exit(1);
214 }
215 if (syncfp != NULL) {
216 sflock(F_RDLCK);
217 fscanf(syncfp, "%d %d", &hmult, &vmult);
218 sflock(F_UNLCK);
219 }
220 /* compute piece size */
221 hres /= hmult;
222 vres /= vmult;
223 normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres);
224 sprintf(hrbuf, "%d", hres);
225 rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf;
226 sprintf(vrbuf, "%d", vres);
227 rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf;
228 rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0";
229 rpargv[rpargc++] = av[ac-1];
230 rpargv[rpargc] = NULL;
231 /* open output file */
232 if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) {
233 dolock(outfd, F_WRLCK);
234 if ((fp = fdopen(dup(outfd), "w")) == NULL)
235 goto filerr;
236 newheader("RADIANCE", fp); /* create header */
237 printargs(ac, av, fp);
238 fprintf(fp, "SOFTWARE= %s\n", VersionID);
239 fputs(VIEWSTR, fp);
240 fprintview(&ourview, fp);
241 putc('\n', fp);
242 if (pixaspect < .99 || pixaspect > 1.01)
243 fputaspect(pixaspect, fp);
244 fputformat(COLRFMT, fp);
245 putc('\n', fp);
246 fprtresolu(hres*hmult, vres*vmult, fp);
247 } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
248 dolock(outfd, F_RDLCK);
249 if ((fp = fdopen(dup(outfd), "r+")) == NULL)
250 goto filerr;
251 getheader(fp, NULL, NULL); /* skip header */
252 if (!fscnresolu(&hr, &vr, fp) || /* check resolution */
253 hr != hres*hmult || vr != vres*vmult) {
254 fprintf(stderr, "%s: resolution mismatch on file \"%s\"\n",
255 progname, outfile);
256 exit(1);
257 }
258 } else {
259 fprintf(stderr, "%s: cannot open file \"%s\"\n",
260 progname, outfile);
261 exit(1);
262 }
263 scanorig = ftell(fp); /* record position of first scanline */
264 if (fclose(fp) == -1) /* done with stream i/o */
265 goto filerr;
266 dolock(outfd, F_UNLCK);
267 /* start rpict process */
268 if (open_process(rpd, rpargv) <= 0) {
269 fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
270 exit(1);
271 }
272 if ((fromrp = fdopen(rpd[0], "r")) == NULL ||
273 (torp = fdopen(rpd[1], "w")) == NULL) {
274 fprintf(stderr, "%s: cannot open stream to %s\n",
275 progname, rpargv[0]);
276 exit(1);
277 }
278 if ((pbuf = (COLR *)bmalloc(hres*vres*sizeof(COLR))) == NULL) {
279 fprintf(stderr, "%s: out of memory\n", progname);
280 exit(1);
281 }
282 signal(SIGALRM, onalrm);
283 return;
284 filerr:
285 fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
286 exit(1);
287 }
288
289
290 int
291 nextpiece(xp, yp) /* get next piece assignment */
292 int *xp, *yp;
293 {
294 if (gotalrm) /* someone wants us to quit */
295 return(0);
296 if (syncfp != NULL) { /* use sync file */
297 /*
298 * So we don't necessarily have to lock and unlock the file
299 * multiple times (very slow), we establish an exclusive
300 * lock at the beginning on our synchronization file and
301 * maintain it in the subroutine rvrpiece().
302 */
303 sflock(F_WRLCK);
304 fseek(syncfp, 0L, 0); /* read position */
305 if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
306 *xp = hmult-1;
307 *yp = vmult;
308 }
309 if (rvrlim == 0) /* initialize recovery limit */
310 rvrlim = *xp*vmult + *yp;
311 if (rvrpiece(xp, yp)) { /* do stragglers first */
312 sflock(F_UNLCK);
313 return(1);
314 }
315 if (--(*yp) < 0) { /* decrement position */
316 *yp = vmult-1;
317 if (--(*xp) < 0) { /* all done */
318 sflock(F_UNLCK);
319 return(0);
320 }
321 }
322 fseek(syncfp, 0L, 0); /* write new position */
323 fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
324 fflush(syncfp);
325 sflock(F_UNLCK); /* release sync file */
326 return(1);
327 }
328 return(scanf("%d %d", xp, yp) == 2); /* use stdin */
329 }
330
331
332 int
333 rvrpiece(xp, yp) /* check for recoverable pieces */
334 register int *xp, *yp;
335 {
336 static char *pdone = NULL; /* which pieces are done */
337 static long readpos = -1; /* how far we've read */
338 register int i;
339 /*
340 * This routine is called by nextpiece() with an
341 * exclusive lock on syncfp and the file pointer at the
342 * appropriate position to read in the finished pieces.
343 */
344 if (rvrlim < 0)
345 return(0); /* only check if asked */
346 if (pdone == NULL) /* first call */
347 pdone = calloc(hmult*vmult, sizeof(char));
348 if (readpos != -1) /* mark what's been done */
349 fseek(syncfp, readpos, 0);
350 while (fscanf(syncfp, "%d %d", xp, yp) == 2)
351 pdone[*xp*vmult+*yp] = 1;
352 if (!feof(syncfp)) {
353 fprintf(stderr, "%s: format error in sync file\n", progname);
354 exit(1);
355 }
356 readpos = ftell(syncfp);
357 i = hmult*vmult; /* find an unaccounted for piece */
358 while (i-- > rvrlim)
359 if (!pdone[i]) {
360 *xp = i / vmult;
361 *yp = i % vmult;
362 pdone[i] = 1; /* consider it done */
363 return(1);
364 }
365 rvrlim = -1; /* nothing left to recover */
366 free(pdone);
367 pdone = NULL;
368 return(0);
369 }
370
371
372 int
373 cleanup(rstat) /* close rpict process and clean up */
374 int rstat;
375 {
376 int status;
377
378 bfree((char *)pbuf, hres*vres*sizeof(COLR));
379 fclose(torp);
380 fclose(fromrp);
381 while (wait(&status) != -1)
382 if (rstat == 0)
383 rstat = status>>8 & 0xff;
384 return(rstat);
385 }
386
387
388 rpiece() /* render picture piece by piece */
389 {
390 VIEW pview;
391 int xorg, yorg;
392 /* compute view parameters */
393 copystruct(&pview, &ourview);
394 switch (ourview.type) {
395 case VT_PER:
396 pview.horiz = 2.*180./PI*atan(
397 tan(PI/180./2.*ourview.horiz)/hmult );
398 pview.vert = 2.*180./PI*atan(
399 tan(PI/180./2.*ourview.vert)/vmult );
400 break;
401 case VT_PAR:
402 case VT_ANG:
403 pview.horiz = ourview.horiz / hmult;
404 pview.vert = ourview.vert / vmult;
405 break;
406 case VT_HEM:
407 pview.horiz = 2.*180./PI*asin(
408 sin(PI/180./2.*ourview.horiz)/hmult );
409 pview.vert = 2.*180./PI*asin(
410 sin(PI/180./2.*ourview.vert)/vmult );
411 break;
412 default:
413 fprintf(stderr, "%s: unknown view type '-vt%c'\n",
414 progname, ourview.type);
415 exit(cleanup(1));
416 }
417 /* render each piece */
418 while (nextpiece(&xorg, &yorg)) {
419 pview.hoff = ourview.hoff + xorg - 0.5*(hmult-1);
420 pview.voff = ourview.voff + yorg - 0.5*(vmult-1);
421 fputs(VIEWSTR, torp);
422 fprintview(&pview, torp);
423 putc('\n', torp);
424 fflush(torp); /* assigns piece to rpict */
425 putpiece(xorg, yorg); /* place piece in output */
426 }
427 }
428
429
430 int
431 putpiece(xpos, ypos) /* get next piece from rpict */
432 int xpos, ypos;
433 {
434 struct flock fls;
435 int pid, status;
436 int hr, vr;
437 register int y;
438 /* check bounds */
439 if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) {
440 fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
441 progname, xpos, ypos);
442 exit(cleanup(1));
443 }
444 /* check header from rpict */
445 guard_io();
446 getheader(fromrp, NULL, NULL);
447 if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
448 fprintf(stderr, "%s: resolution mismatch from %s\n",
449 progname, rpargv[0]);
450 exit(cleanup(1));
451 }
452 if (verbose) { /* notify caller */
453 printf("%d %d begun\n", xpos, ypos);
454 fflush(stdout);
455 }
456 unguard();
457 /* load new piece into buffer */
458 for (y = 0; y < vr; y++) {
459 guard_io();
460 if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) {
461 fprintf(stderr, "%s: read error from %s\n",
462 progname, rpargv[0]);
463 exit(cleanup(1));
464 }
465 unguard();
466 }
467 #if MAXFORK
468 /* fork so we don't slow rpict down */
469 if ((pid = fork()) > 0) {
470 if (++nforked >= MAXFORK) {
471 wait(&status); /* reap a child */
472 if (status)
473 exit(cleanup(status>>8 & 0xff));
474 nforked--;
475 }
476 return(pid);
477 }
478 #else
479 pid = -1; /* no forking */
480 #endif
481 fls.l_start = scanorig +
482 ((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR);
483 #if NFS
484 fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR);
485 /* lock file section so NFS doesn't mess up */
486 fls.l_whence = 0;
487 fls.l_type = F_WRLCK;
488 if (fcntl(outfd, F_SETLKW, &fls) < 0)
489 filerr("lock");
490 #endif
491 /* write new piece to file */
492 if (lseek(outfd, fls.l_start, 0) == -1)
493 filerr("seek");
494 if (hmult == 1) {
495 if (writebuf(outfd, (char *)pbuf,
496 vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
497 filerr("write");
498 } else
499 for (y = 0; y < vr; y++) {
500 if (writebuf(outfd, (char *)(pbuf+y*hr),
501 hr*sizeof(COLR)) != hr*sizeof(COLR))
502 filerr("write");
503 if (y < vr-1 && lseek(outfd,
504 (long)(hmult-1)*hr*sizeof(COLR),
505 1) == -1)
506 filerr("seek");
507 }
508 #if NFS
509 fls.l_type = F_UNLCK; /* release lock */
510 if (fcntl(outfd, F_SETLKW, &fls) < 0)
511 filerr("lock");
512 #endif
513 if (syncfp != NULL) { /* record what's been done */
514 sflock(F_WRLCK);
515 fseek(syncfp, 0L, 2); /* append index */
516 fprintf(syncfp, "%4d %4d\n", xpos, ypos);
517 fflush(syncfp);
518 /*** Unlock not necessary, since
519 sflock(F_UNLCK); _exit() or nextpiece() is next ***/
520 }
521 if (verbose) { /* notify caller */
522 printf("%d %d done\n", xpos, ypos);
523 fflush(stdout);
524 }
525 if (pid == -1) /* didn't fork or fork failed */
526 return(0);
527 _exit(0); /* else exit child process (releasing locks) */
528 }
529
530
531 filerr(t) /* report file error and exit */
532 char *t;
533 {
534 extern char *sys_errlist[];
535
536 fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
537 progname, t, outfile, sys_errlist[errno]);
538 _exit(1);
539 }
540
541 #endif