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.29 by greg, Mon Feb 28 09:22:32 1994 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 "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 22 | Line 34 | char *argv[];
34  
35   #else
36  
25 #include <signal.h>
26 #include "color.h"
27 #include "view.h"
28 #include "resolu.h"
29
37   #ifndef NFS
38   #define  NFS                    1
39   #endif
# Line 44 | Line 51 | char *argv[];
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;
53 int  rpd[3];
63   FILE  *torp, *fromrp;
64   COLR  *pbuf;
65                                  /* our view parameters */
# Line 69 | Line 78 | int  nforked = 0;
78  
79   char  *progname;
80   int  verbose = 0;
81 + unsigned  timelim = 0;
82   int  rvrlim = -1;
83  
74 extern long  lseek(), ftell();
75
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 118 | 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 182 | Line 207 | char  *argv[];
207   }
208  
209  
210 < dolock(fd, ltyp)                /* lock or unlock a file */
211 < int  fd;
212 < int  ltyp;
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 */
190        extern char  *sys_errlist[];
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, sys_errlist[errno]);
221 >                                progname, strerror(errno));
222                  exit(1);
223          }
224   }
225  
226  
227 < init(ac, av)                    /* set up output file and start rpict */
228 < int  ac;
229 < char  **av;
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);
# Line 220 | Line 249 | char  **av;
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 265 | Line 298 | char  **av;
298                  goto filerr;
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 280 | 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 287 | 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   {
331          if (gotalrm)                    /* someone wants us to quit */
332                  return(0);
# Line 329 | Line 366 | int  *xp, *yp;
366   }
367  
368  
369 < int
370 < rvrpiece(xp, yp)                /* check for recoverable pieces */
371 < register int  *xp, *yp;
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 */
# Line 345 | Line 384 | register int  *xp, *yp;
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)
# Line 369 | Line 412 | register int  *xp, *yp;
412   }
413  
414  
415 < int
416 < cleanup(rstat)                  /* close rpict process and clean up */
417 < int  rstat;
415 > static int
416 > cleanup(                        /* close rpict process and clean up */
417 >        int  rstat
418 > )
419   {
420          int  status;
421  
# Line 385 | 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 416 | 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 427 | 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 444 | 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 489 | Line 553 | int  xpos, ypos;
553                  filerr("lock");
554   #endif
555                                  /* write new piece to file */
556 <        if (lseek(outfd, fls.l_start, 0) == -1)
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,
# Line 501 | Line 565 | int  xpos, ypos;
565                                          hr*sizeof(COLR)) != hr*sizeof(COLR))
566                                  filerr("write");
567                          if (y < vr-1 && lseek(outfd,
568 <                                        (long)(hmult-1)*hr*sizeof(COLR),
569 <                                        1) == -1)
568 >                                        (off_t)(hmult-1)*hr*sizeof(COLR),
569 >                                        SEEK_CUR) < 0)
570                                  filerr("seek");
571                  }
572   #if NFS
# Line 510 | Line 574 | int  xpos, ypos;
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 (syncfp != NULL) {                   /* record what's been done */
582                  sflock(F_WRLCK);
583                  fseek(syncfp, 0L, 2);           /* append index */
# Line 518 | Line 586 | int  xpos, ypos;
586                                  /*** Unlock not necessary, since
587                  sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
588          }
521        if (verbose) {                          /* notify caller */
522                printf("%d %d done\n", xpos, ypos);
523                fflush(stdout);
524        }
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 < filerr(t)                       /* report file error and exit */
596 < char  *t;
595 > static void
596 > filerr(                 /* report file error and exit */
597 >        char  *t
598 > )
599   {
534        extern char  *sys_errlist[];
535
600          fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
601 <                        progname, t, outfile, sys_errlist[errno]);
601 >                        progname, t, outfile, strerror(errno));
602          _exit(1);
603   }
604  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines