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.17 by greg, Sat Feb 20 17:07:35 1993 UTC vs.
Revision 2.21 by greg, Fri Jun 4 17:03:29 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1993 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 39 | Line 39 | char *argv[];
39   #define  MAXFORK                0
40   #endif
41   #endif
42 <
42 >                                        /* protection from SYSV signals(!) */
43 > #if defined(sgi) || defined(hpux)
44 > #define guard_io()      sighold(SIGALRM)
45 > #define unguard()       sigrelse(SIGALRM)
46 > #endif
47 > #ifndef guard_io
48 > #define guard_io()      0
49 > #define unguard()       0
50 > #endif
51                                  /* rpict command */
52   char  *rpargv[128] = {"rpict", "-S", "1", "-x", "512", "-y", "512", "-pa", "1"};
53   int  rpargc = 9;
# Line 233 | Line 241 | int
241   nextpiece(xp, yp)               /* get next piece assignment */
242   int  *xp, *yp;
243   {
236        extern char  *fgets();
244          struct flock  fls;
245          char  buf[64];
246  
# Line 328 | Line 335 | rpiece()                       /* render picture piece by piece */
335                  putc('\n', torp);
336                  fflush(torp);                   /* assigns piece to rpict */
337                  putpiece(xorg, yorg);           /* place piece in output */
331                if (verbose) {                  /* notify caller */
332                        printf("%d %d done\n", xorg, yorg);
333                        fflush(stdout);
334                }
338          }
339   }
340  
# Line 351 | Line 354 | int  xpos, ypos;
354                  exit(cleanup(1));
355          }
356                                  /* check header from rpict */
357 +        guard_io();
358          getheader(fromrp, NULL, NULL);
359          if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
360                  fprintf(stderr, "%s: resolution mismatch from %s\n",
361                                  progname, rpargv[0]);
362                  exit(cleanup(1));
363          }
364 +        unguard();
365                                  /* load new piece into buffer */
366 <        for (y = 0; y < vr; y++)
366 >        for (y = 0; y < vr; y++) {
367 >                guard_io();
368                  if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) {
369                          fprintf(stderr, "%s: read error from %s\n",
370                                          progname, rpargv[0]);
371                          exit(cleanup(1));
372                  }
373 +                unguard();
374 +        }
375   #if MAXFORK
376                                  /* fork so we don't slow rpict down */
377          if ((pid = fork()) > 0) {
# Line 378 | Line 386 | int  xpos, ypos;
386   #else
387          pid = -1;               /* no forking */
388   #endif
389 <        fls.l_len = (long)vres*hmult*hres*sizeof(COLR);
390 <        fls.l_start = scanorig + (vmult-1-ypos)*fls.l_len;
389 >        fls.l_start = scanorig +
390 >                ((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR);
391   #if NFS
392 +        fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR);
393                                  /* lock file section so NFS doesn't mess up */
394          fls.l_whence = 0;
395          fls.l_type = F_WRLCK;
396          fcntl(outfd, F_SETLKW, &fls);
397   #endif
398                                  /* write new piece to file */
399 <        if (lseek(outfd, fls.l_start+(long)xpos*hres*sizeof(COLR), 0) == -1)
399 >        if (lseek(outfd, fls.l_start, 0) == -1)
400                  goto seekerr;
401          if (hmult == 1) {
402                  if (writebuf(outfd, (char *)pbuf,
# Line 403 | Line 412 | int  xpos, ypos;
412                                          1) == -1)
413                                  goto seekerr;
414                  }
415 <        if (pid == -1) {        /* fork failed */
415 >        if (verbose) {                          /* notify caller */
416 >                printf("%d %d done\n", xpos, ypos);
417 >                fflush(stdout);
418 >        }
419 >        if (pid == -1) {        /* didn't fork or fork failed */
420   #if NFS
421                  fls.l_type = F_UNLCK;           /* release lock */
422                  fcntl(outfd, F_SETLKW, &fls);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines