ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rpiece.c
(Generate patch)

Comparing ray/src/util/rpiece.c (file contents):
Revision 2.24 by greg, Fri Aug 6 12:58:43 1993 UTC vs.
Revision 2.49 by schorsch, Thu Apr 24 10:28:25 2008 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1993 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Generate sections of a picture.
6   */
7  
8 +
9 + #include <stdio.h>
10 + #include <signal.h>
11 + #include <sys/types.h>
12 +
13 + #include "platform.h"
14 + #ifndef NON_POSIX /* XXX need abstraction for process management */
15 + #include <sys/wait.h>
16 + #endif
17 +
18   #include "standard.h"
19 < #include <fcntl.h>
19 > #include "color.h"
20 > #include "view.h"
21 > #include "rtprocess.h"
22  
23   #ifndef F_SETLKW
24  
25 < main(argc, argv)
26 < int argc;
27 < char *argv[];
25 > int
26 > main(
27 >        int argc,
28 >        char *argv[]
29 > )
30   {
31          fprintf(stderr, "%s: no NFS lock manager on this machine\n", argv[0]);
32          exit(1);
# Line 23 | Line 34 | char *argv[];
34  
35   #else
36  
26 #include <signal.h>
27 #include "color.h"
28 #include "view.h"
29 #include "resolu.h"
30
37   #ifndef NFS
38   #define  NFS                    1
39   #endif
# Line 40 | Line 46 | char *argv[];
46   #endif
47   #endif
48                                          /* protection from SYSV signals(!) */
49 < #if defined(sgi) || defined(hpux)
49 > #if defined(sgi)
50   #define guard_io()      sighold(SIGALRM)
51   #define unguard()       sigrelse(SIGALRM)
52   #endif
53   #ifndef guard_io
54 < #define guard_io()      0
55 < #define unguard()       0
54 > #define guard_io()      
55 > #define unguard()      
56   #endif
57 +
58 + extern char  *strerror();
59 +
60                                  /* rpict command */
61   char  *rpargv[128] = {"rpict", "-S", "1"};
62   int  rpargc = 3;
54 int  rpd[3];
63   FILE  *torp, *fromrp;
64   COLR  *pbuf;
65                                  /* our view parameters */
# Line 62 | Line 70 | int  hres = 1024, vres = 1024, hmult = 4, vmult = 4;
70   char  *outfile = NULL;
71   int  outfd;
72   long  scanorig;
73 < int  syncfd = -1;               /* lock file descriptor */
73 > FILE  *syncfp = NULL;           /* synchronization file pointer */
74 > int  synclst = F_UNLCK;         /* synchronization file lock status */
75   int  nforked = 0;
76  
77 + #define  sflock(t)      if ((t)!=synclst) dolock(fileno(syncfp),synclst=t)
78 +
79   char  *progname;
80   int  verbose = 0;
81 + unsigned  timelim = 0;
82 + int  rvrlim = -1;
83  
71 extern long  lseek(), ftell();
72
84   int  gotalrm = 0;
85 < int  onalrm() { gotalrm++; }
85 > void  onalrm(int i) { gotalrm++; }
86  
87 + static void dolock(int  fd, int  ltyp);
88 + static void init(int  ac, char  **av);
89 + static int nextpiece(int        *xp, int        *yp);
90 + static int rvrpiece(int *xp, int        *yp);
91 + static int cleanup(int  rstat);
92 + static void rpiece(void);
93 + static int putpiece(int xpos, int       ypos);
94 + static void filerr(char  *t);
95  
96 < main(argc, argv)
97 < int  argc;
98 < char  *argv[];
96 >
97 > int
98 > main(
99 >        int  argc,
100 >        char  *argv[]
101 > )
102   {
103          register int  i, rval;
104          
105          progname = argv[0];
106          for (i = 1; i < argc; i++) {
107                                                  /* expand arguments */
108 <                while (rval = expandarg(&argc, &argv, i))
109 <                        if (rval < 0) {
110 <                                fprintf(stderr, "%s: cannot expand '%s'",
111 <                                                argv[0], argv[i]);
112 <                                exit(1);
113 <                        }
108 >                while ((rval = expandarg(&argc, &argv, i)) > 0)
109 >                        ;
110 >                if (rval < 0) {
111 >                        fprintf(stderr, "%s: cannot expand '%s'",
112 >                                        argv[0], argv[i]);
113 >                        exit(1);
114 >                }
115                  if (argv[i][0] == '-')
116                          switch (argv[i][1]) {
117                          case 'v':
# Line 115 | Line 138 | char  *argv[];
138                          case 'p':               /* pixel aspect ratio? */
139                                  if (argv[i][2] != 'a' || argv[i][3])
140                                          break;
141 <                                pixaspect = atof(argv[i+1]);
141 >                                pixaspect = atof(argv[++i]);
142                                  continue;
143 +                        case 'T':               /* time limit (hours) */
144 +                                if (argv[i][2])
145 +                                        break;
146 +                                timelim = atof(argv[++i])*3600. + .5;
147 +                                break;
148                          case 'x':               /* overall x resolution */
149                                  if (argv[i][2])
150                                          break;
# Line 137 | Line 165 | char  *argv[];
165                                          break;
166                                  vmult = atoi(argv[++i]);
167                                  continue;
168 +                        case 'R':               /* recover */
169 +                                if (argv[i][2])
170 +                                        break;
171 +                                rvrlim = 0;
172 +                        /* fall through */
173                          case 'F':               /* syncronization file */
174                                  if (argv[i][2])
175                                          break;
176 <                                if ((syncfd = open(argv[++i],
177 <                                                O_RDWR|O_CREAT, 0666)) < 0) {
176 >                                if ((syncfp =
177 >                fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) {
178                                          fprintf(stderr, "%s: cannot open\n",
179                                                          argv[i]);
180                                          exit(1);
# Line 174 | Line 207 | char  *argv[];
207   }
208  
209  
210 < init(ac, av)                    /* set up output file and start rpict */
211 < int  ac;
212 < char  **av;
210 > static void
211 > dolock(         /* lock or unlock a file */
212 >        int  fd,
213 >        int  ltyp
214 > )
215   {
216 +        static struct flock  fls;       /* static so initialized to zeroes */
217 +
218 +        fls.l_type = ltyp;
219 +        if (fcntl(fd, F_SETLKW, &fls) < 0) {
220 +                fprintf(stderr, "%s: cannot lock/unlock file: %s\n",
221 +                                progname, strerror(errno));
222 +                exit(1);
223 +        }
224 + }
225 +
226 +
227 + static void
228 + init(                   /* set up output file and start rpict */
229 +        int  ac,
230 +        char  **av
231 + )
232 + {
233          static char  hrbuf[16], vrbuf[16];
234          extern char  VersionID[];
235          char  *err;
236          FILE  *fp;
237          int  hr, vr;
238 +        SUBPROC  rpd; /* since we don't close_process(), this can be local */
239                                          /* set up view */
240          if ((err = setview(&ourview)) != NULL) {
241                  fprintf(stderr, "%s: %s\n", progname, err);
242                  exit(1);
243          }
244 <        if (syncfd != -1) {
245 <                char  buf[32];
246 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
247 <                sscanf(buf, "%d %d", &hmult, &vmult);
244 >        if (syncfp != NULL) {
245 >                sflock(F_RDLCK);
246 >                fscanf(syncfp, "%d %d", &hmult, &vmult);
247 >                sflock(F_UNLCK);
248          }
249                                          /* compute piece size */
250          hres /= hmult;
251          vres /= vmult;
252 +        if (hres <= 0 || vres <= 0) {
253 +                fprintf(stderr, "%s: illegal resolution/subdivision\n", progname);
254 +                exit(1);
255 +        }
256          normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres);
257          sprintf(hrbuf, "%d", hres);
258          rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf;
# Line 206 | Line 263 | char  **av;
263          rpargv[rpargc] = NULL;
264                                          /* open output file */
265          if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) {
266 +                dolock(outfd, F_WRLCK);
267                  if ((fp = fdopen(dup(outfd), "w")) == NULL)
268                          goto filerr;
269 <                printargs(ac, av, fp);          /* write header */
269 >                newheader("RADIANCE", fp);      /* create header */
270 >                printargs(ac, av, fp);
271                  fprintf(fp, "SOFTWARE= %s\n", VersionID);
272                  fputs(VIEWSTR, fp);
273                  fprintview(&ourview, fp);
# Line 219 | Line 278 | char  **av;
278                  putc('\n', fp);
279                  fprtresolu(hres*hmult, vres*vmult, fp);
280          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
281 +                dolock(outfd, F_RDLCK);
282                  if ((fp = fdopen(dup(outfd), "r+")) == NULL)
283                          goto filerr;
284                  getheader(fp, NULL, NULL);      /* skip header */
# Line 236 | Line 296 | char  **av;
296          scanorig = ftell(fp);           /* record position of first scanline */
297          if (fclose(fp) == -1)           /* done with stream i/o */
298                  goto filerr;
299 < #if NFS
240 <        sync();                         /* flush NFS buffers */
241 < #endif
299 >        dolock(outfd, F_UNLCK);
300                                          /* start rpict process */
301 <        if (open_process(rpd, rpargv) <= 0) {
301 >        if (open_process(&rpd, rpargv) <= 0) {
302                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
303                  exit(1);
304          }
305 <        if ((fromrp = fdopen(rpd[0], "r")) == NULL ||
306 <                        (torp = fdopen(rpd[1], "w")) == NULL) {
305 >        if ((fromrp = fdopen(rpd.r, "r")) == NULL ||
306 >                        (torp = fdopen(rpd.w, "w")) == NULL) {
307                  fprintf(stderr, "%s: cannot open stream to %s\n",
308                                  progname, rpargv[0]);
309                  exit(1);
# Line 255 | Line 313 | char  **av;
313                  exit(1);
314          }
315          signal(SIGALRM, onalrm);
316 +        if (timelim)
317 +                alarm(timelim);
318          return;
319   filerr:
320          fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
# Line 262 | Line 322 | filerr:
322   }
323  
324  
325 < int
326 < nextpiece(xp, yp)               /* get next piece assignment */
327 < int  *xp, *yp;
325 > static int
326 > nextpiece(              /* get next piece assignment */
327 >        int     *xp,
328 >        int     *yp
329 > )
330   {
269        struct flock  fls;
270        char  buf[64];
271
331          if (gotalrm)                    /* someone wants us to quit */
332                  return(0);
333 <        if (syncfd != -1) {             /* use sync file */
334 <                fls.l_type = F_WRLCK;           /* gain exclusive access */
335 <                fls.l_whence = 0;
336 <                fls.l_start = 0L;
337 <                fls.l_len = 0L;
338 <                fcntl(syncfd, F_SETLKW, &fls);
339 <                lseek(syncfd, 0L, 0);
340 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
341 <                if (sscanf(buf, "%*d %*d %d %d", xp, yp) < 2) {
333 >        if (syncfp != NULL) {           /* use sync file */
334 >                /*
335 >                 * So we don't necessarily have to lock and unlock the file
336 >                 * multiple times (very slow), we establish an exclusive
337 >                 * lock at the beginning on our synchronization file and
338 >                 * maintain it in the subroutine rvrpiece().
339 >                 */
340 >                sflock(F_WRLCK);
341 >                fseek(syncfp, 0L, 0);           /* read position */
342 >                if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
343                          *xp = hmult-1;
344                          *yp = vmult;
345                  }
346 +                if (rvrlim == 0)                /* initialize recovery limit */
347 +                        rvrlim = *xp*vmult + *yp;
348 +                if (rvrpiece(xp, yp)) {         /* do stragglers first */
349 +                        sflock(F_UNLCK);
350 +                        return(1);
351 +                }
352                  if (--(*yp) < 0) {              /* decrement position */
353                          *yp = vmult-1;
354 <                        if (--(*xp) < 0) {      /* all done! */
355 <                                close(syncfd);
354 >                        if (--(*xp) < 0) {      /* all done */
355 >                                sflock(F_UNLCK);
356                                  return(0);
357                          }
358                  }
359 <                sprintf(buf, "%4d %4d\n%4d %4d\n", hmult, vmult, *xp, *yp);
360 <                lseek(syncfd, 0L, 0);           /* write new position */
361 <                write(syncfd, buf, strlen(buf));
362 <                fls.l_type = F_UNLCK;           /* release sync file */
297 <                fcntl(syncfd, F_SETLKW, &fls);
359 >                fseek(syncfp, 0L, 0);           /* write new position */
360 >                fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
361 >                fflush(syncfp);
362 >                sflock(F_UNLCK);                /* release sync file */
363                  return(1);
364          }
365 <        if (fgets(buf, sizeof(buf), stdin) == NULL)     /* use stdin */
301 <                return(0);
302 <        if (sscanf(buf, "%d %d", xp, yp) == 2)
303 <                return(1);
304 <        fprintf(stderr, "%s: input format error\n", progname);
305 <        exit(cleanup(1));
365 >        return(scanf("%d %d", xp, yp) == 2);    /* use stdin */
366   }
367  
368  
369 < int
370 < cleanup(rstat)                  /* close rpict process and clean up */
371 < int  rstat;
369 > static int
370 > rvrpiece(               /* check for recoverable pieces */
371 >        register int    *xp,
372 >        register int    *yp
373 > )
374   {
375 +        static char  *pdone = NULL;     /* which pieces are done */
376 +        static long  readpos = -1;      /* how far we've read */
377 +        register int  i;
378 +        /*
379 +         * This routine is called by nextpiece() with an
380 +         * exclusive lock on syncfp and the file pointer at the
381 +         * appropriate position to read in the finished pieces.
382 +         */
383 +        if (rvrlim < 0)
384 +                return(0);              /* only check if asked */
385 +        if (pdone == NULL)              /* first call */
386 +                pdone = calloc(hmult*vmult, sizeof(char));
387 +        if (pdone == NULL) {
388 +                fprintf(stderr, "%s: out of memory\n", progname);
389 +                exit(1);
390 +        }
391 +        if (readpos != -1)              /* mark what's been done */
392 +                fseek(syncfp, readpos, 0);
393 +        while (fscanf(syncfp, "%d %d", xp, yp) == 2)
394 +                pdone[*xp*vmult+*yp] = 1;
395 +        if (!feof(syncfp)) {
396 +                fprintf(stderr, "%s: format error in sync file\n", progname);
397 +                exit(1);
398 +        }
399 +        readpos = ftell(syncfp);
400 +        i = hmult*vmult;                /* find an unaccounted for piece */
401 +        while (i-- > rvrlim)
402 +                if (!pdone[i]) {
403 +                        *xp = i / vmult;
404 +                        *yp = i % vmult;
405 +                        pdone[i] = 1;   /* consider it done */
406 +                        return(1);
407 +                }
408 +        rvrlim = -1;                    /* nothing left to recover */
409 +        free(pdone);
410 +        pdone = NULL;
411 +        return(0);
412 + }
413 +
414 +
415 + static int
416 + cleanup(                        /* close rpict process and clean up */
417 +        int  rstat
418 + )
419 + {
420          int  status;
421  
422          bfree((char *)pbuf, hres*vres*sizeof(COLR));
# Line 322 | Line 429 | int  rstat;
429   }
430  
431  
432 < rpiece()                        /* render picture piece by piece */
432 > static void
433 > rpiece(void)                    /* render picture piece by piece */
434   {
435          VIEW  pview;
436          int  xorg, yorg;
437                                          /* compute view parameters */
438 <        copystruct(&pview, &ourview);
438 >        pview = ourview;
439          switch (ourview.type) {
440          case VT_PER:
441 <                pview.horiz = 2.*180./PI*atan(
442 <                                tan(PI/180./2.*ourview.horiz)/hmult );
443 <                pview.vert = 2.*180./PI*atan(
444 <                                tan(PI/180./2.*ourview.vert)/vmult );
441 >                pview.horiz = (2.*180./PI)*atan(
442 >                                tan((PI/180./2.)*ourview.horiz)/hmult );
443 >                pview.vert = (2.*180./PI)*atan(
444 >                                tan((PI/180./2.)*ourview.vert)/vmult );
445                  break;
446          case VT_PAR:
447          case VT_ANG:
448                  pview.horiz = ourview.horiz / hmult;
449                  pview.vert = ourview.vert / vmult;
450                  break;
451 +        case VT_CYL:
452 +                pview.horiz = ourview.horiz / hmult;
453 +                pview.vert = (2.*180./PI)*atan(
454 +                                tan((PI/180./2.)*ourview.vert)/vmult );
455 +                break;
456          case VT_HEM:
457 <                pview.horiz = 2.*180./PI*asin(
458 <                                sin(PI/180./2.*ourview.horiz)/hmult );
459 <                pview.vert = 2.*180./PI*asin(
460 <                                sin(PI/180./2.*ourview.vert)/vmult );
457 >                pview.horiz = (2.*180./PI)*asin(
458 >                                sin((PI/180./2.)*ourview.horiz)/hmult );
459 >                pview.vert = (2.*180./PI)*asin(
460 >                                sin((PI/180./2.)*ourview.vert)/vmult );
461                  break;
462 +        case VT_PLS:
463 +                pview.horiz = sin((PI/180./2.)*ourview.horiz) /
464 +                                (1.0 + cos((PI/180./2.)*ourview.horiz)) / hmult;
465 +                pview.horiz *= pview.horiz;
466 +                pview.horiz = (2.*180./PI)*acos((1. - pview.horiz) /
467 +                                                (1. + pview.horiz));
468 +                pview.vert = sin((PI/180./2.)*ourview.vert) /
469 +                                (1.0 + cos((PI/180./2.)*ourview.vert)) / vmult;
470 +                pview.vert *= pview.vert;
471 +                pview.vert = (2.*180./PI)*acos((1. - pview.vert) /
472 +                                                (1. + pview.vert));
473 +                break;
474          default:
475                  fprintf(stderr, "%s: unknown view type '-vt%c'\n",
476                                  progname, ourview.type);
# Line 353 | Line 478 | rpiece()                       /* render picture piece by piece */
478          }
479                                          /* render each piece */
480          while (nextpiece(&xorg, &yorg)) {
481 <                pview.hoff = ourview.hoff + xorg - 0.5*(hmult-1);
482 <                pview.voff = ourview.voff + yorg - 0.5*(vmult-1);
481 >                pview.hoff = ourview.hoff*hmult + xorg - 0.5*(hmult-1);
482 >                pview.voff = ourview.voff*vmult + yorg - 0.5*(vmult-1);
483                  fputs(VIEWSTR, torp);
484                  fprintview(&pview, torp);
485                  putc('\n', torp);
# Line 364 | Line 489 | rpiece()                       /* render picture piece by piece */
489   }
490  
491  
492 < int
493 < putpiece(xpos, ypos)            /* get next piece from rpict */
494 < int  xpos, ypos;
492 > static int
493 > putpiece(               /* get next piece from rpict */
494 > int     xpos,
495 > int     ypos
496 > )
497   {
498          struct flock  fls;
499          int  pid, status;
500          int  hr, vr;
501          register int  y;
502                                  /* check bounds */
503 <        if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) {
503 >        if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
504                  fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
505                                  progname, xpos, ypos);
506                  exit(cleanup(1));
# Line 381 | Line 508 | int  xpos, ypos;
508                                  /* check header from rpict */
509          guard_io();
510          getheader(fromrp, NULL, NULL);
511 <        if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
511 >        if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
512                  fprintf(stderr, "%s: resolution mismatch from %s\n",
513                                  progname, rpargv[0]);
514                  exit(cleanup(1));
# Line 422 | Line 549 | int  xpos, ypos;
549                                  /* lock file section so NFS doesn't mess up */
550          fls.l_whence = 0;
551          fls.l_type = F_WRLCK;
552 <        fcntl(outfd, F_SETLKW, &fls);
552 >        if (fcntl(outfd, F_SETLKW, &fls) < 0)
553 >                filerr("lock");
554   #endif
555                                  /* write new piece to file */
556 <        if (lseek(outfd, fls.l_start, 0) == -1)
557 <                goto seekerr;
556 >        if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
557 >                filerr("seek");
558          if (hmult == 1) {
559                  if (writebuf(outfd, (char *)pbuf,
560                                  vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
561 <                        goto writerr;
561 >                        filerr("write");
562          } else
563                  for (y = 0; y < vr; y++) {
564                          if (writebuf(outfd, (char *)(pbuf+y*hr),
565                                          hr*sizeof(COLR)) != hr*sizeof(COLR))
566 <                                goto writerr;
566 >                                filerr("write");
567                          if (y < vr-1 && lseek(outfd,
568 <                                        (long)(hmult-1)*hr*sizeof(COLR),
569 <                                        1) == -1)
570 <                                goto seekerr;
568 >                                        (off_t)(hmult-1)*hr*sizeof(COLR),
569 >                                        SEEK_CUR) < 0)
570 >                                filerr("seek");
571                  }
572 + #if NFS
573 +        fls.l_type = F_UNLCK;           /* release lock */
574 +        if (fcntl(outfd, F_SETLKW, &fls) < 0)
575 +                filerr("lock");
576 + #endif
577          if (verbose) {                          /* notify caller */
578                  printf("%d %d done\n", xpos, ypos);
579                  fflush(stdout);
580          }
581 <        if (pid == -1) {        /* didn't fork or fork failed */
582 < #if NFS
583 <                fls.l_type = F_UNLCK;           /* release lock */
584 <                fcntl(outfd, F_SETLKW, &fls);
585 < #endif
586 <                return(0);
581 >        if (syncfp != NULL) {                   /* record what's been done */
582 >                sflock(F_WRLCK);
583 >                fseek(syncfp, 0L, 2);           /* append index */
584 >                fprintf(syncfp, "%4d %4d\n", xpos, ypos);
585 >                fflush(syncfp);
586 >                                /*** Unlock not necessary, since
587 >                sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
588          }
589 <        _exit(0);               /* else exit child process (releasing lock) */
590 < seekerr:
591 <        fprintf(stderr, "%s: seek error on file \"%s\"\n", progname, outfile);
592 <        _exit(1);
593 < writerr:
594 <        fprintf(stderr, "%s: write error on file \"%s\"\n", progname, outfile);
589 >        if (pid == -1)          /* didn't fork or fork failed */
590 >                return(0);
591 >        _exit(0);               /* else exit child process (releasing locks) */
592 > }
593 >
594 >
595 > static void
596 > filerr(                 /* report file error and exit */
597 >        char  *t
598 > )
599 > {
600 >        fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
601 >                        progname, t, outfile, strerror(errno));
602          _exit(1);
603   }
604  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines