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.4 by greg, Thu May 29 17:28:09 2014 UTC vs.
Revision 2.10 by greg, Fri May 8 18:25:03 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 "rtprocess.h"
15   #include "resolu.h"
16  
17   const char      *cm_fmt_id[] = {
18 <                        "unknown", "ascii", "float", "double",
19 <                        COLRFMT, CIEFMT
18 >                        "unknown", "ascii", COLRFMT, CIEFMT,
19 >                        "float", "double"
20                  };
21  
22   const int       cm_elem_size[] = {
# Line 39 | Line 40 | cm_alloc(int nrows, int ncols)
40          return(cm);
41   }
42  
43 + static void
44 + adjacent_ra_sizes(size_t bounds[2], size_t target)
45 + {
46 +        bounds[0] = 0; bounds[1] = 2048;
47 +        while (bounds[1] < target) {
48 +                bounds[0] = bounds[1];
49 +                bounds[1] += bounds[1]>>1;
50 +        }
51 + }
52 +
53   /* Resize color coefficient matrix */
54   CMATRIX *
55   cm_resize(CMATRIX *cm, int nrows)
56   {
57 +        size_t  old_size, new_size, ra_bounds[2];
58 +
59          if (nrows == cm->nrows)
60                  return(cm);
61          if (nrows <= 0) {
62                  cm_free(cm);
63                  return(NULL);
64          }
65 <        cm = (CMATRIX *)realloc(cm, sizeof(CMATRIX) +
66 <                        sizeof(COLOR)*(nrows*cm->ncols - 1));
67 <        if (cm == NULL)
68 <                error(SYSTEM, "out of memory in cm_resize()");
65 >        old_size = sizeof(CMATRIX) + sizeof(COLOR)*(cm->nrows*cm->ncols - 1);
66 >        adjacent_ra_sizes(ra_bounds, old_size);
67 >        new_size = sizeof(CMATRIX) + sizeof(COLOR)*(nrows*cm->ncols - 1);
68 >        if (nrows < cm->nrows ? new_size <= ra_bounds[0] :
69 >                                new_size > ra_bounds[1]) {
70 >                adjacent_ra_sizes(ra_bounds, new_size);
71 >                cm = (CMATRIX *)realloc(cm, ra_bounds[1]);
72 >                if (cm == NULL)
73 >                        error(SYSTEM, "out of memory in cm_resize()");
74 >        }
75          cm->nrows = nrows;
76          return(cm);
77   }
78  
79 + typedef struct {
80 +        int     dtype;          /* data type */
81 +        int     nrows, ncols;   /* matrix size */
82 +        char    *err;           /* error message */
83 + } CMINFO;               /* header info record */
84 +
85   static int
86 < getDT(char *s, void *p)
86 > get_cminfo(char *s, void *p)
87   {
88 +        CMINFO  *ip = (CMINFO *)p;
89          char    fmt[32];
90          int     i;
91 <        
91 >
92 >        if (!strncmp(s, "NCOMP=", 6) && atoi(s+6) != 3) {
93 >                ip->err = "unexpected # components (must be 3)";
94 >                return(-1);
95 >        }
96 >        if (!strncmp(s, "NROWS=", 6)) {
97 >                ip->nrows = atoi(s+6);
98 >                return(0);
99 >        }
100 >        if (!strncmp(s, "NCOLS=", 6)) {
101 >                ip->ncols = atoi(s+6);
102 >                return(0);
103 >        }
104          if (!formatval(fmt, s))
105                  return(0);
106          for (i = 1; i < DTend; i++)
107                  if (!strcmp(fmt, cm_fmt_id[i]))
108 <                        *((int *)p) = i;
108 >                        ip->dtype = i;
109          return(0);
110   }
111  
112 < /* Load header to obtain data type */
113 < int
114 < getDTfromHeader(FILE *fp)
112 > /* Load header to obtain/check data type and number of columns */
113 > char *
114 > cm_getheader(int *dt, int *nr, int *nc, FILE *fp)
115   {
116 <        int     dt = DTfromHeader;
117 <        
118 <        if (getheader(fp, getDT, &dt) < 0)
119 <                error(SYSTEM, "header read error");
120 <        if (dt == DTfromHeader)
121 <                error(USER, "missing data format in header");
122 <        return(dt);
116 >        CMINFO  cmi;
117 >                                                /* read header */
118 >        cmi.dtype = DTfromHeader;
119 >        cmi.nrows = cmi.ncols = 0;
120 >        cmi.err = "unexpected EOF in header";
121 >        if (getheader(fp, get_cminfo, &cmi) < 0)
122 >                return(cmi.err);
123 >        if (dt != NULL) {                       /* get/check data type? */
124 >                if (cmi.dtype == DTfromHeader) {
125 >                        if (*dt == DTfromHeader)
126 >                                return("missing/unknown data format in header");
127 >                } else if (*dt == DTfromHeader)
128 >                        *dt = cmi.dtype;
129 >                else if (*dt != cmi.dtype)
130 >                        return("unexpected data format in header");
131 >        }
132 >        if (nr != NULL) {                       /* get/check #rows? */
133 >                if (*nr <= 0)
134 >                        *nr = cmi.nrows;
135 >                else if ((cmi.nrows > 0) & (*nr != cmi.nrows))
136 >                        return("unexpected row count in header");
137 >        }
138 >        if (nc != NULL) {                       /* get/check #columns? */
139 >                if (*nc <= 0)
140 >                        *nc = cmi.ncols;
141 >                else if ((cmi.ncols > 0) & (*nc != cmi.ncols))
142 >                        return("unexpected column count in header");
143 >        }
144 >        return(NULL);
145   }
146  
147 < /* Allocate and load a matrix from the given file (or stdin if NULL) */
147 > /* Allocate and load a matrix from the given input (or stdin if NULL) */
148   CMATRIX *
149 < cm_load(const char *fname, int nrows, int ncols, int dtype)
149 > cm_load(const char *inspec, int nrows, int ncols, int dtype)
150   {
151          FILE    *fp = stdin;
152          CMATRIX *cm;
153  
154 <        if (ncols <= 0)
155 <                error(USER, "Non-positive number of columns");
156 <        if (fname == NULL)
157 <                fname = "<stdin>";
158 <        else if ((fp = fopen(fname, "r")) == NULL) {
159 <                sprintf(errmsg, "cannot open file '%s'", fname);
154 >        if (inspec == NULL)
155 >                inspec = "<stdin>";
156 >        else if (inspec[0] == '!') {
157 >                fp = popen(inspec+1, "r");
158 >                if (fp == NULL) {
159 >                        sprintf(errmsg, "cannot start command '%s'", inspec);
160 >                        error(SYSTEM, errmsg);
161 >                }
162 >        } else if ((fp = fopen(inspec, "r")) == NULL) {
163 >                sprintf(errmsg, "cannot open file '%s'", inspec);
164                  error(SYSTEM, errmsg);
165          }
166   #ifdef getc_unlocked
# Line 104 | Line 168 | cm_load(const char *fname, int nrows, int ncols, int d
168   #endif
169          if (dtype != DTascii)
170                  SET_FILE_BINARY(fp);            /* doesn't really work */
171 <        if (dtype == DTfromHeader)
172 <                dtype = getDTfromHeader(fp);
171 >        if (!dtype | !ncols) {                  /* expecting header? */
172 >                char    *err = cm_getheader(&dtype, &nrows, &ncols, fp);
173 >                if (err != NULL)
174 >                        error(USER, err);
175 >                if (ncols <= 0)
176 >                        error(USER, "unspecified number of columns");
177 >        }
178          switch (dtype) {
179          case DTascii:
180          case DTfloat:
# Line 116 | Line 185 | cm_load(const char *fname, int nrows, int ncols, int d
185          }
186          if (nrows <= 0) {                       /* don't know length? */
187                  int     guessrows = 147;        /* usually big enough */
188 <                if ((dtype != DTascii) & (fp != stdin)) {
188 >                if ((dtype != DTascii) & (fp != stdin) & (inspec[0] != '!')) {
189                          long    startpos = ftell(fp);
190                          if (fseek(fp, 0L, SEEK_END) == 0) {
191                                  long    endpos = ftell(fp);
# Line 126 | Line 195 | cm_load(const char *fname, int nrows, int ncols, int d
195                                  if ((endpos - startpos) % (ncols*elemsiz)) {
196                                          sprintf(errmsg,
197                                          "improper length for binary file '%s'",
198 <                                                        fname);
198 >                                                        inspec);
199                                          error(USER, errmsg);
200                                  }
201                                  guessrows = (endpos - startpos)/(ncols*elemsiz);
202                                  if (fseek(fp, startpos, SEEK_SET) < 0) {
203                                          sprintf(errmsg,
204                                                  "fseek() error on file '%s'",
205 <                                                        fname);
205 >                                                        inspec);
206                                          error(SYSTEM, errmsg);
207                                  }
208                                  nrows = guessrows;      /* we're confident */
# Line 163 | Line 232 | cm_load(const char *fname, int nrows, int ncols, int d
232                  while ((c = getc(fp)) != EOF)
233                          if (!isspace(c)) {
234                                  sprintf(errmsg,
235 <                                "unexpected data at end of ascii file %s",
236 <                                                fname);
235 >                                "unexpected data at end of ascii input '%s'",
236 >                                                inspec);
237                                  error(WARNING, errmsg);
238                                  break;
239                          }
# Line 218 | Line 287 | cm_load(const char *fname, int nrows, int ncols, int d
287                  }
288                  if (fgetc(fp) != EOF) {
289                                  sprintf(errmsg,
290 <                                "unexpected data at end of binary file %s",
291 <                                                fname);
290 >                                "unexpected data at end of binary input '%s'",
291 >                                                inspec);
292                                  error(WARNING, errmsg);
293                  }
294          }
295 <        if (fp != stdin)
296 <                fclose(fp);
295 >        if (fp != stdin) {
296 >                if (inspec[0] != '!')
297 >                        fclose(fp);
298 >                else if (pclose(fp)) {
299 >                        sprintf(errmsg, "error running command '%s'", inspec);
300 >                        error(WARNING, errmsg);
301 >                }
302 >        }
303   #ifdef getc_unlocked
304          else
305                  funlockfile(fp);
306   #endif
307          return(cm);
308   EOFerror:
309 <        sprintf(errmsg, "unexpected EOF reading %s", fname);
309 >        sprintf(errmsg, "unexpected EOF reading %s", inspec);
310          error(USER, errmsg);
311   not_handled:
312          error(INTERNAL, "unhandled data size or length in cm_load()");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines