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

Comparing ray/src/common/readobj.c (file contents):
Revision 1.4 by greg, Thu Sep 6 23:32:43 1990 UTC vs.
Revision 2.22 by greg, Sat Apr 8 03:56:44 2017 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 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   *  readobj.c - routines for reading in object descriptions.
6   *
7 < *     7/28/85
7 > *  External symbols declared in object.h
8   */
9  
10 < #include  "standard.h"
10 > #include "copyright.h"
11  
12 < #include  "object.h"
12 > #include  <ctype.h>
13 > #include  <string.h>
14 > #include  <stdio.h>
15  
16 + #include  "platform.h"
17 + #include  "paths.h"
18 + #include  "standard.h"
19 + #include  "object.h"
20   #include  "otypes.h"
21  
19 #include  <ctype.h>
22  
23   OBJREC  *objblock[MAXOBJBLK];           /* our objects */
24   OBJECT  nobjects = 0;                   /* # of objects */
25  
26  
27 < readobj(input)                  /* read in an object file or stream */
28 < char  *input;
27 > void
28 > readobj(                                /* read in an object file or stream */
29 >        char  *inpspec
30 > )
31   {
32 <        FILE  *popen();
29 <        char  *fgets(), *fgetline();
32 >        OBJECT  lastobj;
33          FILE  *infp;
34 <        char  buf[512];
35 <        register int  c;
34 >        char  buf[2048];
35 >        int  c;
36  
37 <        if (input == NULL) {
37 >        lastobj = nobjects;
38 >        if (inpspec == NULL) {
39                  infp = stdin;
40 <                input = "standard input";
41 <        } else if (input[0] == '!') {
42 <                if ((infp = popen(input+1, "r")) == NULL) {
43 <                        sprintf(errmsg, "cannot execute \"%s\"", input);
40 >                inpspec = "standard input";
41 >        } else if (inpspec[0] == '!') {
42 >                if ((infp = popen(inpspec+1, "r")) == NULL) {
43 >                        sprintf(errmsg, "cannot execute \"%s\"", inpspec);
44                          error(SYSTEM, errmsg);
45                  }
46 <        } else if ((infp = fopen(input, "r")) == NULL) {
47 <                sprintf(errmsg, "cannot open scene file \"%s\"", input);
46 >        } else if ((infp = fopen(inpspec, "r")) == NULL) {
47 >                sprintf(errmsg, "cannot open scene file \"%s\"", inpspec);
48                  error(SYSTEM, errmsg);
49          }
50          while ((c = getc(infp)) != EOF) {
# Line 54 | Line 58 | char  *input;
58                          readobj(buf);
59                  } else {                                /* object */
60                          ungetc(c, infp);
61 <                        getobject(input, infp);
61 >                        getobject(inpspec, infp);
62                  }
63          }
64 <        if (input[0] == '!')
64 >        if (inpspec[0] == '!')
65                  pclose(infp);
66          else
67                  fclose(infp);
68 +        if (nobjects == lastobj) {
69 +                sprintf(errmsg, "(%s): empty file", inpspec);
70 +                error(WARNING, errmsg);
71 +        }
72   }
73  
74  
75 < getobject(name, fp)                     /* read the next object */
76 < char  *name;
77 < FILE  *fp;
75 > void
76 > getobject(                              /* read the next object */
77 >        char  *name,
78 >        FILE  *fp
79 > )
80   {
81 + #define OALIAS  -2
82          OBJECT  obj;
83          char  sbuf[MAXSTR];
84 <        register OBJREC  *objp;
84 >        int  rval;
85 >        OBJREC  *objp;
86  
87          if ((obj = newobject()) == OVOID)
88                  error(SYSTEM, "out of object space");
89          objp = objptr(obj);
90                                          /* get modifier */
91 <        fscanf(fp, "%s", sbuf);
91 >        strcpy(sbuf, "EOF");
92 >        fgetword(sbuf, MAXSTR, fp);
93 >        if (strchr(sbuf, '\t')) {
94 >                sprintf(errmsg, "(%s): illegal tab in modifier \"%s\"",
95 >                                        name, sbuf);
96 >                error(USER, errmsg);
97 >        }
98          if (!strcmp(sbuf, VOIDID))
99                  objp->omod = OVOID;
100 +        else if (!strcmp(sbuf, ALIASMOD))
101 +                objp->omod = OALIAS;
102          else if ((objp->omod = modifier(sbuf)) == OVOID) {
103                  sprintf(errmsg, "(%s): undefined modifier \"%s\"", name, sbuf);
104                  error(USER, errmsg);
105          }
106                                          /* get type */
107 <        fscanf(fp, "%s", sbuf);
108 <        if (!strcmp(sbuf, ALIASID))
109 <                objp->otype = -1;
90 <        else if ((objp->otype = otype(sbuf)) < 0) {
107 >        strcpy(sbuf, "EOF");
108 >        fgetword(sbuf, MAXSTR, fp);
109 >        if ((objp->otype = otype(sbuf)) < 0) {
110                  sprintf(errmsg, "(%s): unknown type \"%s\"", name, sbuf);
111                  error(USER, errmsg);
112          }
113                                          /* get identifier */
114 <        fscanf(fp, "%s", sbuf);
114 >        sbuf[0] = '\0';
115 >        fgetword(sbuf, MAXSTR, fp);
116 >        if (strchr(sbuf, '\t')) {
117 >                sprintf(errmsg, "(%s): illegal tab in identifier \"%s\"",
118 >                                        name, sbuf);
119 >                error(USER, errmsg);
120 >        }
121          objp->oname = savqstr(sbuf);
122                                          /* get arguments */
123 <        if (objp->otype == -1) {
124 <                register OBJECT  alias;
125 <                fscanf(fp, "%s", sbuf);
123 >        if (objp->otype == MOD_ALIAS) {
124 >                OBJECT  alias;
125 >                strcpy(sbuf, "EOF");
126 >                fgetword(sbuf, MAXSTR, fp);
127                  if ((alias = modifier(sbuf)) == OVOID) {
128 <                        sprintf(errmsg,
129 <                        "(%s): bad reference \"%s\" for %s \"%s\"",
130 <                                        name, sbuf, ALIASID, objp->oname);
105 <                        error(USER, errmsg);
128 >                        sprintf(errmsg, "(%s): bad reference \"%s\"",
129 >                                        name, sbuf);
130 >                        objerror(objp, USER, errmsg);
131                  }
132 <                objp->otype = objptr(alias)->otype;
133 <                copystruct(&objp->oargs, &objptr(alias)->oargs);
134 <        } else if (readfargs(&objp->oargs, fp) < 0) {
132 >                if (objp->omod == OALIAS ||
133 >                                objp->omod == objptr(alias)->omod) {
134 >                        objp->omod = alias;
135 >                } else {
136 >                        objp->oargs.sarg = (char **)malloc(sizeof(char *));
137 >                        if (objp->oargs.sarg == NULL)
138 >                                error(SYSTEM, "out of memory in getobject");
139 >                        objp->oargs.nsargs = 1;
140 >                        objp->oargs.sarg[0] = savestr(sbuf);
141 >                }
142 >        } else if ((rval = readfargs(&objp->oargs, fp)) == 0) {
143                  sprintf(errmsg, "(%s): bad arguments", name);
144                  objerror(objp, USER, errmsg);
145 +        } else if (rval < 0) {
146 +                sprintf(errmsg, "(%s): error reading scene", name);
147 +                error(SYSTEM, errmsg);
148          }
149 +        if (objp->omod == OALIAS) {
150 +                sprintf(errmsg, "(%s): inappropriate use of '%s' modifier",
151 +                                name, ALIASMOD);
152 +                objerror(objp, USER, errmsg);
153 +        }
154                                          /* initialize */
155          objp->os = NULL;
115        objp->lastrno = -1;
156  
157          insertobject(obj);              /* add to global structure */
158 + #undef OALIAS
159   }
160  
161  
162 < readfargs(fa, fp)               /* read function arguments from stream */
163 < register FUNARGS  *fa;
123 < FILE  *fp;
162 > OBJECT
163 > newobject(void)                         /* get a new object */
164   {
165 <        char  sbuf[MAXSTR];
126 <        int  n;
127 <        register int  i;
165 >        int  i;
166  
167 <        if (fscanf(fp, "%d", &n) != 1 || n < 0)
130 <                return(-1);
131 <        if (fa->nsargs = n) {
132 <                fa->sarg = (char **)bmalloc(n*sizeof(char *));
133 <                if (fa->sarg == NULL)
134 <                        goto memerr;
135 <                for (i = 0; i < fa->nsargs; i++) {
136 <                        if (fscanf(fp, "%s", sbuf) != 1)
137 <                                return(-1);
138 <                        fa->sarg[i] = savestr(sbuf);
139 <                }
140 <        } else
141 <                fa->sarg = NULL;
142 <        if (fscanf(fp, "%d", &n) != 1 || n < 0)
143 <                return(-1);
144 < #ifdef  IARGS
145 <        if (fa->niargs = n) {
146 <                fa->iarg = (long *)bmalloc(n*sizeof(int));
147 <                if (fa->iarg == NULL)
148 <                        goto memerr;
149 <                for (i = 0; i < n; i++)
150 <                        if (fscanf(fp, "%ld", &fa->iarg[i]) != 1)
151 <                                return(-1);
152 <        } else
153 <                fa->iarg = NULL;
154 < #else
155 <        if (n != 0)
156 <                return(-1);
157 < #endif
158 <        if (fscanf(fp, "%d", &n) != 1 || n < 0)
159 <                return(-1);
160 <        if (fa->nfargs = n) {
161 <                fa->farg = (double *)bmalloc(n*sizeof(double));
162 <                if (fa->farg == NULL)
163 <                        goto memerr;
164 <                for (i = 0; i < n; i++)
165 <                        if (fscanf(fp, "%lf", &fa->farg[i]) != 1)
166 <                                return(-1);
167 <        } else
168 <                fa->farg = NULL;
169 <        return(0);
170 < memerr:
171 <        error(SYSTEM, "out of memory in readfargs");
172 < }
173 <
174 <
175 < int
176 < newobject()                             /* get a new object */
177 < {
178 <        register int  i;
179 <
180 <        if ((nobjects & 077) == 0) {            /* new block */
167 >        if ((nobjects & (OBJBLKSIZ-1)) == 0) {  /* new block */
168                  errno = 0;
169 <                i = nobjects >> 6;
169 >                i = nobjects >> OBJBLKSHFT;
170                  if (i >= MAXOBJBLK)
171                          return(OVOID);
172 <                objblock[i] = (OBJREC *)malloc(0100*sizeof(OBJREC));
172 >                objblock[i] = (OBJREC *)calloc(OBJBLKSIZ, sizeof(OBJREC));
173                  if (objblock[i] == NULL)
174                          return(OVOID);
175          }
176          return(nobjects++);
177 + }
178 +
179 + void
180 + freeobjects(                            /* free a range of objects */
181 +        int firstobj,
182 +        int nobjs
183 + )
184 + {
185 +        int  obj;
186 +                                        /* check bounds */
187 +        if (firstobj < 0)
188 +                return;
189 +        if (nobjs <= 0)
190 +                return;
191 +        if (firstobj + nobjs > nobjects)
192 +                return;
193 +                                        /* clear objects */
194 +        for (obj = firstobj+nobjs; obj-- > firstobj; ) {
195 +                OBJREC  *o = objptr(obj);
196 +                free_os(o);             /* free client memory */
197 +                freeqstr(o->oname);
198 +                freefargs(&o->oargs);
199 +                memset((void *)o, '\0', sizeof(OBJREC));
200 +        }
201 +        clearobjndx();
202 +                                        /* free objects off end */
203 +        for (obj = nobjects; obj-- > 0; )
204 +                if (objptr(obj)->oname != NULL)
205 +                        break;
206 +        ++obj;
207 +        while (nobjects > obj)          /* free empty end blocks */
208 +                if ((--nobjects & (OBJBLKSIZ-1)) == 0) {
209 +                        int     i = nobjects >> OBJBLKSHFT;
210 +                        free((void *)objblock[i]);
211 +                        objblock[i] = NULL;
212 +                }
213   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines