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.36 by greg, Tue Oct 11 19:02:51 2005 UTC vs.
Revision 1.48 by greg, Sat Nov 17 16:27:14 2007 UTC

# Line 27 | Line 27 | typedef double DCOLOR[3];              /* double-precision color *
27   /*
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-zero.  If outspec contains a %s in it, this will
30 > * if binv evaluates > 0.  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 46 | Line 46 | static void mcfree(void *p) { epfree((*(MODCONT *)p).b
46  
47   LUTAB   modconttab = LU_SINIT(NULL,mcfree);     /* modifier lookup table */
48  
49 #define CNT_UNKNOWN     0               /* unknown record length */
50 #define CNT_PIPE        (-1)            /* output to a pipe */
49   /*
50   * The STREAMOUT structure holds an open FILE pointer and a count of
51 < * the number of RGB triplets per record, or CNT_UNKNOWN (0) if
54 < * unknown or CNT_PIPE (-1) if writing to a command.
51 > * the number of RGB triplets per record, or 0 if unknown.
52   */
53   typedef struct {
54          FILE            *ofp;           /* output file pointer */
55 +        int             outpipe;        /* output is to a pipe */
56          int             reclen;         /* triplets/record */
57 +        int             xr, yr;         /* output resolution for picture */
58   } STREAMOUT;
59  
60   /* close output stream and free record */
# Line 64 | Line 63 | closestream(void *p)
63   {
64          STREAMOUT       *sop = (STREAMOUT *)p;
65          int             status;
66 <        if (sop->reclen == CNT_PIPE)
66 >        if (sop->outpipe)
67                  status = pclose(sop->ofp);
68          else
69                  status = fclose(sop->ofp);
# Line 81 | Line 80 | LUTAB  ofiletab = LU_SINIT(free,closestream);  /* output
80   STREAMOUT *getostream(const char *ospec, const char *mname, int bn, int noopen);
81   int ofname(char *oname, const char *ospec, const char *mname, int bn);
82   void printheader(FILE *fout, const char *info);
83 < void printresolu(FILE *fout);
83 > void printresolu(FILE *fout, int xr, int yr);
84  
85   /*
86   * The rcont structure is used to manage i/o with a particular
# Line 101 | Line 100 | struct rtproc {
100                                          /* rtrace command and defaults */
101   char            *rtargv[256+2*MAXMODLIST] = { "rtrace",
102                                  "-dj", ".5", "-dr", "3",
103 <                                "-ab", "1", "-ad", "128", };
103 >                                "-ab", "1", "-ad", "350", };
104 >
105   int  rtargc = 9;
106                                          /* overriding rtrace options */
107 < char            *myrtopts[] = { "-o~~TmWdp", "-h-", "-x", "1", "-y", "0",
107 > char            *myrtopts[] = { "-h-", "-x", "1", "-y", "0",
108                                  "-dt", "0", "-as", "0", "-aa", "0", NULL };
109  
110 + #define RTCOEFF         "-o~~TmWdp"     /* compute coefficients only */
111 + #define RTCONTRIB       "-o~~TmVdp"     /* compute ray contributions */
112 +
113   struct rtproc   rt0;                    /* head of rtrace process list */
114  
115   struct rtproc   *rt_unproc = NULL;      /* unprocessed ray trees */
116  
117 < char    persistfn[] = "pfXXXXXX";       /* persist file name */
117 > #define PERSIST_NONE    0               /* no persist file */
118 > #define PERSIST_SINGLE  1               /* user set -P persist */
119 > #define PERSIST_PARALL  2               /* user set -PP persist */
120 > #define PERSIST_OURS    3               /* -PP persist belongs to us */
121 > int     persist_state = PERSIST_NONE;   /* persist file state */
122 > char    persistfn[] = "pfXXXXXX";       /* our persist file name, if set */
123  
124   int             gargc;                  /* global argc */
125   char            **gargv;                /* global argv */
# Line 123 | Line 131 | int            inpfmt = 'a';           /* input format */
131   int             outfmt = 'a';           /* output format */
132  
133   int             header = 1;             /* output header? */
134 + int             accumulate = 0;         /* accumulate ray values? */
135   int             force_open = 0;         /* truncate existing output? */
136 + int             recover = 0;            /* recover previous output? */
137   int             xres = 0;               /* horiz. output resolution */
138   int             yres = 0;               /* vert. output resolution */
139  
# Line 146 | Line 156 | void addmodfile(char *fname, char *outf, char *binv, i
156  
157   void init(int np);
158   int done_rprocs(struct rtproc *rtp);
159 + void reload_output(void);
160   void recover_output(FILE *fin);
161   void trace_contribs(FILE *fin);
162   struct rtproc *wait_rproc(void);
# Line 208 | Line 219 | fmterr:
219   int
220   main(int argc, char *argv[])
221   {
222 +        int     contrib = 0;
223          int     nprocs = 1;
212        int     recover = 0;
224          char    *curout = NULL;
225          char    *binval = NULL;
226          int     bincnt = 0;
# Line 218 | Line 229 | main(int argc, char *argv[])
229                                  /* need at least one argument */
230          if (argc < 2) {
231                  fprintf(stderr,
232 < "Usage: %s [-n nprocs][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
232 > "Usage: %s [-n nprocs][-V][-r][-e expr][-f source][-o ospec][-b binv] {-m mod | -M file} [rtrace options] octree\n",
233                          argv[0]);
234                  exit(1);
235          }
# Line 240 | Line 251 | main(int argc, char *argv[])
251                  }
252                  if (argv[i][0] == '-')
253                          switch (argv[i][1]) {
243                        case 'r':               /* recover output */
244                                if (argv[i][2]) break;
245                                recover++;
246                                continue;
254                          case 'n':               /* number of processes */
255                                  if (argv[i][2] || i >= argc-2) break;
256                                  nprocs = atoi(argv[++i]);
257                                  if (nprocs <= 0)
258                                          error(USER, "illegal number of processes");
259                                  continue;
260 +                        case 'V':               /* output contributions */
261 +                                switch (argv[i][2]) {
262 +                                case '\0':
263 +                                        contrib = !contrib;
264 +                                        continue;
265 +                                case '+': case '1':
266 +                                case 'T': case 't':
267 +                                case 'Y': case 'y':
268 +                                        contrib = 1;
269 +                                        continue;
270 +                                case '-': case '0':
271 +                                case 'F': case 'f':
272 +                                case 'N': case 'n':
273 +                                        contrib = 0;
274 +                                        continue;
275 +                                }
276 +                                break;
277 +                        case 'c':               /* accumulate ray values */
278 +                                switch (argv[i][2]) {
279 +                                case '\0':
280 +                                        accumulate = !accumulate;
281 +                                        continue;
282 +                                case '+': case '1':
283 +                                case 'T': case 't':
284 +                                case 'Y': case 'y':
285 +                                        accumulate = 1;
286 +                                        continue;
287 +                                case '-': case '0':
288 +                                case 'F': case 'f':
289 +                                case 'N': case 'n':
290 +                                        accumulate = 0;
291 +                                        continue;
292 +                                }
293 +                                break;
294 +                        case 'r':               /* recover output */
295 +                                if (argv[i][2]) break;
296 +                                recover = 1;
297 +                                continue;
298                          case 'h':               /* output header? */
299                                  switch (argv[i][2]) {
300                                  case '\0':
# Line 283 | Line 328 | main(int argc, char *argv[])
328                                          continue;
329                                  }
330                                  if (argv[i][2] == 'o') {
331 <                                        force_open++;
331 >                                        force_open = 1;
332                                          continue;
333                                  }
334                                  setformat(argv[i]+2);
# Line 325 | Line 370 | main(int argc, char *argv[])
370                                  rtargv[rtargc++] = argv[++i];
371                                  addmodfile(argv[i], curout, binval, bincnt);
372                                  continue;
373 +                        case 'P':               /* persist file */
374 +                                if (i >= argc-2) break;
375 +                                persist_state = (argv[i][2] == 'P') ?
376 +                                                PERSIST_PARALL : PERSIST_SINGLE;
377 +                                rtargv[rtargc++] = argv[i];
378 +                                rtargv[rtargc++] = argv[++i];
379 +                                continue;
380                          }
381                  rtargv[rtargc++] = argv[i];     /* assume rtrace option */
382          }
383 +        if (accumulate)         /* no output flushing for single record */
384 +                xres = yres = 0;
385                                  /* set global argument list */
386          gargc = argc; gargv = argv;
387                                  /* add "mandatory" rtrace settings */
388          for (j = 0; myrtopts[j] != NULL; j++)
389                  rtargv[rtargc++] = myrtopts[j];
390 +        rtargv[rtargc++] = contrib ? RTCONTRIB : RTCOEFF;
391                                  /* just asking for defaults? */
392          if (!strcmp(argv[i], "-defaults")) {
393                  char    sxres[16], syres[16];
394                  char    *rtpath;
395                  printf("-n  %-2d\t\t\t\t# number of processes\n", nprocs);
396 +                printf("-V%c\t\t\t\t# output %s\n", contrib ? '+' : '-',
397 +                                contrib ? "contributions" : "coefficients");
398 +                printf("-c%c\t\t\t\t# %s\n", accumulate ? '+' : '-',
399 +                                accumulate ? "accumulate ray values" :
400 +                                        "one output record per ray");
401                  fflush(stdout);                 /* report OUR options */
402                  rtargv[rtargc++] = header ? "-h+" : "-h-";
403                  sprintf(fmt, "-f%c%c", inpfmt, outfmt);
# Line 348 | Line 408 | main(int argc, char *argv[])
408                  rtargv[rtargc++] = "-y";
409                  sprintf(syres, "%d", yres);
410                  rtargv[rtargc++] = syres;
351                rtargv[rtargc++] = "-oTW";
411                  rtargv[rtargc++] = "-defaults";
412                  rtargv[rtargc] = NULL;
413                  rtpath = getpath(rtargv[0], getenv("PATH"), X_OK);
# Line 362 | Line 421 | main(int argc, char *argv[])
421                  exit(1);
422          }
423          if (nprocs > 1) {       /* add persist file if parallel */
424 <                rtargv[rtargc++] = "-PP";
425 <                rtargv[rtargc++] = mktemp(persistfn);
424 >                if (persist_state == PERSIST_SINGLE)
425 >                        error(USER, "use -PP option for multiple processes");
426 >                if (persist_state == PERSIST_NONE) {
427 >                        rtargv[rtargc++] = "-PP";
428 >                        rtargv[rtargc++] = mktemp(persistfn);
429 >                        persist_state = PERSIST_OURS;
430 >                }
431          }
432                                  /* add format string */
433          sprintf(fmt, "-f%cf", inpfmt);
# Line 373 | Line 437 | main(int argc, char *argv[])
437                  error(USER, "missing octree argument");
438          rtargv[rtargc++] = octree = argv[i];
439          rtargv[rtargc] = NULL;
440 <                                /* start rtrace */
440 >                                /* start rtrace & recover if requested */
441          init(nprocs);
442 <        if (recover)            /* perform recovery if requested */
443 <                recover_output(stdin);
444 <        trace_contribs(stdin);  /* compute contributions */
442 >                                /* compute contributions */
443 >        trace_contribs(stdin);
444 >                                /* clean up */
445          quit(0);
446   }
447  
# Line 423 | Line 487 | quit(int status)
487   {
488          int     rtstat;
489  
490 <        if (rt0.next != NULL)           /* terminate persistent rtrace */
490 >        if (persist_state == PERSIST_OURS)  /* terminate waiting rtrace */
491                  killpersist();
492                                          /* clean up rtrace process(es) */
493          rtstat = done_rprocs(&rt0);
# Line 491 | Line 555 | init(int np)
555          } else
556                  raysleft = 0;
557          waitflush = xres;
558 +        if (!recover)
559 +                return;
560 +                                        /* recover previous values */
561 +        if (accumulate)
562 +                reload_output();
563 +        else
564 +                recover_output(stdin);
565   }
566  
567   /* grow modifier to accommodate more bins */
# Line 540 | Line 611 | addmodifier(char *modn, char *outf, char *binv, int bi
611                  mp = growmodifier(mp, bincnt);
612          lep->data = (char *)mp;
613                                          /* allocate output streams */
614 <        for (i = outf==NULL || outf[0]=='!' ? 0 : bincnt; i--; )
614 >        for (i = bincnt; i-- > 0; )
615                  getostream(mp->outspec, mp->modname, i, 1);
616          return mp;
617   }
# Line 661 | Line 732 | printheader(FILE *fout, const char *info)
732  
733   /* write resolution string to given output stream */
734   void
735 < printresolu(FILE *fout)
735 > printresolu(FILE *fout, int xr, int yr)
736   {
737 <        if (xres > 0) {
738 <                if (yres > 0)                   /* resolution string */
739 <                        fprtresolu(xres, yres, fout);
737 >        if ((xr > 0) & (yr > 0))        /* resolution string */
738 >                fprtresolu(xr, yr, fout);
739 >        if (xres > 0)                   /* global flush flag */
740                  fflush(fout);
670        }
741   }
742  
743   /* Get output stream pointer (open and write header if new and noopen==0) */
744   STREAMOUT *
745   getostream(const char *ospec, const char *mname, int bn, int noopen)
746   {
747 +        static const DCOLOR     nocontrib = BLKCOLOR;
748          static STREAMOUT        stdos;
749          int                     ofl;
750          char                    oname[1024];
# Line 682 | Line 753 | getostream(const char *ospec, const char *mname, int b
753          
754          if (ospec == NULL) {                    /* use stdout? */
755                  if (!noopen && !using_stdout) {
685                        stdos.reclen = 0;
756                          if (outfmt != 'a')
757                                  SET_FILE_BINARY(stdout);
758                          if (header)
759                                  printheader(stdout, NULL);
760 <                        printresolu(stdout);
760 >                        printresolu(stdout, xres, yres);
761 >                        stdos.xr = xres; stdos.yr = yres;
762                          using_stdout = 1;
763                  }
764                  stdos.ofp = stdout;
# Line 707 | Line 778 | getostream(const char *ospec, const char *mname, int b
778                  sop = (STREAMOUT *)malloc(sizeof(STREAMOUT));
779                  if (sop == NULL)
780                          error(SYSTEM, "out of memory in getostream");
781 <                sop->reclen = oname[0] == '!' ? CNT_PIPE : CNT_UNKNOWN;
781 >                sop->outpipe = oname[0] == '!';
782 >                sop->reclen = 0;
783                  sop->ofp = NULL;                /* open iff noopen==0 */
784 +                sop->xr = xres; sop->yr = yres;
785                  lep->data = (char *)sop;
786 +                if (!sop->outpipe & !force_open & !recover &&
787 +                                access(oname, F_OK) == 0) {
788 +                        errno = EEXIST;         /* file exists */
789 +                        goto openerr;
790 +                }
791          }
792          if (!noopen && sop->ofp == NULL) {      /* open output stream */
793                  long            i;
794                  if (oname[0] == '!')            /* output to command */
795                          sop->ofp = popen(oname+1, "w");
796 <                else if (!force_open && access(oname, F_OK) == 0)
719 <                        errno = EEXIST;         /* file exists */
720 <                else                            /* else open it */
796 >                else                            /* else open file */
797                          sop->ofp = fopen(oname, "w");
798 <                if (sop->ofp == NULL) {
799 <                        sprintf(errmsg, "cannot open '%s' for writing", oname);
724 <                        error(SYSTEM, errmsg);
725 <                }
798 >                if (sop->ofp == NULL)
799 >                        goto openerr;
800                  if (outfmt != 'a')
801                          SET_FILE_BINARY(sop->ofp);
802                  if (header) {
# Line 739 | Line 813 | getostream(const char *ospec, const char *mname, int b
813                          *cp = '\0';
814                          printheader(sop->ofp, info);
815                  }
816 <                printresolu(sop->ofp);
816 >                if (!accumulate) {              /* global res. for -c- */
817 >                        sop->xr = xres; sop->yr = yres;
818 >                }
819 >                printresolu(sop->ofp, sop->xr, sop->yr);
820                                                  /* play catch-up */
821 <                for (i = sop->reclen > 1 ? sop->reclen*lastdone : lastdone;
822 <                                                                i--; ) {
823 <                        static const DCOLOR     nocontrib = BLKCOLOR;
824 <                        put_contrib(nocontrib, sop->ofp);
821 >                for (i = accumulate ? 0 : lastdone; i--; ) {
822 >                        int     j = sop->reclen;
823 >                        if (j <= 0) j = 1;
824 >                        while (j--)
825 >                                put_contrib(nocontrib, sop->ofp);
826                          if (outfmt == 'a')
827                                  putc('\n', sop->ofp);
828                  }
829                  if (xres > 0)
830                          fflush(sop->ofp);
831          }
832 <        if (sop->reclen != CNT_PIPE)            /* add to length if noopen */
833 <                sop->reclen += noopen;
834 <        return sop;                             /* return open stream */
832 >        sop->reclen += noopen;                  /* add to length if noopen */
833 >        return sop;                             /* return output stream */
834 > openerr:
835 >        sprintf(errmsg, "cannot open '%s' for writing", oname);
836 >        error(SYSTEM, errmsg);
837 >        return NULL;    /* pro forma return */
838   }
839  
840   /* read input ray into buffer */
841   int
842   getinp(char *buf, FILE *fp)
843   {
844 <        double  dv[3];
845 <        float   fv[3];
844 >        double  dv[3], *dvp;
845 >        float   *fvp;
846          char    *cp;
847          int     i;
848  
# Line 785 | Line 866 | getinp(char *buf, FILE *fp)
866          case 'f':
867                  if (fread(buf, sizeof(float), 6, fp) < 6)
868                          return -1;
869 <                memcpy(fv, buf+3*sizeof(float), 3*sizeof(float));
870 <                if (DOT(fv,fv) <= FTINY*FTINY)
869 >                fvp = (float *)buf + 3;
870 >                if (DOT(fvp,fvp) <= FTINY*FTINY)
871                          return 0;       /* dummy ray */
872                  return sizeof(float)*6;
873          case 'd':
874                  if (fread(buf, sizeof(double), 6, fp) < 6)
875                          return -1;
876 <                memcpy(dv, buf+3*sizeof(double), 3*sizeof(double));
877 <                if (DOT(dv,dv) <= FTINY*FTINY)
876 >                dvp = (double *)buf + 3;
877 >                if (DOT(dvp,dvp) <= FTINY*FTINY)
878                          return 0;       /* dummy ray */
879                  return sizeof(double)*6;
880          }
# Line 862 | Line 943 | put_contrib(const DCOLOR cnt, FILE *fout)
943                  fprintf(fout, "%.6e\t%.6e\t%.6e\t", cnt[0], cnt[1], cnt[2]);
944                  break;
945          case 'f':
946 <                fv[0] = cnt[0];
866 <                fv[1] = cnt[1];
867 <                fv[2] = cnt[2];
946 >                copycolor(fv, cnt);
947                  fwrite(fv, sizeof(float), 3, fout);
948                  break;
949          case 'd':
# Line 879 | Line 958 | put_contrib(const DCOLOR cnt, FILE *fout)
958          }
959   }
960  
961 < /* output ray tallies and clear for next primary */
961 > /* output ray tallies and clear for next accumulation */
962   void
963   done_contrib(void)
964   {
# Line 899 | Line 978 | done_contrib(void)
978                          for (j = 1; j < mp->nbins; j++)
979                                  put_contrib(mp->cbin[j],
980                                      getostream(mp->outspec,mp->modname,j,0)->ofp);
981 <                                                /* clear for next ray tree */
981 >                                                /* clear for next time */
982                  memset(mp->cbin, 0, sizeof(DCOLOR)*mp->nbins);
983          }
984          --waitflush;                            /* terminate records */
# Line 958 | Line 1037 | process_queue(void)
1037                          if (!n || !(isalpha(*cp) | (*cp == '_')))
1038                                  error(USER, "bad modifier name from rtrace");
1039                                          /* get modifier name */
1040 <                        while (n > 0 && *cp != '\t') {
1040 >                        while (n > 1 && *cp != '\t') {
1041 >                                if (mnp - modname >= sizeof(modname)-2)
1042 >                                        error(INTERNAL, "modifier name too long");
1043                                  *mnp++ = *cp++; n--;
1044                          }
1045                          *mnp = '\0';
# Line 970 | Line 1051 | process_queue(void)
1051                          cp += sizeof(float)*9; n -= sizeof(float)*9;
1052                          add_contrib(modname);
1053                  }
1054 <                done_contrib();         /* sum up contributions & output */
1054 >                if (!accumulate)
1055 >                        done_contrib(); /* sum up contributions & output */
1056                  lastdone = rtp->raynum;
1057                  if (rtp->buf != NULL)   /* free up buffer space */
1058                          free(rtp->buf);
# Line 1076 | Line 1158 | trace_contribs(FILE *fin)
1158                          writebuf(rtp->pd.w, inpbuf, iblen);
1159                  } else {                        /* else bypass dummy ray */
1160                          queue_raytree(rtp);     /* empty tree */
1161 <                        if ((yres <= 0) & (waitflush > 0))
1161 >                        if ((yres <= 0) | (waitflush > 1))
1162                                  waitflush = 1;  /* flush after this */
1163                  }
1082                if (raysleft && !--raysleft)
1083                        break;
1164                  process_queue();                /* catch up with results */
1165 +                if (raysleft && !--raysleft)
1166 +                        break;                  /* preemptive EOI */
1167          }
1168          while (wait_rproc() != NULL)            /* process outstanding rays */
1169                  process_queue();
1170 +        if (accumulate)
1171 +                done_contrib();                 /* output tallies */
1172          if (raysleft)
1173                  error(USER, "unexpected EOF on input");
1174          lu_done(&ofiletab);                     /* close output files */
1175   }
1176  
1177 + /* get ray contribution from previous file */
1178 + static int
1179 + get_contrib(DCOLOR cnt, FILE *finp)
1180 + {
1181 +        COLOR   fv;
1182 +        COLR    cv;
1183 +
1184 +        switch (outfmt) {
1185 +        case 'a':
1186 +                return(fscanf(finp,"%lf %lf %lf",&cnt[0],&cnt[1],&cnt[2]) == 3);
1187 +        case 'f':
1188 +                if (fread(fv, sizeof(fv[0]), 3, finp) != 3)
1189 +                        return(0);
1190 +                copycolor(cnt, fv);
1191 +                return(1);
1192 +        case 'd':
1193 +                return(fread(cnt, sizeof(cnt[0]), 3, finp) == 3);
1194 +        case 'c':
1195 +                if (fread(cv, sizeof(cv), 1, finp) != 1)
1196 +                        return(0);
1197 +                colr_color(fv, cv);
1198 +                copycolor(cnt, fv);
1199 +                return(1);
1200 +        default:
1201 +                error(INTERNAL, "botched output format");
1202 +        }
1203 +        return(0);      /* pro forma return */
1204 + }
1205 +
1206 + /* close output file opened for input */
1207 + static int
1208 + myclose(const LUENT *e, void *p)
1209 + {
1210 +        STREAMOUT       *sop = (STREAMOUT *)e->data;
1211 +        
1212 +        if (sop->ofp == NULL)
1213 +                return;
1214 +        fclose(sop->ofp);
1215 +        sop->ofp = NULL;
1216 + }
1217 +
1218 + /* load previously accumulated values */
1219 + void
1220 + reload_output(void)
1221 + {
1222 +        int             i, j;
1223 +        MODCONT         *mp;
1224 +        int             ofl;
1225 +        char            oname[1024];
1226 +        char            *fmode = "rb";
1227 +        char            *outvfmt;
1228 +        LUENT           *ment, *oent;
1229 +        int             xr, yr;
1230 +        STREAMOUT       sout;
1231 +        DCOLOR          rgbv;
1232 +
1233 +        switch (outfmt) {
1234 +        case 'a':
1235 +                outvfmt = "ascii";
1236 +                fmode = "r";
1237 +                break;
1238 +        case 'f':
1239 +                outvfmt = "float";
1240 +                break;
1241 +        case 'd':
1242 +                outvfmt = "double";
1243 +                break;
1244 +        case 'c':
1245 +                outvfmt = COLRFMT;
1246 +                break;
1247 +        default:
1248 +                error(INTERNAL, "botched output format");
1249 +                return;
1250 +        }
1251 +                                                /* reload modifier values */
1252 +        for (i = 0; i < nmods; i++) {
1253 +                ment = lu_find(&modconttab,modname[i]);
1254 +                mp = (MODCONT *)ment->data;
1255 +                if (mp->outspec == NULL)
1256 +                        error(USER, "cannot reload from stdout");
1257 +                if (mp->outspec[0] == '!')
1258 +                        error(USER, "cannot reload from command");
1259 +                for (j = 0; ; j++) {            /* load each modifier bin */
1260 +                        ofl = ofname(oname, mp->outspec, mp->modname, j);
1261 +                        if (ofl < 0)
1262 +                                error(USER, "bad output file specification");
1263 +                        oent = lu_find(&ofiletab, oname);
1264 +                        if (oent->data != NULL) {
1265 +                                sout = *(STREAMOUT *)oent->data;
1266 +                        } else {
1267 +                                sout.reclen = 0;
1268 +                                sout.outpipe = 0;
1269 +                                sout.xr = xres; sout.yr = yres;
1270 +                                sout.ofp = NULL;
1271 +                        }
1272 +                        if (sout.ofp == NULL) { /* open output as input */
1273 +                                sout.ofp = fopen(oname, fmode);
1274 +                                if (sout.ofp == NULL) {
1275 +                                        if (j)
1276 +                                                break;  /* assume end of modifier */
1277 +                                        sprintf(errmsg, "missing reload file '%s'",
1278 +                                                        oname);
1279 +                                        error(WARNING, errmsg);
1280 +                                        break;
1281 +                                }
1282 +                                if (header && checkheader(sout.ofp, outvfmt, NULL) != 1) {
1283 +                                        sprintf(errmsg, "format mismatch for '%s'",
1284 +                                                        oname);
1285 +                                        error(USER, errmsg);
1286 +                                }
1287 +                                if ((sout.xr > 0) & (sout.yr > 0) &&
1288 +                                                (!fscnresolu(&xr, &yr, sout.ofp) ||
1289 +                                                        (xr != sout.xr) |
1290 +                                                        (yr != sout.yr))) {
1291 +                                        sprintf(errmsg, "resolution mismatch for '%s'",
1292 +                                                        oname);
1293 +                                        error(USER, errmsg);
1294 +                                }
1295 +                        }
1296 +                                                        /* read in RGB value */
1297 +                        if (!get_contrib(rgbv, sout.ofp)) {
1298 +                                if (!j) {
1299 +                                        fclose(sout.ofp);
1300 +                                        break;          /* ignore empty file */
1301 +                                }
1302 +                                if (j < mp->nbins) {
1303 +                                        sprintf(errmsg, "missing data in '%s'",
1304 +                                                        oname);
1305 +                                        error(USER, errmsg);
1306 +                                }
1307 +                                break;
1308 +                        }
1309 +                        if (j >= mp->nbins)             /* grow modifier size */
1310 +                                ment->data = (char *)(mp = growmodifier(mp, j+1));
1311 +                        copycolor(mp->cbin[j], rgbv);
1312 +                        if (oent->key == NULL)          /* new file entry */
1313 +                                oent->key = strcpy((char *)
1314 +                                                malloc(strlen(oname)+1), oname);
1315 +                        if (oent->data == NULL)
1316 +                                oent->data = (char *)malloc(sizeof(STREAMOUT));
1317 +                        *(STREAMOUT *)oent->data = sout;
1318 +                }
1319 +        }
1320 +        lu_doall(&ofiletab, myclose, NULL);     /* close all files */
1321 + }
1322 +
1323   /* seek on the given output file */
1324   static int
1325   myseeko(const LUENT *e, void *p)
# Line 1103 | Line 1333 | myseeko(const LUENT *e, void *p)
1333                  sprintf(errmsg, "seek error on file '%s'", e->key);
1334                  error(SYSTEM, errmsg);
1335          }
1336 +        return 0;
1337   }
1338  
1339   /* recover output if possible */
# Line 1157 | Line 1388 | recover_output(FILE *fin)
1388                          if (oent->data != NULL) {
1389                                  sout = *(STREAMOUT *)oent->data;
1390                          } else {
1391 <                                sout.reclen = CNT_UNKNOWN;
1391 >                                sout.reclen = 0;
1392 >                                sout.outpipe = 0;
1393                                  sout.ofp = NULL;
1394                          }
1395                          if (sout.ofp != NULL) { /* already open? */
# Line 1172 | Line 1404 | recover_output(FILE *fin)
1404                                          break;  /* assume end of modifier */
1405                                  sprintf(errmsg, "missing recover file '%s'",
1406                                                  oname);
1407 <                                error(USER, errmsg);
1407 >                                error(WARNING, errmsg);
1408 >                                break;
1409                          }
1410                          nvals = lseek(fileno(sout.ofp), 0, SEEK_END);
1411                          if (nvals <= 0) {
# Line 1180 | Line 1413 | recover_output(FILE *fin)
1413                                  fclose(sout.ofp);
1414                                  break;
1415                          }
1416 <                        if (sout.reclen == CNT_UNKNOWN) {
1416 >                        if (!sout.reclen) {
1417                                  if (!(ofl & OF_BIN)) {
1418                                          sprintf(errmsg,
1419                                                  "need -bn to recover file '%s'",
# Line 1197 | Line 1430 | recover_output(FILE *fin)
1430                                                  oname);
1431                                  error(USER, errmsg);
1432                          }
1433 <                        if ((xres > 0) & (yres > 0) &&
1433 >                        sout.xr = xres; sout.yr = yres;
1434 >                        if ((sout.xr > 0) & (sout.yr > 0) &&
1435                                          (!fscnresolu(&xr, &yr, sout.ofp) ||
1436 <                                                xr != xres ||
1437 <                                                yr != yres)) {
1436 >                                                (xr != sout.xr) |
1437 >                                                (yr != sout.yr))) {
1438                                  sprintf(errmsg, "resolution mismatch for '%s'",
1439                                                  oname);
1440                                  error(USER, errmsg);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines