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.32 by greg, Thu Nov 30 14:21:48 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include "standard.h"
12 #include <fcntl.h>
12  
13   #ifndef F_SETLKW
14  
# Line 40 | Line 39 | char *argv[];
39   #endif
40   #endif
41                                          /* protection from SYSV signals(!) */
42 < #if defined(sgi) || defined(hpux)
42 > #if defined(sgi)
43   #define guard_io()      sighold(SIGALRM)
44   #define unguard()       sigrelse(SIGALRM)
45   #endif
# Line 62 | Line 61 | int  hres = 1024, vres = 1024, hmult = 4, vmult = 4;
61   char  *outfile = NULL;
62   int  outfd;
63   long  scanorig;
64 < int  syncfd = -1;               /* lock file descriptor */
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 + unsigned  timelim = 0;
73 + int  rvrlim = -1;
74  
75   extern long  lseek(), ftell();
76  
# Line 117 | Line 121 | char  *argv[];
121                                          break;
122                                  pixaspect = atof(argv[i+1]);
123                                  continue;
124 +                        case 'T':               /* time limit (hours) */
125 +                                if (argv[i][2])
126 +                                        break;
127 +                                timelim = atof(argv[++i])*3600. + .5;
128 +                                break;
129                          case 'x':               /* overall x resolution */
130                                  if (argv[i][2])
131                                          break;
# Line 137 | Line 146 | char  *argv[];
146                                          break;
147                                  vmult = atoi(argv[++i]);
148                                  continue;
149 +                        case 'R':               /* recover */
150 +                                if (argv[i][2])
151 +                                        break;
152 +                                rvrlim = 0;
153 +                        /* fall through */
154                          case 'F':               /* syncronization file */
155                                  if (argv[i][2])
156                                          break;
157 <                                if ((syncfd = open(argv[++i],
158 <                                                O_RDWR|O_CREAT, 0666)) < 0) {
157 >                                if ((syncfp =
158 >                fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) {
159                                          fprintf(stderr, "%s: cannot open\n",
160                                                          argv[i]);
161                                          exit(1);
# Line 174 | Line 188 | char  *argv[];
188   }
189  
190  
191 + dolock(fd, ltyp)                /* lock or unlock a file */
192 + int  fd;
193 + int  ltyp;
194 + {
195 +        static struct flock  fls;       /* static so initialized to zeroes */
196 +        extern char  *sys_errlist[];
197 +
198 +        fls.l_type = ltyp;
199 +        if (fcntl(fd, F_SETLKW, &fls) < 0) {
200 +                fprintf(stderr, "%s: cannot lock/unlock file: %s\n",
201 +                                progname, sys_errlist[errno]);
202 +                exit(1);
203 +        }
204 + }
205 +
206 +
207   init(ac, av)                    /* set up output file and start rpict */
208   int  ac;
209   char  **av;
# Line 188 | Line 218 | char  **av;
218                  fprintf(stderr, "%s: %s\n", progname, err);
219                  exit(1);
220          }
221 <        if (syncfd != -1) {
222 <                char  buf[32];
223 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
224 <                sscanf(buf, "%d %d", &hmult, &vmult);
221 >        if (syncfp != NULL) {
222 >                sflock(F_RDLCK);
223 >                fscanf(syncfp, "%d %d", &hmult, &vmult);
224 >                sflock(F_UNLCK);
225          }
226                                          /* compute piece size */
227          hres /= hmult;
# Line 206 | Line 236 | char  **av;
236          rpargv[rpargc] = NULL;
237                                          /* open output file */
238          if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) {
239 +                dolock(outfd, F_WRLCK);
240                  if ((fp = fdopen(dup(outfd), "w")) == NULL)
241                          goto filerr;
242 <                printargs(ac, av, fp);          /* write header */
242 >                newheader("RADIANCE", fp);      /* create header */
243 >                printargs(ac, av, fp);
244                  fprintf(fp, "SOFTWARE= %s\n", VersionID);
245                  fputs(VIEWSTR, fp);
246                  fprintview(&ourview, fp);
# Line 219 | Line 251 | char  **av;
251                  putc('\n', fp);
252                  fprtresolu(hres*hmult, vres*vmult, fp);
253          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
254 +                dolock(outfd, F_RDLCK);
255                  if ((fp = fdopen(dup(outfd), "r+")) == NULL)
256                          goto filerr;
257                  getheader(fp, NULL, NULL);      /* skip header */
# Line 236 | Line 269 | char  **av;
269          scanorig = ftell(fp);           /* record position of first scanline */
270          if (fclose(fp) == -1)           /* done with stream i/o */
271                  goto filerr;
272 < #if NFS
240 <        sync();                         /* flush NFS buffers */
241 < #endif
272 >        dolock(outfd, F_UNLCK);
273                                          /* start rpict process */
274          if (open_process(rpd, rpargv) <= 0) {
275                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
# Line 255 | Line 286 | char  **av;
286                  exit(1);
287          }
288          signal(SIGALRM, onalrm);
289 +        if (timelim)
290 +                alarm(timelim);
291          return;
292   filerr:
293          fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
# Line 266 | Line 299 | int
299   nextpiece(xp, yp)               /* get next piece assignment */
300   int  *xp, *yp;
301   {
269        struct flock  fls;
270        char  buf[64];
271
302          if (gotalrm)                    /* someone wants us to quit */
303                  return(0);
304 <        if (syncfd != -1) {             /* use sync file */
305 <                fls.l_type = F_WRLCK;           /* gain exclusive access */
306 <                fls.l_whence = 0;
307 <                fls.l_start = 0L;
308 <                fls.l_len = 0L;
309 <                fcntl(syncfd, F_SETLKW, &fls);
310 <                lseek(syncfd, 0L, 0);
311 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
312 <                if (sscanf(buf, "%*d %*d %d %d", xp, yp) < 2) {
304 >        if (syncfp != NULL) {           /* use sync file */
305 >                /*
306 >                 * So we don't necessarily have to lock and unlock the file
307 >                 * multiple times (very slow), we establish an exclusive
308 >                 * lock at the beginning on our synchronization file and
309 >                 * maintain it in the subroutine rvrpiece().
310 >                 */
311 >                sflock(F_WRLCK);
312 >                fseek(syncfp, 0L, 0);           /* read position */
313 >                if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
314                          *xp = hmult-1;
315                          *yp = vmult;
316                  }
317 +                if (rvrlim == 0)                /* initialize recovery limit */
318 +                        rvrlim = *xp*vmult + *yp;
319 +                if (rvrpiece(xp, yp)) {         /* do stragglers first */
320 +                        sflock(F_UNLCK);
321 +                        return(1);
322 +                }
323                  if (--(*yp) < 0) {              /* decrement position */
324                          *yp = vmult-1;
325 <                        if (--(*xp) < 0) {      /* all done! */
326 <                                close(syncfd);
325 >                        if (--(*xp) < 0) {      /* all done */
326 >                                sflock(F_UNLCK);
327                                  return(0);
328                          }
329                  }
330 <                sprintf(buf, "%4d %4d\n%4d %4d\n", hmult, vmult, *xp, *yp);
331 <                lseek(syncfd, 0L, 0);           /* write new position */
332 <                write(syncfd, buf, strlen(buf));
333 <                fls.l_type = F_UNLCK;           /* release sync file */
297 <                fcntl(syncfd, F_SETLKW, &fls);
330 >                fseek(syncfp, 0L, 0);           /* write new position */
331 >                fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
332 >                fflush(syncfp);
333 >                sflock(F_UNLCK);                /* release sync file */
334                  return(1);
335          }
336 <        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));
336 >        return(scanf("%d %d", xp, yp) == 2);    /* use stdin */
337   }
338  
339  
340   int
341 + rvrpiece(xp, yp)                /* check for recoverable pieces */
342 + register int  *xp, *yp;
343 + {
344 +        static char  *pdone = NULL;     /* which pieces are done */
345 +        static long  readpos = -1;      /* how far we've read */
346 +        register int  i;
347 +        /*
348 +         * This routine is called by nextpiece() with an
349 +         * exclusive lock on syncfp and the file pointer at the
350 +         * appropriate position to read in the finished pieces.
351 +         */
352 +        if (rvrlim < 0)
353 +                return(0);              /* only check if asked */
354 +        if (pdone == NULL)              /* first call */
355 +                pdone = calloc(hmult*vmult, sizeof(char));
356 +        if (pdone == NULL) {
357 +                fprintf(stderr, "%s: out of memory\n", progname);
358 +                exit(1);
359 +        }
360 +        if (readpos != -1)              /* mark what's been done */
361 +                fseek(syncfp, readpos, 0);
362 +        while (fscanf(syncfp, "%d %d", xp, yp) == 2)
363 +                pdone[*xp*vmult+*yp] = 1;
364 +        if (!feof(syncfp)) {
365 +                fprintf(stderr, "%s: format error in sync file\n", progname);
366 +                exit(1);
367 +        }
368 +        readpos = ftell(syncfp);
369 +        i = hmult*vmult;                /* find an unaccounted for piece */
370 +        while (i-- > rvrlim)
371 +                if (!pdone[i]) {
372 +                        *xp = i / vmult;
373 +                        *yp = i % vmult;
374 +                        pdone[i] = 1;   /* consider it done */
375 +                        return(1);
376 +                }
377 +        rvrlim = -1;                    /* nothing left to recover */
378 +        free(pdone);
379 +        pdone = NULL;
380 +        return(0);
381 + }
382 +
383 +
384 + int
385   cleanup(rstat)                  /* close rpict process and clean up */
386   int  rstat;
387   {
# Line 340 | Line 415 | rpiece()                       /* render picture piece by piece */
415                  pview.horiz = ourview.horiz / hmult;
416                  pview.vert = ourview.vert / vmult;
417                  break;
418 +        case VT_CYL:
419 +                pview.horiz = ourview.horiz / hmult;
420 +                pview.vert = 2.*180./PI*atan(
421 +                                tan(PI/180./2.*ourview.vert)/vmult );
422 +                break;
423          case VT_HEM:
424                  pview.horiz = 2.*180./PI*asin(
425                                  sin(PI/180./2.*ourview.horiz)/hmult );
# Line 422 | Line 502 | int  xpos, ypos;
502                                  /* lock file section so NFS doesn't mess up */
503          fls.l_whence = 0;
504          fls.l_type = F_WRLCK;
505 <        fcntl(outfd, F_SETLKW, &fls);
505 >        if (fcntl(outfd, F_SETLKW, &fls) < 0)
506 >                filerr("lock");
507   #endif
508                                  /* write new piece to file */
509          if (lseek(outfd, fls.l_start, 0) == -1)
510 <                goto seekerr;
510 >                filerr("seek");
511          if (hmult == 1) {
512                  if (writebuf(outfd, (char *)pbuf,
513                                  vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
514 <                        goto writerr;
514 >                        filerr("write");
515          } else
516                  for (y = 0; y < vr; y++) {
517                          if (writebuf(outfd, (char *)(pbuf+y*hr),
518                                          hr*sizeof(COLR)) != hr*sizeof(COLR))
519 <                                goto writerr;
519 >                                filerr("write");
520                          if (y < vr-1 && lseek(outfd,
521                                          (long)(hmult-1)*hr*sizeof(COLR),
522                                          1) == -1)
523 <                                goto seekerr;
523 >                                filerr("seek");
524                  }
525 + #if NFS
526 +        fls.l_type = F_UNLCK;           /* release lock */
527 +        if (fcntl(outfd, F_SETLKW, &fls) < 0)
528 +                filerr("lock");
529 + #endif
530          if (verbose) {                          /* notify caller */
531                  printf("%d %d done\n", xpos, ypos);
532                  fflush(stdout);
533          }
534 <        if (pid == -1) {        /* didn't fork or fork failed */
535 < #if NFS
536 <                fls.l_type = F_UNLCK;           /* release lock */
537 <                fcntl(outfd, F_SETLKW, &fls);
538 < #endif
539 <                return(0);
534 >        if (syncfp != NULL) {                   /* record what's been done */
535 >                sflock(F_WRLCK);
536 >                fseek(syncfp, 0L, 2);           /* append index */
537 >                fprintf(syncfp, "%4d %4d\n", xpos, ypos);
538 >                fflush(syncfp);
539 >                                /*** Unlock not necessary, since
540 >                sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
541          }
542 <        _exit(0);               /* else exit child process (releasing lock) */
543 < seekerr:
544 <        fprintf(stderr, "%s: seek error on file \"%s\"\n", progname, outfile);
545 <        _exit(1);
546 < writerr:
547 <        fprintf(stderr, "%s: write error on file \"%s\"\n", progname, outfile);
542 >        if (pid == -1)          /* didn't fork or fork failed */
543 >                return(0);
544 >        _exit(0);               /* else exit child process (releasing locks) */
545 > }
546 >
547 >
548 > filerr(t)                       /* report file error and exit */
549 > char  *t;
550 > {
551 >        extern char  *sys_errlist[];
552 >
553 >        fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
554 >                        progname, t, outfile, sys_errlist[errno]);
555          _exit(1);
556   }
557  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines