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.3 by greg, Sun Apr 27 06:08:03 2003 UTC vs.
Revision 1.10 by greg, Thu Nov 6 05:39:33 2003 UTC

# Line 7 | Line 7 | static const char RCSid[] = "$Id$";
7   *     9/11/87
8   */
9  
10 #include  <stdio.h>
11
10   #include  <stdlib.h>
11 <
11 > #include  <stdio.h>
12 > #include  <string.h>
13   #include  <math.h>
15
14   #include  <ctype.h>
15  
16 + #include  "platform.h"
17   #include  "calcomp.h"
18 + #include  "rterror.h"
19  
20 #ifdef  CPM
21 #define  getc           agetc   /* text files only, right? */
22 #endif
23
20   #define  isnum(c)       (isdigit(c) || (c)=='-' || (c)=='.' \
21                                  || (c)=='+' || (c)=='e' || (c)=='E')
22  
# Line 58 | 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 < extern char  *strcpy(), *emalloc(), *savestr();
58 < struct strvar  *getsvar();
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);
61 > static void execute(char *file);
62 > static void initinp(FILE *fp);
63 > static void svpreset(char *eqn);
64 > static void readfmt(char *spec, int output);
65 > static int readfield(char **pp);
66 > 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 88 | Line 96 | struct {
96   } ipb;                          /* circular lookahead buffer */
97  
98  
99 < main(argc, argv)
100 < int  argc;
101 < char  *argv[];
99 > int
100 > main(
101 > int  argc,
102 > char  *argv[]
103 > )
104   {
105          int  i;
106  
# Line 101 | Line 111 | char  *argv[];
111          biggerlib();
112   #endif
113          varset("PI", ':', 3.14159265358979323846);
114 +        funset("in", 1, '=', &l_in);
115  
116          for (i = 1; i < argc && argv[i][0] == '-'; i++)
117                  switch (argv[i][1]) {
# Line 139 | Line 150 | char  *argv[];
150                                          nbicols = atoi(argv[i]+3);
151                                  else
152                                          nbicols = 1;
153 +                                if (nbicols*sizeof(double) > INBSIZ) {
154 +                                        eputs(argv[0]);
155 +                                        eputs(": too many input columns\n");
156 +                                        quit(1);
157 +                                }
158                                  break;
159                          case 'f':
160                                  if (isdigit(argv[i][3]))
161                                          nbicols = -atoi(argv[i]+3);
162                                  else
163                                          nbicols = -1;
164 +                                if (-nbicols*sizeof(float) > INBSIZ) {
165 +                                        eputs(argv[0]);
166 +                                        eputs(": too many input columns\n");
167 +                                        quit(1);
168 +                                }
169                                  break;
170                          default:
171                                  goto userr;
# Line 200 | Line 221 | eputs(" [-b][-l][-n][-w][-u][-tS][-s svar=sval][-e exp
221   }
222  
223  
224 < nbsynch()               /* non-blank starting synch character */
224 > static void
225 > nbsynch(void)               /* non-blank starting synch character */
226   {
227          if (inpfmt == NULL || (inpfmt->type & F_TYP) != T_LIT)
228                  return;
# Line 211 | Line 233 | nbsynch()               /* non-blank starting synch ch
233   }
234  
235  
236 < int
237 < getinputrec(fp)         /* get next input record */
238 < FILE  *fp;
236 > static int
237 > getinputrec(            /* get next input record */
238 > FILE  *fp
239 > )
240   {
241          if (inpfmt != NULL)
242                  return(getrec());
# Line 227 | Line 250 | FILE  *fp;
250   }
251  
252  
253 < execute(file)           /* process a file */
254 < char  *file;
253 > static void
254 > execute(           /* process a file */
255 > char  *file
256 > )
257   {
258          int  conditional = vardefined("cond");
259          long  nrecs = 0;
# Line 258 | Line 283 | char  *file;
283   }
284  
285  
286 < putout()                /* produce an output record */
286 > static void
287 > putout(void)                /* produce an output record */
288   {
263        extern void  chanset(), bchanset();
289  
290          colpos = 0;
291          if (outfmt != NULL)
# Line 269 | Line 294 | putout()                /* produce an output record */
294                  chanout(bchanset);
295          else
296                  chanout(chanset);
297 <        if (colpos && !bchanset)
297 >        if (colpos && !bocols)
298                  putchar('\n');
299          if (unbuff)
300                  fflush(stdout);
301   }
302  
303  
304 + static double
305 + l_in(char *funame)      /* function call for $channel */
306 + {
307 +        int  n;
308 +        register char  *cp;
309 +                        /* get argument as integer */
310 +        n = (int)(argument(1) + .5);
311 +        if (n != 0)     /* return channel value */
312 +                return(chanvalue(n));
313 +                        /* determine number of channels */
314 +        if (noinput || inpfmt != NULL)
315 +                return(0);
316 +        if (nbicols > 0)
317 +                return(nbicols);
318 +        if (nbicols < 0)
319 +                return(-nbicols);
320 +        cp = inpbuf;    /* need to count */
321 +        for (n = 0; *cp; )
322 +                if (blnkeq && isspace(sepchar)) {
323 +                        while (isspace(*cp))
324 +                                cp++;
325 +                        n += *cp != '\0';
326 +                        while (*cp && !isspace(*cp))
327 +                                cp++;
328 +                } else {
329 +                        n += *cp != '\n';
330 +                        while (*cp && *cp++ != sepchar)
331 +                                ;
332 +                }
333 +        return(n);
334 + }
335 +
336   double
337 < chanvalue(n)            /* return value for column n */
338 < int  n;
337 > chanvalue(            /* return value for column n */
338 > int  n
339 > )
340   {
341          int  i;
342          register char  *cp;
# Line 329 | Line 387 | int  n;
387  
388  
389   void
390 < chanset(n, v)                   /* output column n */
391 < int  n;
392 < double  v;
390 > chanset(                   /* output column n */
391 > int  n,
392 > double  v
393 > )
394   {
395          if (colpos == 0)                /* no leading separator */
396                  colpos = 1;
# Line 344 | Line 403 | double  v;
403  
404  
405   void
406 < bchanset(n, v)                   /* output binary channel n */
407 < int  n;
408 < double  v;
406 > bchanset(                   /* output binary channel n */
407 > int  n,
408 > double  v
409 > )
410   {
411          static char     zerobuf[sizeof(double)];
412  
# Line 363 | Line 423 | double  v;
423   }
424  
425  
426 < readfmt(spec, output)                   /* read record format */
427 < char  *spec;
428 < int  output;
426 > static void
427 > readfmt(                   /* read record format */
428 > char  *spec,
429 > int  output
430 > )
431   {
432          int  fd;
433          char  *inptr;
# Line 429 | Line 491 | int  output;
491   }
492  
493  
494 < int
495 < readfield(pp)                   /* get next field in format */
496 < register char  **pp;
494 > static int
495 > readfield(                   /* get next field in format */
496 > register char  **pp
497 > )
498   {
499          int  type = F_NUL;
500          int  width = 0;
# Line 496 | Line 559 | register char  **pp;
559  
560  
561   struct strvar *
562 < getsvar(svname)                         /* get string variable */
563 < char  *svname;
562 > getsvar(                         /* get string variable */
563 > char  *svname
564 > )
565   {
566          register struct strvar  *sv;
567          
# Line 513 | Line 577 | char  *svname;
577   }
578  
579  
580 < svpreset(eqn)                    /* preset a string variable */
581 < char  *eqn;
580 > static void
581 > svpreset(                    /* preset a string variable */
582 > char  *eqn
583 > )
584   {
585          register struct strvar  *sv;
586          register char  *val;
# Line 533 | Line 599 | char  *eqn;
599   }
600  
601  
602 < clearrec()                      /* clear input record variables */
602 > static void
603 > clearrec(void)                  /* clear input record variables */
604   {
605          register struct field  *f;
606  
# Line 552 | Line 619 | clearrec()                     /* clear input record variables */
619   }
620  
621  
622 < getrec()                                /* get next record from file */
622 > static int
623 > getrec(void)                                /* get next record from file */
624   {
625          int  eatline;
626          register struct field  *f;
# Line 585 | Line 653 | getrec()                                /* get next re
653   }
654  
655  
656 < getfield(f)                             /* get next field */
657 < register struct field  *f;
656 > static int
657 > getfield(                             /* get next field */
658 > register struct field  *f
659 > )
660   {
661 <        static char  buf[MAXWORD+1];            /* no recursion! */
661 >        static char  buf[RMAXWORD+1];            /* no recursion! */
662          int  delim, inword;
663          double  d;
664          char  *np;
# Line 621 | Line 691 | register struct field  *f;
691                          delim = f->next->f.sl[0];
692                  cp = buf;
693                  do {
694 <                        if (ipb.chr == EOF)
694 >                        if (ipb.chr == EOF || ipb.chr == '\n')
695                                  inword = 0;
696                          else if (blnkeq && delim != EOF)
697                                  inword = isblnk(delim) ?
# Line 633 | Line 703 | register struct field  *f;
703                                  *cp++ = ipb.chr;
704                                  scaninp();
705                          }
706 <                } while (inword && cp < &buf[MAXWORD]);
706 >                } while (inword && cp < &buf[RMAXWORD]);
707                  *cp = '\0';
708                  if (f->f.sv->val == NULL)
709                          f->f.sv->val = savqstr(buf);    /* first setting */
# Line 662 | Line 732 | register struct field  *f;
732                                  *cp++ = ipb.chr;
733                                  scaninp();
734                          }
735 <                } while (inword && cp < &buf[MAXWORD]);
735 >                } while (inword && cp < &buf[RMAXWORD]);
736                  *cp = '\0';
737                  d = np==NULL ? 0. : atof(np);
738                  if (!vardefined(f->f.nv))
# Line 672 | Line 742 | register struct field  *f;
742                          return(-1);                     /* doesn't match! */
743                  return(0);
744          }
745 +        return -1; /* pro forma return */
746   }
747  
748  
749 < putrec()                                /* output a record */
749 > static void
750 > putrec(void)                                /* output a record */
751   {
752          char  fmt[32];
753          register int  n;
# Line 725 | Line 797 | putrec()                                /* output a re
797   }
798  
799  
800 < initinp(fp)                     /* prepare lookahead buffer */
801 < FILE  *fp;
800 > static void
801 > initinp(FILE  *fp)                     /* prepare lookahead buffer */
802 >
803   {
804          ipb.fin = fp;
805          ipb.beg = ipb.end = inpbuf;
# Line 736 | Line 809 | FILE  *fp;
809   }
810  
811  
812 < scaninp()                       /* scan next character */
812 > static void
813 > scaninp(void)                       /* scan next character */
814   {
815          if (ipb.chr == EOF)
816                  return;
# Line 755 | Line 829 | scaninp()                       /* scan next character
829   }
830  
831  
832 < advinp()                        /* move home to current position */
832 > static void
833 > advinp(void)                        /* move home to current position */
834   {
835          ipb.beg = ipb.pos;
836   }
837  
838  
839 < resetinp()                      /* rewind position and advance 1 */
839 > static void
840 > resetinp(void)                      /* rewind position and advance 1 */
841   {
842          if (ipb.beg == NULL)            /* full */
843                  ipb.beg = ipb.end;
# Line 774 | Line 850 | resetinp()                      /* rewind position and
850  
851  
852   void
853 < eputs(msg)
778 < char  *msg;
853 > eputs(char  *msg)
854   {
855          fputs(msg, stderr);
856   }
857  
858  
859   void
860 < wputs(msg)
786 < char  *msg;
860 > wputs(char  *msg)
861   {
862          if (!nowarn)
863                  eputs(msg);
# Line 791 | Line 865 | char  *msg;
865  
866  
867   void
868 < quit(code)
795 < int  code;
868 > quit(int  code)
869   {
870          exit(code);
871   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines