2 * Samba Unix/Linux SMB client library
4 * Copyright (C) Gregor Beck 2010
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * @author Gregor Beck <gb@sernet.de>
24 * @brief A simple recursive parser.
28 #include "system/locale.h"
33 bool srprs_skipws(const char** ptr
) {
34 while (isspace(**ptr
))
39 bool srprs_char(const char** ptr
, char c
) {
47 bool srprs_str(const char** ptr
, const char* str
, ssize_t len
)
49 /* By definition *ptr must be null terminated. */
50 size_t ptr_len
= strlen(*ptr
);
55 /* Don't memcmp read past end of buffer. */
60 if (memcmp(*ptr
, str
, len
) == 0) {
67 bool srprs_charset(const char** ptr
, const char* set
, cbuf
* oss
)
69 const char* p
= strchr(set
, **ptr
);
70 if (p
!= NULL
&& *p
!= '\0') {
71 cbuf_putc(oss
, **ptr
);
78 bool srprs_charsetinv(const char** ptr
, const char* set
, cbuf
* oss
)
80 if ((**ptr
!= '\0') && (strchr(set
, **ptr
) == NULL
)) {
81 cbuf_putc(oss
, **ptr
);
90 bool srprs_quoted_string(const char** ptr
, cbuf
* str
, bool* cont
)
92 const char* pos
= *ptr
;
93 const size_t spos
= cbuf_getpos(str
);
95 if (cont
== NULL
|| *cont
== false) {
96 if (!srprs_char(&pos
, '\"'))
101 while (srprs_charsetinv(&pos
, "\\\"", str
))
122 if (!srprs_charset(&pos
, "\\\"", str
))
132 cbuf_setpos(str
, spos
);
136 bool srprs_hex(const char** ptr
, size_t len
, unsigned* u
)
138 const char *str
= *ptr
;
139 const char *pos
= *ptr
;
144 assert((len
>= 1) && (len
<= 8));
146 for (i
=0; i
<len
; i
++) {
147 if (!srprs_charset(&pos
, "0123456789abcdefABCDEF", NULL
)) {
153 ret
= sscanf(buf
, "%8x", u
);
163 bool srprs_nl(const char** ptr
, cbuf
* nl
)
165 static const char CRLF
[] = "\r\n";
166 if (srprs_str(ptr
, CRLF
, sizeof(CRLF
) - 1)) {
167 cbuf_puts(nl
, CRLF
, sizeof(CRLF
) - 1);
170 return srprs_charset(ptr
, "\n\r", nl
);
173 bool srprs_eos(const char** ptr
)
175 return (**ptr
== '\0');
178 bool srprs_eol(const char** ptr
, cbuf
* nl
)
180 return srprs_eos(ptr
) || srprs_nl(ptr
, nl
);
183 bool srprs_line(const char** ptr
, cbuf
* str
)
185 while (srprs_charsetinv(ptr
, "\n\r", str
))
190 bool srprs_quoted(const char** ptr
, cbuf
* str
)
192 const char* pos
= *ptr
;
193 const size_t spos
= cbuf_getpos(str
);
195 if (!srprs_char(&pos
, '"')) {
200 while (srprs_charsetinv(&pos
, "\\\"", str
))
212 if (!srprs_charset(&pos
, "\\\"", str
)) {
214 if (!srprs_hex(&pos
, 2, &u
)) {
226 cbuf_setpos(str
, spos
);