utils/str.3: Fix typeface for mathematics.
[mLib] / struct / buf.c
CommitLineData
800d4c59 1/* -*-c-*-
2 *
800d4c59 3 * Buffer handling
4 *
5 * (c) 2001 Straylight/Edgeware
6 */
7
d4efbcd9 8/*----- Licensing notice --------------------------------------------------*
800d4c59 9 *
9b5ac6ff 10 * This file is part of the mLib utilities library.
800d4c59 11 *
9b5ac6ff 12 * mLib is free software; you can redistribute it and/or modify
800d4c59 13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
d4efbcd9 16 *
9b5ac6ff 17 * mLib is distributed in the hope that it will be useful,
800d4c59 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
d4efbcd9 21 *
800d4c59 22 * You should have received a copy of the GNU Library General Public
9b5ac6ff 23 * License along with mLib; if not, write to the Free
800d4c59 24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
28/*----- Header files ------------------------------------------------------*/
29
9b5ac6ff 30#include <assert.h>
800d4c59 31#include <string.h>
32
800d4c59 33#include "buf.h"
0d61a23c 34#include "macros.h"
800d4c59 35
36/*----- Main code ---------------------------------------------------------*/
37
38/* --- @buf_init@ --- *
39 *
40 * Arguments: @buf *b@ = pointer to a buffer block
41 * @void *p@ = pointer to a buffer
42 * @size_t sz@ = size of the buffer
43 *
44 * Returns: ---
45 *
46 * Use: Initializes the buffer block appropriately.
47 */
48
49void buf_init(buf *b, void *p, size_t sz)
50{
51 b->base = b->p = p;
52 b->limit = b->p + sz;
53 b->f = 0;
54}
55
56/* --- @buf_break@ --- *
57 *
58 * Arguments: @buf *b@ = pointer to a buffer block
59 *
60 * Returns: Some negative value.
61 *
62 * Use: Marks a buffer as broken.
63 */
64
65int buf_break(buf *b) { b->f |= BF_BROKEN; return (-1); }
66
67/* --- @buf_flip@ --- *
68 *
69 * Arguments: @buf *b@ = pointer to a buffer block
70 *
71 * Returns: ---
72 *
73 * Use: Flips a buffer so that if you've just been writing to it,
74 * you can now read from the bit you've written.
75 */
76
77void buf_flip(buf *b)
78{
79 b->limit = b->p;
80 b->p = b->base;
81}
82
83/* --- @buf_ensure@ --- *
84 *
85 * Arguments: @buf *b@ = pointer to a buffer block
86 * @size_t sz@ = size of data wanted
87 *
88 * Returns: Zero if it worked, nonzero if there wasn't enough space.
89 *
90 * Use: Ensures that there are @sz@ bytes still in the buffer.
91 */
92
93int buf_ensure(buf *b, size_t sz) { return (BENSURE(b, sz)); }
94
95/* --- @buf_get@ --- *
96 *
97 * Arguments: @buf *b@ = pointer to a buffer block
98 * @size_t sz@ = size of the buffer
99 *
100 * Returns: Pointer to the place in the buffer.
101 *
102 * Use: Reserves a space in the buffer of the requested size, and
103 * returns its start address.
104 */
105
106void *buf_get(buf *b, size_t sz)
107{
108 void *p;
109 if (BENSURE(b, sz))
110 return (0);
111 p = BCUR(b);
112 BSTEP(b, sz);
113 return (p);
114}
115
116/* --- @buf_put@ --- *
117 *
118 * Arguments: @buf *b@ = pointer to a buffer block
119 * @const void *p@ = pointer to a buffer
120 * @size_t sz@ = size of the buffer
121 *
122 * Returns: Zero if it worked, nonzero if there wasn't enough space.
123 *
124 * Use: Fetches data from some place and puts it in the buffer
125 */
126
127int buf_put(buf *b, const void *p, size_t sz)
128{
129 if (BENSURE(b, sz))
130 return (-1);
131 memcpy(BCUR(b), p, sz);
132 BSTEP(b, sz);
133 return (0);
134}
135
136/* --- @buf_getbyte@ --- *
137 *
138 * Arguments: @buf *b@ = pointer to a buffer block
139 *
140 * Returns: A byte, or less than zero if there wasn't a byte there.
141 *
142 * Use: Gets a single byte from a buffer.
143 */
144
145int buf_getbyte(buf *b)
146{
147 if (BENSURE(b, 1))
148 return (-1);
149 return (*b->p++);
150}
151
152/* --- @buf_putbyte@ --- *
153 *
154 * Arguments: @buf *b@ = pointer to a buffer block
155 * @int ch@ = byte to write
156 *
157 * Returns: Zero if OK, nonzero if there wasn't enough space.
158 *
159 * Use: Puts a single byte in a buffer.
160 */
161
162int buf_putbyte(buf *b, int ch)
163{
164 if (BENSURE(b, 1))
165 return (-1);
166 *b->p++ = ch;
167 return (0);
168}
169
9b5ac6ff 170/* --- @buf_getu{8,{16,24,32,64}{,l,b}}@ --- *
800d4c59 171 *
172 * Arguments: @buf *b@ = pointer to a buffer block
9b5ac6ff 173 * @uintSZ *w@ = where to put the word
800d4c59 174 *
175 * Returns: Zero if OK, or nonzero if there wasn't a word there.
176 *
9b5ac6ff 177 * Use: Gets a word of appropriate size and order from a buffer.
800d4c59 178 */
179
9b5ac6ff 180#define BUF_GETU_(n, W, w) \
181 int buf_getu##w(buf *b, uint##n *ww) \
182 { \
183 if (BENSURE(b, SZ_##W)) return (-1); \
184 *ww = LOAD##W(b->p); \
185 BSTEP(b, SZ_##W); \
186 return (0); \
187 }
188DOUINTCONV(BUF_GETU_)
800d4c59 189
9b5ac6ff 190/* --- @buf_putu{8,{16,24,32,64}{,l,b}}@ --- *
800d4c59 191 *
192 * Arguments: @buf *b@ = pointer to a buffer block
9b5ac6ff 193 * @uintSZ w@ = word to write
800d4c59 194 *
9b5ac6ff 195 * Returns: Zero if OK, or nonzero if there wasn't enough space
800d4c59 196 *
9b5ac6ff 197 * Use: Puts a word into a buffer with appropriate size and order.
800d4c59 198 */
199
9b5ac6ff 200#define BUF_PUTU_(n, W, w) \
201 int buf_putu##w(buf *b, uint##n ww) \
202 { \
203 if (BENSURE(b, SZ_##W)) return (-1); \
204 STORE##W(b->p, ww); \
205 BSTEP(b, SZ_##W); \
206 return (0); \
207 }
208DOUINTCONV(BUF_PUTU_)
800d4c59 209
210/* --- @findz@ --- *
211 *
212 * Arguments: @buf *b@ = pointer to a buffer block
213 * @size_t *nn@ = where to put the length
214 *
215 * Returns: Zero if OK, nonzero if there wasn't a null byte to be found.
216 *
95491579
MW
217 * Use: Finds a terminating null byte. The length includes this
218 * terminator.
800d4c59 219 */
220
221static int findz(buf *b, size_t *nn)
222{
223 octet *p;
224
a4589237 225 if ((p = memchr(BCUR(b), 0, BLEFT(b))) == 0) {
800d4c59 226 buf_break(b);
227 return (-1);
228 }
95491579 229 *nn = p - BCUR(b) + 1;
800d4c59 230 return (0);
231}
232
9b5ac6ff 233/* --- @buf_getmem{8,{16,24,32,64}{,l,b},z} --- *
800d4c59 234 *
235 * Arguments: @buf *b@ = pointer to a buffer block
236 * @size_t *nn@ = where to put the length
237 *
238 * Returns: Pointer to the buffer data, or null.
239 *
9b5ac6ff 240 * Use: Gets a chunk of memory from a buffer. The suffix is the
241 * width and byte order of the length; @z@ means null-
242 * terminated.
800d4c59 243 */
244
9b5ac6ff 245#define BUF_GETMEM_(n, W, w) \
246 void *buf_getmem##w(buf *b, size_t *nn) \
247 { \
248 uint##n sz; \
a4589237 249 if (buf_getu##w(b, &sz)) return (0); \
9b5ac6ff 250 *nn = sz; \
251 return (buf_get(b, sz)); \
252 }
253DOUINTCONV(BUF_GETMEM_)
800d4c59 254
800d4c59 255void *buf_getmemz(buf *b, size_t *nn)
256{
257 if (findz(b, nn)) return (0);
258 return (buf_get(b, *nn));
259}
260
9b5ac6ff 261/* --- @buf_putmem{8,{16,24,32,64}{,l,b},z} --- *
800d4c59 262 *
263 * Arguments: @buf *b@ = pointer to a buffer block
264 * @const void *p@ = pointer to data to write
265 * @size_t n@ = length to write
266 *
267 * Returns: Zero if OK, nonzero if there wasn't enough space.
268 *
9b5ac6ff 269 * Use: Writes a chunk of data to a buffer. The suffix is the
270 * width and byte order of the length; @z@ means null-
271 * terminated.
800d4c59 272 */
273
9b5ac6ff 274#define BUF_PUTMEM_(n, W, w) \
275 int buf_putmem##w(buf *b, const void *p, size_t sz) \
276 { \
0d61a23c
MW
277 MUFFLE_WARNINGS_STMT \
278 (CLANG_WARNING("-Wtautological-constant-out-of-range-compare"), \
279 { assert(sz <= MASK##W); }); \
a4589237 280 if (buf_putu##w(b, sz) || buf_put(b, p, sz)) \
9b5ac6ff 281 return (-1); \
282 return (0); \
283 }
284DOUINTCONV(BUF_PUTMEM_)
800d4c59 285
286int buf_putmemz(buf *b, const void *p, size_t n)
287{
288 octet *q;
289
290 assert(!memchr(p, 0, n));
291 if ((q = buf_get(b, n + 1)) == 0)
292 return (-1);
293 memcpy(q, p, n);
294 q[n] = 0;
295 return (0);
296}
297
9b5ac6ff 298/* --- @buf_getbuf{8,{16,24,32,64}{,l,b},z} --- *
800d4c59 299 *
300 * Arguments: @buf *b@ = pointer to a buffer block
301 * @buf *bb@ = where to put the result
302 *
303 * Returns: Zero if it worked, nonzero if there wasn't enough space.
304 *
305 * Use: Gets a block of data from a buffer, and writes its bounds to
9b5ac6ff 306 * another buffer.
800d4c59 307 */
308
9b5ac6ff 309#define BUF_GETBUF_(n, W, w) \
310 int buf_getbuf##w(buf *b, buf *bb) \
311 { \
312 void *p; \
313 size_t sz; \
800d4c59 314 \
9b5ac6ff 315 if ((p = buf_getmem##w(b, &sz)) == 0) \
316 return (-1); \
317 buf_init(bb, p, sz); \
318 return (0); \
800d4c59 319 }
9b5ac6ff 320BUF_DOSUFFIXES(BUF_GETBUF_)
800d4c59 321
9b5ac6ff 322/* --- @buf_putbuf{8,{16,24,32,64}{,l,b},z} --- *
800d4c59 323 *
324 * Arguments: @buf *b@ = pointer to a buffer block
9b5ac6ff 325 * @buf *bb@ = buffer to write
800d4c59 326 *
327 * Returns: Zero if it worked, nonzero if there wasn't enough space.
328 *
9b5ac6ff 329 * Use: Puts the contents of a buffer to a buffer.
800d4c59 330 */
331
9b5ac6ff 332#define BUF_PUTBUF_(n, W, w) \
333 int buf_putbuf##w(buf *b, buf *bb) \
334 { return (buf_putmem##w(b, BBASE(bb), BLEN(bb))); }
335BUF_DOSUFFIXES(BUF_PUTBUF_)
800d4c59 336
9b5ac6ff 337/* --- @buf_putstr{8,{16,24,32,64}{,l,b},z} --- *
800d4c59 338 *
339 * Arguments: @buf *b@ = pointer to a buffer block
9b5ac6ff 340 * @const char *p@ = string to write
800d4c59 341 *
342 * Returns: Zero if it worked, nonzero if there wasn't enough space.
343 *
9b5ac6ff 344 * Use: Puts a null-terminated string to a buffer.
800d4c59 345 */
346
9b5ac6ff 347#define BUF_PUTSTR_(n, W, w) \
348 int buf_putstr##w(buf *b, const char *p) \
349 { return (buf_putmem##w(b, p, strlen(p))); }
350BUF_DOSUFFIXES(BUF_PUTSTR_)
800d4c59 351
352/*----- That's all, folks -------------------------------------------------*/