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

Comparing ray/src/common/header.c (file contents):
Revision 1.1 by greg, Thu Feb 2 10:34:33 1989 UTC vs.
Revision 2.4 by greg, Sun Feb 27 10:16:45 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1988 Regents of the University of California */
1 > /* Copyright (c) 1994 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 8 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   *  header.c - routines for reading and writing information headers.
9   *
10   *      8/19/88
11 + *
12 + *  newheader(t,fp)     start new information header identified by string t
13 + *  isheadid(s)         returns true if s is a header id line
14 + *  headidval(r,s)      copy header identifier value in s to r
15 + *  printargs(ac,av,fp) print an argument list to fp, followed by '\n'
16 + *  isformat(s)         returns true if s is of the form "FORMAT=*"
17 + *  formatval(r,s)      copy the format value in s to r
18 + *  fputformat(s,fp)    write "FORMAT=%s" to fp
19 + *  getheader(fp,f,p)   read header from fp, calling f(s,p) on each line
20 + *  checkheader(i,p,o)  check header format from i against p and copy to o
21 + *
22 + *  To copy header from input to output, use getheader(fin, fputs, fout)
23   */
24  
25   #include  <stdio.h>
26 + #include  <ctype.h>
27  
28 + #define  MAXLINE        512
29  
30 + #ifndef BSD
31 + #define  index  strchr
32 + #endif
33 +
34 + extern char  *index();
35 +
36 + char  HDRSTR[] = "#?";          /* information header magic number */
37 +
38 + char  FMTSTR[] = "FORMAT=";     /* format identifier */
39 +
40 +
41 + newheader(s, fp)                /* identifying line of information header */
42 + char  *s;
43 + register FILE  *fp;
44 + {
45 +        fputs(HDRSTR, fp);
46 +        fputs(s, fp);
47 +        putc('\n', fp);
48 + }
49 +
50 +
51 + headidval(r,s)                  /* get header id (return true if is id) */
52 + register char  *r, *s;
53 + {
54 +        register char  *cp = HDRSTR;
55 +
56 +        while (*cp) if (*cp++ != *s++) return(0);
57 +        if (r == NULL) return(1);
58 +        while (*s) *r++ = *s++;
59 +        *r = '\0';
60 +        return(1);
61 + }
62 +
63 +
64 + isheadid(s)                     /* check to see if line is header id */
65 + char  *s;
66 + {
67 +        return(headidval(NULL, s));
68 + }
69 +
70 +
71   printargs(ac, av, fp)           /* print arguments to a file */
72   int  ac;
73   char  **av;
74 < FILE  *fp;
74 > register FILE  *fp;
75   {
76 +        int  quote;
77 +
78          while (ac-- > 0) {
79 <                fputs(*av++, fp);
79 >                if (index(*av, ' ') != NULL) {          /* quote it */
80 >                        if (index(*av, '\'') != NULL)
81 >                                quote = '"';
82 >                        else
83 >                                quote = '\'';
84 >                        putc(quote, fp);
85 >                        fputs(*av++, fp);
86 >                        putc(quote, fp);
87 >                } else
88 >                        fputs(*av++, fp);
89                  putc(' ', fp);
90          }
91          putc('\n', fp);
92   }
93  
94  
95 < #define  MAXLINE        512
95 > formatval(r, s)                 /* get format value (return true if format) */
96 > register char  *r;
97 > register char  *s;
98 > {
99 >        register char  *cp = FMTSTR;
100  
101 < getheader(fp, f)                /* get header from file */
101 >        while (*cp) if (*cp++ != *s++) return(0);
102 >        while (isspace(*s)) s++;
103 >        if (!*s) return(0);
104 >        if (r == NULL) return(1);
105 >        while(*s) *r++ = *s++;
106 >        while (isspace(r[-1])) r--;
107 >        *r = '\0';
108 >        return(1);
109 > }
110 >
111 >
112 > isformat(s)                     /* is line a format line? */
113 > char  *s;
114 > {
115 >        return(formatval(NULL, s));
116 > }
117 >
118 >
119 > fputformat(s, fp)               /* put out a format value */
120 > char  *s;
121   FILE  *fp;
122 + {
123 +        fputs(FMTSTR, fp);
124 +        fputs(s, fp);
125 +        putc('\n', fp);
126 + }
127 +
128 +
129 + getheader(fp, f, p)             /* get header from file */
130 + FILE  *fp;
131   int  (*f)();
132 + char  *p;
133   {
134          char  buf[MAXLINE];
135  
136          for ( ; ; ) {
137                  buf[MAXLINE-2] = '\n';
138 <                if (fgets(buf, sizeof(buf), fp) == NULL)
138 >                if (fgets(buf, MAXLINE, fp) == NULL)
139                          return(-1);
140                  if (buf[0] == '\n')
141                          return(0);
142 + #ifdef MSDOS
143 +                if (buf[0] == '\r' && buf[1] == '\n')
144 +                        return(0);
145 + #endif
146                  if (buf[MAXLINE-2] != '\n') {
147                          ungetc(buf[MAXLINE-2], fp);     /* prevent false end */
148                          buf[MAXLINE-2] = '\0';
149                  }
150                  if (f != NULL)
151 <                        (*f)(buf);
151 >                        (*f)(buf, p);
152          }
153   }
154  
155  
156 < static FILE     *outfp;
156 > struct check {
157 >        FILE    *fp;
158 >        char    fs[64];
159 > };
160  
161 +
162   static
163 < myputs(s)
163 > mycheck(s, cp)                  /* check a header line for format info. */
164   char  *s;
165 + register struct check  *cp;
166   {
167 <        fputs(s, outfp);
167 >        if (!formatval(cp->fs, s) && cp->fp != NULL)
168 >                fputs(s, cp->fp);
169   }
170  
171  
172 < copyheader(fin, fout)           /* copy file header */
173 < FILE  *fin, *fout;
172 > /*
173 > * Copymatch(pat,str) checks pat for wildcards, and
174 > * copies str into pat if there is a match (returning true).
175 > */
176 >
177 > #ifdef COPYMATCH
178 > copymatch(pat, str)
179 > char    *pat, *str;
180   {
181 <        outfp = fout;
182 <        return(getheader(fin, myputs));
181 >        int     docopy = 0;
182 >        register char   *p = pat, *s = str;
183 >
184 >        do {
185 >                switch (*p) {
186 >                case '?':                       /* match any character */
187 >                        if (!*s++)
188 >                                return(0);
189 >                        docopy++;
190 >                        break;
191 >                case '*':                       /* match any string */
192 >                        while (p[1] == '*') p++;
193 >                        do
194 >                                if ( (p[1]=='?' || p[1]==*s)
195 >                                                && copymatch(p+1,s) ) {
196 >                                        strcpy(pat, str);
197 >                                        return(1);
198 >                                }
199 >                        while (*s++);
200 >                        return(0);
201 >                case '\\':                      /* literal next */
202 >                        p++;
203 >                /* fall through */
204 >                default:                        /* normal character */
205 >                        if (*p != *s)
206 >                                return(0);
207 >                        s++;
208 >                        break;
209 >                }
210 >        } while (*p++);
211 >        if (docopy)
212 >                strcpy(pat, str);
213 >        return(1);
214 > }
215 > #else
216 > #define copymatch(pat, s)       (!strcmp(pat, s))
217 > #endif
218 >
219 >
220 > /*
221 > * Checkheader(fin,fmt,fout) returns a value of 1 if the input format
222 > * matches the specification in fmt, 0 if no input format was found,
223 > * and -1 if the input format does not match or there is an
224 > * error reading the header.  If fmt is empty, then -1 is returned
225 > * if any input format is found (or there is an error), and 0 otherwise.
226 > * If fmt contains any '*' or '?' characters, then checkheader
227 > * does wildcard expansion and copies a matching result into fmt.
228 > * Be sure that fmt is big enough to hold the match in such cases!
229 > * The input header (minus any format lines) is copied to fout
230 > * if fout is not NULL.
231 > */
232 >
233 > checkheader(fin, fmt, fout)
234 > FILE  *fin;
235 > char  *fmt;
236 > FILE  *fout;
237 > {
238 >        struct check    cdat;
239 >
240 >        cdat.fp = fout;
241 >        cdat.fs[0] = '\0';
242 >        if (getheader(fin, mycheck, &cdat) < 0)
243 >                return(-1);
244 >        if (cdat.fs[0] != '\0')
245 >                return(copymatch(fmt, cdat.fs) ? 1 : -1);
246 >        return(0);
247   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines