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.39 by schorsch, Thu Jun 26 00:58:11 2003 UTC vs.
Revision 2.59 by greg, Wed Jan 12 21:07:39 2022 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
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 19 | Line 34 | char *argv[];
34  
35   #else
36  
22 #include <signal.h>
23
24 #include "color.h"
25 #include "view.h"
26 #include "rtprocess.h"
27
37   #ifndef NFS
38   #define  NFS                    1
39   #endif
40 <                                /* set the following to 0 to forgo forking */
40 >
41 > #ifndef RHAS_FORK_EXEC
42 > #undef MAXFORK
43 > #define MAXFORK                 0
44 > #endif
45   #ifndef MAXFORK
46   #if NFS
47   #define  MAXFORK                3       /* allotment of duped processes */
# Line 42 | Line 55 | char *argv[];
55   #define unguard()       sigrelse(SIGALRM)
56   #endif
57   #ifndef guard_io
58 < #define guard_io()      0
59 < #define unguard()       0
58 > #define guard_io()      
59 > #define unguard()      
60   #endif
61  
62   extern char  *strerror();
# Line 69 | Line 82 | int  nforked = 0;
82  
83   char  *progname;
84   int  verbose = 0;
85 + int  nowarn = 0;
86   unsigned  timelim = 0;
87   int  rvrlim = -1;
88  
89   int  gotalrm = 0;
90   void  onalrm(int i) { gotalrm++; }
91  
92 + static void dolock(int  fd, int  ltyp);
93 + static void init(int  ac, char  **av);
94 + static int nextpiece(int        *xp, int        *yp);
95 + static int rvrpiece(int *xp, int        *yp);
96 + static int cleanup(int  rstat);
97 + static void rpiece(void);
98 + static int putpiece(int xpos, int       ypos);
99 + static void filerr(char  *t);
100  
101 < main(argc, argv)
102 < int  argc;
103 < char  *argv[];
101 >
102 > int
103 > main(
104 >        int  argc,
105 >        char  *argv[]
106 > )
107   {
108 <        register int  i, rval;
108 >        int  i, rval;
109          
110          progname = argv[0];
111          for (i = 1; i < argc; i++) {
# Line 88 | Line 113 | char  *argv[];
113                  while ((rval = expandarg(&argc, &argv, i)) > 0)
114                          ;
115                  if (rval < 0) {
116 <                        fprintf(stderr, "%s: cannot expand '%s'",
116 >                        fprintf(stderr, "%s: cannot expand '%s'\n",
117                                          argv[0], argv[i]);
118                          exit(1);
119                  }
120                  if (argv[i][0] == '-')
121                          switch (argv[i][1]) {
122 +                        case 'w':
123 +                                if (!argv[i][2])
124 +                                        nowarn = !nowarn;
125 +                                else if (argv[i][2] == '+')
126 +                                        nowarn = 0;
127 +                                else if (argv[i][2] == '-')
128 +                                        nowarn = 1;
129 +                                break;
130                          case 'v':
131                                  switch (argv[i][2]) {
132                                  case '\0':      /* verbose option */
# Line 116 | Line 149 | char  *argv[];
149                                  }
150                                  break;
151                          case 'p':               /* pixel aspect ratio? */
152 +                                if (argv[i][2] == 'm') {
153 +                                        fprintf(stderr, "%s: -pm unsupported\n",
154 +                                                argv[0]);
155 +                                        ++i;
156 +                                        continue;
157 +                                }
158                                  if (argv[i][2] != 'a' || argv[i][3])
159                                          break;
160                                  pixaspect = atof(argv[++i]);
# Line 124 | Line 163 | char  *argv[];
163                                  if (argv[i][2])
164                                          break;
165                                  timelim = atof(argv[++i])*3600. + .5;
166 <                                break;
166 >                                continue;
167                          case 'x':               /* overall x resolution */
168                                  if (argv[i][2])
169                                          break;
# Line 169 | Line 208 | char  *argv[];
208                                          break;
209                                  outfile = argv[++i];
210                                  continue;
211 <                        } else if (i >= argc-1)
212 <                                break;
211 >                        }
212 >                else if (i >= argc-1)
213 >                        break;
214                  rpargv[rpargc++] = argv[i];
215          }
216          if (i >= argc) {
# Line 187 | Line 227 | char  *argv[];
227   }
228  
229  
230 < dolock(fd, ltyp)                /* lock or unlock a file */
231 < int  fd;
232 < int  ltyp;
230 > static void
231 > dolock(         /* lock or unlock a file */
232 >        int  fd,
233 >        int  ltyp
234 > )
235   {
236          static struct flock  fls;       /* static so initialized to zeroes */
237  
# Line 197 | Line 239 | int  ltyp;
239          if (fcntl(fd, F_SETLKW, &fls) < 0) {
240                  fprintf(stderr, "%s: cannot lock/unlock file: %s\n",
241                                  progname, strerror(errno));
242 <                exit(1);
242 >                _exit(1);
243          }
244   }
245  
246  
247 < init(ac, av)                    /* set up output file and start rpict */
248 < int  ac;
249 < char  **av;
247 > static void
248 > init(                   /* set up output file and start rpict */
249 >        int  ac,
250 >        char  **av
251 > )
252   {
253          static char  hrbuf[16], vrbuf[16];
254          extern char  VersionID[];
# Line 223 | Line 267 | char  **av;
267                  sflock(F_UNLCK);
268          }
269                                          /* compute piece size */
270 +        hr = hres; vr = vres;
271 +        if (pixaspect > FTINY)
272 +                normaspect(viewaspect(&ourview), &pixaspect, &hr, &vr);
273          hres /= hmult;
274          vres /= vmult;
275 +        if (hres <= 0 || vres <= 0) {
276 +                fprintf(stderr, "%s: illegal resolution/subdivision\n", progname);
277 +                exit(1);
278 +        }
279          normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres);
280 +        if (!nowarn && (hr != hres*hmult) | (vr != vres*vmult))
281 +                fprintf(stderr,
282 +                "%s: warning - changed resolution from %dx%d to %dx%d\n",
283 +                                progname, hr, vr, hres*hmult, vres*vmult);
284          sprintf(hrbuf, "%d", hres);
285          rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf;
286          sprintf(vrbuf, "%d", vres);
# Line 243 | Line 298 | char  **av;
298                  fprintf(fp, "SOFTWARE= %s\n", VersionID);
299                  fputs(VIEWSTR, fp);
300                  fprintview(&ourview, fp);
301 <                putc('\n', fp);
301 >                fputc('\n', fp);
302 >                fputnow(fp);
303                  if (pixaspect < .99 || pixaspect > 1.01)
304                          fputaspect(pixaspect, fp);
305                  fputformat(COLRFMT, fp);
306 <                putc('\n', fp);
306 >                fputc('\n', fp);
307                  fprtresolu(hres*hmult, vres*vmult, fp);
308          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
309                  dolock(outfd, F_RDLCK);
# Line 270 | Line 326 | char  **av;
326                  goto filerr;
327          dolock(outfd, F_UNLCK);
328                                          /* start rpict process */
329 +        rpd = sp_inactive;
330          if (open_process(&rpd, rpargv) <= 0) {
331                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
332                  exit(1);
# Line 294 | Line 351 | filerr:
351   }
352  
353  
354 < int
355 < nextpiece(xp, yp)               /* get next piece assignment */
356 < int  *xp, *yp;
354 > static int
355 > nextpiece(              /* get next piece assignment */
356 >        int     *xp,
357 >        int     *yp
358 > )
359   {
360          if (gotalrm)                    /* someone wants us to quit */
361                  return(0);
# Line 336 | Line 395 | int  *xp, *yp;
395   }
396  
397  
398 < int
399 < rvrpiece(xp, yp)                /* check for recoverable pieces */
400 < register int  *xp, *yp;
398 > static int
399 > rvrpiece(               /* check for recoverable pieces */
400 >        int     *xp,
401 >        int     *yp
402 > )
403   {
404          static char  *pdone = NULL;     /* which pieces are done */
405          static long  readpos = -1;      /* how far we've read */
406 <        register int  i;
406 >        int  px, py, i;
407          /*
408           * This routine is called by nextpiece() with an
409           * exclusive lock on syncfp and the file pointer at the
# Line 351 | Line 412 | register int  *xp, *yp;
412          if (rvrlim < 0)
413                  return(0);              /* only check if asked */
414          if (pdone == NULL)              /* first call */
415 <                pdone = calloc(hmult*vmult, sizeof(char));
415 >                pdone = (char *)calloc(hmult*vmult, sizeof(char));
416          if (pdone == NULL) {
417                  fprintf(stderr, "%s: out of memory\n", progname);
418                  exit(1);
419          }
420          if (readpos != -1)              /* mark what's been done */
421                  fseek(syncfp, readpos, 0);
422 <        while (fscanf(syncfp, "%d %d", xp, yp) == 2)
423 <                pdone[*xp*vmult+*yp] = 1;
422 >        while (fscanf(syncfp, "%d %d", &px, &py) == 2)
423 >                pdone[px*vmult+py] = 1;
424          if (!feof(syncfp)) {
425                  fprintf(stderr, "%s: format error in sync file\n", progname);
426                  exit(1);
# Line 380 | Line 441 | register int  *xp, *yp;
441   }
442  
443  
444 < int
445 < cleanup(rstat)                  /* close rpict process and clean up */
446 < int  rstat;
444 > static int
445 > cleanup(                        /* close rpict process and clean up */
446 >        int  rstat
447 > )
448   {
449          int  status;
450  
# Line 396 | Line 458 | int  rstat;
458   }
459  
460  
461 < rpiece()                        /* render picture piece by piece */
461 > static void
462 > rpiece(void)                    /* render picture piece by piece */
463   {
464 +        char  *err;
465          VIEW  pview;
466          int  xorg, yorg;
403                                        /* compute view parameters */
404        copystruct(&pview, &ourview);
405        switch (ourview.type) {
406        case VT_PER:
407                pview.horiz = 2.*180./PI*atan(
408                                tan(PI/180./2.*ourview.horiz)/hmult );
409                pview.vert = 2.*180./PI*atan(
410                                tan(PI/180./2.*ourview.vert)/vmult );
411                break;
412        case VT_PAR:
413        case VT_ANG:
414                pview.horiz = ourview.horiz / hmult;
415                pview.vert = ourview.vert / vmult;
416                break;
417        case VT_CYL:
418                pview.horiz = ourview.horiz / hmult;
419                pview.vert = 2.*180./PI*atan(
420                                tan(PI/180./2.*ourview.vert)/vmult );
421                break;
422        case VT_HEM:
423                pview.horiz = 2.*180./PI*asin(
424                                sin(PI/180./2.*ourview.horiz)/hmult );
425                pview.vert = 2.*180./PI*asin(
426                                sin(PI/180./2.*ourview.vert)/vmult );
427                break;
428        default:
429                fprintf(stderr, "%s: unknown view type '-vt%c'\n",
430                                progname, ourview.type);
431                exit(cleanup(1));
432        }
467                                          /* render each piece */
468          while (nextpiece(&xorg, &yorg)) {
469 <                pview.hoff = ourview.hoff*hmult + xorg - 0.5*(hmult-1);
470 <                pview.voff = ourview.voff*vmult + yorg - 0.5*(vmult-1);
469 >                pview = ourview;
470 >                err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult,
471 >                                        (xorg+1.)/hmult, (yorg+1.)/vmult);
472 >                if (err != NULL) {
473 >                        fprintf(stderr, "%s: %s\n", progname, err);
474 >                        exit(cleanup(1));
475 >                }
476                  fputs(VIEWSTR, torp);
477                  fprintview(&pview, torp);
478 <                putc('\n', torp);
478 >                fputc('\n', torp);
479                  fflush(torp);                   /* assigns piece to rpict */
480                  putpiece(xorg, yorg);           /* place piece in output */
481          }
482   }
483  
484  
485 < int
486 < putpiece(xpos, ypos)            /* get next piece from rpict */
487 < int  xpos, ypos;
485 > static int
486 > putpiece(               /* get next piece from rpict */
487 > int     xpos,
488 > int     ypos
489 > )
490   {
491          struct flock  fls;
492          int  pid, status;
493          int  hr, vr;
494 <        register int  y;
494 >        int  y;
495                                  /* check bounds */
496 <        if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) {
496 >        if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
497                  fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
498                                  progname, xpos, ypos);
499                  exit(cleanup(1));
# Line 460 | Line 501 | int  xpos, ypos;
501                                  /* check header from rpict */
502          guard_io();
503          getheader(fromrp, NULL, NULL);
504 <        if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
504 >        if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
505                  fprintf(stderr, "%s: resolution mismatch from %s\n",
506                                  progname, rpargv[0]);
507                  exit(cleanup(1));
# Line 501 | Line 542 | int  xpos, ypos;
542                                  /* lock file section so NFS doesn't mess up */
543          fls.l_whence = 0;
544          fls.l_type = F_WRLCK;
545 + #if 0
546          if (fcntl(outfd, F_SETLKW, &fls) < 0)
547                  filerr("lock");
548 + #else
549 +        dolock(outfd, F_WRLCK);
550   #endif
551 + #endif
552                                  /* write new piece to file */
553 <        if (lseek(outfd, (off_t)fls.l_start, 0) < 0)
553 >        if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
554                  filerr("seek");
555          if (hmult == 1) {
556                  if (writebuf(outfd, (char *)pbuf,
# Line 518 | Line 563 | int  xpos, ypos;
563                                  filerr("write");
564                          if (y < vr-1 && lseek(outfd,
565                                          (off_t)(hmult-1)*hr*sizeof(COLR),
566 <                                        1) < 0)
566 >                                        SEEK_CUR) < 0)
567                                  filerr("seek");
568                  }
569   #if NFS
570          fls.l_type = F_UNLCK;           /* release lock */
571 + #if 0
572          if (fcntl(outfd, F_SETLKW, &fls) < 0)
573                  filerr("lock");
574 + #else
575 +        dolock(outfd, F_UNLCK);
576   #endif
577 + #endif
578          if (verbose) {                          /* notify caller */
579                  printf("%d %d done\n", xpos, ypos);
580                  fflush(stdout);
# Line 544 | Line 593 | int  xpos, ypos;
593   }
594  
595  
596 < filerr(t)                       /* report file error and exit */
597 < char  *t;
596 > static void
597 > filerr(                 /* report file error and exit */
598 >        char  *t
599 > )
600   {
601          fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
602                          progname, t, outfile, strerror(errno));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines