ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rtcontrib.c
(Generate patch)

Comparing ray/src/util/rtcontrib.c (file contents):
Revision 1.8 by greg, Tue May 31 18:01:09 2005 UTC vs.
Revision 1.33 by greg, Fri Oct 7 03:45:15 2005 UTC

# Line 16 | Line 16 | static const char RCSid[] = "$Id$";
16   #include  "lookup.h"
17   #include  "calcomp.h"
18  
19 + #ifndef MAXMODLIST
20   #define MAXMODLIST      1024            /* maximum modifiers we'll track */
21 + #endif
22  
23   int     treebufsiz = BUFSIZ;            /* current tree buffer size */
24  
25   typedef double  DCOLOR[3];              /* double-precision color */
26  
27   /*
28 < * The modcont structure is used to accumulate ray contributions
28 > * The MODCONT structure is used to accumulate ray contributions
29   * for a particular modifier, which may be subdivided into bins
30 < * if binv is non-NULL.  If outspec contains a %s in it, this will
30 > * if binv is non-zero.  If outspec contains a %s in it, this will
31   * be replaced with the modifier name.  If outspec contains a %d in it,
32   * this will be used to create one output file per bin, otherwise all bins
33   * will be written to the same file, in order.  If the global outfmt
# Line 44 | Line 46 | static void mcfree(void *p) { epfree((*(MODCONT *)p).b
46  
47   LUTAB   modconttab = LU_SINIT(NULL,mcfree);     /* modifier lookup table */
48  
49 < /* close output stream */
50 < static void closefile(void *p) { fclose((FILE *)p); }
49 > #define CNT_UNKNOWN     0               /* unknown record length */
50 > #define CNT_PIPE        (-1)            /* output to a pipe */
51 > /*
52 > * The STREAMOUT structure holds an open FILE pointer and a count of
53 > * the number of RGB triplets per record, or CNT_UNKNOWN (0) if
54 > * unknown or CNT_PIPE (-1) if writing to a command.
55 > */
56 > typedef struct {
57 >        FILE            *ofp;           /* output file pointer */
58 >        int             reclen;         /* triplets/record */
59 > } STREAMOUT;
60  
61 < LUTAB   ofiletab = LU_SINIT(free,closefile);    /* output file table */
61 > /* close output stream and free record */
62 > static void
63 > closestream(void *p)
64 > {
65 >        STREAMOUT       *sop = (STREAMOUT *)p;
66 >        int             status;
67 >        if (sop->reclen == CNT_PIPE)
68 >                status = pclose(sop->ofp);
69 >        else
70 >                status = fclose(sop->ofp);
71 >        if (status)
72 >                error(SYSTEM, "error closing output stream");
73 >        free(p);
74 > }
75  
76 < FILE *getofile(const char *ospec, const char *mname, int bn);
76 > LUTAB   ofiletab = LU_SINIT(free,closestream);  /* output file table */
77  
78 + #define OF_MODIFIER     01
79 + #define OF_BIN          02
80 +
81 + STREAMOUT *getostream(const char *ospec, const char *mname, int bn, int noopen);
82 + int ofname(char *oname, const char *ospec, const char *mname, int bn);
83 + void printheader(FILE *fout, const char *info);
84 + void printresolu(FILE *fout);
85 +
86   /*
87   * The rcont structure is used to manage i/o with a particular
88   * rtrace child process.  Input is passed unchanged from stdin,
# Line 67 | Line 99 | struct rtproc {
99   };                              /* rtrace process buffer */
100  
101                                          /* rtrace command and defaults */
102 < char            *rtargv[256] = { "rtrace", "-dj", ".5", "-dr", "3",
103 <                                "-ab", "1", "-ad", "128", "-lr", "-10", };
104 < int  rtargc = 11;
102 > char            *rtargv[256+2*MAXMODLIST] = { "rtrace",
103 >                                "-dj", ".5", "-dr", "3",
104 >                                "-ab", "1", "-ad", "128", };
105 > int  rtargc = 9;
106                                          /* overriding rtrace options */
107   char            *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0",
108                                  "-dt", "0", "-as", "0", "-aa", "0", NULL };
# Line 93 | Line 126 | int            header = 1;             /* output header? */
126   int             xres = 0;               /* horiz. output resolution */
127   int             yres = 0;               /* vert. output resolution */
128  
129 < long            raysleft;               /* number of rays left to trace */
129 > unsigned long   raysleft;               /* number of rays left to trace */
130   long            waitflush;              /* how long until next flush */
131  
132   unsigned long   lastray = 0;            /* last ray number sent */
# Line 104 | Line 137 | int            using_stdout = 0;       /* are we using stdout? */
137   const char      *modname[MAXMODLIST];   /* ordered modifier name list */
138   int             nmods = 0;              /* number of modifiers */
139  
140 < MODCONT *addmodifier(char *modn, char *outf, char *binv);
140 > #define queue_length()          (lastray - lastdone)
141  
142 + MODCONT *growmodifier(MODCONT *mp, int nb);
143 + MODCONT *addmodifier(char *modn, char *outf, char *binv, int bincnt);
144 + void addmodfile(char *fname, char *outf, char *binv, int bincnt);
145 +
146   void init(int np);
147   int done_rprocs(struct rtproc *rtp);
148 < void trace_contribs(FILE *fp);
148 > void recover_output(FILE *fin);
149 > void trace_contribs(FILE *fin);
150   struct rtproc *wait_rproc(void);
151   struct rtproc *get_rproc(void);
152   void queue_raytree(struct rtproc *rtp);
153   void process_queue(void);
154  
155 < void putcontrib(const DCOLOR cnt, FILE *fout);
155 > void put_contrib(const DCOLOR cnt, FILE *fout);
156   void add_contrib(const char *modn);
157   void done_contrib(void);
158  
159 + /* return number of open rtrace processes */
160 + static int
161 + nrtprocs(void)
162 + {
163 +        int     nrtp = 0;
164 +        struct rtproc   *rtp;
165 +
166 +        for (rtp = &rt0; rtp != NULL; rtp = rtp->next)
167 +                nrtp += rtp->pd.running;
168 +        return(nrtp);
169 + }
170 +
171   /* set input/output format */
172   static void
173   setformat(const char *fmt)
174   {
175          switch (fmt[0]) {
126        case 'a':
176          case 'f':
177          case 'd':
178 +                SET_FILE_BINARY(stdin);
179 +                /* fall through */
180 +        case 'a':
181                  inpfmt = fmt[0];
182                  break;
183          default:
# Line 156 | Line 208 | int
208   main(int argc, char *argv[])
209   {
210          int     nprocs = 1;
211 +        int     recover = 0;
212          char    *curout = NULL;
213          char    *binval = NULL;
214 +        int     bincnt = 0;
215          char    fmt[8];
216          int     i, j;
217 +                                /* need at least one argument */
218 +        if (argc < 2) {
219 +                fprintf(stderr,
220 + "Usage: %s [-n nprocs][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
221 +                        argv[0]);
222 +                exit(1);
223 +        }
224                                  /* global program name */
225          gargv = argv;
226 <                                /* set up calcomp mode */
226 >                                /* initialize calcomp routines */
227          esupport |= E_VARIABLE|E_FUNCTION|E_INCHAN|E_RCONST|E_REDEFW;
228          esupport &= ~(E_OUTCHAN);
229 +        varset("PI", ':', PI);
230                                  /* get our options */
231          for (i = 1; i < argc-1; i++) {
232                                                  /* expand arguments */
# Line 177 | Line 239 | main(int argc, char *argv[])
239                  }
240                  if (argv[i][0] == '-')
241                          switch (argv[i][1]) {
242 +                        case 'r':               /* recover output */
243 +                                if (argv[i][2]) break;
244 +                                recover++;
245 +                                continue;
246                          case 'n':               /* number of processes */
247 <                                if (argv[i][2] || i >= argc-1) break;
247 >                                if (argv[i][2] || i >= argc-2) break;
248                                  nprocs = atoi(argv[++i]);
249                                  if (nprocs <= 0)
250                                          error(USER, "illegal number of processes");
# Line 202 | Line 268 | main(int argc, char *argv[])
268                                  break;
269                          case 'f':               /* file or i/o format */
270                                  if (!argv[i][2]) {
271 <                                        if (i >= argc-1) break;
272 <                                        fcompile(argv[++i]);
271 >                                        char    *fpath;
272 >                                        if (i >= argc-2) break;
273 >                                        fpath = getpath(argv[++i],
274 >                                                        getrlibpath(), R_OK);
275 >                                        if (fpath == NULL) {
276 >                                                sprintf(errmsg,
277 >                                                        "cannot find file '%s'",
278 >                                                                argv[i]);
279 >                                                error(USER, errmsg);
280 >                                        }
281 >                                        fcompile(fpath);
282                                          continue;
283                                  }
284                                  setformat(argv[i]+2);
285                                  continue;
286                          case 'e':               /* expression */
287 <                                if (argv[i][2] || i >= argc-1) break;
287 >                                if (argv[i][2] || i >= argc-2) break;
288                                  scompile(argv[++i], NULL, 0);
289                                  continue;
290                          case 'o':               /* output file spec. */
291 <                                if (argv[i][2] || i >= argc-1) break;
291 >                                if (argv[i][2] || i >= argc-2) break;
292                                  curout = argv[++i];
293                                  continue;
294                          case 'x':               /* horiz. output resolution */
295 <                                if (argv[i][2] || i >= argc-1) break;
295 >                                if (argv[i][2] || i >= argc-2) break;
296                                  xres = atoi(argv[++i]);
297                                  continue;
298                          case 'y':               /* vert. output resolution */
299 <                                if (argv[i][2] || i >= argc-1) break;
299 >                                if (argv[i][2] || i >= argc-2) break;
300                                  yres = atoi(argv[++i]);
301                                  continue;
302 <                        case 'b':               /* bin expression */
303 <                                if (argv[i][2] || i >= argc-1) break;
302 >                        case 'b':               /* bin expression/count */
303 >                                if (i >= argc-2) break;
304 >                                if (argv[i][2] == 'n') {
305 >                                        bincnt = atoi(argv[++i]);
306 >                                        continue;
307 >                                }
308 >                                if (argv[i][2]) break;
309                                  binval = argv[++i];
310                                  continue;
311                          case 'm':               /* modifier name */
312 <                                if (argv[i][2] || i >= argc-1) break;
312 >                                if (argv[i][2] || i >= argc-2) break;
313                                  rtargv[rtargc++] = "-ti";
314                                  rtargv[rtargc++] = argv[++i];
315 <                                addmodifier(argv[i], curout, binval);
315 >                                addmodifier(argv[i], curout, binval, bincnt);
316                                  continue;
317 +                        case 'M':               /* modifier file */
318 +                                if (argv[i][2] || i >= argc-2) break;
319 +                                rtargv[rtargc++] = "-tI";
320 +                                rtargv[rtargc++] = argv[++i];
321 +                                addmodfile(argv[i], curout, binval, bincnt);
322 +                                continue;
323                          }
324                  rtargv[rtargc++] = argv[i];     /* assume rtrace option */
325          }
# Line 282 | Line 368 | main(int argc, char *argv[])
368                  error(USER, "missing octree argument");
369          rtargv[rtargc++] = octree = argv[i];
370          rtargv[rtargc] = NULL;
371 <                                /* start rtrace & compute contributions */
371 >                                /* start rtrace */
372          init(nprocs);
373 <        trace_contribs(stdin);
373 >        if (recover)            /* perform recovery if requested */
374 >                recover_output(stdin);
375 >        trace_contribs(stdin);  /* compute contributions */
376          quit(0);
377   }
378  
379 + #ifndef SIGALRM
380 + #define SIGALRM SIGTERM
381 + #endif
382   /* kill persistent rtrace process */
383   static void
384   killpersist(void)
385   {
386          FILE    *fp = fopen(persistfn, "r");
387 <        int     pid;
387 >        RT_PID  pid;
388  
389          if (fp == NULL)
390                  return;
# Line 389 | Line 480 | init(int np)
480          rtp->next = NULL;               /* terminate list */
481          if (yres > 0) {
482                  if (xres > 0)
483 <                        raysleft = xres*yres;
483 >                        raysleft = (unsigned long)xres*yres;
484                  else
485                          raysleft = yres;
486          } else
# Line 397 | Line 488 | init(int np)
488          waitflush = xres;
489   }
490  
491 + /* grow modifier to accommodate more bins */
492 + MODCONT *
493 + growmodifier(MODCONT *mp, int nb)
494 + {
495 +        if (nb <= mp->nbins)
496 +                return mp;
497 +        mp = (MODCONT *)realloc(mp, sizeof(MODCONT) + sizeof(DCOLOR)*(nb-1));
498 +        if (mp == NULL)
499 +                error(SYSTEM, "out of memory in growmodifier");
500 +        memset(mp->cbin+mp->nbins, 0, sizeof(DCOLOR)*(nb-mp->nbins));
501 +        mp->nbins = nb;
502 +        return mp;
503 + }
504 +
505   /* add modifier to our list to track */
506   MODCONT *
507 < addmodifier(char *modn, char *outf, char *binv)
507 > addmodifier(char *modn, char *outf, char *binv, int bincnt)
508   {
509          LUENT   *lep = lu_find(&modconttab, modn);
510          MODCONT *mp;
511 +        int     i;
512          
513          if (lep->data != NULL) {
514                  sprintf(errmsg, "duplicate modifier '%s'", modn);
# Line 415 | Line 521 | addmodifier(char *modn, char *outf, char *binv)
521          mp = (MODCONT *)malloc(sizeof(MODCONT));
522          if (mp == NULL)
523                  error(SYSTEM, "out of memory in addmodifier");
418        lep->data = (char *)mp;
524          mp->outspec = outf;             /* XXX assumes static string */
525          mp->modname = modn;             /* XXX assumes static string */
526          if (binv != NULL)
# Line 424 | Line 529 | addmodifier(char *modn, char *outf, char *binv)
529                  mp->binv = eparse("0");
530          mp->nbins = 1;
531          setcolor(mp->cbin[0], 0., 0., 0.);
532 +        if (mp->binv->type == NUM)      /* assume one bin if constant */
533 +                bincnt = 1;
534 +        else if (bincnt > 1)
535 +                mp = growmodifier(mp, bincnt);
536 +        lep->data = (char *)mp;
537 +                                        /* allocate output streams */
538 +        for (i = outf==NULL || outf[0]=='!' ? 0 : bincnt; i--; )
539 +                getostream(mp->outspec, mp->modname, i, 1);
540          return mp;
541   }
542  
543 + /* add modifiers from a file list */
544 + void
545 + addmodfile(char *fname, char *outf, char *binv, int bincnt)
546 + {
547 +        char    *mname[MAXMODLIST];
548 +        int     i;
549 +                                        /* find the file & store strings */
550 +        if (wordfile(mname, getpath(fname, getrlibpath(), R_OK)) < 0) {
551 +                sprintf(errmsg, "cannot find modifier file '%s'", fname);
552 +                error(SYSTEM, errmsg);
553 +        }
554 +        for (i = 0; mname[i]; i++)      /* add each one */
555 +                addmodifier(mname[i], outf, binv, bincnt);
556 + }
557 +
558   /* put string to stderr */
559   void
560   eputs(char  *s)
# Line 442 | Line 570 | eputs(char  *s)
570          midline = s[strlen(s)-1] != '\n';
571   }
572  
573 + /* construct output file name and return flags whether modifier/bin present */
574 + int
575 + ofname(char *oname, const char *ospec, const char *mname, int bn)
576 + {
577 +        const char      *mnp = NULL;
578 +        const char      *bnp = NULL;
579 +        const char      *cp;
580 +        
581 +        if (ospec == NULL)
582 +                return -1;
583 +        for (cp = ospec; *cp; cp++)             /* check format position(s) */
584 +                if (*cp == '%') {
585 +                        do
586 +                                ++cp;
587 +                        while (isdigit(*cp));
588 +                        switch (*cp) {
589 +                        case '%':
590 +                                break;
591 +                        case 's':
592 +                                if (mnp != NULL)
593 +                                        return -1;
594 +                                mnp = cp;
595 +                                break;
596 +                        case 'd':
597 +                                if (bnp != NULL)
598 +                                        return -1;
599 +                                bnp = cp;
600 +                                break;
601 +                        default:
602 +                                return -1;
603 +                        }
604 +                }
605 +        if (mnp != NULL) {                      /* create file name */
606 +                if (bnp != NULL) {
607 +                        if (bnp > mnp)
608 +                                sprintf(oname, ospec, mname, bn);
609 +                        else
610 +                                sprintf(oname, ospec, bn, mname);
611 +                        return OF_MODIFIER|OF_BIN;
612 +                }
613 +                sprintf(oname, ospec, mname);
614 +                return OF_MODIFIER;
615 +        }
616 +        if (bnp != NULL) {
617 +                sprintf(oname, ospec, bn);
618 +                return OF_BIN;
619 +        }
620 +        strcpy(oname, ospec);
621 +        return 0;
622 + }
623 +
624   /* write header to the given output stream */
625   void
626 < printheader(FILE *fout)
626 > printheader(FILE *fout, const char *info)
627   {
628          extern char     VersionID[];
629          FILE            *fin = fopen(octree, "r");
# Line 456 | Line 635 | printheader(FILE *fout)
635          printargs(gargc-1, gargv, fout);        /* add our command */
636          fprintf(fout, "SOFTWARE= %s\n", VersionID);
637          fputnow(fout);
638 +        if (info != NULL)                       /* add extra info if given */
639 +                fputs(info, fout);
640          switch (outfmt) {                       /* add output format */
641          case 'a':
642                  fputformat("ascii", fout);
# Line 471 | Line 652 | printheader(FILE *fout)
652                  break;
653          }
654          fputc('\n', fout);
655 + }
656 +
657 + /* write resolution string to given output stream */
658 + void
659 + printresolu(FILE *fout)
660 + {
661          if (xres > 0) {
662                  if (yres > 0)                   /* resolution string */
663                          fprtresolu(xres, yres, fout);
# Line 478 | Line 665 | printheader(FILE *fout)
665          }
666   }
667  
668 < /* Get output file pointer (open and write header if new) */
669 < FILE *
670 < getofile(const char *ospec, const char *mname, int bn)
668 > /* Get output stream pointer (open and write header if new and noopen==0) */
669 > STREAMOUT *
670 > getostream(const char *ospec, const char *mname, int bn, int noopen)
671   {
672 <        const char      *mnp = NULL;
673 <        const char      *bnp = NULL;
674 <        const char      *cp;
675 <        char            ofname[1024];
676 <        LUENT           *lep;
672 >        static STREAMOUT        stdos;
673 >        int                     ofl;
674 >        char                    oname[1024];
675 >        LUENT                   *lep;
676 >        STREAMOUT               *sop;
677          
678          if (ospec == NULL) {                    /* use stdout? */
679 <                if (!using_stdout && header)
680 <                        printheader(stdout);
681 <                using_stdout = 1;
682 <                return stdout;
683 <        }
684 <        for (cp = ospec; *cp; cp++)             /* check format position(s) */
685 <                if (*cp == '%') {
686 <                        do
500 <                                ++cp;
501 <                        while (isdigit(*cp));
502 <                        switch (*cp) {
503 <                        case '%':
504 <                                break;
505 <                        case 's':
506 <                                if (mnp != NULL)
507 <                                        goto badspec;
508 <                                mnp = cp;
509 <                                break;
510 <                        case 'd':
511 <                                if (bnp != NULL)
512 <                                        goto badspec;
513 <                                bnp = cp;
514 <                                break;
515 <                        default:
516 <                                goto badspec;
517 <                        }
679 >                if (!noopen && !using_stdout) {
680 >                        stdos.reclen = 0;
681 >                        if (outfmt != 'a')
682 >                                SET_FILE_BINARY(stdout);
683 >                        if (header)
684 >                                printheader(stdout, NULL);
685 >                        printresolu(stdout);
686 >                        using_stdout = 1;
687                  }
688 <        if (mnp != NULL) {                      /* create file name */
689 <                if (bnp != NULL) {
690 <                        if (bnp > mnp)
691 <                                sprintf(ofname, ospec, mname, bn);
692 <                        else
693 <                                sprintf(ofname, ospec, bn, mname);
694 <                } else
695 <                        sprintf(ofname, ospec, mname);
696 <        } else if (bnp != NULL)
697 <                sprintf(ofname, ospec, bn);
529 <        else
530 <                strcpy(ofname, ospec);
531 <        lep = lu_find(&ofiletab, ofname);       /* look it up */
688 >                stdos.ofp = stdout;
689 >                stdos.reclen += noopen;
690 >                return &stdos;
691 >        }
692 >        ofl = ofname(oname, ospec, mname, bn);  /* get output name */
693 >        if (ofl < 0) {
694 >                sprintf(errmsg, "bad output format '%s'", ospec);
695 >                error(USER, errmsg);
696 >        }
697 >        lep = lu_find(&ofiletab, oname);        /* look it up */
698          if (lep->key == NULL)                   /* new entry */
699 <                lep->key = strcpy((char *)malloc(strlen(ofname)+1), ofname);
700 <        if (lep->data == NULL) {                /* open output file */
701 <                FILE            *fp = fopen(ofname, "w");
699 >                lep->key = strcpy((char *)malloc(strlen(oname)+1), oname);
700 >        sop = (STREAMOUT *)lep->data;
701 >        if (sop == NULL) {                      /* allocate stream */
702 >                sop = (STREAMOUT *)malloc(sizeof(STREAMOUT));
703 >                if (sop == NULL)
704 >                        error(SYSTEM, "out of memory in getostream");
705 >                sop->reclen = oname[0] == '!' ? CNT_PIPE : 0;
706 >                sop->ofp = NULL;                /* open iff noopen==0 */
707 >                lep->data = (char *)sop;
708 >        }
709 >        if (!noopen && sop->ofp == NULL) {      /* open output stream */
710                  int             i;
711 <                if (fp == NULL) {
712 <                        sprintf(errmsg, "cannot open '%s' for writing", ofname);
711 >                if (oname[0] == '!')            /* output to command */
712 >                        sop->ofp = popen(oname+1, "w");
713 >                else
714 >                        sop->ofp = fopen(oname, "w");
715 >                if (sop->ofp == NULL) {
716 >                        sprintf(errmsg, "cannot open '%s' for writing", oname);
717                          error(SYSTEM, errmsg);
718                  }
719 <                if (header)
720 <                        printheader(fp);
719 >                if (outfmt != 'a')
720 >                        SET_FILE_BINARY(sop->ofp);
721 >                if (header) {
722 >                        char    info[512];
723 >                        char    *cp = info;
724 >                        if (ofl & OF_MODIFIER || sop->reclen == 1) {
725 >                                sprintf(cp, "MODIFIER=%s\n", mname);
726 >                                while (*cp) ++cp;
727 >                        }
728 >                        if (ofl & OF_BIN) {
729 >                                sprintf(cp, "BIN=%d\n", bn);
730 >                                while (*cp) ++cp;
731 >                        }
732 >                        *cp = '\0';
733 >                        printheader(sop->ofp, info);
734 >                }
735 >                printresolu(sop->ofp);
736                                                  /* play catch-up */
737                  for (i = 0; i < lastdone; i++) {
738                          static const DCOLOR     nocontrib = BLKCOLOR;
739 <                        putcontrib(nocontrib, fp);
739 >                        put_contrib(nocontrib, sop->ofp);
740                          if (outfmt == 'a')
741 <                                putc('\n', fp);
741 >                                putc('\n', sop->ofp);
742                  }
743                  if (xres > 0)
744 <                        fflush(fp);
552 <                lep->data = (char *)fp;
744 >                        fflush(sop->ofp);
745          }
746 <        return (FILE *)lep->data;               /* return open file pointer */
747 < badspec:
748 <        sprintf(errmsg, "bad output format '%s'", ospec);
557 <        error(USER, errmsg);
558 <        return NULL;            /* pro forma return */
746 >        if (sop->reclen != CNT_PIPE)            /* add to length if noopen */
747 >                sop->reclen += noopen;
748 >        return sop;                             /* return open stream */
749   }
750  
751   /* read input ray into buffer */
# Line 618 | Line 808 | add_contrib(const char *modn)
808          bn = (int)(evalue(mp->binv) + .5);
809          if (bn <= 0)
810                  bn = 0;
811 <        else if (bn > mp->nbins) {      /* new bin */
812 <                mp = (MODCONT *)realloc(mp, sizeof(MODCONT) +
623 <                                                bn*sizeof(DCOLOR));
624 <                if (mp == NULL)
625 <                        error(SYSTEM, "out of memory in add_contrib");
626 <                memset(mp->cbin+mp->nbins, 0, sizeof(DCOLOR)*(bn+1-mp->nbins));
627 <                mp->nbins = bn+1;
628 <                le->data = (char *)mp;
629 <        }
811 >        else if (bn >= mp->nbins)       /* new bin */
812 >                le->data = (char *)(mp = growmodifier(mp, bn+1));
813          addcolor(mp->cbin[bn], rparams);
814   }
815  
# Line 634 | Line 817 | add_contrib(const char *modn)
817   static int
818   puteol(const LUENT *e, void *p)
819   {
820 <        FILE    *fp = (FILE *)e->data;
820 >        STREAMOUT       *sop = (STREAMOUT *)e->data;
821  
822          if (outfmt == 'a')
823 <                putc('\n', fp);
823 >                putc('\n', sop->ofp);
824          if (!waitflush)
825 <                fflush(fp);
826 <        if (ferror(fp)) {
825 >                fflush(sop->ofp);
826 >        if (ferror(sop->ofp)) {
827                  sprintf(errmsg, "write error on file '%s'", e->key);
828                  error(SYSTEM, errmsg);
829          }
# Line 649 | Line 832 | puteol(const LUENT *e, void *p)
832  
833   /* put out ray contribution to file */
834   void
835 < putcontrib(const DCOLOR cnt, FILE *fout)
835 > put_contrib(const DCOLOR cnt, FILE *fout)
836   {
837          float   fv[3];
838          COLR    cv;
# Line 680 | Line 863 | putcontrib(const DCOLOR cnt, FILE *fout)
863   void
864   done_contrib(void)
865   {
866 <        int     i, j;
867 <        MODCONT *mp;
866 >        int             i, j;
867 >        MODCONT         *mp;
868 >        STREAMOUT       *sop;
869                                                  /* output modifiers in order */
870          for (i = 0; i < nmods; i++) {
871                  mp = (MODCONT *)lu_find(&modconttab,modname[i])->data;
872 <                for (j = 0; j < mp->nbins; j++)
873 <                        putcontrib(mp->cbin[j],
874 <                                        getofile(mp->outspec, mp->modname, j));
872 >                sop = getostream(mp->outspec, mp->modname, 0,0);
873 >                put_contrib(mp->cbin[0], sop->ofp);
874 >                if (mp->nbins > 3 &&            /* minor optimization */
875 >                                sop == getostream(mp->outspec, mp->modname, 1,0))
876 >                        for (j = 1; j < mp->nbins; j++)
877 >                                put_contrib(mp->cbin[j], sop->ofp);
878 >                else
879 >                        for (j = 1; j < mp->nbins; j++)
880 >                                put_contrib(mp->cbin[j],
881 >                                    getostream(mp->outspec,mp->modname,j,0)->ofp);
882                                                  /* clear for next ray tree */
883                  memset(mp->cbin, 0, sizeof(DCOLOR)*mp->nbins);
884          }
# Line 809 | Line 1000 | wait_rproc(void)
1000                                  if (rt->bsiz + BUFSIZ <= treebufsiz)
1001                                          rt->bsiz = treebufsiz;
1002                                  else
1003 <                                        rt->bsiz = treebufsiz += BUFSIZ;
1003 >                                        treebufsiz = rt->bsiz += BUFSIZ;
1004                                  rt->buf = (char *)realloc(rt->buf, rt->bsiz);
1005                          }
1006                          if (rt->buf == NULL)
# Line 850 | Line 1041 | trace_contribs(FILE *fin)
1041          struct rtproc   *rtp;
1042                                                  /* loop over input */
1043          while ((iblen = getinp(inpbuf, fin)) > 0) {
1044 <                if (lastray+1 < lastray) {      /* counter rollover? */
1044 >                if (lastray+1 < lastray ||      /* need reset? */
1045 >                                queue_length() > 5*nrtprocs()) {
1046                          while (wait_rproc() != NULL)
1047                                  process_queue();
1048                          lastdone = lastray = 0;
# Line 858 | Line 1050 | trace_contribs(FILE *fin)
1050                  rtp = get_rproc();              /* get avail. rtrace process */
1051                  rtp->raynum = ++lastray;        /* assign ray to it */
1052                  writebuf(rtp->pd.w, inpbuf, iblen);
1053 <                if (!--raysleft)
1053 >                if (raysleft && !--raysleft)
1054                          break;
1055                  process_queue();                /* catch up with results */
1056          }
1057          while (wait_rproc() != NULL)            /* process outstanding rays */
1058                  process_queue();
1059 <        if (raysleft > 0)
1059 >        if (raysleft)
1060                  error(USER, "unexpected EOF on input");
1061 +        lu_done(&ofiletab);                     /* close output files */
1062 + }
1063 +
1064 + /* seek on the given output file */
1065 + static int
1066 + myseeko(const LUENT *e, void *p)
1067 + {
1068 +        STREAMOUT       *sop = (STREAMOUT *)e->data;
1069 +        off_t           nbytes = *(off_t *)p;
1070 +        
1071 +        if (sop->reclen > 1)
1072 +                nbytes = nbytes * sop->reclen;
1073 +        if (fseeko(sop->ofp, nbytes, SEEK_CUR) < 0) {
1074 +                sprintf(errmsg, "seek error on file '%s'", e->key);
1075 +                error(SYSTEM, errmsg);
1076 +        }
1077 + }
1078 +
1079 + /* recover output if possible */
1080 + void
1081 + recover_output(FILE *fin)
1082 + {
1083 +        off_t           lastout = -1;
1084 +        int             outvsiz, recsiz;
1085 +        char            *outvfmt;
1086 +        int             i, j;
1087 +        MODCONT         *mp;
1088 +        int             ofl;
1089 +        char            oname[1024];
1090 +        LUENT           *ment, *oent;
1091 +        STREAMOUT       sout;
1092 +        off_t           nvals;
1093 +        int             xr, yr;
1094 +
1095 +        switch (outfmt) {
1096 +        case 'a':
1097 +                error(USER, "cannot recover ASCII output");
1098 +                return;
1099 +        case 'f':
1100 +                outvsiz = sizeof(float)*3;
1101 +                outvfmt = "float";
1102 +                break;
1103 +        case 'd':
1104 +                outvsiz = sizeof(double)*3;
1105 +                outvfmt = "double";
1106 +                break;
1107 +        case 'c':
1108 +                outvsiz = sizeof(COLR);
1109 +                outvfmt = COLRFMT;
1110 +                break;
1111 +        default:
1112 +                error(INTERNAL, "botched output format");
1113 +                return;
1114 +        }
1115 +                                                /* check modifier outputs */
1116 +        for (i = 0; i < nmods; i++) {
1117 +                ment = lu_find(&modconttab,modname[i]);
1118 +                mp = (MODCONT *)ment->data;
1119 +                if (mp->outspec == NULL)
1120 +                        error(USER, "cannot recover from stdout");
1121 +                if (mp->outspec[0] == '!')
1122 +                        error(USER, "cannot recover from command");
1123 +                for (j = 0; ; j++) {            /* check each bin's file */
1124 +                        ofl = ofname(oname, mp->outspec, mp->modname, j);
1125 +                        if (ofl < 0)
1126 +                                error(USER, "bad output file specification");
1127 +                        oent = lu_find(&ofiletab, oname);
1128 +                        if (oent->data != NULL) {
1129 +                                sout = *(STREAMOUT *)oent->data;
1130 +                        } else {
1131 +                                sout.reclen = 0;
1132 +                                sout.ofp = NULL;
1133 +                        }
1134 +                        if (sout.ofp != NULL) { /* already open? */
1135 +                                if (ofl & OF_BIN)
1136 +                                        continue;
1137 +                                break;
1138 +                        }
1139 +                                                /* open output */
1140 +                        sout.ofp = fopen(oname, "rb+");
1141 +                        if (sout.ofp == NULL) {
1142 +                                if (j)
1143 +                                        break;  /* assume end of modifier */
1144 +                                sprintf(errmsg, "missing recover file '%s'",
1145 +                                                oname);
1146 +                                error(USER, errmsg);
1147 +                        }
1148 +                        nvals = lseek(fileno(sout.ofp), 0, SEEK_END);
1149 +                        if (nvals <= 0) {
1150 +                                lastout = 0;    /* empty output, quit here */
1151 +                                fclose(sout.ofp);
1152 +                                break;
1153 +                        }
1154 +                        if (sout.reclen == CNT_UNKNOWN) {
1155 +                                if (!(ofl & OF_BIN)) {
1156 +                                        sprintf(errmsg,
1157 +                                                "need -bn to recover file '%s'",
1158 +                                                        oname);
1159 +                                        error(USER, errmsg);
1160 +                                }
1161 +                                recsiz = outvsiz;
1162 +                        } else
1163 +                                recsiz = outvsiz * sout.reclen;
1164 +
1165 +                        lseek(fileno(sout.ofp), 0, SEEK_SET);
1166 +                        if (header && checkheader(sout.ofp, outvfmt, NULL) != 1) {
1167 +                                sprintf(errmsg, "format mismatch for '%s'",
1168 +                                                oname);
1169 +                                error(USER, errmsg);
1170 +                        }
1171 +                        if ((xres > 0) & (yres > 0) &&
1172 +                                        (!fscnresolu(&xr, &yr, sout.ofp) ||
1173 +                                                xr != xres ||
1174 +                                                yr != yres)) {
1175 +                                sprintf(errmsg, "resolution mismatch for '%s'",
1176 +                                                oname);
1177 +                                error(USER, errmsg);
1178 +                        }
1179 +                        nvals = (nvals - (off_t)ftell(sout.ofp)) / recsiz;
1180 +                        if ((lastout < 0) | (nvals < lastout))
1181 +                                lastout = nvals;
1182 +                        if (oent->key == NULL)  /* new entry */
1183 +                                oent->key = strcpy((char *)
1184 +                                                malloc(strlen(oname)+1), oname);
1185 +                        if (oent->data == NULL)
1186 +                                oent->data = (char *)malloc(sizeof(STREAMOUT));
1187 +                        *(STREAMOUT *)oent->data = sout;
1188 +                        if (!(ofl & OF_BIN))
1189 +                                break;          /* no bin separation */
1190 +                }
1191 +                if (!lastout) {                 /* empty output */
1192 +                        error(WARNING, "no previous data to recover");
1193 +                        lu_done(&ofiletab);     /* reclose all outputs */
1194 +                        return;
1195 +                }
1196 +                if (j > mp->nbins)              /* reallocate modifier bins */
1197 +                        ment->data = (char *)(mp = growmodifier(mp, j));
1198 +        }
1199 +        if (lastout < 0) {
1200 +                error(WARNING, "no output files to recover");
1201 +                return;
1202 +        }
1203 +        if (raysleft && lastout >= raysleft) {
1204 +                error(WARNING, "output appears to be complete");
1205 +                /* XXX should read & discard input? */
1206 +                quit(0);
1207 +        }
1208 +                                                /* seek on all files */
1209 +        nvals = lastout * outvsiz;
1210 +        lu_doall(&ofiletab, myseeko, &nvals);
1211 +                                                /* skip repeated input */
1212 +        for (nvals = 0; nvals < lastout; nvals++)
1213 +                if (getinp(oname, fin) <= 0)
1214 +                        error(USER, "unexpected EOF on input");
1215 +        lastray = lastdone = (unsigned long)lastout;
1216 +        if (raysleft)
1217 +                raysleft -= lastray;
1218   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines