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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines