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.4 by greg, Sat Feb 14 00:39:21 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 222 | Line 229 | mat_assignments(const char *caller, const char *fn, ez
229                                  ++fnext;
230                          if (!*fnext)
231                                  break;
232 <                        for (j = 0; (*fnext != '=') & !isspace(*fnext); ) {
232 >                        for (j = 0; *fnext != '=' && !isspace(*fnext); ) {
233                                  if (!*fnext | (*fnext == FASEP) |
234                                                  (j >= sizeof(sbuf)-1)) {
235                                          fprintf(stderr,
# Line 232 | Line 239 | mat_assignments(const char *caller, const char *fn, ez
239                                  }
240                                  sbuf[j++] = *fnext++;
241                          }
242 <                        sbuf[j] = '\0';         /* check nick-names */
242 >                        sbuf[j] = '\0';         /* check known field */
243                          for (j = 0; XMLfieldID[j].nickName[0]; j++)
244 <                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName)) {
244 >                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName) ||
245 >                                        !strcasecmp(sbuf, XMLfieldID[j].fullName)) {
246                                          strcpy(sbuf, XMLfieldID[j].fullName);
247                                          break;
248                                  }
249                                                  /* check if tag exists */
250                          fld = ezxml_child(wtl, sbuf);
251                          if (fld == NULL) {      /* otherwise, create one */
252 <                                fprintf(stderr, "%s: warning - adding tag <%s>\n",
253 <                                        fn, sbuf);
252 >                                if (!XMLfieldID[j].nickName[0])
253 >                                        fprintf(stderr,
254 >                                                "%s: warning - adding tag <%s>\n",
255 >                                                        fn, sbuf);
256                                  fld = ezxml_add_child_d(wtl, sbuf, strlen(wtl->txt));
257                          }
258                          if (XMLfieldID[j].has_unit)
259                                  ezxml_set_attr(fld, "unit", attr_unit);
260 +                        XMLfieldID[j].win_need = 0;
261                          while (isspace(*fnext))
262                                  ++fnext;
263                          if (*fnext++ != '=') {
# Line 255 | Line 266 | mat_assignments(const char *caller, const char *fn, ez
266                                                  caller, field_assignment[i]);
267                                  return 0;
268                          }
269 <                        for (j = 0; *fnext & (*fnext != FASEP); ) {
269 >                        for (j = 0; *fnext && *fnext != FASEP; ) {
270                                  if (j >= sizeof(sbuf)-1) {
271                                          fprintf(stderr,
272                                          "%s: field too long in '%s'\n",
# Line 269 | Line 280 | mat_assignments(const char *caller, const char *fn, ez
280                          fnext += (*fnext == FASEP);
281                  }
282          }
283 +                                        /* check required WINDOW settings */
284 +        if (xml_input == win6_template)
285 +            for (i = 0; XMLfieldID[i].nickName[0]; i++)
286 +                if (XMLfieldID[i].win_need &&
287 +                        !ezxml_txt(ezxml_child(wtl,XMLfieldID[i].fullName))[0]) {
288 +                        fprintf(stderr,
289 +                        "%s: missing required '%s' assignment for WINDOW <%s>\n",
290 +                                        caller, XMLfieldID[i].nickName,
291 +                                        XMLfieldID[i].fullName);
292 +                        return 0;
293 +                }
294          return 1;               /* no errors */
295   }
296  
# Line 297 | Line 319 | finish_angle_basis(ezxml_t ab)
319                  sprintf(buf, "%g", i ?
320                  .5*(abase_list[n].lat[i].tmin + abase_list[n].lat[i+1].tmin) :
321                                  .0);
322 +                ezxml_add_txt(abb, "\n\t\t\t\t");
323                  ezxml_set_txt_d(ezxml_add_child(abb,"Theta",strlen(abb->txt)), buf);
324                  sprintf(buf, "%d", abase_list[n].lat[i].nphis);
325 +                ezxml_add_txt(abb, "\n\t\t\t\t");
326                  ezxml_set_txt_d(ezxml_add_child(abb,"nPhis",strlen(abb->txt)), buf);
327 +                ezxml_add_txt(abb, "\n\t\t\t\t");
328                  tb = ezxml_add_child(abb, "ThetaBounds", strlen(abb->txt));
329 +                ezxml_add_txt(tb, "\n\t\t\t\t\t");
330                  sprintf(buf, "%g", abase_list[n].lat[i].tmin);
331 <                ezxml_set_txt(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
331 >                ezxml_set_txt_d(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
332 >                ezxml_add_txt(tb, "\n\t\t\t\t\t");
333                  sprintf(buf, "%g", abase_list[n].lat[i+1].tmin);
334 <                ezxml_set_txt(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
334 >                ezxml_set_txt_d(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
335 >                ezxml_add_txt(tb, "\n\t\t\t\t");
336 >                ezxml_add_txt(abb, "\n\t\t\t");
337 >                ezxml_add_txt(ab, "\n\t\t\t");
338          }
339          return 1;
340   }
# Line 320 | Line 350 | determine_angle_basis(const char *fn, ezxml_t wtl)
350          if (wtl == NULL)
351                  return -1;
352          ids = ezxml_txt(ezxml_child(wtl, "IncidentDataStructure"));
353 <        if (ids == NULL)
353 >        if (!ids[0])
354                  return -1;
355          for (i = 0; i < ABend; i++) {
356                  ezxml_t parsed = ezxml_parse_str(basis_definition[i],
# Line 433 | Line 463 | writeBSDFblock(const char *caller, struct s_dfile *df)
463          fflush(stdout);
464          if (df->fname == stdin_name) {
465                  copy_and_close(fileno(stdin));
466 <        } else if (*df->fname != '!') {
466 >        } else if (df->fname[0] != '!') {
467                  if (!copy_and_close(open(df->fname, O_RDONLY))) {
468                          fprintf(stderr, "%s: error reading from '%s'\n",
469                                          caller, df->fname);
470                          return 0;
471                  }
472          } else if (system(df->fname+1)) {
473 <                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname+1);
473 >                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname);
474                  return 0;
475          }
476          puts("\t\t\t</ScatteringData>");
# Line 453 | Line 483 | writeBSDFblock(const char *caller, struct s_dfile *df)
483   static int
484   writeBSDF(const char *caller, ezxml_t fl)
485   {
486 <        char    *xml = ezxml_toxml(fl);
486 >        char    *xml = ezxml_toxml(fl);         /* store XML in string */
487          int     ei, i;
488                                                  /* locate trailer */
489          for (ei = strlen(xml)-strlen("</Layer></Optical></WindowElement>");
# Line 477 | Line 507 | writeBSDF(const char *caller, ezxml_t fl)
507                          return 0;
508                  }
509          fputs(xml+ei, stdout);                  /* write trailer */
510 <        free(xml);
510 >        free(xml);                              /* free string */
511 >        fputc('\n', stdout);
512          return (fflush(stdout) == 0);
513   }
514  
# Line 485 | Line 516 | writeBSDF(const char *caller, ezxml_t fl)
516   static int
517   wrapBSDF(const char *caller)
518   {
519 <        const char      *xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
519 >        const char      *xml_path = xml_input;
520          ezxml_t         fl, wtl;
521                                          /* load previous XML/template */
522 <        if (xml_path == NULL) {
523 <                fprintf(stderr, "%s: cannot find XML file named '%s'\n",
524 <                                caller, xml_input==NULL ? "NULL" : xml_input);
525 <                return 0;
522 >        if (xml_input == stdin_name) {
523 >                fl = ezxml_parse_fp(stdin);
524 >        } else if (xml_input[0] == '!') {
525 >                FILE    *pfp = popen(xml_input+1, "r");
526 >                if (pfp == NULL) {
527 >                        fprintf(stderr, "%s: cannot start process '%s'\n",
528 >                                        caller, xml_input);
529 >                        return 0;
530 >                }
531 >                fl = ezxml_parse_fp(pfp);
532 >                if (pclose(pfp)) {
533 >                        fprintf(stderr, "%s: error running '%s'\n",
534 >                                        caller, xml_input);
535 >                        return 0;
536 >                }
537 >        } else {
538 >                xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
539 >                if (xml_path == NULL) {
540 >                        fprintf(stderr, "%s: cannot find XML file named '%s'\n",
541 >                                        caller, xml_input==NULL ? "NULL" : xml_input);
542 >                        return 0;
543 >                }
544 >                fl = ezxml_parse_file(xml_path);
545          }
496        fl = ezxml_parse_file(xml_path);
546          if (fl == NULL) {
547 <                fprintf(stderr, "%s: cannot open XML path '%s'\n",
499 <                                caller, xml_path);
547 >                fprintf(stderr, "%s: cannot load XML '%s'\n", caller, xml_path);
548                  return 0;
549          }
550          if (ezxml_error(fl)[0]) {
551 <                fprintf(stderr, "%s: error in XML %s: %s\n", caller, xml_path,
551 >                fprintf(stderr, "%s: error in XML '%s': %s\n", caller, xml_path,
552                                  ezxml_error(fl));
553                  goto failure;
554          }
# Line 522 | Line 570 | wrapBSDF(const char *caller)
570                  goto failure;
571          }
572                                          /* make material assignments */
573 <        if (!mat_assignments(caller, xml_path, wtl)) {
573 >        if (!mat_assignments(caller, xml_path, wtl))
574                  goto failure;
527        }
575          if (mgf_geometry != NULL) {     /* add geometry if specified */
576                  ezxml_t geom = ezxml_child(wtl, "Geometry");
577                  if (geom == NULL)
578 <                        geom = ezxml_add_child(wtl, "Geometry", 0);
578 >                        geom = ezxml_add_child(wtl, "Geometry", strlen(wtl->txt));
579                  ezxml_set_attr(geom, "format", "MGF");
580                  geom = ezxml_child(geom, "MGFblock");
581                  if (geom == NULL) {
582                          geom = ezxml_child(wtl, "Geometry");
583 <                        geom = ezxml_add_child(geom, "MGFblock", strlen(geom->txt));
583 >                        geom = ezxml_add_child(geom, "MGFblock", 0);
584                  }
585                  ezxml_set_attr(geom, "unit", attr_unit);
586                  ezxml_set_txt(geom, input2str(mgf_geometry));
# Line 542 | Line 589 | wrapBSDF(const char *caller)
589          }
590                                          /* check basis */
591          if (angle_basis != ABdefault) {
592 +                size_t  offset = 0;
593                  ezxml_t ab, dd = ezxml_child(wtl, "DataDefinition");
594 <                if (dd == NULL) {
595 <                        dd = ezxml_add_child(wtl, "DataDefinition", 0);
596 <                } else {
549 <                        if (ezxml_child(dd, "DataDefinition") != NULL)
550 <                                fprintf(stderr,
594 >                if (dd != NULL) {
595 >                        offset = dd->off;
596 >                        fprintf(stderr,
597                  "%s: warning - replacing existing <DataDefinition> in '%s'\n",
598                                                  caller, xml_path);
599 <                        while (dd->child != NULL)
600 <                                ezxml_remove(dd->child);
601 <                }
602 <                ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
599 >                        ezxml_remove(dd);
600 >                } else
601 >                        offset = strlen(wtl->txt);
602 >                dd = ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
603                                          strlen(basis_definition[angle_basis])),
604 <                                dd, 0);
604 >                                wtl, offset);
605                  if ((ab = ezxml_child(dd, "AngleBasis")) != NULL &&
606                                  !finish_angle_basis(ab))
607                          goto failure;
# Line 580 | Line 626 | UsageExit(const char *pname)
626   {
627          fputs("Usage: ", stderr);
628          fputs(pname, stderr);
629 <        fputs(" [options] [input.xml]\n", stderr);
629 >        fputs(" [-W][-a {kf|kh|kq|t3|t4}][-u unit][-g geom][-f 'x=string;y=string']", stderr);
630 >        fputs(" [-s spectr][-tb inp][-tf inp][-rb inp][-rf inp]", stderr);
631 >        fputs(" [input.xml]\n", stderr);
632          exit(1);
633   }
634  
# Line 617 | Line 665 | main(int argc, char *argv[])
665                                                  argv[0]);
666                                  return 1;
667                          }
668 <                        if (strstr(argv[i], legal_units) == NULL) {
669 <                                fprintf(stderr, "%s: unit must be one of (%s)\n",
668 >                        if (strstr(legal_units, argv[i]) == NULL) {
669 >                                fprintf(stderr, "%s: -u unit must be one of (%s)\n",
670                                                  argv[0], legal_units);
671                                  return 1;
672                          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines