1 /* $NetBSD: citrus_memstream.c,v 1.4 2009/02/03 05:02:12 lukem Exp $ */
4 * Copyright (c)2003 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 #include <sys/cdefs.h>
30 #if defined(LIBC_SCCS) && !defined(lint)
31 __RCSID("$NetBSD: citrus_memstream.c,v 1.4 2009/02/03 05:02:12 lukem Exp $");
32 #endif /* LIBC_SCCS and not lint */
34 #include "namespace.h"
40 #include "citrus_namespace.h"
41 #include "citrus_region.h"
42 #include "citrus_memstream.h"
43 #include "citrus_bcs.h"
46 _citrus_memory_stream_getln(struct _citrus_memory_stream
* __restrict ms
,
47 size_t * __restrict rlen
)
53 if (ms
->ms_pos
>=_region_size(&ms
->ms_region
))
56 h
= p
= (uint8_t *)_region_offset(&ms
->ms_region
, ms
->ms_pos
);
58 for (i
= _region_size(&ms
->ms_region
) - ms
->ms_pos
; i
> 0; i
--) {
67 return ((const char *)h
);
73 _citrus_memory_stream_matchline(struct _citrus_memory_stream
* __restrict ms
,
74 const char * __restrict key
,
75 size_t * __restrict rlen
,
82 while (/*CONSTCOND*/ 1) {
83 p
= _citrus_memory_stream_getln(ms
, &len
);
88 q
= memchr(p
, T_COMM
, len
);
92 /* ignore trailing white space and newline */
93 _bcs_trunc_rws_len(p
, &len
);
95 continue; /* ignore null line */
97 /* skip white spaces at the head of the line */
98 p
= _bcs_skip_ws_len(p
, &len
);
99 q
= _bcs_skip_nonws_len(p
, &len
);
101 if ((size_t)(q
-p
) == keylen
) {
102 if (iscasesensitive
) {
103 if (memcmp(key
, p
, keylen
) == 0)
106 if (_bcs_strncasecmp(key
, p
, keylen
) == 0)
112 p
= _bcs_skip_ws_len(q
, &len
);
119 _citrus_memory_stream_chr(struct _citrus_memory_stream
*ms
,
120 struct _citrus_region
*r
, char ch
)
125 if (ms
->ms_pos
>= _region_size(&ms
->ms_region
))
128 head
= _region_offset(&ms
->ms_region
, ms
->ms_pos
);
129 chr
= memchr(head
, ch
, _memstream_remainder(ms
));
131 _region_init(r
, head
, _memstream_remainder(ms
));
132 ms
->ms_pos
= _region_size(&ms
->ms_region
);
135 sz
= (char *)chr
- (char *)head
;
137 _region_init(r
, head
, sz
);
144 _citrus_memory_stream_skip_ws(struct _citrus_memory_stream
*ms
)
148 while ((ch
= _memstream_peek(ms
)) != EOF
) {
149 if (!_bcs_isspace(ch
))