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.1 by greg, Thu Aug 6 16:45:01 1992 UTC vs.
Revision 2.58 by greg, Fri Feb 28 05:18:49 2020 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 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"
12 #include <fcntl.h>
19   #include "color.h"
20   #include "view.h"
21 < #include "resolu.h"
21 > #include "rtprocess.h"
22  
23 + #ifndef F_SETLKW
24 +
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);
33 + }
34 +
35 + #else
36 +
37 + #ifndef NFS
38 + #define  NFS                    1
39 + #endif
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 */
48 + #else
49 + #define  MAXFORK                0
50 + #endif
51 + #endif
52 +                                        /* protection from SYSV signals(!) */
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()      
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", };
66 < int  rpargc = 7;
20 < int  rpd[3];
65 > char  *rpargv[128] = {"rpict", "-S", "1"};
66 > int  rpargc = 3;
67   FILE  *torp, *fromrp;
68 < COLR  *scanline;
68 > COLR  *pbuf;
69                                  /* our view parameters */
70   VIEW  ourview = STDVIEW;
71 < double  pixaspect = 0.0;
72 < int  hres = 512, vres = 512, hmult = 2, vmult = 2;
71 > double  pixaspect = 1.0;
72 > int  hres = 1024, vres = 1024, hmult = 4, vmult = 4;
73                                  /* output file */
74   char  *outfile = NULL;
75   int  outfd;
76   long  scanorig;
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  
89 < extern long  lseek(), ftell();
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++) {
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 67 | 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 88 | 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 ((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);
200 +                                }
201 +                                continue;
202 +                        case 'z':               /* z-file ist verbotten */
203 +                                fprintf(stderr, "%s: -z option not allowed\n",
204 +                                                argv[0]);
205 +                                exit(1);
206                          case 'o':               /* output file */
207                                  if (argv[i][2])
208                                          break;
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);
223          }
224          init(argc, argv);
225          rpiece();
226 <        rval = cleanup();
107 <        exit(rval);
226 >        exit(cleanup(0));
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 (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);
302 +                fputnow(fp);
303                  if (pixaspect < .99 || pixaspect > 1.01)
304                          fputaspect(pixaspect, fp);
305                  fputformat(COLRFMT, fp);
306                  putc('\n', fp);
307                  fprtresolu(hres*hmult, vres*vmult, fp);
308          } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
309 <                sleep(30);                      /* wait for header */
309 >                dolock(outfd, F_RDLCK);
310                  if ((fp = fdopen(dup(outfd), "r+")) == NULL)
311                          goto filerr;
312 <                getheader(fp, NULL);            /* skip header */
313 <                if (fscnresolu(&hr, &vr, fp) < 0 ||     /* check resolution */
312 >                getheader(fp, NULL, NULL);      /* skip header */
313 >                if (!fscnresolu(&hr, &vr, fp) ||        /* check resolution */
314                                  hr != hres*hmult || vr != vres*vmult) {
315 <                        fprintf(stderr, "%s: picture resolution mismatch\n",
316 <                                        outfile);
315 >                        fprintf(stderr, "%s: resolution mismatch on file \"%s\"\n",
316 >                                        progname, outfile);
317                          exit(1);
318                  }
319          } else {
320 <                fprintf(stderr, "%s: cannot open\n", outfile);
320 >                fprintf(stderr, "%s: cannot open file \"%s\"\n",
321 >                                progname, outfile);
322                  exit(1);
323          }
324          scanorig = ftell(fp);           /* record position of first scanline */
325          if (fclose(fp) == -1)           /* done with stream i/o */
326                  goto filerr;
327 +        dolock(outfd, F_UNLCK);
328                                          /* start rpict process */
329 <        if (open_process(rpd, rpargv) <= 0) {
330 <                fprintf(stderr, "%s: cannot start\n", rpargv[0]);
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);
333          }
334 <        if ((fromrp = fdopen(rpd[0], "r")) == NULL ||
335 <                        (torp = fdopen(rpd[1], "w")) == NULL) {
334 >        if ((fromrp = fdopen(rpd.r, "r")) == NULL ||
335 >                        (torp = fdopen(rpd.w, "w")) == NULL) {
336                  fprintf(stderr, "%s: cannot open stream to %s\n",
337                                  progname, rpargv[0]);
338                  exit(1);
339          }
340 <        if ((scanline = (COLR *)malloc(hres*sizeof(COLR))) == NULL) {
340 >        if ((pbuf = (COLR *)bmalloc(hres*vres*sizeof(COLR))) == NULL) {
341                  fprintf(stderr, "%s: out of memory\n", progname);
342                  exit(1);
343          }
344 +        signal(SIGALRM, onalrm);
345 +        if (timelim)
346 +                alarm(timelim);
347          return;
348   filerr:
349 <        fprintf(stderr, "%s: file i/o error\n", outfile);
349 >        fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
350          exit(1);
351   }
352  
353  
354 < int
355 < cleanup()                       /* close rpict process and clean up */
354 > static int
355 > nextpiece(              /* get next piece assignment */
356 >        int     *xp,
357 >        int     *yp
358 > )
359   {
360 <        register int  rpstat;
360 >        if (gotalrm)                    /* someone wants us to quit */
361 >                return(0);
362 >        if (syncfp != NULL) {           /* use sync file */
363 >                /*
364 >                 * So we don't necessarily have to lock and unlock the file
365 >                 * multiple times (very slow), we establish an exclusive
366 >                 * lock at the beginning on our synchronization file and
367 >                 * maintain it in the subroutine rvrpiece().
368 >                 */
369 >                sflock(F_WRLCK);
370 >                fseek(syncfp, 0L, 0);           /* read position */
371 >                if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
372 >                        *xp = hmult-1;
373 >                        *yp = vmult;
374 >                }
375 >                if (rvrlim == 0)                /* initialize recovery limit */
376 >                        rvrlim = *xp*vmult + *yp;
377 >                if (rvrpiece(xp, yp)) {         /* do stragglers first */
378 >                        sflock(F_UNLCK);
379 >                        return(1);
380 >                }
381 >                if (--(*yp) < 0) {              /* decrement position */
382 >                        *yp = vmult-1;
383 >                        if (--(*xp) < 0) {      /* all done */
384 >                                sflock(F_UNLCK);
385 >                                return(0);
386 >                        }
387 >                }
388 >                fseek(syncfp, 0L, 0);           /* write new position */
389 >                fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
390 >                fflush(syncfp);
391 >                sflock(F_UNLCK);                /* release sync file */
392 >                return(1);
393 >        }
394 >        return(scanf("%d %d", xp, yp) == 2);    /* use stdin */
395 > }
396  
397 <        free((char *)scanline);
397 >
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 >        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
410 >         * appropriate position to read in the finished pieces.
411 >         */
412 >        if (rvrlim < 0)
413 >                return(0);              /* only check if asked */
414 >        if (pdone == NULL)              /* first call */
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", &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);
427 >        }
428 >        readpos = ftell(syncfp);
429 >        i = hmult*vmult;                /* find an unaccounted for piece */
430 >        while (i-- > rvrlim)
431 >                if (!pdone[i]) {
432 >                        *xp = i / vmult;
433 >                        *yp = i % vmult;
434 >                        pdone[i] = 1;   /* consider it done */
435 >                        return(1);
436 >                }
437 >        rvrlim = -1;                    /* nothing left to recover */
438 >        free(pdone);
439 >        pdone = NULL;
440 >        return(0);
441 > }
442 >
443 >
444 > static int
445 > cleanup(                        /* close rpict process and clean up */
446 >        int  rstat
447 > )
448 > {
449 >        int  status;
450 >
451 >        bfree((char *)pbuf, hres*vres*sizeof(COLR));
452          fclose(torp);
453          fclose(fromrp);
454 <        rpstat = close_process(rpd);
455 <        if (rpstat == -1)
456 <                rpstat = 0;
457 <        return(rpstat);
454 >        while (wait(&status) != -1)
455 >                if (rstat == 0)
456 >                        rstat = status>>8 & 0xff;
457 >        return(rstat);
458   }
459  
460  
461 < rpiece()                        /* render picture piece by piece */
461 > static void
462 > rpiece(void)                    /* render picture piece by piece */
463   {
194        extern char  *gets(), *strcat();
464          VIEW  pview;
196        char  buf[48];
465          int  xorg, yorg;
466 <        
467 <        while (gets(buf) != NULL) {
468 <                if (sscanf(buf, "%d %d", &xorg, &yorg) != 2) {
469 <                        fprintf(stderr, "%s: input format error\n", progname);
470 <                        exit(1);
471 <                }
472 <                copystruct(&pview, &ourview);   /* compute view for piece */
473 <                switch (ourview.type) {
474 <                case VT_PER:
475 <                        pview.horiz = 2.*180./PI*atan(
476 <                                        tan(PI/180./2.*ourview.horiz)/hmult );
477 <                        pview.vert = 2.*180./PI*atan(
478 <                                        tan(PI/180./2.*ourview.vert)/vmult );
479 <                        break;
480 <                case VT_PAR:
481 <                case VT_ANG:
482 <                        pview.horiz = ourview.horiz / hmult;
483 <                        pview.vert = ourview.vert / vmult;
484 <                        break;
485 <                case VT_HEM:
486 <                default:
487 <                        fprintf(stderr, "%s: unknown view type '-vt%c'\n",
488 <                                        progname, ourview.type);
489 <                        exit(1);
490 <                }
491 <                pview.hoff += xorg - 0.5*(hmult-1);
492 <                pview.voff += yorg - 0.5*(vmult-1);
466 >                                        /* compute view parameters */
467 >        pview = ourview;
468 >        switch (ourview.type) {
469 >        case VT_PER:
470 >                pview.horiz = (2.*180./PI)*atan(
471 >                                tan((PI/180./2.)*ourview.horiz)/hmult );
472 >                pview.vert = (2.*180./PI)*atan(
473 >                                tan((PI/180./2.)*ourview.vert)/vmult );
474 >                break;
475 >        case VT_PAR:
476 >        case VT_ANG:
477 >                pview.horiz = ourview.horiz / hmult;
478 >                pview.vert = ourview.vert / vmult;
479 >                break;
480 >        case VT_CYL:
481 >                pview.horiz = ourview.horiz / hmult;
482 >                pview.vert = (2.*180./PI)*atan(
483 >                                tan((PI/180./2.)*ourview.vert)/vmult );
484 >                break;
485 >        case VT_HEM:
486 >                pview.horiz = (2.*180./PI)*asin(
487 >                                sin((PI/180./2.)*ourview.horiz)/hmult );
488 >                pview.vert = (2.*180./PI)*asin(
489 >                                sin((PI/180./2.)*ourview.vert)/vmult );
490 >                break;
491 >        case VT_PLS:
492 >                pview.horiz = sin((PI/180./2.)*ourview.horiz) /
493 >                                (1.0 + cos((PI/180./2.)*ourview.horiz)) / hmult;
494 >                pview.horiz *= pview.horiz;
495 >                pview.horiz = (2.*180./PI)*acos((1. - pview.horiz) /
496 >                                                (1. + pview.horiz));
497 >                pview.vert = sin((PI/180./2.)*ourview.vert) /
498 >                                (1.0 + cos((PI/180./2.)*ourview.vert)) / vmult;
499 >                pview.vert *= pview.vert;
500 >                pview.vert = (2.*180./PI)*acos((1. - pview.vert) /
501 >                                                (1. + pview.vert));
502 >                break;
503 >        default:
504 >                fprintf(stderr, "%s: unknown view type '-vt%c'\n",
505 >                                progname, ourview.type);
506 >                exit(cleanup(1));
507 >        }
508 >                                        /* render each piece */
509 >        while (nextpiece(&xorg, &yorg)) {
510 >                pview.hoff = ourview.hoff*hmult + xorg - 0.5*(hmult-1);
511 >                pview.voff = ourview.voff*vmult + yorg - 0.5*(vmult-1);
512                  fputs(VIEWSTR, torp);
513                  fprintview(&pview, torp);
514                  putc('\n', torp);
515 <                fflush(torp);                   /* assign piece to rpict */
515 >                fflush(torp);                   /* assigns piece to rpict */
516                  putpiece(xorg, yorg);           /* place piece in output */
230                if (verbose) {                  /* notify caller */
231                        strcat(buf, " done\n");
232                        writebuf(fileno(stdout), buf, strlen(buf));
233                }
517          }
518   }
519  
520  
521 < putpiece(xpos, ypos)            /* get next piece from rpict */
522 < int  xpos, ypos;
521 > static int
522 > putpiece(               /* get next piece from rpict */
523 > int     xpos,
524 > int     ypos
525 > )
526   {
527 +        struct flock  fls;
528 +        int  pid, status;
529          int  hr, vr;
530          int  y;
531 <
532 <        getheader(fromrp, NULL);        /* discard header info. */
533 <        if (fscnresolu(&hr, &vr, fromrp) < 0 || /* check resolution */
534 <                        hr != hres || vr != vres) {
535 <                fprintf(stderr, "%s: resolution mismatch from rpict\n",
248 <                                progname);
249 <                exit(1);
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",
534 >                                progname, xpos, ypos);
535 >                exit(cleanup(1));
536          }
537 <        for (y = 0; y < vr; y++) {      /* transfer scanlines */
538 <                if (freadcolrs(scanline, hr, fromrp) < 0) {
539 <                        fprintf(stderr, "%s: read error from rpict\n",
540 <                                        progname);
541 <                        exit(1);
537 >                                /* check header from rpict */
538 >        guard_io();
539 >        getheader(fromrp, NULL, NULL);
540 >        if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
541 >                fprintf(stderr, "%s: resolution mismatch from %s\n",
542 >                                progname, rpargv[0]);
543 >                exit(cleanup(1));
544 >        }
545 >        if (verbose) {                          /* notify caller */
546 >                printf("%d %d begun\n", xpos, ypos);
547 >                fflush(stdout);
548 >        }
549 >        unguard();
550 >                                /* load new piece into buffer */
551 >        for (y = 0; y < vr; y++) {
552 >                guard_io();
553 >                if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) {
554 >                        fprintf(stderr, "%s: read error from %s\n",
555 >                                        progname, rpargv[0]);
556 >                        exit(cleanup(1));
557                  }
558 <                if ((y == 0 || hmult != 1) && lseek(outfd,
559 < scanorig+((long)((vmult-1-ypos)*vres+y)*hmult*hres+xpos*hres)*sizeof(COLR),
560 <                                0) == -1) {
561 <                        fprintf(stderr, "%s: seek error\n", outfile);
562 <                        exit(1);
558 >                unguard();
559 >        }
560 > #if MAXFORK
561 >                                /* fork so we don't slow rpict down */
562 >        if ((pid = fork()) > 0) {
563 >                if (++nforked >= MAXFORK) {
564 >                        wait(&status);          /* reap a child */
565 >                        if (status)
566 >                                exit(cleanup(status>>8 & 0xff));
567 >                        nforked--;
568                  }
569 <                if (writebuf(outfd, (char *)scanline, hr*sizeof(COLR)) !=
570 <                                hr*sizeof(COLR)) {
571 <                        fprintf(stderr, "%s: write error\n", outfile);
572 <                        exit(1);
569 >                return(pid);
570 >        }
571 > #else
572 >        pid = -1;               /* no forking */
573 > #endif
574 >        fls.l_start = scanorig +
575 >                ((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR);
576 > #if NFS
577 >        fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR);
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");
591 >        if (hmult == 1) {
592 >                if (writebuf(outfd, (char *)pbuf,
593 >                                vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
594 >                        filerr("write");
595 >        } else
596 >                for (y = 0; y < vr; y++) {
597 >                        if (writebuf(outfd, (char *)(pbuf+y*hr),
598 >                                        hr*sizeof(COLR)) != hr*sizeof(COLR))
599 >                                filerr("write");
600 >                        if (y < vr-1 && lseek(outfd,
601 >                                        (off_t)(hmult-1)*hr*sizeof(COLR),
602 >                                        SEEK_CUR) < 0)
603 >                                filerr("seek");
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);
616 +                fflush(stdout);
617          }
618 +        if (syncfp != NULL) {                   /* record what's been done */
619 +                sflock(F_WRLCK);
620 +                fseek(syncfp, 0L, 2);           /* append index */
621 +                fprintf(syncfp, "%4d %4d\n", xpos, ypos);
622 +                fflush(syncfp);
623 +                                /*** Unlock not necessary, since
624 +                sflock(F_UNLCK);        _exit() or nextpiece() is next ***/
625 +        }
626 +        if (pid == -1)          /* didn't fork or fork failed */
627 +                return(0);
628 +        _exit(0);               /* else exit child process (releasing locks) */
629   }
630 +
631 +
632 + static void
633 + filerr(                 /* report file error and exit */
634 +        char  *t
635 + )
636 + {
637 +        fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
638 +                        progname, t, outfile, strerror(errno));
639 +        _exit(1);
640 + }
641 +
642 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines