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 2.2 by greg, Thu Feb 20 11:40:36 1992 UTC vs.
Revision 2.5 by greg, Sun Oct 15 14:07:58 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 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 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   *
10   *      8/19/88
11   *
12 < *  printargs(ac,av,fp) print an argument list to fp, followed by '\n'
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 + *  copymatch(pat, str) copy str into pat if glob match
21   *  checkheader(i,p,o)  check header format from i against p and copy to o
22   *
23   *  To copy header from input to output, use getheader(fin, fputs, fout)
# Line 22 | Line 26 | static char SCCSid[] = "$SunId$ LBL";
26   #include  <stdio.h>
27   #include  <ctype.h>
28  
29 < #define  MAXLINE        512
29 > #define  MAXLINE        512
30  
31   #ifndef BSD
32 < #define  index  strchr
32 > #define  index  strchr
33   #endif
34  
35   extern char  *index();
36  
37 < char  FMTSTR[] = "FORMAT=";
34 < int  FMTSTRL = 7;
37 > char  HDRSTR[] = "#?";          /* information header magic number */
38  
39 + char  FMTSTR[] = "FORMAT=";     /* format identifier */
40  
41 +
42 + newheader(s, fp)                /* identifying line of information header */
43 + char  *s;
44 + register FILE  *fp;
45 + {
46 +        fputs(HDRSTR, fp);
47 +        fputs(s, fp);
48 +        putc('\n', fp);
49 + }
50 +
51 +
52 + int
53 + headidval(r,s)                  /* get header id (return true if is id) */
54 + register char  *r, *s;
55 + {
56 +        register char  *cp = HDRSTR;
57 +
58 +        while (*cp) if (*cp++ != *s++) return(0);
59 +        if (r == NULL) return(1);
60 +        while (*s) *r++ = *s++;
61 +        *r = '\0';
62 +        return(1);
63 + }
64 +
65 +
66 + int
67 + isheadid(s)                     /* check to see if line is header id */
68 + char  *s;
69 + {
70 +        return(headidval(NULL, s));
71 + }
72 +
73 +
74   printargs(ac, av, fp)           /* print arguments to a file */
75   int  ac;
76   char  **av;
# Line 58 | Line 95 | register FILE  *fp;
95   }
96  
97  
98 < isformat(s)                     /* is line a format line? */
99 < char  *s;
63 < {
64 <        return(!strncmp(s,FMTSTR,FMTSTRL));
65 < }
66 <
67 <
68 < formatval(r, s)                 /* return format value */
98 > int
99 > formatval(r, s)                 /* get format value (return true if format) */
100   register char  *r;
101   register char  *s;
102   {
103 <        s += FMTSTRL;
103 >        register char  *cp = FMTSTR;
104 >
105 >        while (*cp) if (*cp++ != *s++) return(0);
106          while (isspace(*s)) s++;
107 <        if (!*s) { *r = '\0'; return; }
108 <        while(*s) *r++ = *s++;
109 <        while (isspace(r[-1])) r--;
107 >        if (!*s) return(0);
108 >        if (r == NULL) return(1);
109 >        do
110 >                *r++ = *s++;
111 >        while(*s && !isspace(*s));
112          *r = '\0';
113 +        return(1);
114   }
115  
116  
117 + int
118 + isformat(s)                     /* is line a format line? */
119 + char  *s;
120 + {
121 +        return(formatval(NULL, s));
122 + }
123 +
124 +
125   fputformat(s, fp)               /* put out a format value */
126   char  *s;
127   FILE  *fp;
# Line 88 | Line 132 | FILE  *fp;
132   }
133  
134  
135 + int
136   getheader(fp, f, p)             /* get header from file */
137   FILE  *fp;
138   int  (*f)();
# Line 97 | Line 142 | char  *p;
142  
143          for ( ; ; ) {
144                  buf[MAXLINE-2] = '\n';
145 <                if (fgets(buf, sizeof(buf), fp) == NULL)
145 >                if (fgets(buf, MAXLINE, fp) == NULL)
146                          return(-1);
147                  if (buf[0] == '\n')
148                          return(0);
149 + #ifdef MSDOS
150 +                if (buf[0] == '\r' && buf[1] == '\n')
151 +                        return(0);
152 + #endif
153                  if (buf[MAXLINE-2] != '\n') {
154                          ungetc(buf[MAXLINE-2], fp);     /* prevent false end */
155                          buf[MAXLINE-2] = '\0';
# Line 122 | Line 171 | mycheck(s, cp)                 /* check a header line for format inf
171   char  *s;
172   register struct check  *cp;
173   {
174 <        if (!strncmp(s,FMTSTR,FMTSTRL))
126 <                formatval(cp->fs, s);
127 <        else if (cp->fp != NULL)        /* don't copy format info. */
174 >        if (!formatval(cp->fs, s) && cp->fp != NULL)
175                  fputs(s, cp->fp);
176   }
177  
# Line 134 | Line 181 | register struct check  *cp;
181   * copies str into pat if there is a match (returning true).
182   */
183  
184 < #ifdef COPYMATCH
184 > int
185   copymatch(pat, str)
186   char    *pat, *str;
187   {
# Line 172 | Line 219 | char   *pat, *str;
219                  strcpy(pat, str);
220          return(1);
221   }
175 #else
176 #define copymatch(pat, s)       (!strcmp(pat, s))
177 #endif
222  
223  
224   /*
# Line 190 | Line 234 | char   *pat, *str;
234   * if fout is not NULL.
235   */
236  
237 + int
238   checkheader(fin, fmt, fout)
239   FILE  *fin;
240   char  *fmt;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines