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.
34 bool srprs_skipws(const char** ptr
) {
35 while (isspace(**ptr
))
40 bool srprs_char(const char** ptr
, char c
) {
48 bool srprs_str(const char** ptr
, const char* str
, size_t len
)
53 if (memcmp(*ptr
, str
, len
) == 0) {
60 bool srprs_charset(const char** ptr
, const char* set
, cbuf
* oss
)
62 const char* p
= strchr(set
, **ptr
);
63 if (p
!= NULL
&& *p
!= '\0') {
64 cbuf_putc(oss
, **ptr
);
71 bool srprs_charsetinv(const char** ptr
, const char* set
, cbuf
* oss
)
73 if ((**ptr
!= '\0') && (strchr(set
, **ptr
) == NULL
)) {
74 cbuf_putc(oss
, **ptr
);
83 bool srprs_quoted_string(const char** ptr
, cbuf
* str
, bool* cont
)
85 const char* pos
= *ptr
;
86 const size_t spos
= cbuf_getpos(str
);
88 if (cont
== NULL
|| *cont
== false) {
89 if (!srprs_char(&pos
, '\"'))
94 while (srprs_charsetinv(&pos
, "\\\"", str
))
115 if (!srprs_charset(&pos
, "\\\"", str
))
125 cbuf_setpos(str
, spos
);
129 bool srprs_hex(const char** ptr
, size_t len
, unsigned* u
)
131 static const char* FMT
[] = {
132 "%1x","%2x","%3x","%4x","%5x","%6x","%7x","%8x",
133 "%9x","%10x","%11x","%12x","%13x","%14x","%15x","%16x"
136 const char* pos
= *ptr
;
141 && (len
<= 2*sizeof(unsigned))
142 && (len
<= sizeof(FMT
)/sizeof(const char*)));
144 for (i
=0; i
<len
; i
++) {
145 if (!srprs_charset(&pos
, "0123456789abcdefABCDEF", NULL
)) {
150 ret
= sscanf(*ptr
, FMT
[len
-1], u
);
160 bool srprs_nl(const char** ptr
, cbuf
* nl
)
162 static const char CRLF
[] = "\r\n";
163 if (srprs_str(ptr
, CRLF
, sizeof(CRLF
) - 1)) {
164 cbuf_puts(nl
, CRLF
, sizeof(CRLF
) - 1);
167 return srprs_charset(ptr
, "\n\r", nl
);
170 bool srprs_eos(const char** ptr
)
172 return (**ptr
== '\0');
175 bool srprs_eol(const char** ptr
, cbuf
* nl
)
177 return srprs_eos(ptr
) || srprs_nl(ptr
, nl
);
180 bool srprs_line(const char** ptr
, cbuf
* str
)
182 while (srprs_charsetinv(ptr
, "\n\r", str
))