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

Comparing ray/src/common/caldefn.c (file contents):
Revision 2.9 by greg, Tue Mar 28 11:18:52 1995 UTC vs.
Revision 2.14 by greg, Mon Mar 10 17:13:29 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  Store variable definitions.
6   *
# Line 22 | Line 19 | static char SCCSid[] = "$SunId$ LBL";
19   *  4/23/91  Added ':' assignment for constant expressions
20   *
21   *  8/7/91  Added optional context path to append to variable names
22 + *
23 + *  5/17/2001  Fixed clock counter wrapping behavior
24 + *
25 + *  2/19/03     Eliminated conditional compiles in favor of esupport extern.
26   */
27  
28 + #include "copyright.h"
29 +
30   #include  <stdio.h>
31  
32 + #include  <string.h>
33 +
34   #include  <ctype.h>
35  
36   #include  "calcomp.h"
# Line 38 | Line 43 | static char SCCSid[] = "$SunId$ LBL";
43  
44   #define  newnode()      (EPNODE *)ecalloc(1, sizeof(EPNODE))
45  
41 extern char  *ecalloc(), *emalloc(), *savestr(), *strcpy();
42
46   static double  dvalue();
47  
48 + #define  MAXCLOCK       (1L<<31)        /* clock wrap value */
49 +
50   unsigned long  eclock = 0;              /* value storage timer */
51  
52 < static char  context[MAXWORD+1];        /* current context path */
52 > #define  MAXCNTX        1023            /* maximum context length */
53  
54 + static char  context[MAXCNTX+1];        /* current context path */
55 +
56   static VARDEF  *hashtbl[NHASH];         /* definition list */
57   static int  htndx;                      /* index for */        
58   static VARDEF  *htpos;                  /* ...dfirst() and */
52 #ifdef  OUTCHAN
59   static EPNODE  *ochpos;                 /* ...dnext */
60   static EPNODE  *outchan;
55 #endif
61  
62 < #ifdef  FUNCTION
58 < EPNODE  *curfunc;
62 > EPNODE  *curfunc = NULL;
63   #define  dname(ep)      ((ep)->v.kid->type == SYM ? \
64                          (ep)->v.kid->v.name : \
65                          (ep)->v.kid->v.kid->v.name)
62 #else
63 #define  dname(ep)      ((ep)->v.kid->v.name)
64 #endif
66  
67  
68 + void
69   fcompile(fname)                 /* get definitions from a file */
70   char  *fname;
71   {
# Line 84 | Line 86 | char  *fname;
86   }
87  
88  
89 + void
90   scompile(str, fn, ln)           /* get definitions from a string */
91   char  *str;
92   char  *fn;
# Line 113 | Line 116 | EPNODE *ep;
116   }
117  
118  
119 + void
120   varset(vname, assign, val)      /* set a variable's value */
121   char  *vname;
122   int  assign;
# Line 147 | Line 151 | double val;
151   }
152  
153  
154 + void
155   dclear(name)                    /* delete variable definitions of name */
156   char  *name;
157   {
# Line 162 | Line 167 | char  *name;
167   }
168  
169  
170 + void
171   dremove(name)                   /* delete all definitions of name */
172   char  *name;
173   {
# Line 172 | Line 178 | char  *name;
178   }
179  
180  
181 + int
182   vardefined(name)        /* return non-zero if variable defined */
183   char  *name;
184   {
# Line 198 | Line 205 | register char  *ctx;
205      cpp = context;                      /* start context with mark */
206      *cpp++ = CNTXMARK;
207      do {                                /* carefully copy new context */
208 <        if (cpp >= context+MAXWORD)
208 >        if (cpp >= context+MAXCNTX)
209              break;                      /* just copy what we can */
210          if (isid(*ctx))
211              *cpp++ = *ctx++;
# Line 217 | Line 224 | char *
224   pushcontext(ctx)                /* push on another context */
225   char  *ctx;
226   {
227 <    extern char  *strncpy(), *strcpy();
221 <    char  oldcontext[MAXWORD+1];
227 >    char  oldcontext[MAXCNTX+1];
228      register int  n;
229  
230      strcpy(oldcontext, context);        /* save old context */
231      setcontext(ctx);                    /* set new context */
232      n = strlen(context);                /* tack on old */
233 <    if (n+strlen(oldcontext) > MAXWORD) {
234 <        strncpy(context+n, oldcontext, MAXWORD-n);
235 <        context[MAXWORD] = '\0';
233 >    if (n+strlen(oldcontext) > MAXCNTX) {
234 >        strncpy(context+n, oldcontext, MAXCNTX-n);
235 >        context[MAXCNTX] = '\0';
236      } else
237          strcpy(context+n, oldcontext);
238      return(context);
# Line 296 | Line 302 | toolong:
302   }
303  
304  
305 + int
306   incontext(qn)                   /* is qualified name in current context? */
307   register char  *qn;
308   {
# Line 307 | Line 314 | register char  *qn;
314   }
315  
316  
317 < #ifdef  OUTCHAN
317 > void
318   chanout(cs)                     /* set output channels */
319   int  (*cs)();
320   {
# Line 317 | Line 324 | int  (*cs)();
324          (*cs)(ep->v.kid->v.chan, evalue(ep->v.kid->sibling));
325  
326   }
320 #endif
327  
328  
329 + void
330   dcleanup(lvl)           /* clear definitions (0->vars,1->output,2->consts) */
331   int  lvl;
332   {
# Line 334 | Line 341 | int  lvl;
341                      dremove(vp->name);
342                  else
343                      dclear(vp->name);
337 #ifdef  OUTCHAN
344      if (lvl >= 1) {
345          for (ep = outchan; ep != NULL; ep = ep->sibling)
346              epfree(ep);
347          outchan = NULL;
348      }
343 #endif
349   }
350  
351  
# Line 384 | Line 389 | char  *name;
389          return(vp);
390      }
391      vp = (VARDEF *)emalloc(sizeof(VARDEF));
387 #ifdef  FUNCTION
392      vp->lib = liblookup(name);
389 #else
390    vp->lib = NULL;
391 #endif
393      if (vp->lib == NULL)                /* if name not in library */
394          name = qualname(name, 0);       /* use fully qualified version */
395      hv = hash(name);
# Line 401 | Line 402 | char  *name;
402   }
403  
404  
405 < #ifdef  FUNCTION
405 > void
406   libupdate(fn)                   /* update library links */
407   char  *fn;
408   {
# Line 413 | Line 414 | char  *fn;
414              if (vp->lib != NULL || fn == NULL || !strcmp(fn, vp->name))
415                  vp->lib = liblookup(vp->name);
416   }
416 #endif
417  
418  
419 + void
420   varfree(ln)                             /* release link to variable */
421   register VARDEF  *ln;
422   {
# Line 444 | Line 445 | dfirst()                       /* return pointer to first definition */
445   {
446      htndx = 0;
447      htpos = NULL;
447 #ifdef  OUTCHAN
448      ochpos = outchan;
449 #endif
449      return(dnext());
450   }
451  
# Line 468 | Line 467 | dnext()                                /* return pointer to next definition */
467                  return(ep);
468          }
469      }
471 #ifdef  OUTCHAN
470      if ((ep = ochpos) != NULL)
471          ochpos = ep->sibling;
472      return(ep);
475 #else
476    return(NULL);
477 #endif
473   }
474  
475  
# Line 494 | Line 489 | char  *name;
489   }
490  
491  
492 + void
493   dpush(nm, ep)                   /* push on a definition */
494   char  *nm;
495   register EPNODE  *ep;
# Line 506 | Line 502 | register EPNODE         *ep;
502   }
503  
504  
505 < #ifdef  OUTCHAN
505 > void
506   addchan(sp)                     /* add an output channel assignment */
507   EPNODE  *sp;
508   {
# Line 534 | Line 530 | EPNODE *sp;
530      sp->sibling = NULL;
531  
532   }
537 #endif
533  
534  
535 + void
536   getstatement()                  /* get next statement */
537   {
538      register EPNODE  *ep;
# Line 547 | Line 543 | getstatement()                 /* get next statement */
543          scan();
544          return;
545      }
546 < #ifdef  OUTCHAN
547 <    if (nextc == '$') {         /* channel assignment */
546 >    if (esupport&E_OUTCHAN &&
547 >                nextc == '$') {         /* channel assignment */
548          ep = getchan();
549          addchan(ep);
550 <    } else
555 < #endif
556 <    {                           /* ordinary definition */
550 >    } else {                            /* ordinary definition */
551          ep = getdefn();
552          qname = qualname(dname(ep), 0);
553 < #ifdef  REDEFW
560 <        if ((vdef = varlookup(qname)) != NULL)
553 >        if (esupport&E_REDEFW && (vdef = varlookup(qname)) != NULL)
554              if (vdef->def != NULL && epcmp(ep, vdef->def)) {
555                  wputs(qname);
556                  if (vdef->def->type == ':')
557                      wputs(": redefined constant expression\n");
558                  else
559                      wputs(": redefined\n");
560 <            }
568 < #ifdef  FUNCTION
569 <            else if (ep->v.kid->type == FUNC && vdef->lib != NULL) {
560 >            } else if (ep->v.kid->type == FUNC && vdef->lib != NULL) {
561                  wputs(qname);
562                  wputs(": definition hides library function\n");
563              }
573 #endif
574 #endif
564          if (ep->type == ':')
565              dremove(qname);
566          else
# Line 601 | Line 590 | getdefn()                      /* A -> SYM = E1 */
590      ep1->type = SYM;
591      ep1->v.name = savestr(getname());
592  
593 < #ifdef  FUNCTION
605 <    if (nextc == '(') {
593 >    if (esupport&E_FUNCTION && nextc == '(') {
594          ep2 = newnode();
595          ep2->type = FUNC;
596          addekid(ep2, ep1);
# Line 620 | Line 608 | getdefn()                      /* A -> SYM = E1 */
608              syntax("')' expected");
609          scan();
610          curfunc = ep1;
611 <    } else
624 <        curfunc = NULL;
625 < #endif
611 >    }
612  
613      if (nextc != '=' && nextc != ':')
614          syntax("'=' or ':' expected");
# Line 633 | Line 619 | getdefn()                      /* A -> SYM = E1 */
619      addekid(ep2, ep1);
620      addekid(ep2, getE1());
621  
622 <    if (
637 < #ifdef  FUNCTION
638 <            ep1->type == SYM &&
639 < #endif
640 <            ep1->sibling->type != NUM) {
622 >    if (ep1->type == SYM && ep1->sibling->type != NUM) {
623          ep1 = newnode();
624          ep1->type = TICK;
625          ep1->v.tick = 0;
# Line 646 | Line 628 | getdefn()                      /* A -> SYM = E1 */
628          ep1->type = NUM;
629          addekid(ep2, ep1);
630      }
631 +    curfunc = NULL;
632  
633      return(ep2);
634   }
635  
636  
654 #ifdef  OUTCHAN
637   EPNODE *
638   getchan()                       /* A -> $N = E1 */
639   {
# Line 676 | Line 658 | getchan()                      /* A -> $N = E1 */
658  
659      return(ep2);
660   }
679 #endif
661  
662  
663  
# Line 701 | Line 682 | EPNODE *d;
682      if (ep1->type == NUM)
683          return(ep1->v.num);                     /* return if number */
684      ep2 = ep1->sibling;                         /* check time */
685 <    if (ep2->v.tick == 0 || ep2->v.tick < eclock) {
686 <        ep2->v.tick = d->type == ':' ? ~0L : eclock;
685 >    if (eclock >= MAXCLOCK)
686 >        eclock = 1;                             /* wrap clock counter */
687 >    if (ep2->v.tick < MAXCLOCK &&
688 >                ep2->v.tick == 0 | ep2->v.tick != eclock) {
689 >        ep2->v.tick = d->type == ':' ? MAXCLOCK : eclock;
690          ep2 = ep2->sibling;
691          ep2->v.num = evalue(ep1);               /* needs new value */
692      } else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines