some coverity fixes.
[minix.git] / lib / libc / citrus / citrus_memstream.c
blobe32a97c4a2a4b5f6b532c5a6cfbbfa9bb60c29ea
1 /* $NetBSD: citrus_memstream.c,v 1.4 2009/02/03 05:02:12 lukem Exp $ */
3 /*-
4 * Copyright (c)2003 Citrus Project,
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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
26 * SUCH DAMAGE.
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"
35 #include <assert.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
40 #include "citrus_namespace.h"
41 #include "citrus_region.h"
42 #include "citrus_memstream.h"
43 #include "citrus_bcs.h"
45 const char *
46 _citrus_memory_stream_getln(struct _citrus_memory_stream * __restrict ms,
47 size_t * __restrict rlen)
49 int i;
50 const uint8_t *h, *p;
51 size_t ret;
53 if (ms->ms_pos>=_region_size(&ms->ms_region))
54 return (NULL);
56 h = p = (uint8_t *)_region_offset(&ms->ms_region, ms->ms_pos);
57 ret = 0;
58 for (i = _region_size(&ms->ms_region) - ms->ms_pos; i > 0; i--) {
59 ret++;
60 if (_bcs_iseol(*p))
61 break;
62 p++;
65 ms->ms_pos += ret;
66 *rlen = ret;
67 return ((const char *)h);
70 #define T_COMM '#'
72 const char *
73 _citrus_memory_stream_matchline(struct _citrus_memory_stream * __restrict ms,
74 const char * __restrict key,
75 size_t * __restrict rlen,
76 int iscasesensitive)
78 const char *p, *q;
79 size_t len, keylen;
81 keylen = strlen(key);
82 while (/*CONSTCOND*/ 1) {
83 p = _citrus_memory_stream_getln(ms, &len);
84 if (p == NULL)
85 return (NULL);
87 /* ignore comment */
88 q = memchr(p, T_COMM, len);
89 if (q) {
90 len = q-p;
92 /* ignore trailing white space and newline */
93 _bcs_trunc_rws_len(p, &len);
94 if (len == 0)
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)
104 break; /* match */
105 } else {
106 if (_bcs_strncasecmp(key, p, keylen) == 0)
107 break; /* match */
112 p = _bcs_skip_ws_len(q, &len);
113 *rlen = len;
115 return (p);
118 void *
119 _citrus_memory_stream_chr(struct _citrus_memory_stream *ms,
120 struct _citrus_region *r, char ch)
122 void *head, *chr;
123 size_t sz;
125 if (ms->ms_pos >= _region_size(&ms->ms_region))
126 return NULL;
128 head = _region_offset(&ms->ms_region, ms->ms_pos);
129 chr = memchr(head, ch, _memstream_remainder(ms));
130 if (chr == NULL) {
131 _region_init(r, head, _memstream_remainder(ms));
132 ms->ms_pos = _region_size(&ms->ms_region);
133 return NULL;
135 sz = (char *)chr - (char *)head;
137 _region_init(r, head, sz);
138 ms->ms_pos += sz+1;
140 return chr;
143 void
144 _citrus_memory_stream_skip_ws(struct _citrus_memory_stream *ms)
146 int ch;
148 while ((ch = _memstream_peek(ms)) != EOF) {
149 if (!_bcs_isspace(ch))
150 break;
151 _memstream_getc(ms);