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

Comparing ray/src/cal/rcalc.c (file contents):
Revision 1.5 by schorsch, Sun Jun 8 12:03:09 2003 UTC vs.
Revision 1.24 by greg, Sat May 10 01:27:14 2014 UTC

# Line 8 | Line 8 | static const char RCSid[] = "$Id$";
8   */
9  
10   #include  <stdlib.h>
11 #include  <stdio.h>
12 #include  <string.h>
11   #include  <math.h>
12   #include  <ctype.h>
13  
14   #include  "platform.h"
15 + #include  "rterror.h"
16 + #include  "rtmisc.h"
17 + #include  "rtio.h"
18   #include  "calcomp.h"
19  
19 #ifdef  CPM
20 #define  getc           agetc   /* text files only, right? */
21 #endif
22
20   #define  isnum(c)       (isdigit(c) || (c)=='-' || (c)=='.' \
21                                  || (c)=='+' || (c)=='e' || (c)=='E')
22  
23   #define  isblnk(c)      (igneol ? isspace(c) : (c)==' '||(c)=='\t')
24  
25 < #define  INBSIZ         4096    /* longest record */
25 > #define  INBSIZ         16384   /* longest record */
26   #define  MAXCOL         32      /* number of columns recorded */
27  
28                                  /* field type specifications */
# Line 57 | Line 54 | struct field {                  /* record format struc
54   #define  savqstr(s)     strcpy(emalloc(strlen(s)+1),s)
55   #define  freqstr(s)     efree(s)
56  
57 + static int getinputrec(FILE *fp);
58   static void scaninp(void), advinp(void), resetinp(void);
59   static void putrec(void), putout(void), nbsynch(void);
60   static int getrec(void);
# Line 69 | Line 67 | static int getfield(struct field *f);
67   static void chanset(int n, double v);
68   static void bchanset(int n, double v);
69   static struct strvar* getsvar(char *svname);
70 + static double l_in(char *);
71  
72   struct field  *inpfmt = NULL;   /* input record format */
73   struct field  *outfmt = NULL;   /* output record structure */
# Line 76 | Line 75 | struct strvar  *svhead = NULL;  /* string variables */
75  
76   int  blnkeq = 1;                /* blanks compare equal? */
77   int  igneol = 0;                /* ignore end of line? */
78 + int  passive = 0;               /* passive mode (transmit unmatched input) */
79   char  sepchar = '\t';           /* input/output separator */
80   int  noinput = 0;               /* no input records? */
81 + int  itype = 'a';               /* input type (a/f/F/d/D) */
82   int  nbicols = 0;               /* number of binary input columns */
83 < int  bocols = 0;                /* produce binary output columns */
83 > int  otype = 'a';               /* output format (a/f/F/d/D) */
84   char  inpbuf[INBSIZ];           /* input buffer */
85   double  colval[MAXCOL];         /* input column values */
86   unsigned long  colflg = 0;      /* column retrieved flags */
# Line 103 | Line 104 | int  argc,
104   char  *argv[]
105   )
106   {
107 +        char  *fpath;
108          int  i;
109  
110          esupport |= E_VARIABLE|E_FUNCTION|E_INCHAN|E_OUTCHAN|E_RCONST;
# Line 112 | Line 114 | char  *argv[]
114          biggerlib();
115   #endif
116          varset("PI", ':', 3.14159265358979323846);
117 +        funset("in", 1, '=', &l_in);
118  
119          for (i = 1; i < argc && argv[i][0] == '-'; i++)
120                  switch (argv[i][1]) {
# Line 121 | Line 124 | char  *argv[]
124                  case 'l':
125                          igneol = !igneol;
126                          break;
127 +                case 'p':
128 +                        passive = !passive;
129 +                        break;
130                  case 't':
131                          sepchar = argv[i][2];
132                          break;
# Line 128 | Line 134 | char  *argv[]
134                          svpreset(argv[++i]);
135                          break;
136                  case 'f':
137 <                        fcompile(argv[++i]);
137 >                        fpath = getpath(argv[++i], getrlibpath(), 0);
138 >                        if (fpath == NULL) {
139 >                                eputs(argv[0]);
140 >                                eputs(": cannot find file '");
141 >                                eputs(argv[i]);
142 >                                eputs("'\n");
143 >                                quit(1);
144 >                        }
145 >                        fcompile(fpath);
146                          break;
147                  case 'e':
148                          scompile(argv[++i], NULL, 0);
# Line 139 | Line 153 | char  *argv[]
153                  case 'i':
154                          switch (argv[i][2]) {
155                          case '\0':
156 +                                itype = 'a';
157                                  nbicols = 0;
158                                  readfmt(argv[++i], 0);
159                                  break;
160                          case 'a':
161 +                                itype = 'a';
162                                  nbicols = 0;
163                                  break;
164                          case 'd':
165 +                        case 'D':
166 +                                itype = argv[i][2];
167                                  if (isdigit(argv[i][3]))
168                                          nbicols = atoi(argv[i]+3);
169                                  else
170                                          nbicols = 1;
171 +                                if (nbicols*sizeof(double) > INBSIZ) {
172 +                                        eputs(argv[0]);
173 +                                        eputs(": too many input columns\n");
174 +                                        quit(1);
175 +                                }
176                                  break;
177                          case 'f':
178 +                        case 'F':
179 +                                itype = argv[i][2];
180                                  if (isdigit(argv[i][3]))
181 <                                        nbicols = -atoi(argv[i]+3);
181 >                                        nbicols = atoi(argv[i]+3);
182                                  else
183 <                                        nbicols = -1;
183 >                                        nbicols = 1;
184 >                                if (nbicols*sizeof(float) > INBSIZ) {
185 >                                        eputs(argv[0]);
186 >                                        eputs(": too many input columns\n");
187 >                                        quit(1);
188 >                                }
189                                  break;
190                          default:
191                                  goto userr;
# Line 164 | Line 194 | char  *argv[]
194                  case 'o':
195                          switch (argv[i][2]) {
196                          case '\0':
197 <                                bocols = 0;
197 >                                otype = 'a';
198                                  readfmt(argv[++i], 1);
199                                  break;
200                          case 'a':
201 <                                bocols = 0;
201 >                                otype = 'a';
202                                  break;
203                          case 'd':
204 <                                bocols = 1;
175 <                                break;
204 >                        case 'D':
205                          case 'f':
206 <                                bocols = -1;
206 >                        case 'F':
207 >                                otype = argv[i][2];
208                                  break;
209 +                        default:
210 +                                goto userr;
211                          }
212                          break;
213                  case 'w':
# Line 188 | Line 220 | char  *argv[]
220                  userr:
221                          eputs("Usage: ");
222                          eputs(argv[0]);
223 < eputs(" [-b][-l][-n][-w][-u][-tS][-s svar=sval][-e expr][-f source][-i infmt][-o outfmt] [file]\n");
223 > eputs(" [-b][-l][-n][-p][-w][-u][-tS][-s svar=sval][-e expr][-f source][-i infmt][-o outfmt] [file]\n");
224                          quit(1);
225                  }
226 <
226 >        if (otype != 'a')
227 >                SET_FILE_BINARY(stdout);
228 > #ifdef getc_unlocked            /* avoid lock/unlock overhead */
229 >        flockfile(stdout);
230 > #endif
231          if (noinput) {          /* produce a single output record */
232 +                if (i < argc) {
233 +                        eputs(argv[0]);
234 +                        eputs(": file argument(s) incompatible with -n\n");
235 +                        quit(1);
236 +                }
237                  eclock++;
238                  putout();
239                  quit(0);
240          }
200
241          if (blnkeq)             /* for efficiency */
242                  nbsynch();
243  
# Line 208 | Line 248 | eputs(" [-b][-l][-n][-w][-u][-tS][-s svar=sval][-e exp
248                          execute(argv[i]);
249          
250          quit(0);
251 +        return 0; /* pro forma return */
252   }
253  
254  
# Line 223 | Line 264 | nbsynch(void)               /* non-blank starting sync
264   }
265  
266  
267 < int
267 > static int
268   getinputrec(            /* get next input record */
269   FILE  *fp
270   )
271   {
272          if (inpfmt != NULL)
273                  return(getrec());
274 <        if (nbicols > 0)
275 <                return(fread(inpbuf, sizeof(double),
276 <                                        nbicols, fp) == nbicols);
277 <        if (nbicols < 0)
278 <                return(fread(inpbuf, sizeof(float),
279 <                                        -nbicols, fp) == -nbicols);
274 >        if (tolower(itype) == 'd') {
275 >                if (fread(inpbuf, sizeof(double), nbicols, fp) != nbicols)
276 >                        return(0);
277 >                if (itype == 'D')
278 >                        swap64(inpbuf, nbicols);
279 >                return(1);
280 >        }
281 >        if (tolower(itype) == 'f') {
282 >                if (fread(inpbuf, sizeof(float), nbicols, fp) != nbicols)
283 >                        return(0);
284 >                if (itype == 'F')
285 >                        swap32(inpbuf, nbicols);
286 >                return(1);
287 >        }
288          return(fgets(inpbuf, INBSIZ, fp) != NULL);
289   }
290  
# Line 257 | Line 306 | char  *file
306                  eputs(": cannot open\n");
307                  quit(1);
308          }
309 +        if (itype != 'a')
310 +                SET_FILE_BINARY(fp);
311 + #ifdef getc_unlocked            /* avoid lock/unlock overhead */
312 +        flockfile(fp);
313 + #endif
314          if (inpfmt != NULL)
315                  initinp(fp);
316          
317          while (getinputrec(fp)) {
318                  varset("recno", '=', (double)++nrecs);
319 +                varset("outno", '=', (double)(nout+1));
320                  colflg = 0;
321                  eclock++;
322                  if (!conditional || varvalue("cond") > 0.0) {
268                        varset("outno", '=', (double)++nout);
323                          putout();
324 +                        ++nout;
325                  }
326          }
327          fclose(fp);
# Line 280 | Line 335 | putout(void)                /* produce an output recor
335          colpos = 0;
336          if (outfmt != NULL)
337                  putrec();
338 <        else if (bocols)
284 <                chanout(bchanset);
285 <        else
338 >        else if (otype == 'a')
339                  chanout(chanset);
340 <        if (colpos && !bocols)
340 >        else
341 >                chanout(bchanset);
342 >        if (colpos && otype == 'a')
343                  putchar('\n');
344          if (unbuff)
345                  fflush(stdout);
346   }
347  
348  
349 + static double
350 + l_in(char *funame)      /* function call for $channel */
351 + {
352 +        int  n;
353 +        char  *cp;
354 +                        /* get argument as integer */
355 +        n = (int)(argument(1) + .5);
356 +        if (n != 0)     /* return channel value */
357 +                return(chanvalue(n));
358 +                        /* determine number of channels */
359 +        if (noinput || inpfmt != NULL)
360 +                return(0);
361 +        if (nbicols)
362 +                return(nbicols);
363 +        cp = inpbuf;    /* need to count */
364 +        for (n = 0; *cp; )
365 +                if (blnkeq && isspace(sepchar)) {
366 +                        while (isspace(*cp))
367 +                                cp++;
368 +                        n += *cp != '\0';
369 +                        while (*cp && !isspace(*cp))
370 +                                cp++;
371 +                } else {
372 +                        n += *cp != '\n';
373 +                        while (*cp && *cp++ != sepchar)
374 +                                ;
375 +                }
376 +        return(n);
377 + }
378 +
379   double
380   chanvalue(            /* return value for column n */
381   int  n
382   )
383   {
384          int  i;
385 <        register char  *cp;
385 >        char  *cp;
386  
387          if (noinput || inpfmt != NULL) {
388                  eputs("no column input\n");
# Line 307 | Line 392 | int  n
392                  eputs("illegal channel number\n");
393                  quit(1);
394          }
395 <        if (nbicols > 0) {
395 >        if (nbicols) {
396                  if (n > nbicols)
397                          return(0.0);
398 <                cp = inpbuf + (n-1)*sizeof(double);
399 <                return(*(double *)cp);
400 <        }
401 <        if (nbicols < 0) {
317 <                if (n > -nbicols)
318 <                        return(0.0);
398 >                if (tolower(itype) == 'd') {
399 >                        cp = inpbuf + (n-1)*sizeof(double);
400 >                        return(*(double *)cp);
401 >                }
402                  cp = inpbuf + (n-1)*sizeof(float);
403                  return(*(float *)cp);
404          }
# Line 367 | Line 450 | double  v
450   )
451   {
452          static char     zerobuf[sizeof(double)];
453 +        float   fval = v;
454  
455          while (++colpos < n)
456                  fwrite(zerobuf,
457 <                        bocols>0 ? sizeof(double) : sizeof(float),
457 >                        tolower(otype)=='d' ? sizeof(double) : sizeof(float),
458                          1, stdout);
459 <        if (bocols > 0)
459 >        switch (otype) {
460 >        case 'D':
461 >                swap64((char *)&v, 1);
462 >                /* fall through */
463 >        case 'd':
464                  fwrite(&v, sizeof(double), 1, stdout);
465 <        else {
466 <                float   fval = v;
465 >                break;
466 >        case 'F':
467 >                swap32((char *)&fval, 1);
468 >                /* fall through */
469 >        case 'f':
470                  fwrite(&fval, sizeof(float), 1, stdout);
471 +                break;
472          }
473   }
474  
# Line 391 | Line 483 | int  output
483          char  *inptr;
484          struct field  fmt;
485          int  res;
486 <        register struct field  *f;
486 >        struct field  *f;
487                                                  /* check for inline format */
488          for (inptr = spec; *inptr; inptr++)
489                  if (*inptr == '$')
# Line 404 | Line 496 | int  output
496                          eputs(": cannot open\n");
497                          quit(1);
498                  }
499 <                res = read(fd, inpbuf+1, INBSIZ-1);
499 >                res = read(fd, inpbuf+2, INBSIZ-2);
500                  if (res <= 0 || res >= INBSIZ-1) {
501                          eputs(spec);
502                          if (res < 0)
# Line 416 | Line 508 | int  output
508                          quit(1);
509                  }
510                  close(fd);
511 <                (inptr=inpbuf+1)[res] = '\0';
511 >                (inptr=inpbuf+2)[res] = '\0';
512          }
513          f = &fmt;                               /* get fields */
514          while ((res = readfield(&inptr)) != F_NUL) {
# Line 451 | Line 543 | int  output
543  
544   static int
545   readfield(                   /* get next field in format */
546 < register char  **pp
546 > char  **pp
547   )
548   {
549          int  type = F_NUL;
550          int  width = 0;
551 <        register char  *cp;
551 >        char  *cp;
552          
553          cp = inpbuf;
554          while (cp < &inpbuf[INBSIZ-1] && **pp != '\0') {
# Line 521 | Line 613 | getsvar(                         /* get string variabl
613   char  *svname
614   )
615   {
616 <        register struct strvar  *sv;
616 >        struct strvar  *sv;
617          
618          for (sv = svhead; sv != NULL; sv = sv->next)
619                  if (!strcmp(sv->name, svname))
# Line 540 | Line 632 | svpreset(                    /* preset a string variab
632   char  *eqn
633   )
634   {
635 <        register struct strvar  *sv;
636 <        register char  *val;
635 >        struct strvar  *sv;
636 >        char  *val;
637  
638          for (val = eqn; *val != '='; val++)
639                  if (!*val)
# Line 560 | Line 652 | char  *eqn
652   static void
653   clearrec(void)                  /* clear input record variables */
654   {
655 <        register struct field  *f;
655 >        struct field  *f;
656  
657          for (f = inpfmt; f != NULL; f = f->next)
658                  switch (f->type & F_TYP) {
# Line 578 | Line 670 | clearrec(void)                 /* clear input record variables */
670  
671  
672   static int
673 < getrec(void)                                /* get next record from file */
673 > getrec(void)                            /* get next record from file */
674   {
675          int  eatline;
676 <        register struct field  *f;
677 <        
676 >        struct field  *f;
677 >
678          while (ipb.chr != EOF) {
679 <                eatline = !igneol && ipb.chr != '\n';
588 <                if (blnkeq)             /* beware of nbsynch() */
679 >                if (blnkeq) {           /* beware of nbsynch() */
680                          while (isblnk(ipb.chr))
681 <                                scaninp();
681 >                                resetinp();
682 >                        if (ipb.chr == EOF)
683 >                                return(0);
684 >                }
685 >                eatline = (!igneol && ipb.chr != '\n');
686                  clearrec();             /* start with fresh record */
687                  for (f = inpfmt; f != NULL; f = f->next)
688                          if (getfield(f) == -1)
689                                  break;
690                  if (f == NULL) {
691 <                        advinp();
691 >                        advinp();       /* got one! */
692                          return(1);
693                  }
694 <                resetinp();
694 >                resetinp();             /* eat false start */
695                  if (eatline) {          /* eat rest of line */
696                          while (ipb.chr != '\n') {
697                                  if (ipb.chr == EOF)
698                                          return(0);
699 <                                scaninp();
699 >                                resetinp();
700                          }
701 <                        scaninp();
607 <                        advinp();
701 >                        resetinp();
702                  }
703          }
704          return(0);
# Line 613 | Line 707 | getrec(void)                                /* get nex
707  
708   static int
709   getfield(                             /* get next field */
710 < register struct field  *f
710 > struct field  *f
711   )
712   {
713 <        static char  buf[MAXWORD+1];            /* no recursion! */
713 >        static char  buf[RMAXWORD+1];            /* no recursion! */
714          int  delim, inword;
715          double  d;
716          char  *np;
717 <        register char  *cp;
717 >        char  *cp;
718  
719          switch (f->type & F_TYP) {
720          case T_LIT:
# Line 649 | Line 743 | register struct field  *f
743                          delim = f->next->f.sl[0];
744                  cp = buf;
745                  do {
746 <                        if (ipb.chr == EOF)
746 >                        if (ipb.chr == EOF || ipb.chr == '\n')
747                                  inword = 0;
748                          else if (blnkeq && delim != EOF)
749                                  inword = isblnk(delim) ?
# Line 661 | Line 755 | register struct field  *f
755                                  *cp++ = ipb.chr;
756                                  scaninp();
757                          }
758 <                } while (inword && cp < &buf[MAXWORD]);
758 >                } while (inword && cp < &buf[RMAXWORD]);
759                  *cp = '\0';
760                  if (f->f.sv->val == NULL)
761                          f->f.sv->val = savqstr(buf);    /* first setting */
# Line 690 | Line 784 | register struct field  *f
784                                  *cp++ = ipb.chr;
785                                  scaninp();
786                          }
787 <                } while (inword && cp < &buf[MAXWORD]);
787 >                } while (inword && cp < &buf[RMAXWORD]);
788                  *cp = '\0';
789                  d = np==NULL ? 0. : atof(np);
790                  if (!vardefined(f->f.nv))
# Line 707 | Line 801 | register struct field  *f
801   static void
802   putrec(void)                                /* output a record */
803   {
804 <        char  fmt[32];
805 <        register int  n;
806 <        register struct field  *f;
804 >        char  fmt[32], typ[32];
805 >        int  n;
806 >        struct field  *f;
807          int  adlast, adnext;
808 +        double  dv, av;
809          
810          adlast = 0;
811          for (f = outfmt; f != NULL; f = f->next) {
# Line 741 | Line 836 | putrec(void)                                /* output
836                          break;
837                  case T_NUM:
838                          n = f->type & F_WID;
839 +                        typ[0] = (n <= 6) ? 'g' : 'e';
840 +                        typ[1] = '\0';
841 +                        dv = evalue(f->f.ne);
842 +                        if ((av = fabs(dv)) < 1L<<31) {
843 +                                long    iv = (int)(av + .5);
844 +                                if (iv && fabs(av-iv) <= av*1e-14)
845 +                                        strcpy(typ, ".0f");
846 +                        }
847                          if (adlast && adnext)
848 <                                strcpy(fmt, "%g");
848 >                                sprintf(fmt, "%%%s", typ);
849                          else if (adlast)
850 <                                sprintf(fmt, "%%-%dg", n);
850 >                                sprintf(fmt, "%%-%d%s", n, typ);
851                          else
852 <                                sprintf(fmt, "%%%dg", n);
853 <                        printf(fmt, evalue(f->f.ne));
852 >                                sprintf(fmt, "%%%d%s", n, typ);
853 >                        printf(fmt, dv);
854                          adlast = 1;
855                          break;
856                  }
# Line 801 | Line 904 | resetinp(void)                      /* rewind position
904                  ipb.beg = ipb.end;
905          ipb.pos = ipb.beg;
906          ipb.chr = *ipb.pos;
907 +        if (passive)                    /* transmit unmatched character? */
908 +                fputc(ipb.chr, stdout);
909          if (++ipb.beg >= &inpbuf[INBSIZ])
910                  ipb.beg = inpbuf;
911          scaninp();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines