ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/header.c
Revision: 2.38
Committed: Tue Sep 24 21:25:59 2019 UTC (4 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.37: +2 -2 lines
Log Message:
Return fputs() value to test for error

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: header.c,v 2.37 2019/08/14 19:52:39 greg Exp $";
3 #endif
4 /*
5 * header.c - routines for reading and writing information headers.
6 *
7 * Externals declared in rtio.h
8 *
9 * newheader(t,fp) start new information header identified by string t
10 * headidval(r,s) copy header identifier value in s to r
11 * dateval(t,s) get capture date value as UTC
12 * gmtval(t,s) get GMT as UTC
13 * fputdate(t,fp) put out the given UTC
14 * fputnow(fp) put out the current date and time
15 * printargs(ac,av,fp) print an argument list to fp, followed by '\n'
16 * formatval(r,s) copy the format value in s to r
17 * fputformat(s,fp) write "FORMAT=%s" to fp
18 * nativebigendian() are we native on big-endian machine?
19 * isbigendian(s) header line matches "BigEndian=1" (-1 if irrelevant)
20 * fputendian(fp) write native endianness in BigEndian= line
21 * getheader(fp,f,p) read header from fp, calling f(s,p) on each line
22 * globmatch(pat, str) check for glob match of str against pat
23 * checkheader(i,p,o) check header format from i against p and copy to o
24 *
25 * To copy header from input to output, use getheader(fin, fputs, fout)
26 */
27
28 #include "copyright.h"
29
30 #include <ctype.h>
31
32 #include "tiff.h" /* for int32 */
33 #include "rtio.h"
34 #include "resolu.h"
35
36 #define MAXLINE 2048
37
38 extern time_t timegm(struct tm *tm);
39
40 const char HDRSTR[] = "#?"; /* information header magic number */
41
42 const char FMTSTR[] = "FORMAT="; /* format identifier */
43
44 const char TMSTR[] = "CAPDATE="; /* capture date identifier */
45 const char GMTSTR[] = "GMT="; /* GMT identifier */
46
47 const char BIGEND[] = "BigEndian="; /* big-endian variable */
48
49 static gethfunc mycheck;
50
51
52 void
53 newheader( /* identifying line of information header */
54 const char *s,
55 FILE *fp
56 )
57 {
58 fputs(HDRSTR, fp);
59 fputs(s, fp);
60 putc('\n', fp);
61 }
62
63
64 int
65 headidval( /* get header id (return true if is id) */
66 char *r,
67 const char *s
68 )
69 {
70 const char *cp = HDRSTR;
71
72 while (*cp) if (*cp++ != *s++) return(0);
73 if (r == NULL) return(1);
74 while (*s && !isspace(*s)) *r++ = *s++;
75 *r = '\0';
76 return(1);
77 }
78
79
80 int
81 dateval( /* convert capture date line to UTC */
82 time_t *tloc,
83 const char *s
84 )
85 {
86 struct tm tms;
87 const char *cp = TMSTR;
88
89 while (*cp) if (*cp++ != *s++) return(0);
90 while (isspace(*s)) s++;
91 if (!*s) return(0);
92 if (sscanf(s, "%d:%d:%d %d:%d:%d",
93 &tms.tm_year, &tms.tm_mon, &tms.tm_mday,
94 &tms.tm_hour, &tms.tm_min, &tms.tm_sec) != 6)
95 return(0);
96 if (tloc == NULL)
97 return(1);
98 tms.tm_mon--;
99 tms.tm_year -= 1900;
100 tms.tm_isdst = -1; /* ask mktime() to figure out DST */
101 *tloc = mktime(&tms);
102 return(1);
103 }
104
105
106 int
107 gmtval( /* convert GMT date line to UTC */
108 time_t *tloc,
109 const char *s
110 )
111 {
112 struct tm tms;
113 const char *cp = GMTSTR;
114
115 while (*cp) if (*cp++ != *s++) return(0);
116 while (isspace(*s)) s++;
117 if (!*s) return(0);
118 if (sscanf(s, "%d:%d:%d %d:%d:%d",
119 &tms.tm_year, &tms.tm_mon, &tms.tm_mday,
120 &tms.tm_hour, &tms.tm_min, &tms.tm_sec) != 6)
121 return(0);
122 if (tloc == NULL)
123 return(1);
124 tms.tm_mon--;
125 tms.tm_year -= 1900;
126 *tloc = timegm(&tms);
127 return(1);
128 }
129
130
131 void
132 fputdate( /* write out the given time value (local & GMT) */
133 time_t tv,
134 FILE *fp
135 )
136 {
137 struct tm *tms;
138
139 tms = localtime(&tv);
140 if (tms != NULL)
141 fprintf(fp, "%s %04d:%02d:%02d %02d:%02d:%02d\n", TMSTR,
142 tms->tm_year+1900, tms->tm_mon+1, tms->tm_mday,
143 tms->tm_hour, tms->tm_min, tms->tm_sec);
144 tms = gmtime(&tv);
145 if (tms != NULL)
146 fprintf(fp, "%s %04d:%02d:%02d %02d:%02d:%02d\n", GMTSTR,
147 tms->tm_year+1900, tms->tm_mon+1, tms->tm_mday,
148 tms->tm_hour, tms->tm_min, tms->tm_sec);
149 }
150
151
152 void
153 fputnow( /* write out the current time */
154 FILE *fp
155 )
156 {
157 time_t tv;
158 time(&tv);
159 fputdate(tv, fp);
160 }
161
162
163 void
164 printargs( /* print arguments to a file */
165 int ac,
166 char **av,
167 FILE *fp
168 )
169 {
170 while (ac-- > 0) {
171 fputword(*av++, fp);
172 fputc(ac ? ' ' : '\n', fp);
173 }
174 }
175
176
177 int
178 formatval( /* get format value (return true if format) */
179 char fmt[MAXFMTLEN],
180 const char *s
181 )
182 {
183 const char *cp = FMTSTR;
184 char *r = fmt;
185
186 while (*cp) if (*cp++ != *s++) return(0);
187 while (isspace(*s)) s++;
188 if (!*s) return(0);
189 if (r == NULL) return(1);
190 do
191 *r++ = *s++;
192 while (*s && !isspace(*s) && r-fmt < MAXFMTLEN-1);
193 *r = '\0';
194 return(1);
195 }
196
197
198 void
199 fputformat( /* put out a format value */
200 const char *s,
201 FILE *fp
202 )
203 {
204 fputs(FMTSTR, fp);
205 fputs(s, fp);
206 putc('\n', fp);
207 }
208
209
210 int
211 nativebigendian() /* are we native on a big-endian machine? */
212 {
213 union { int32 i; char c[4]; } u;
214
215 u.i = 1;
216
217 return(u.c[0] == 0);
218 }
219
220
221 int
222 isbigendian( /* header line says "BigEndian=1" (-1 if irrelevant) */
223 const char *s
224 )
225 {
226 const char *be = BIGEND;
227
228 while ((*s != '\0') & (*be != '=') && *s++ == *be)
229 ++be;
230 if (*be != '=')
231 return(-1); /* irrelevant */
232 while (isspace(*s))
233 s++;
234 if (*s++ != '=')
235 return(-1);
236 while (isspace(*s))
237 s++;
238 return(*s == '1');
239 }
240
241
242 void
243 fputendian( /* write native endianness in BigEndian= line */
244 FILE *fp
245 )
246 {
247 fputs(BIGEND, fp);
248 if (nativebigendian())
249 fputs("1\n", fp);
250 else
251 fputs("0\n", fp);
252 }
253
254
255 int
256 getheader( /* get header from file */
257 FILE *fp,
258 gethfunc *f,
259 void *p
260 )
261 {
262 int rtotal = 0;
263 char buf[MAXLINE];
264 int firstc = fgetc(fp);
265
266 if (!isprint(firstc))
267 return(-1); /* messed up */
268 ungetc(firstc, fp);
269 for ( ; ; ) {
270 int rval = 0;
271 buf[MAXLINE-2] = '\n';
272 if (fgets(buf, MAXLINE, fp) == NULL)
273 return(-1);
274 if (buf[buf[0]=='\r'] == '\n') /* end of header? */
275 return(rtotal);
276 if (buf[MAXLINE-2] != '\n') {
277 ungetc(buf[MAXLINE-2], fp); /* prevent false end */
278 buf[MAXLINE-2] = '\0';
279 }
280 if (f != NULL && (rval = (*f)(buf, p)) < 0)
281 return(-1);
282 rtotal += rval;
283 }
284 }
285
286
287 struct check {
288 FILE *fp;
289 char fs[MAXFMTLEN];
290 };
291
292
293 static int
294 mycheck( /* check a header line for format info. */
295 char *s,
296 void *cp
297 )
298 {
299 struct check *scp = (struct check *)cp;
300
301 if (!formatval(scp->fs, s) && scp->fp != NULL)
302 return(fputs(s, scp->fp));
303
304 return(0);
305 }
306
307
308 int
309 globmatch( /* check for match of s against pattern p */
310 const char *p,
311 const char *s
312 )
313 {
314 int setmatch;
315
316 do {
317 switch (*p) {
318 case '?': /* match any character */
319 if (!*s++)
320 return(0);
321 break;
322 case '*': /* match any string */
323 while (p[1] == '*') p++;
324 do
325 if ( (p[1]=='?') | (p[1]==*s) &&
326 globmatch(p+1,s) )
327 return(1);
328 while (*s++);
329 return(0);
330 case '[': /* character set */
331 setmatch = *s == *++p;
332 if (!*p)
333 return(0);
334 while (*++p != ']') {
335 if (!*p)
336 return(0);
337 if (*p == '-') {
338 setmatch += (p[-1] <= *s && *s <= p[1]);
339 if (!*++p)
340 break;
341 } else
342 setmatch += (*p == *s);
343 }
344 if (!setmatch)
345 return(0);
346 s++;
347 break;
348 case '\\': /* literal next */
349 p++;
350 /* fall through */
351 default: /* normal character */
352 if (*p != *s)
353 return(0);
354 s++;
355 break;
356 }
357 } while (*p++);
358 return(1);
359 }
360
361
362 /*
363 * Checkheader(fin,fmt,fout) returns a value of 1 if the input format
364 * matches the specification in fmt, 0 if no input format was found,
365 * and -1 if the input format does not match or there is an
366 * error reading the header. If fmt is empty, then -1 is returned
367 * if any input format is found (or there is an error), and 0 otherwise.
368 * If fmt contains any '*' or '?' characters, then checkheader
369 * does wildcard expansion and copies a matching result into fmt.
370 * Be sure that fmt is big enough to hold the match in such cases,
371 * and that it is not a static, read-only string!
372 * The input header (minus any format lines) is copied to fout
373 * if fout is not NULL.
374 */
375
376 int
377 checkheader(
378 FILE *fin,
379 char fmt[MAXFMTLEN],
380 FILE *fout
381 )
382 {
383 struct check cdat;
384 char *cp;
385
386 cdat.fp = fout;
387 cdat.fs[0] = '\0';
388 if (getheader(fin, mycheck, &cdat) < 0)
389 return(-1);
390 if (!cdat.fs[0])
391 return(0);
392 for (cp = fmt; *cp; cp++) /* check for globbing */
393 if ((*cp == '?') | (*cp == '*')) {
394 if (globmatch(fmt, cdat.fs)) {
395 strcpy(fmt, cdat.fs);
396 return(1);
397 } else
398 return(-1);
399 }
400 return(strcmp(fmt, cdat.fs) ? -1 : 1); /* literal match */
401 }