1 /* $NetBSD: fparseln.c,v 1.9 1999/09/20 04:48:06 lukem Exp $ */
4 * Copyright (c) 1997 Christos Zoulas. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Christos Zoulas.
17 * 4. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 static int isescaped(const char *, const char *, int);
41 * Return true if the character in *p that belongs to a string
42 * that starts in *sp, is escaped by the escape character esc.
45 isescaped(const char *sp
, const char *p
, int esc
)
50 /* No escape character */
54 /* Count the number of escape characters that precede ours */
55 for (ne
= 0, cp
= p
; --cp
>= sp
&& *cp
== esc
; ne
++)
58 /* Return true if odd number of escape characters */
59 return ((ne
& 1) != 0);
65 * Read a line from a file parsing continuations ending in \
66 * and eliminating trailing newlines, or comments starting with
70 fparseln(FILE *fp
, size_t *size
, size_t *lineno
, const char str
[3], int flags
)
72 static const char dstr
[3] = { '\\', '\\', '#' };
78 char esc
, con
, nl
, com
;
91 * XXX: it would be cool to be able to specify the newline character,
92 * but unfortunately, fgetln does not let us
102 if ((ptr
= fgetln(fp
, &s
)) == NULL
)
105 if (s
&& com
) { /* Check and eliminate comments */
106 for (cp
= ptr
; cp
< ptr
+ s
; cp
++)
107 if (*cp
== com
&& !isescaped(ptr
, cp
, esc
)) {
109 cnt
= s
== 0 && buf
== NULL
;
114 if (s
&& nl
) { /* Check and eliminate newlines */
118 s
--; /* forget newline */
121 if (s
&& con
) { /* Check and eliminate continuations */
124 if (*cp
== con
&& !isescaped(ptr
, cp
, esc
)) {
125 s
--; /* forget escape */
130 if (s
== 0 && buf
!= NULL
)
133 if ((cp
= realloc(buf
, len
+ s
+ 1)) == NULL
) {
139 (void) memcpy(buf
+ len
, ptr
, s
);
144 if ((flags
& FPARSELN_UNESCALL
) != 0 && esc
&& buf
!= NULL
&&
145 strchr(buf
, esc
) != NULL
) {
147 while (cp
[0] != '\0') {
150 while (cp
[0] != '\0' && cp
[0] != esc
)
152 if (cp
[0] == '\0' || cp
[1] == '\0')
157 skipesc
+= (flags
& FPARSELN_UNESCCOMM
);
159 skipesc
+= (flags
& FPARSELN_UNESCCONT
);
161 skipesc
+= (flags
& FPARSELN_UNESCESC
);
162 if (cp
[1] != com
&& cp
[1] != con
&& cp
[1] != esc
)
163 skipesc
= (flags
& FPARSELN_UNESCREST
);
184 main(int argc
, char *argv
[])
190 while ((ptr
= fparseln(stdin
, &size
, &line
, NULL
,
191 FPARSELN_UNESCALL
)) != NULL
) {
192 printf("line %d (%d) |%s|\n", line
, size
, ptr
);
202 * line 4 \# Not comment \\\\