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

Comparing ray/src/util/wrapBSDF.c (file contents):
Revision 2.1 by greg, Wed Feb 11 18:08:10 2015 UTC vs.
Revision 2.5 by greg, Sat Feb 14 18:33:07 2015 UTC

# Line 2 | Line 2
2   static const char RCSid[] = "$Id$";
3   #endif
4   /*
5 < * Wrap BSDF data in valid WINDOW XML wrapper
5 > * Wrap BSDF data in valid WINDOW XML file
6   *
7 < *      G. Ward         January 2015
7 > *      G. Ward         February 2015
8   */
9  
10   #include <ctype.h>
# Line 15 | Line 15 | static const char RCSid[] = "$Id$";
15   #include "bsdf_m.h"
16                                          /* XML template file names */
17   const char      def_template[] = "minimalBSDFt.xml";
18 < const char      win6_template[] = "window6BSDFt.xml";
18 > const char      win6_template[] = "WINDOW6BSDFt.xml";
19  
20   const char      stdin_name[] = "<stdin>";
21  
22                                          /* input files (can be stdin_name) */
23   const char      *xml_input = NULL;
24                                          /* unit for materials & geometry */
25 < const char      *attr_unit = "millimeter";
25 > const char      *attr_unit = "meter";
26   const char      legal_units[] = "meter|foot|inch|centimeter|millimeter";
27                                          /* system materials & geometry */
28   const char      *mgf_geometry = NULL;
# Line 36 | Line 36 | int            angle_basis = ABdefault;
36                                          /* field IDs and nicknames */
37   struct s_fieldID {
38          char            nickName[4];
39 <        int             has_unit;
39 >        short           has_unit;
40 >        short           win_need;
41          const char      *fullName;
42   } XMLfieldID[] = {
43 <        {"m", 0, "Manufacturer"},
44 <        {"n", 0, "Name"},
45 <        {"c", 0, "ThermalConductivity"},
46 <        {"ef", 0, "EmissivityFront"},
47 <        {"eb", 0, "EmissivityBack"},
48 <        {"tir", 0, "TIR"},
49 <        {"eo", 0, "EffectiveOpennessFraction"},
50 <        {"t", 1, "Thickness"},
51 <        {"h", 1, "Height"},
52 <        {"w", 1, "Width"},
53 <        {"\0", -1, NULL}        /* terminator */
43 >        {"m", 0, 1, "Manufacturer"},
44 >        {"n", 0, 1, "Name"},
45 >        {"c", 0, 0, "ThermalConductivity"},
46 >        {"ef", 0, 0, "EmissivityFront"},
47 >        {"eb", 0, 0, "EmissivityBack"},
48 >        {"tir", 0, 0, "TIR"},
49 >        {"eo", 0, 0, "EffectiveOpennessFraction"},
50 >        {"t", 1, 1, "Thickness"},
51 >        {"h", 1, 0, "Height"},
52 >        {"w", 1, 0, "Width"},
53 >        {"\0", 0, 0, NULL}      /* terminator */
54   };
55                                          /* field assignments */
56   #define MAXASSIGN       12
# Line 76 | Line 77 | const char     *spectr_file[MAXFILES]; /* custom spectral
77  
78   const char      top_level_name[] = "WindowElement";
79  
80 < static char     *basis_definition[] = {
80 > static char     basis_definition[][256] = {
81  
82 +        "\t<DataDefinition>\n"
83          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
84          "\t\t<AngleBasis>\n"
85          "\t\t\t<AngleBasisName>LBNL/Klems Full</AngleBasisName>\n"
86 <        "\t\t</AngleBasis>\n",
86 >        "\t\t\t</AngleBasis>\n"
87 >        "\t</DataDefinition>\n",
88  
89 +        "\t<DataDefinition>\n"
90          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
91          "\t\t<AngleBasis>\n"
92          "\t\t\t<AngleBasisName>LBNL/Klems Half</AngleBasisName>\n"
93 <        "\t\t</AngleBasis>\n",
93 >        "\t\t\t</AngleBasis>\n"
94 >        "\t</DataDefinition>\n",
95  
96 +        "\t<DataDefinition>\n"
97          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
98          "\t\t<AngleBasis>\n"
99          "\t\t\t<AngleBasisName>LBNL/Klems Quarter</AngleBasisName>\n"
100 <        "\t\t</AngleBasis>\n",
100 >        "\t\t\t</AngleBasis>\n"
101 >        "\t</DataDefinition>\n",
102  
103 <        "\t\t<IncidentDataStructure>TensorTree3</IncidentDataStructure>\n",
103 >        "\t<DataDefinition>\n"
104 >        "\t\t<IncidentDataStructure>TensorTree3</IncidentDataStructure>\n"
105 >        "\t</DataDefinition>\n",
106  
107 <        "\t\t<IncidentDataStructure>TensorTree4</IncidentDataStructure>\n",
107 >        "\t<DataDefinition>\n"
108 >        "\t\t<IncidentDataStructure>TensorTree4</IncidentDataStructure>\n"
109 >        "\t</DataDefinition>\n",
110   };
111  
112   /* Copy data from file descriptor to stdout and close */
# Line 130 | Line 141 | input2str(const char *inpspec)
141                  return "";
142          if (inpspec == stdin_name) {            /* read from stdin */
143                  fp = stdin;
144 <        } else if (*inpspec == '!') {           /* read from command */
144 >        } else if (inpspec[0] == '!') {         /* read from command */
145                  fp = popen(inpspec+1, "r");
146                  if (fp == NULL) {
147                          fprintf(stderr, "Cannot start process '%s'\n",
148 <                                        inpspec+1);
148 >                                        inpspec);
149                          return "";
150                  }
151          } else {                                /* else load file */
# Line 144 | Line 155 | input2str(const char *inpspec)
155                          return "";
156                  }
157                  len = lseek(fd, 0L, SEEK_END);
158 <                if (len < 0) {
159 <                        fprintf(stderr, "%s: seek error\n", inpspec);
158 >                if (len > 0) {
159 >                        lseek(fd, 0L, SEEK_SET);
160 >                        str = (char *)malloc(len+1);
161 >                        if (str == NULL) {
162 >                                close(fd);
163 >                                goto memerr;
164 >                        }
165 >                        if (read(fd, str, len) != len) {
166 >                                fprintf(stderr, "%s: read error\n", inpspec);
167 >                                free(str);
168 >                                close(fd);
169 >                                return "";
170 >                        }
171 >                        str[len] = '\0';
172                          close(fd);
173 <                        return "";
173 >                        return str;
174                  }
175 <                lseek(fd, 0L, SEEK_SET);
153 <                str = (char *)malloc(len+1);
154 <                if (str == NULL) {
155 <                        close(fd);
156 <                        goto memerr;
157 <                }
158 <                if (read(fd, str, len) != len) {
159 <                        fprintf(stderr, "%s: read error\n", inpspec);
160 <                        free(str);
161 <                        close(fd);
162 <                        return "";
163 <                }
164 <                str[len] = '\0';
165 <                close(fd);
166 <                return str;
175 >                fp = fdopen(fd, "r");           /* not a regular file */
176          }
177                                                  /* reading from stream */
178          str = (char *)malloc((len=8192)+1);
# Line 186 | Line 195 | input2str(const char *inpspec)
195                  if (str == NULL)
196                          goto memerr;
197          }
198 <        if (*inpspec != '!')
198 >        if (inpspec[0] != '!')
199                  fclose(fp);
200          else if (pclose(fp))
201 <                fprintf(stderr, "Error running command '%s'\n", inpspec+1);
201 >                fprintf(stderr, "Error running command '%s'\n", inpspec);
202          return str;
203   memerr:
204          fprintf(stderr, "%s: error allocating memory\n", inpspec);
205          if (fp != NULL)
206 <                (*inpspec == '!') ? pclose(fp) : fclose(fp);
206 >                (inpspec[0] == '!') ? pclose(fp) : fclose(fp);
207          return "";
208   }
209  
# Line 204 | Line 213 | mat_assignments(const char *caller, const char *fn, ez
213   {
214          int     i;
215  
207        if (!nfield_assign)
208                return 1;
216          wtl = ezxml_child(wtl, "Material");
217          if (wtl == NULL) {
218                  fprintf(stderr, "%s: missing <Material> tag\n", fn);
# Line 214 | Line 221 | mat_assignments(const char *caller, const char *fn, ez
221          for (i = 0; i < nfield_assign; i++) {
222                  const char      *fnext = field_assignment[i];
223                  for ( ; ; ) {
224 +                        int     added = 0;
225                          ezxml_t fld;
226                          char    sbuf[512];
227                          int     j;
# Line 222 | Line 230 | mat_assignments(const char *caller, const char *fn, ez
230                                  ++fnext;
231                          if (!*fnext)
232                                  break;
233 <                        for (j = 0; (*fnext != '=') & !isspace(*fnext); ) {
233 >                        for (j = 0; *fnext != '=' && !isspace(*fnext); ) {
234                                  if (!*fnext | (*fnext == FASEP) |
235                                                  (j >= sizeof(sbuf)-1)) {
236                                          fprintf(stderr,
# Line 232 | Line 240 | mat_assignments(const char *caller, const char *fn, ez
240                                  }
241                                  sbuf[j++] = *fnext++;
242                          }
243 <                        sbuf[j] = '\0';         /* check nick-names */
243 >                        sbuf[j] = '\0';         /* check known field */
244                          for (j = 0; XMLfieldID[j].nickName[0]; j++)
245 <                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName)) {
245 >                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName) ||
246 >                                        !strcasecmp(sbuf, XMLfieldID[j].fullName)) {
247                                          strcpy(sbuf, XMLfieldID[j].fullName);
248                                          break;
249                                  }
250                                                  /* check if tag exists */
251                          fld = ezxml_child(wtl, sbuf);
252                          if (fld == NULL) {      /* otherwise, create one */
253 <                                fprintf(stderr, "%s: warning - adding tag <%s>\n",
254 <                                        fn, sbuf);
253 >                                if (!XMLfieldID[j].nickName[0])
254 >                                        fprintf(stderr,
255 >                                                "%s: warning - adding tag <%s>\n",
256 >                                                        fn, sbuf);
257 >                                ezxml_add_txt(wtl, "\t");
258                                  fld = ezxml_add_child_d(wtl, sbuf, strlen(wtl->txt));
259 +                                ++added;
260                          }
261                          if (XMLfieldID[j].has_unit)
262                                  ezxml_set_attr(fld, "unit", attr_unit);
263 +                        XMLfieldID[j].win_need = 0;
264                          while (isspace(*fnext))
265                                  ++fnext;
266                          if (*fnext++ != '=') {
# Line 255 | Line 269 | mat_assignments(const char *caller, const char *fn, ez
269                                                  caller, field_assignment[i]);
270                                  return 0;
271                          }
272 <                        for (j = 0; *fnext & (*fnext != FASEP); ) {
272 >                        for (j = 0; *fnext && *fnext != FASEP; ) {
273                                  if (j >= sizeof(sbuf)-1) {
274                                          fprintf(stderr,
275                                          "%s: field too long in '%s'\n",
# Line 266 | Line 280 | mat_assignments(const char *caller, const char *fn, ez
280                          }
281                          sbuf[j] = '\0';
282                          ezxml_set_txt_d(fld, sbuf);
283 +                        if (added)
284 +                                ezxml_add_txt(wtl, "\n\t");
285                          fnext += (*fnext == FASEP);
286                  }
287          }
288 +                                        /* check required WINDOW settings */
289 +        if (xml_input == win6_template)
290 +            for (i = 0; XMLfieldID[i].nickName[0]; i++)
291 +                if (XMLfieldID[i].win_need &&
292 +                        !ezxml_txt(ezxml_child(wtl,XMLfieldID[i].fullName))[0]) {
293 +                        fprintf(stderr,
294 +                        "%s: missing required '%s' assignment for WINDOW <%s>\n",
295 +                                        caller, XMLfieldID[i].nickName,
296 +                                        XMLfieldID[i].fullName);
297 +                        return 0;
298 +                }
299          return 1;               /* no errors */
300   }
301  
# Line 297 | Line 324 | finish_angle_basis(ezxml_t ab)
324                  sprintf(buf, "%g", i ?
325                  .5*(abase_list[n].lat[i].tmin + abase_list[n].lat[i+1].tmin) :
326                                  .0);
327 +                ezxml_add_txt(abb, "\n\t\t\t\t");
328                  ezxml_set_txt_d(ezxml_add_child(abb,"Theta",strlen(abb->txt)), buf);
329                  sprintf(buf, "%d", abase_list[n].lat[i].nphis);
330 +                ezxml_add_txt(abb, "\n\t\t\t\t");
331                  ezxml_set_txt_d(ezxml_add_child(abb,"nPhis",strlen(abb->txt)), buf);
332 +                ezxml_add_txt(abb, "\n\t\t\t\t");
333                  tb = ezxml_add_child(abb, "ThetaBounds", strlen(abb->txt));
334 +                ezxml_add_txt(tb, "\n\t\t\t\t\t");
335                  sprintf(buf, "%g", abase_list[n].lat[i].tmin);
336 <                ezxml_set_txt(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
336 >                ezxml_set_txt_d(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
337 >                ezxml_add_txt(tb, "\n\t\t\t\t\t");
338                  sprintf(buf, "%g", abase_list[n].lat[i+1].tmin);
339 <                ezxml_set_txt(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
339 >                ezxml_set_txt_d(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
340 >                ezxml_add_txt(tb, "\n\t\t\t\t");
341 >                ezxml_add_txt(abb, "\n\t\t\t");
342 >                ezxml_add_txt(ab, "\n\t\t\t");
343          }
344          return 1;
345   }
# Line 320 | Line 355 | determine_angle_basis(const char *fn, ezxml_t wtl)
355          if (wtl == NULL)
356                  return -1;
357          ids = ezxml_txt(ezxml_child(wtl, "IncidentDataStructure"));
358 <        if (ids == NULL)
358 >        if (!ids[0])
359                  return -1;
360          for (i = 0; i < ABend; i++) {
361                  ezxml_t parsed = ezxml_parse_str(basis_definition[i],
# Line 433 | Line 468 | writeBSDFblock(const char *caller, struct s_dfile *df)
468          fflush(stdout);
469          if (df->fname == stdin_name) {
470                  copy_and_close(fileno(stdin));
471 <        } else if (*df->fname != '!') {
471 >        } else if (df->fname[0] != '!') {
472                  if (!copy_and_close(open(df->fname, O_RDONLY))) {
473                          fprintf(stderr, "%s: error reading from '%s'\n",
474                                          caller, df->fname);
475                          return 0;
476                  }
477          } else if (system(df->fname+1)) {
478 <                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname+1);
478 >                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname);
479                  return 0;
480          }
481          puts("\t\t\t</ScatteringData>");
# Line 453 | Line 488 | writeBSDFblock(const char *caller, struct s_dfile *df)
488   static int
489   writeBSDF(const char *caller, ezxml_t fl)
490   {
491 <        char    *xml = ezxml_toxml(fl);
491 >        char    *xml = ezxml_toxml(fl);         /* store XML in string */
492          int     ei, i;
493                                                  /* locate trailer */
494          for (ei = strlen(xml)-strlen("</Layer></Optical></WindowElement>");
# Line 477 | Line 512 | writeBSDF(const char *caller, ezxml_t fl)
512                          return 0;
513                  }
514          fputs(xml+ei, stdout);                  /* write trailer */
515 <        free(xml);
515 >        free(xml);                              /* free string */
516 >        fputc('\n', stdout);
517          return (fflush(stdout) == 0);
518   }
519  
# Line 485 | Line 521 | writeBSDF(const char *caller, ezxml_t fl)
521   static int
522   wrapBSDF(const char *caller)
523   {
524 <        const char      *xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
524 >        const char      *xml_path = xml_input;
525          ezxml_t         fl, wtl;
526                                          /* load previous XML/template */
527 <        if (xml_path == NULL) {
528 <                fprintf(stderr, "%s: cannot find XML file named '%s'\n",
529 <                                caller, xml_input==NULL ? "NULL" : xml_input);
530 <                return 0;
527 >        if (xml_input == stdin_name) {
528 >                fl = ezxml_parse_fp(stdin);
529 >        } else if (xml_input[0] == '!') {
530 >                FILE    *pfp = popen(xml_input+1, "r");
531 >                if (pfp == NULL) {
532 >                        fprintf(stderr, "%s: cannot start process '%s'\n",
533 >                                        caller, xml_input);
534 >                        return 0;
535 >                }
536 >                fl = ezxml_parse_fp(pfp);
537 >                if (pclose(pfp)) {
538 >                        fprintf(stderr, "%s: error running '%s'\n",
539 >                                        caller, xml_input);
540 >                        return 0;
541 >                }
542 >        } else {
543 >                xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
544 >                if (xml_path == NULL) {
545 >                        fprintf(stderr, "%s: cannot find XML file named '%s'\n",
546 >                                        caller, xml_input==NULL ? "NULL" : xml_input);
547 >                        return 0;
548 >                }
549 >                fl = ezxml_parse_file(xml_path);
550          }
496        fl = ezxml_parse_file(xml_path);
551          if (fl == NULL) {
552 <                fprintf(stderr, "%s: cannot open XML path '%s'\n",
499 <                                caller, xml_path);
552 >                fprintf(stderr, "%s: cannot load XML '%s'\n", caller, xml_path);
553                  return 0;
554          }
555          if (ezxml_error(fl)[0]) {
556 <                fprintf(stderr, "%s: error in XML %s: %s\n", caller, xml_path,
556 >                fprintf(stderr, "%s: error in XML '%s': %s\n", caller, xml_path,
557                                  ezxml_error(fl));
558                  goto failure;
559          }
# Line 522 | Line 575 | wrapBSDF(const char *caller)
575                  goto failure;
576          }
577                                          /* make material assignments */
578 <        if (!mat_assignments(caller, xml_path, wtl)) {
578 >        if (!mat_assignments(caller, xml_path, wtl))
579                  goto failure;
527        }
580          if (mgf_geometry != NULL) {     /* add geometry if specified */
581                  ezxml_t geom = ezxml_child(wtl, "Geometry");
582                  if (geom == NULL)
583 <                        geom = ezxml_add_child(wtl, "Geometry", 0);
583 >                        geom = ezxml_add_child(wtl, "Geometry", strlen(wtl->txt));
584                  ezxml_set_attr(geom, "format", "MGF");
585                  geom = ezxml_child(geom, "MGFblock");
586                  if (geom == NULL) {
587                          geom = ezxml_child(wtl, "Geometry");
588 <                        geom = ezxml_add_child(geom, "MGFblock", strlen(geom->txt));
588 >                        geom = ezxml_add_child(geom, "MGFblock", 0);
589                  }
590                  ezxml_set_attr(geom, "unit", attr_unit);
591                  ezxml_set_txt(geom, input2str(mgf_geometry));
# Line 542 | Line 594 | wrapBSDF(const char *caller)
594          }
595                                          /* check basis */
596          if (angle_basis != ABdefault) {
597 +                size_t  offset = 0;
598                  ezxml_t ab, dd = ezxml_child(wtl, "DataDefinition");
599 <                if (dd == NULL) {
600 <                        dd = ezxml_add_child(wtl, "DataDefinition", 0);
601 <                } else {
549 <                        if (ezxml_child(dd, "DataDefinition") != NULL)
599 >                if (dd != NULL) {
600 >                        offset = dd->off;
601 >                        if (dd->child != NULL)
602                                  fprintf(stderr,
603                  "%s: warning - replacing existing <DataDefinition> in '%s'\n",
604                                                  caller, xml_path);
605 <                        while (dd->child != NULL)
606 <                                ezxml_remove(dd->child);
607 <                }
608 <                ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
605 >                        ezxml_remove(dd);
606 >                } else
607 >                        offset = strlen(wtl->txt);
608 >                dd = ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
609                                          strlen(basis_definition[angle_basis])),
610 <                                dd, 0);
610 >                                wtl, offset);
611                  if ((ab = ezxml_child(dd, "AngleBasis")) != NULL &&
612                                  !finish_angle_basis(ab))
613                          goto failure;
# Line 580 | Line 632 | UsageExit(const char *pname)
632   {
633          fputs("Usage: ", stderr);
634          fputs(pname, stderr);
635 <        fputs(" [options] [input.xml]\n", stderr);
635 >        fputs(" [-W][-a {kf|kh|kq|t3|t4}][-u unit][-g geom][-f 'x=string;y=string']", stderr);
636 >        fputs(" [-s spectr][-tb inp][-tf inp][-rb inp][-rf inp]", stderr);
637 >        fputs(" [input.xml]\n", stderr);
638          exit(1);
639   }
640  
# Line 617 | Line 671 | main(int argc, char *argv[])
671                                                  argv[0]);
672                                  return 1;
673                          }
674 <                        if (strstr(argv[i], legal_units) == NULL) {
675 <                                fprintf(stderr, "%s: unit must be one of (%s)\n",
674 >                        if (strstr(legal_units, argv[i]) == NULL) {
675 >                                fprintf(stderr, "%s: -u unit must be one of (%s)\n",
676                                                  argv[0], legal_units);
677                                  return 1;
678                          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines