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.21 by greg, Fri Jun 4 17:03:29 1993 UTC vs.
Revision 2.60 by greg, Tue Jul 11 02:22:30 2023 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 <fcntl.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 23 | Line 34 | char *argv[];
34  
35   #else
36  
26 #include <signal.h>
27 #include "color.h"
28 #include "view.h"
29 #include "resolu.h"
30
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 40 | Line 50 | char *argv[];
50   #endif
51   #endif
52                                          /* protection from SYSV signals(!) */
53 < #if defined(sgi) || defined(hpux)
53 > #if defined(sgi)
54   #define guard_io()      sighold(SIGALRM)
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();
63 +
64                                  /* rpict command */
65 < char  *rpargv[128] = {"rpict", "-S", "1", "-x", "512", "-y", "512", "-pa", "1"};
66 < int  rpargc = 9;
54 < int  rpd[3];
65 > char  *rpargv[128] = {"rpict", "-S", "1"};
66 > int  rpargc = 3;
67   FILE  *torp, *fromrp;
68   COLR  *pbuf;
69                                  /* our view parameters */
70   VIEW  ourview = STDVIEW;
71   double  pixaspect = 1.0;
72 < int  hres = 512, vres = 512, hmult = 2, vmult = 2;
72 > int  hres = 1024, vres = 1024, hmult = 4, vmult = 4;
73                                  /* output file */
74   char  *outfile = NULL;
75   int  outfd;
76   long  scanorig;
77 < int  syncfd = -1;               /* lock file descriptor */
77 > FILE  *syncfp = NULL;           /* synchronization file pointer */
78 > int  synclst = F_UNLCK;         /* synchronization file lock status */
79   int  nforked = 0;
80  
81 + #define  sflock(t)      if ((t)!=synclst) dolock(fileno(syncfp),synclst=t)
82 +
83   char  *progname;
84   int  verbose = 0;
85 + int  nowarn = 0;
86 + unsigned  timelim = 0;
87 + int  rvrlim = -1;
88  
71 extern long  lseek(), ftell();
72
89   int  gotalrm = 0;
90 < int  onalrm() { gotalrm++; }
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++) {
112 +                                                /* expand arguments */
113 +                while ((rval = expandarg(&argc, &argv, i)) > 0)
114 +                        ;
115 +                if (rval < 0) {
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 106 | Line 149 | char  *argv[];
149                                  }
150                                  break;
151                          case 'p':               /* pixel aspect ratio? */
152 <                                if (argv[i][2] == 'a' && !argv[i][3])
153 <                                        pixaspect = atof(argv[i+1]);
154 <                                break;
155 <                        case 'x':               /* piece x resolution */
156 <                                if (!argv[i][2])
157 <                                        hres = atoi(argv[i+1]);
158 <                                break;
159 <                        case 'y':               /* piece y resolution */
160 <                                if (!argv[i][2])
161 <                                        vres = atoi(argv[i+1]);
162 <                                break;
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]);
161 >                                continue;
162 >                        case 'T':               /* time limit (hours) */
163 >                                if (argv[i][2])
164 >                                        break;
165 >                                timelim = atof(argv[++i])*3600. + .5;
166 >                                continue;
167 >                        case 'x':               /* overall x resolution */
168 >                                if (argv[i][2])
169 >                                        break;
170 >                                hres = atoi(argv[++i]);
171 >                                continue;
172 >                        case 'y':               /* overall y resolution */
173 >                                if (argv[i][2])
174 >                                        break;
175 >                                vres = atoi(argv[++i]);
176 >                                continue;
177                          case 'X':               /* horizontal multiplier */
178                                  if (argv[i][2])
179                                          break;
# Line 127 | Line 184 | char  *argv[];
184                                          break;
185                                  vmult = atoi(argv[++i]);
186                                  continue;
187 +                        case 'R':               /* recover */
188 +                                if (argv[i][2])
189 +                                        break;
190 +                                rvrlim = 0;
191 +                        /* fall through */
192                          case 'F':               /* syncronization file */
193                                  if (argv[i][2])
194                                          break;
195 <                                if ((syncfd = open(argv[++i],
196 <                                                O_RDWR|O_CREAT, 0666)) < 0) {
195 >                                if ((syncfp =
196 >                fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) {
197                                          fprintf(stderr, "%s: cannot open\n",
198                                                          argv[i]);
199                                          exit(1);
# Line 147 | Line 209 | char  *argv[];
209                                  outfile = argv[++i];
210                                  continue;
211                          }
212 +                else if (i >= argc-1)
213 +                        break;
214                  rpargv[rpargc++] = argv[i];
215          }
216 <        rpargv[rpargc] = NULL;
216 >        if (i >= argc) {
217 >                fprintf(stderr, "%s: missing octree argument\n", argv[0]);
218 >                exit(1);
219 >        }
220          if (outfile == NULL) {
221                  fprintf(stderr, "%s: missing output file\n", argv[0]);
222                  exit(1);
# Line 160 | Line 227 | char  *argv[];
227   }
228  
229  
230 < init(ac, av)                    /* set up output file and start rpict */
231 < int  ac;
232 < char  **av;
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 +
238 +        fls.l_type = 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);
243 +        }
244 + }
245 +
246 +
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[];
255          char  *err;
256          FILE  *fp;
257          int  hr, vr;
258 +        SUBPROC  rpd; /* since we don't close_process(), this can be local */
259                                          /* set up view */
260          if ((err = setview(&ourview)) != NULL) {
261                  fprintf(stderr, "%s: %s\n", progname, err);
262                  exit(1);
263          }
264 <        if (syncfd != -1) {
265 <                char  buf[32];
266 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
267 <                sscanf(buf, "%d %d", &hmult, &vmult);
264 >        if (syncfp != NULL) {
265 >                sflock(F_RDLCK);
266 >                fscanf(syncfp, "%d %d", &hmult, &vmult);
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);
287 +        rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf;
288 +        rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0";
289 +        rpargv[rpargc++] = av[ac-1];
290 +        rpargv[rpargc] = NULL;
291                                          /* open output file */
292          if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) {
293 +                dolock(outfd, F_WRLCK);
294                  if ((fp = fdopen(dup(outfd), "w")) == NULL)
295                          goto filerr;
296 <                printargs(ac, av, fp);          /* write header */
296 >                newheader("RADIANCE", fp);      /* create header */
297 >                printargs(ac, av, fp);
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 +                fputprims(stdprims, fp);
306                  fputformat(COLRFMT, fp);
307 <                putc('\n', fp);
307 >                fputc('\n', fp);
308                  fprtresolu(hres*hmult, vres*vmult, fp);
309          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
310 +                dolock(outfd, F_RDLCK);
311                  if ((fp = fdopen(dup(outfd), "r+")) == NULL)
312                          goto filerr;
313                  getheader(fp, NULL, NULL);      /* skip header */
# Line 211 | Line 325 | char  **av;
325          scanorig = ftell(fp);           /* record position of first scanline */
326          if (fclose(fp) == -1)           /* done with stream i/o */
327                  goto filerr;
328 < #if NFS
215 <        sync();                         /* flush NFS buffers */
216 < #endif
328 >        dolock(outfd, F_UNLCK);
329                                          /* start rpict process */
330 <        if (open_process(rpd, rpargv) <= 0) {
330 >        rpd = sp_inactive;
331 >        if (open_process(&rpd, rpargv) <= 0) {
332                  fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
333                  exit(1);
334          }
335 <        if ((fromrp = fdopen(rpd[0], "r")) == NULL ||
336 <                        (torp = fdopen(rpd[1], "w")) == NULL) {
335 >        if ((fromrp = fdopen(rpd.r, "r")) == NULL ||
336 >                        (torp = fdopen(rpd.w, "w")) == NULL) {
337                  fprintf(stderr, "%s: cannot open stream to %s\n",
338                                  progname, rpargv[0]);
339                  exit(1);
340          }
341 <        if ((pbuf = (COLR *)malloc(hres*vres*sizeof(COLR))) == NULL) {
341 >        if ((pbuf = (COLR *)bmalloc(hres*vres*sizeof(COLR))) == NULL) {
342                  fprintf(stderr, "%s: out of memory\n", progname);
343                  exit(1);
344          }
345          signal(SIGALRM, onalrm);
346 +        if (timelim)
347 +                alarm(timelim);
348          return;
349   filerr:
350          fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
# Line 237 | Line 352 | filerr:
352   }
353  
354  
355 < int
356 < nextpiece(xp, yp)               /* get next piece assignment */
357 < int  *xp, *yp;
355 > static int
356 > nextpiece(              /* get next piece assignment */
357 >        int     *xp,
358 >        int     *yp
359 > )
360   {
244        struct flock  fls;
245        char  buf[64];
246
361          if (gotalrm)                    /* someone wants us to quit */
362                  return(0);
363 <        if (syncfd != -1) {             /* use sync file */
364 <                fls.l_type = F_WRLCK;           /* gain exclusive access */
365 <                fls.l_whence = 0;
366 <                fls.l_start = 0L;
367 <                fls.l_len = 0L;
368 <                fcntl(syncfd, F_SETLKW, &fls);
369 <                lseek(syncfd, 0L, 0);
370 <                buf[read(syncfd, buf, sizeof(buf)-1)] = '\0';
371 <                if (sscanf(buf, "%*d %*d %d %d", xp, yp) < 2) {
363 >        if (syncfp != NULL) {           /* use sync file */
364 >                /*
365 >                 * So we don't necessarily have to lock and unlock the file
366 >                 * multiple times (very slow), we establish an exclusive
367 >                 * lock at the beginning on our synchronization file and
368 >                 * maintain it in the subroutine rvrpiece().
369 >                 */
370 >                sflock(F_WRLCK);
371 >                fseek(syncfp, 0L, 0);           /* read position */
372 >                if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
373                          *xp = hmult-1;
374                          *yp = vmult;
375                  }
376 +                if (rvrlim == 0)                /* initialize recovery limit */
377 +                        rvrlim = *xp*vmult + *yp;
378 +                if (rvrpiece(xp, yp)) {         /* do stragglers first */
379 +                        sflock(F_UNLCK);
380 +                        return(1);
381 +                }
382                  if (--(*yp) < 0) {              /* decrement position */
383                          *yp = vmult-1;
384 <                        if (--(*xp) < 0) {      /* all done! */
385 <                                close(syncfd);
384 >                        if (--(*xp) < 0) {      /* all done */
385 >                                sflock(F_UNLCK);
386                                  return(0);
387                          }
388                  }
389 <                sprintf(buf, "%4d %4d\n%4d %4d\n", hmult, vmult, *xp, *yp);
390 <                lseek(syncfd, 0L, 0);           /* write new position */
391 <                write(syncfd, buf, strlen(buf));
392 <                fls.l_type = F_UNLCK;           /* release sync file */
272 <                fcntl(syncfd, F_SETLKW, &fls);
389 >                fseek(syncfp, 0L, 0);           /* write new position */
390 >                fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
391 >                fflush(syncfp);
392 >                sflock(F_UNLCK);                /* release sync file */
393                  return(1);
394          }
395 <        if (fgets(buf, sizeof(buf), stdin) == NULL)     /* use stdin */
276 <                return(0);
277 <        if (sscanf(buf, "%d %d", xp, yp) == 2)
278 <                return(1);
279 <        fprintf(stderr, "%s: input format error\n", progname);
280 <        exit(cleanup(1));
395 >        return(scanf("%d %d", xp, yp) == 2);    /* use stdin */
396   }
397  
398  
399 < int
400 < cleanup(rstat)                  /* close rpict process and clean up */
401 < int  rstat;
399 > static int
400 > rvrpiece(               /* check for recoverable pieces */
401 >        int     *xp,
402 >        int     *yp
403 > )
404   {
405 +        static char  *pdone = NULL;     /* which pieces are done */
406 +        static long  readpos = -1;      /* how far we've read */
407 +        int  px, py, i;
408 +        /*
409 +         * This routine is called by nextpiece() with an
410 +         * exclusive lock on syncfp and the file pointer at the
411 +         * appropriate position to read in the finished pieces.
412 +         */
413 +        if (rvrlim < 0)
414 +                return(0);              /* only check if asked */
415 +        if (pdone == NULL)              /* first call */
416 +                pdone = (char *)calloc(hmult*vmult, sizeof(char));
417 +        if (pdone == NULL) {
418 +                fprintf(stderr, "%s: out of memory\n", progname);
419 +                exit(1);
420 +        }
421 +        if (readpos != -1)              /* mark what's been done */
422 +                fseek(syncfp, readpos, 0);
423 +        while (fscanf(syncfp, "%d %d", &px, &py) == 2)
424 +                pdone[px*vmult+py] = 1;
425 +        if (!feof(syncfp)) {
426 +                fprintf(stderr, "%s: format error in sync file\n", progname);
427 +                exit(1);
428 +        }
429 +        readpos = ftell(syncfp);
430 +        i = hmult*vmult;                /* find an unaccounted for piece */
431 +        while (i-- > rvrlim)
432 +                if (!pdone[i]) {
433 +                        *xp = i / vmult;
434 +                        *yp = i % vmult;
435 +                        pdone[i] = 1;   /* consider it done */
436 +                        return(1);
437 +                }
438 +        rvrlim = -1;                    /* nothing left to recover */
439 +        free(pdone);
440 +        pdone = NULL;
441 +        return(0);
442 + }
443 +
444 +
445 + static int
446 + cleanup(                        /* close rpict process and clean up */
447 +        int  rstat
448 + )
449 + {
450          int  status;
451  
452 <        free((char *)pbuf);
452 >        bfree((char *)pbuf, hres*vres*sizeof(COLR));
453          fclose(torp);
454          fclose(fromrp);
455          while (wait(&status) != -1)
# Line 297 | Line 459 | int  rstat;
459   }
460  
461  
462 < rpiece()                        /* render picture piece by piece */
462 > static void
463 > rpiece(void)                    /* render picture piece by piece */
464   {
465 +        char  *err;
466          VIEW  pview;
467          int  xorg, yorg;
304                                        /* compute view parameters */
305        copystruct(&pview, &ourview);
306        switch (ourview.type) {
307        case VT_PER:
308                pview.horiz = 2.*180./PI*atan(
309                                tan(PI/180./2.*ourview.horiz)/hmult );
310                pview.vert = 2.*180./PI*atan(
311                                tan(PI/180./2.*ourview.vert)/vmult );
312                break;
313        case VT_PAR:
314        case VT_ANG:
315                pview.horiz = ourview.horiz / hmult;
316                pview.vert = ourview.vert / vmult;
317                break;
318        case VT_HEM:
319                pview.horiz = 2.*180./PI*asin(
320                                sin(PI/180./2.*ourview.horiz)/hmult );
321                pview.vert = 2.*180./PI*asin(
322                                sin(PI/180./2.*ourview.vert)/vmult );
323                break;
324        default:
325                fprintf(stderr, "%s: unknown view type '-vt%c'\n",
326                                progname, ourview.type);
327                exit(cleanup(1));
328        }
468                                          /* render each piece */
469          while (nextpiece(&xorg, &yorg)) {
470 <                pview.hoff = ourview.hoff + xorg - 0.5*(hmult-1);
471 <                pview.voff = ourview.voff + yorg - 0.5*(vmult-1);
470 >                pview = ourview;
471 >                err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult,
472 >                                        (xorg+1.)/hmult, (yorg+1.)/vmult);
473 >                if (err != NULL) {
474 >                        fprintf(stderr, "%s: %s\n", progname, err);
475 >                        exit(cleanup(1));
476 >                }
477                  fputs(VIEWSTR, torp);
478                  fprintview(&pview, torp);
479 <                putc('\n', torp);
479 >                fputc('\n', torp);
480                  fflush(torp);                   /* assigns piece to rpict */
481                  putpiece(xorg, yorg);           /* place piece in output */
482          }
483   }
484  
485  
486 < int
487 < putpiece(xpos, ypos)            /* get next piece from rpict */
488 < int  xpos, ypos;
486 > static int
487 > putpiece(               /* get next piece from rpict */
488 > int     xpos,
489 > int     ypos
490 > )
491   {
492          struct flock  fls;
493          int  pid, status;
494          int  hr, vr;
495 <        register int  y;
495 >        int  y;
496                                  /* check bounds */
497 <        if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) {
497 >        if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
498                  fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
499                                  progname, xpos, ypos);
500                  exit(cleanup(1));
# Line 356 | Line 502 | int  xpos, ypos;
502                                  /* check header from rpict */
503          guard_io();
504          getheader(fromrp, NULL, NULL);
505 <        if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) {
505 >        if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
506                  fprintf(stderr, "%s: resolution mismatch from %s\n",
507                                  progname, rpargv[0]);
508                  exit(cleanup(1));
509          }
510 +        if (verbose) {                          /* notify caller */
511 +                printf("%d %d begun\n", xpos, ypos);
512 +                fflush(stdout);
513 +        }
514          unguard();
515                                  /* load new piece into buffer */
516          for (y = 0; y < vr; y++) {
# Line 393 | Line 543 | int  xpos, ypos;
543                                  /* lock file section so NFS doesn't mess up */
544          fls.l_whence = 0;
545          fls.l_type = F_WRLCK;
546 <        fcntl(outfd, F_SETLKW, &fls);
546 > #if 0
547 >        if (fcntl(outfd, F_SETLKW, &fls) < 0)
548 >                filerr("lock");
549 > #else
550 >        dolock(outfd, F_WRLCK);
551   #endif
552 + #endif
553                                  /* write new piece to file */
554 <        if (lseek(outfd, fls.l_start, 0) == -1)
555 <                goto seekerr;
554 >        if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
555 >                filerr("seek");
556          if (hmult == 1) {
557                  if (writebuf(outfd, (char *)pbuf,
558                                  vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
559 <                        goto writerr;
559 >                        filerr("write");
560          } else
561                  for (y = 0; y < vr; y++) {
562                          if (writebuf(outfd, (char *)(pbuf+y*hr),
563                                          hr*sizeof(COLR)) != hr*sizeof(COLR))
564 <                                goto writerr;
564 >                                filerr("write");
565                          if (y < vr-1 && lseek(outfd,
566 <                                        (long)(hmult-1)*hr*sizeof(COLR),
567 <                                        1) == -1)
568 <                                goto seekerr;
566 >                                        (off_t)(hmult-1)*hr*sizeof(COLR),
567 >                                        SEEK_CUR) < 0)
568 >                                filerr("seek");
569                  }
570 + #if NFS
571 +        fls.l_type = F_UNLCK;           /* release lock */
572 + #if 0
573 +        if (fcntl(outfd, F_SETLKW, &fls) < 0)
574 +                filerr("lock");
575 + #else
576 +        dolock(outfd, F_UNLCK);
577 + #endif
578 + #endif
579          if (verbose) {                          /* notify caller */
580                  printf("%d %d done\n", xpos, ypos);
581                  fflush(stdout);
582          }
583 <        if (pid == -1) {        /* didn't fork or fork failed */
584 < #if NFS
585 <                fls.l_type = F_UNLCK;           /* release lock */
586 <                fcntl(outfd, F_SETLKW, &fls);
587 < #endif
588 <                return(0);
583 >        if (syncfp != NULL) {                   /* record what's been done */
584 >                sflock(F_WRLCK);
585 >                fseek(syncfp, 0L, 2);           /* append index */
586 >                fprintf(syncfp, "%4d %4d\n", xpos, ypos);
587 >                fflush(syncfp);
588 >                                /*** Unlock not necessary, since
589 >                sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
590          }
591 <        _exit(0);               /* else exit child process (releasing lock) */
592 < seekerr:
593 <        fprintf(stderr, "%s: seek error on file \"%s\"\n", progname, outfile);
594 <        _exit(1);
595 < writerr:
596 <        fprintf(stderr, "%s: write error on file \"%s\"\n", progname, outfile);
591 >        if (pid == -1)          /* didn't fork or fork failed */
592 >                return(0);
593 >        _exit(0);               /* else exit child process (releasing locks) */
594 > }
595 >
596 >
597 > static void
598 > filerr(                 /* report file error and exit */
599 >        char  *t
600 > )
601 > {
602 >        fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
603 >                        progname, t, outfile, strerror(errno));
604          _exit(1);
605   }
606  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines