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

Comparing ray/src/util/cmatrix.c (file contents):
Revision 2.1 by greg, Mon Jan 20 21:29:04 2014 UTC vs.
Revision 2.9 by greg, Mon May 4 20:53:21 2015 UTC

# Line 11 | Line 11 | static const char RCSid[] = "$Id$";
11   #include "standard.h"
12   #include "cmatrix.h"
13   #include "platform.h"
14 + #include "resolu.h"
15  
16 + const char      *cm_fmt_id[] = {
17 +                        "unknown", "ascii", COLRFMT, CIEFMT,
18 +                        "float", "double"
19 +                };
20 +
21 + const int       cm_elem_size[] = {
22 +                        0, 0, 3*sizeof(float), 3*sizeof(double), 4, 4
23 +                };
24 +
25   /* Allocate a color coefficient matrix */
26   CMATRIX *
27   cm_alloc(int nrows, int ncols)
# Line 21 | Line 31 | cm_alloc(int nrows, int ncols)
31          if ((nrows <= 0) | (ncols <= 0))
32                  error(USER, "attempt to create empty matrix");
33          cm = (CMATRIX *)malloc(sizeof(CMATRIX) +
34 <                                3*sizeof(COLORV)*(nrows*ncols - 1));
34 >                                sizeof(COLOR)*(nrows*ncols - 1));
35          if (cm == NULL)
36                  error(SYSTEM, "out of memory in cm_alloc()");
37          cm->nrows = nrows;
# Line 29 | Line 39 | cm_alloc(int nrows, int ncols)
39          return(cm);
40   }
41  
42 + static void
43 + adjacent_ra_sizes(size_t bounds[2], size_t target)
44 + {
45 +        bounds[0] = 0; bounds[1] = 2048;
46 +        while (bounds[1] < target) {
47 +                bounds[0] = bounds[1];
48 +                bounds[1] += bounds[1]>>1;
49 +        }
50 + }
51 +
52   /* Resize color coefficient matrix */
53   CMATRIX *
54   cm_resize(CMATRIX *cm, int nrows)
55   {
56 +        size_t  old_size, new_size, ra_bounds[2];
57 +
58          if (nrows == cm->nrows)
59                  return(cm);
60          if (nrows <= 0) {
61                  cm_free(cm);
62                  return(NULL);
63          }
64 <        cm = (CMATRIX *)realloc(cm, sizeof(CMATRIX) +
65 <                        3*sizeof(COLORV)*(nrows*cm->ncols - 1));
66 <        if (cm == NULL)
67 <                error(SYSTEM, "out of memory in cm_resize()");
64 >        old_size = sizeof(CMATRIX) + sizeof(COLOR)*(cm->nrows*cm->ncols - 1);
65 >        adjacent_ra_sizes(ra_bounds, old_size);
66 >        new_size = sizeof(CMATRIX) + sizeof(COLOR)*(nrows*cm->ncols - 1);
67 >        if (nrows < cm->nrows ? new_size <= ra_bounds[0] :
68 >                                new_size > ra_bounds[1]) {
69 >                adjacent_ra_sizes(ra_bounds, new_size);
70 >                cm = (CMATRIX *)realloc(cm, ra_bounds[1]);
71 >                if (cm == NULL)
72 >                        error(SYSTEM, "out of memory in cm_resize()");
73 >        }
74          cm->nrows = nrows;
75          return(cm);
76   }
77  
78 + typedef struct {
79 +        int     dtype;          /* data type */
80 +        int     nrows, ncols;   /* matrix size */
81 +        char    *err;           /* error message */
82 + } CMINFO;               /* header info record */
83 +
84   static int
85 < getDT(char *s, void *p)
85 > get_cminfo(char *s, void *p)
86   {
87 +        CMINFO  *ip = (CMINFO *)p;
88          char    fmt[32];
89 <        
90 <        if (formatval(fmt, s)) {
91 <                if (!strcmp(fmt, "ascii"))
92 <                        *((int *)p) = DTascii;
93 <                else if (!strcmp(fmt, "float"))
59 <                        *((int *)p) = DTfloat;
60 <                else if (!strcmp(fmt, "double"))
61 <                        *((int *)p) = DTdouble;
62 <                else if (!strcmp(fmt, COLRFMT))
63 <                        *((int *)p) = DTrgbe;
64 <                else if (!strcmp(fmt, CIEFMT))
65 <                        *((int *)p) = DTxyze;
89 >        int     i;
90 >
91 >        if (!strncmp(s, "NCOMP=", 6) && atoi(s+6) != 3) {
92 >                ip->err = "unexpected # components (must be 3)";
93 >                return(-1);
94          }
95 +        if (!strncmp(s, "NROWS=", 6)) {
96 +                ip->nrows = atoi(s+6);
97 +                return(0);
98 +        }
99 +        if (!strncmp(s, "NCOLS=", 6)) {
100 +                ip->ncols = atoi(s+6);
101 +                return(0);
102 +        }
103 +        if (!formatval(fmt, s))
104 +                return(0);
105 +        for (i = 1; i < DTend; i++)
106 +                if (!strcmp(fmt, cm_fmt_id[i]))
107 +                        ip->dtype = i;
108          return(0);
109   }
110  
111 < /* Load header to obtain data type */
112 < int
113 < getDTfromHeader(FILE *fp)
111 > /* Load header to obtain/check data type and number of columns */
112 > char *
113 > cm_getheader(int *dt, int *nr, int *nc, FILE *fp)
114   {
115 <        int     dt = DTfromHeader;
116 <        
117 <        if (getheader(fp, getDT, &dt) < 0)
118 <                error(SYSTEM, "header read error");
119 <        if (dt == DTfromHeader)
120 <                error(USER, "missing data format in header");
121 <        return(dt);
115 >        CMINFO  cmi;
116 >                                                /* read header */
117 >        cmi.dtype = DTfromHeader;
118 >        cmi.nrows = cmi.ncols = 0;
119 >        cmi.err = "unexpected EOF in header";
120 >        if (getheader(fp, get_cminfo, &cmi) < 0)
121 >                return(cmi.err);
122 >        if (dt != NULL) {                       /* get/check data type? */
123 >                if (cmi.dtype == DTfromHeader) {
124 >                        if (*dt == DTfromHeader)
125 >                                return("missing/unknown data format in header");
126 >                } else if (*dt == DTfromHeader)
127 >                        *dt = cmi.dtype;
128 >                else if (*dt != cmi.dtype)
129 >                        return("unexpected data format in header");
130 >        }
131 >        if (nr != NULL) {                       /* get/check #rows? */
132 >                if (*nr <= 0)
133 >                        *nr = cmi.nrows;
134 >                else if ((cmi.nrows > 0) & (*nr != cmi.nrows))
135 >                        return("unexpected row count in header");
136 >        }
137 >        if (nc != NULL) {                       /* get/check #columns? */
138 >                if (*nc <= 0)
139 >                        *nc = cmi.ncols;
140 >                else if ((cmi.ncols > 0) & (*nc != cmi.ncols))
141 >                        return("unexpected column count in header");
142 >        }
143 >        return(NULL);
144   }
145  
146 < /* Allocate and load a matrix from the given file (or stdin if NULL) */
146 > /* Allocate and load a matrix from the given input (or stdin if NULL) */
147   CMATRIX *
148 < cm_load(const char *fname, int nrows, int ncols, int dtype)
148 > cm_load(const char *inspec, int nrows, int ncols, int dtype)
149   {
150          FILE    *fp = stdin;
151          CMATRIX *cm;
152  
153 <        if (ncols <= 0)
154 <                error(USER, "Non-positive number of columns");
155 <        if (fname == NULL)
156 <                fname = "<stdin>";
157 <        else if ((fp = fopen(fname, "r")) == NULL) {
158 <                sprintf(errmsg, "cannot open file '%s'", fname);
153 >        if (inspec == NULL)
154 >                inspec = "<stdin>";
155 >        else if (inspec[0] == '!') {
156 >                fp = popen(inspec+1, "r");
157 >                if (fp == NULL) {
158 >                        sprintf(errmsg, "cannot start command '%s'", inspec);
159 >                        error(SYSTEM, errmsg);
160 >                }
161 >        } else if ((fp = fopen(inspec, "r")) == NULL) {
162 >                sprintf(errmsg, "cannot open file '%s'", inspec);
163                  error(SYSTEM, errmsg);
164          }
165   #ifdef getc_unlocked
# Line 100 | Line 167 | cm_load(const char *fname, int nrows, int ncols, int d
167   #endif
168          if (dtype != DTascii)
169                  SET_FILE_BINARY(fp);            /* doesn't really work */
170 <        if (dtype == DTfromHeader)
171 <                dtype = getDTfromHeader(fp);
170 >        if (!dtype | !ncols) {                  /* expecting header? */
171 >                char    *err = cm_getheader(&dtype, &nrows, &ncols, fp);
172 >                if (err != NULL)
173 >                        error(USER, err);
174 >                if (ncols <= 0)
175 >                        error(USER, "unspecified number of columns");
176 >        }
177          switch (dtype) {
178          case DTascii:
179          case DTfloat:
# Line 112 | Line 184 | cm_load(const char *fname, int nrows, int ncols, int d
184          }
185          if (nrows <= 0) {                       /* don't know length? */
186                  int     guessrows = 147;        /* usually big enough */
187 <                if ((dtype != DTascii) & (fp != stdin)) {
187 >                if ((dtype != DTascii) & (fp != stdin) & (inspec[0] != '!')) {
188                          long    startpos = ftell(fp);
189                          if (fseek(fp, 0L, SEEK_END) == 0) {
190                                  long    endpos = ftell(fp);
# Line 122 | Line 194 | cm_load(const char *fname, int nrows, int ncols, int d
194                                  if ((endpos - startpos) % (ncols*elemsiz)) {
195                                          sprintf(errmsg,
196                                          "improper length for binary file '%s'",
197 <                                                        fname);
197 >                                                        inspec);
198                                          error(USER, errmsg);
199                                  }
200                                  guessrows = (endpos - startpos)/(ncols*elemsiz);
201                                  if (fseek(fp, startpos, SEEK_SET) < 0) {
202                                          sprintf(errmsg,
203                                                  "fseek() error on file '%s'",
204 <                                                        fname);
204 >                                                        inspec);
205                                          error(SYSTEM, errmsg);
206                                  }
207                                  nrows = guessrows;      /* we're confident */
# Line 159 | Line 231 | cm_load(const char *fname, int nrows, int ncols, int d
231                  while ((c = getc(fp)) != EOF)
232                          if (!isspace(c)) {
233                                  sprintf(errmsg,
234 <                                "unexpected data at end of ascii file %s",
235 <                                                fname);
234 >                                "unexpected data at end of ascii input '%s'",
235 >                                                inspec);
236                                  error(WARNING, errmsg);
237                                  break;
238                          }
239          } else {                                        /* read binary file */
240 <                if (sizeof(COLORV) == (dtype==DTfloat ? sizeof(float) :
169 <                                                        sizeof(double))) {
240 >                if (sizeof(COLOR) == cm_elem_size[dtype]) {
241                          int     nread = 0;
242                          do {                            /* read all we can */
243                                  nread += fread(cm->cmem + 3*nread,
244 <                                                3*sizeof(COLORV),
244 >                                                sizeof(COLOR),
245                                                  cm->nrows*cm->ncols - nread,
246                                                  fp);
247                                  if (nrows <= 0) {       /* unknown length */
# Line 215 | Line 286 | cm_load(const char *fname, int nrows, int ncols, int d
286                  }
287                  if (fgetc(fp) != EOF) {
288                                  sprintf(errmsg,
289 <                                "unexpected data at end of binary file %s",
290 <                                                fname);
289 >                                "unexpected data at end of binary input '%s'",
290 >                                                inspec);
291                                  error(WARNING, errmsg);
292                  }
293          }
294 <        if (fp != stdin)
295 <                fclose(fp);
294 >        if (fp != stdin) {
295 >                if (inspec[0] != '!')
296 >                        fclose(fp);
297 >                else if (pclose(fp)) {
298 >                        sprintf(errmsg, "error running command '%s'", inspec);
299 >                        error(WARNING, errmsg);
300 >                }
301 >        }
302   #ifdef getc_unlocked
303          else
304                  funlockfile(fp);
305   #endif
306          return(cm);
307   EOFerror:
308 <        sprintf(errmsg, "unexpected EOF reading %s", fname);
308 >        sprintf(errmsg, "unexpected EOF reading %s", inspec);
309          error(USER, errmsg);
310   not_handled:
311          error(INTERNAL, "unhandled data size or length in cm_load()");
# Line 312 | Line 389 | cm_multiply(const CMATRIX *cm1, const CMATRIX *cm2)
389          for (dr = 0; dr < cmr->nrows; dr++)
390              for (dc = 0; dc < cmr->ncols; dc++) {
391                  COLORV  *dp = cm_lval(cmr,dr,dc);
392 +                double  res[3];
393                  dp[0] = dp[1] = dp[2] = 0;
394                  if (rowcheck != NULL && !rowcheck[dr])
395                          continue;
396                  if (colcheck != NULL && !colcheck[dc])
397                          continue;
398 +                res[0] = res[1] = res[2] = 0;
399                  for (i = 0; i < cm1->ncols; i++) {
400                      const COLORV        *cp1 = cm_lval(cm1,dr,i);
401                      const COLORV        *cp2 = cm_lval(cm2,i,dc);
402 <                    dp[0] += cp1[0] * cp2[0];
403 <                    dp[1] += cp1[1] * cp2[1];
404 <                    dp[2] += cp1[2] * cp2[2];
402 >                    res[0] += cp1[0] * cp2[0];
403 >                    res[1] += cp1[1] * cp2[1];
404 >                    res[2] += cp1[2] * cp2[2];
405                  }
406 +                copycolor(dp, res);
407              }
408          if (rowcheck != NULL) free(rowcheck);
409          if (colcheck != NULL) free(colcheck);
410          return(cmr);
411   }
412  
413 < /* print out matrix as ASCII text -- no header */
414 < void
415 < cm_print(const CMATRIX *cm, FILE *fp)
413 > /* write out matrix to file (precede by resolution string if picture) */
414 > int
415 > cm_write(const CMATRIX *cm, int dtype, FILE *fp)
416   {
417 <        int             r, c;
418 <        const COLORV    *mp = cm->cmem;
419 <        
420 <        for (r = 0; r < cm->nrows; r++) {
421 <                for (c = 0; c < cm->ncols; c++, mp += 3)
422 <                        fprintf(fp, "\t%.6e %.6e %.6e", mp[0], mp[1], mp[2]);
423 <                fputc('\n', fp);
417 >        static const char       tabEOL[2] = {'\t','\n'};
418 >        const COLORV            *mp = cm->cmem;
419 >        int                     r, c;
420 >
421 >        switch (dtype) {
422 >        case DTascii:
423 >                for (r = 0; r < cm->nrows; r++)
424 >                        for (c = 0; c < cm->ncols; c++, mp += 3)
425 >                                fprintf(fp, "%.6e %.6e %.6e%c",
426 >                                                mp[0], mp[1], mp[2],
427 >                                                tabEOL[c >= cm->ncols-1]);
428 >                break;
429 >        case DTfloat:
430 >        case DTdouble:
431 >                if (sizeof(COLOR) == cm_elem_size[dtype]) {
432 >                        r = cm->ncols*cm->nrows;
433 >                        while (r > 0) {
434 >                                c = fwrite(mp, sizeof(COLOR), r, fp);
435 >                                if (c <= 0)
436 >                                        return(0);
437 >                                mp += 3*c;
438 >                                r -= c;
439 >                        }
440 >                } else if (dtype == DTdouble) {
441 >                        double  dc[3];
442 >                        r = cm->ncols*cm->nrows;
443 >                        while (r--) {
444 >                                copycolor(dc, mp);
445 >                                if (fwrite(dc, sizeof(double), 3, fp) != 3)
446 >                                        return(0);
447 >                                mp += 3;
448 >                        }
449 >                } else /* dtype == DTfloat */ {
450 >                        float   fc[3];
451 >                        r = cm->ncols*cm->nrows;
452 >                        while (r--) {
453 >                                copycolor(fc, mp);
454 >                                if (fwrite(fc, sizeof(float), 3, fp) != 3)
455 >                                        return(0);
456 >                                mp += 3;
457 >                        }
458 >                }
459 >                break;
460 >        case DTrgbe:
461 >        case DTxyze:
462 >                fprtresolu(cm->ncols, cm->nrows, fp);
463 >                for (r = 0; r < cm->nrows; r++, mp += 3*cm->ncols)
464 >                        if (fwritescan((COLOR *)mp, cm->ncols, fp) < 0)
465 >                                return(0);
466 >                break;
467 >        default:
468 >                fputs("Unsupported data type in cm_write()!\n", stderr);
469 >                return(0);
470          }
471 +        return(fflush(fp) == 0);
472   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines