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.50 by greg, Sat Feb 7 05:40:47 2009 UTC vs.
Revision 2.58 by greg, Fri Feb 28 05:18:49 2020 UTC

# Line 37 | Line 37 | main(
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 78 | 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  
# Line 100 | Line 105 | main(
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 114 | Line 119 | main(
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 136 | Line 149 | main(
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 144 | Line 163 | main(
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 189 | Line 208 | main(
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 219 | Line 239 | dolock(                /* lock or unlock a file */
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  
# Line 247 | Line 267 | init(                  /* set up output file and start rpict */
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) {
# Line 254 | Line 277 | init(                  /* set up output file and start rpict */
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 272 | Line 299 | init(                  /* set up output file and start rpict */
299                  fputs(VIEWSTR, fp);
300                  fprintview(&ourview, fp);
301                  putc('\n', fp);
302 +                fputnow(fp);
303                  if (pixaspect < .99 || pixaspect > 1.01)
304                          fputaspect(pixaspect, fp);
305                  fputformat(COLRFMT, fp);
# Line 298 | Line 326 | init(                  /* set up output file and start rpict */
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 368 | Line 397 | nextpiece(             /* get next piece assignment */
397  
398   static int
399   rvrpiece(               /* check for recoverable pieces */
400 <        register int    *xp,
401 <        register int    *yp
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 383 | Line 412 | rvrpiece(              /* check for recoverable pieces */
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 498 | Line 527 | int    ypos
527          struct flock  fls;
528          int  pid, status;
529          int  hr, vr;
530 <        register int  y;
530 >        int  y;
531                                  /* check bounds */
532          if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
533                  fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
# Line 549 | Line 578 | int    ypos
578                                  /* lock file section so NFS doesn't mess up */
579          fls.l_whence = 0;
580          fls.l_type = F_WRLCK;
581 + #if 0
582          if (fcntl(outfd, F_SETLKW, &fls) < 0)
583                  filerr("lock");
584 + #else
585 +        dolock(outfd, F_WRLCK);
586   #endif
587 + #endif
588                                  /* write new piece to file */
589          if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
590                  filerr("seek");
# Line 571 | Line 604 | int    ypos
604                  }
605   #if NFS
606          fls.l_type = F_UNLCK;           /* release lock */
607 + #if 0
608          if (fcntl(outfd, F_SETLKW, &fls) < 0)
609                  filerr("lock");
610 + #else
611 +        dolock(outfd, F_UNLCK);
612 + #endif
613   #endif
614          if (verbose) {                          /* notify caller */
615                  printf("%d %d done\n", xpos, ypos);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines