--- ray/src/util/eplus_idf.c 2014/02/01 02:13:24 2.2 +++ ray/src/util/eplus_idf.c 2014/02/12 17:40:07 2.8 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: eplus_idf.c,v 2.2 2014/02/01 02:13:24 greg Exp $"; +static const char RCSid[] = "$Id: eplus_idf.c,v 2.8 2014/02/12 17:40:07 greg Exp $"; #endif /* * eplus_idf.c @@ -20,13 +20,13 @@ static const char RCSid[] = "$Id: eplus_idf.c,v 2.2 20 #define getc getc_unlocked #endif -/* Create a new parameter with empty field list (comment optional) */ -IDF_PARAMETER * -idf_newparam(IDF_LOADED *idf, const char *pname, const char *comm, - IDF_PARAMETER *prev) +/* Create a new object with empty field list (comment optional) */ +IDF_OBJECT * +idf_newobject(IDF_LOADED *idf, const char *pname, const char *comm, + IDF_OBJECT *prev) { LUENT *pent; - IDF_PARAMETER *pnew; + IDF_OBJECT *pnew; if ((idf == NULL) | (pname == NULL)) return(NULL); @@ -34,19 +34,20 @@ idf_newparam(IDF_LOADED *idf, const char *pname, const pent = lu_find(&idf->ptab, pname); if (pent == NULL) return(NULL); - if (pent->key == NULL) { /* new parameter name/type? */ + if (pent->key == NULL) { /* new object name/type? */ pent->key = (char *)malloc(strlen(pname)+1); if (pent->key == NULL) return(NULL); strcpy(pent->key, pname); } - pnew = (IDF_PARAMETER *)malloc(sizeof(IDF_PARAMETER)+strlen(comm)); + pnew = (IDF_OBJECT *)malloc(sizeof(IDF_OBJECT)+strlen(comm)); if (pnew == NULL) return(NULL); strcpy(pnew->rem, comm); + pnew->nfield = 0; pnew->flist = NULL; pnew->pname = pent->key; /* add to table */ - pnew->pnext = (IDF_PARAMETER *)pent->data; + pnew->pnext = (IDF_OBJECT *)pent->data; pent->data = (char *)pnew; pnew->dnext = NULL; /* add to file list */ if (prev != NULL || (prev = idf->plast) != NULL) { @@ -61,9 +62,9 @@ idf_newparam(IDF_LOADED *idf, const char *pname, const return(pnew); } -/* Add a field to the given parameter and follow with the given text */ +/* Add a field to the given object and follow with the given text */ int -idf_addfield(IDF_PARAMETER *param, const char *fval, const char *comm) +idf_addfield(IDF_OBJECT *param, const char *fval, const char *comm) { int fnum = 1; /* returned argument number */ IDF_FIELD *fnew, *flast; @@ -76,13 +77,13 @@ idf_addfield(IDF_PARAMETER *param, const char *fval, c if (fnew == NULL) return(0); fnew->next = NULL; - cp = fnew->arg; /* copy argument and comments */ + cp = fnew->val; /* copy value and comments */ while ((*cp++ = *fval++)) ; fnew->rem = cp; while ((*cp++ = *comm++)) ; - /* add to parameter's field list */ + /* add to object's field list */ if ((flast = param->flist) != NULL) { ++fnum; while (flast->next != NULL) { @@ -94,21 +95,36 @@ idf_addfield(IDF_PARAMETER *param, const char *fval, c param->flist = fnew; else flast->next = fnew; + param->nfield++; return(fnum); } -/* Delete the specified parameter from loaded IDF */ +/* Retrieve the indexed field from object (first field index is 1) */ +IDF_FIELD * +idf_getfield(IDF_OBJECT *param, int fn) +{ + IDF_FIELD *fld; + + if ((param == NULL) | (fn <= 0)) + return(NULL); + fld = param->flist; + while ((--fn > 0) & (fld != NULL)) + fld = fld->next; + return(fld); +} + +/* Delete the specified object from loaded IDF */ int -idf_delparam(IDF_LOADED *idf, IDF_PARAMETER *param) +idf_delobject(IDF_LOADED *idf, IDF_OBJECT *param) { LUENT *pent; - IDF_PARAMETER *pptr, *plast; + IDF_OBJECT *pptr, *plast; if ((idf == NULL) | (param == NULL)) return(0); - /* remove from parameter table */ + /* remove from object table */ pent = lu_find(&idf->ptab, param->pname); - for (plast = NULL, pptr = (IDF_PARAMETER *)pent->data; + for (plast = NULL, pptr = (IDF_OBJECT *)pent->data; pptr != NULL; plast = pptr, pptr = pptr->pnext) if (pptr == param) break; @@ -120,11 +136,9 @@ idf_delparam(IDF_LOADED *idf, IDF_PARAMETER *param) plast->pnext = param->pnext; /* remove from global list */ for (plast = NULL, pptr = idf->pfirst; - pptr != NULL; plast = pptr, pptr = pptr->dnext) - if (pptr == param) - break; - if (pptr == NULL) - return(0); + pptr != param; plast = pptr, pptr = pptr->dnext) + if (pptr == NULL) + return(0); if (plast == NULL) idf->pfirst = param->dnext; else @@ -137,18 +151,50 @@ idf_delparam(IDF_LOADED *idf, IDF_PARAMETER *param) param->flist = fdel->next; free(fdel); } - free(param); /* free parameter struct */ + free(param); /* free object struct */ return(1); } -/* Get a named parameter list */ -IDF_PARAMETER * -idf_getparam(IDF_LOADED *idf, const char *pname) +/* Move the specified object to the given position in the IDF */ +int +idf_movobject(IDF_LOADED *idf, IDF_OBJECT *param, IDF_OBJECT *prev) { + IDF_OBJECT *pptr, *plast; + + if ((idf == NULL) | (param == NULL)) + return(0); + /* quick check if already there */ + if (param == (prev==NULL ? idf->pfirst : prev->dnext)) + return(1); + /* find in IDF list, first*/ + for (plast = NULL, pptr = idf->pfirst; + pptr != param; plast = pptr, pptr = pptr->dnext) + if (pptr == NULL) + return(0); + if (plast == NULL) + idf->pfirst = param->dnext; + else + plast->dnext = param->dnext; + if (idf->plast == param) + idf->plast = plast; + if (prev == NULL) { /* means they want it at beginning */ + param->dnext = idf->pfirst; + idf->pfirst = param; + } else { + param->dnext = prev->dnext; + prev->dnext = param; + } + return(1); +} + +/* Get a named object list */ +IDF_OBJECT * +idf_getobject(IDF_LOADED *idf, const char *pname) +{ if ((idf == NULL) | (pname == NULL)) return(NULL); - return((IDF_PARAMETER *)lu_find(&idf->ptab,pname)->data); + return((IDF_OBJECT *)lu_find(&idf->ptab,pname)->data); } /* Read an argument including terminating ',' or ';' -- return which */ @@ -186,10 +232,9 @@ idf_read_comment(char *buf, int len, FILE *fp) buf = &dummyc; len = 1; } - while ((c = getc(fp)) != EOF && isspace(c) | incomm) { - if (c == '!') - ++incomm; - else if (c == '\n') + while ((c = getc(fp)) != EOF && + (isspace(c) || (incomm += (c == '!')))) { + if (c == '\n') incomm = 0; if (cp-buf < len-1) *cp++ = c; @@ -199,25 +244,25 @@ idf_read_comment(char *buf, int len, FILE *fp) ungetc(c, fp); } -/* Read a parameter and fields from an open file and add to end of list */ -IDF_PARAMETER * -idf_readparam(IDF_LOADED *idf, FILE *fp) +/* Read a object and fields from an open file and add to end of list */ +IDF_OBJECT * +idf_readobject(IDF_LOADED *idf, FILE *fp) { char abuf[IDF_MAXARGL], cbuf[IDF_MAXLINE]; int delim; - IDF_PARAMETER *pnew; + IDF_OBJECT *pnew; if ((delim = idf_read_argument(abuf, fp, 1)) == EOF) return(NULL); idf_read_comment(cbuf, IDF_MAXLINE, fp); - pnew = idf_newparam(idf, abuf, cbuf, NULL); + pnew = idf_newobject(idf, abuf, cbuf, NULL); while (delim == ',') if ((delim = idf_read_argument(abuf, fp, 1)) != EOF) { idf_read_comment(cbuf, IDF_MAXLINE, fp); idf_addfield(pnew, abuf, cbuf); } if (delim != ';') - fprintf(stderr, "Expected ';' at end of parameter list\n"); + fputs("Expected ';' at end of object list!\n", stderr); return(pnew); } @@ -256,11 +301,36 @@ idf_create(const char *hdrcomm) return(idf); } +/* Add comment(s) to header */ +int +idf_add2hdr(IDF_LOADED *idf, const char *hdrcomm) +{ + int olen, len; + + if ((idf == NULL) | (hdrcomm == NULL)) + return(0); + len = strlen(hdrcomm); + if (!len) + return(0); + if (idf->hrem == NULL) + olen = 0; + else + olen = strlen(idf->hrem); + if (olen) + idf->hrem = (char *)realloc(idf->hrem, olen+len+1); + else + idf->hrem = (char *)malloc(len+1); + if (idf->hrem == NULL) + return(0); + strcpy(idf->hrem+olen, hdrcomm); + return(1); +} + /* Load an Input Data File */ IDF_LOADED * idf_load(const char *fname) { - char *hdrcomm; + char hdrcomm[256*IDF_MAXLINE]; FILE *fp; IDF_LOADED *idf; @@ -269,23 +339,21 @@ idf_load(const char *fname) else if ((fp = fopen(fname, "r")) == NULL) return(NULL); /* read header comments */ - hdrcomm = (char *)malloc(100*IDF_MAXLINE); - idf_read_comment(hdrcomm, 100*IDF_MAXLINE, fp); + idf_read_comment(hdrcomm, sizeof(hdrcomm), fp); idf = idf_create(hdrcomm); /* create IDF struct */ - free(hdrcomm); if (idf == NULL) return(NULL); - /* read each parameter */ - while (idf_readparam(idf, fp) != NULL) + /* read each object */ + while (idf_readobject(idf, fp) != NULL) ; if (fp != stdin) /* close file if not stdin */ fclose(fp); return(idf); /* success! */ } -/* Write a parameter and fields to an open file */ +/* Write a object and fields to an open file */ int -idf_writeparam(IDF_PARAMETER *param, FILE *fp) +idf_writeparam(IDF_OBJECT *param, FILE *fp, int incl_comm) { IDF_FIELD *fptr; @@ -293,21 +361,27 @@ idf_writeparam(IDF_PARAMETER *param, FILE *fp) return(0); fputs(param->pname, fp); fputc(',', fp); - fputs(param->rem, fp); + if (incl_comm) + fputs(param->rem, fp); for (fptr = param->flist; fptr != NULL; fptr = fptr->next) { - fputs(fptr->arg, fp); + if (!incl_comm) + fputs("\n ", fp); + fputs(fptr->val, fp); fputc((fptr->next==NULL ? ';' : ','), fp); - fputs(fptr->rem, fp); + if (incl_comm) + fputs(fptr->rem, fp); } + if (!incl_comm) + fputs("\n\n", fp); return(!ferror(fp)); } /* Write out an Input Data File */ int -idf_write(IDF_LOADED *idf, const char *fname) +idf_write(IDF_LOADED *idf, const char *fname, int incl_comm) { FILE *fp; - IDF_PARAMETER *pptr; + IDF_OBJECT *pptr; if (idf == NULL) return(0); @@ -315,9 +389,10 @@ idf_write(IDF_LOADED *idf, const char *fname) fp = stdout; /* open file if not stdout */ else if ((fp = fopen(fname, "w")) == NULL) return(0); - fputs(idf->hrem, fp); /* write header then parameters */ + if (incl_comm) + fputs(idf->hrem, fp); /* write header then parameters */ for (pptr = idf->pfirst; pptr != NULL; pptr = pptr->dnext) - if (!idf_writeparam(pptr, fp)) { + if (!idf_writeparam(pptr, fp, incl_comm>0)) { fclose(fp); return(0); } @@ -335,6 +410,6 @@ idf_free(IDF_LOADED *idf) if (idf->hrem != NULL) free(idf->hrem); while (idf->pfirst != NULL) - idf_delparam(idf, idf->pfirst); + idf_delobject(idf, idf->pfirst); lu_done(&idf->ptab); }