2008-06-22 14:59:45 +02:00
|
|
|
/*
|
2008-06-22 18:43:04 +02:00
|
|
|
* Copyright © 2006,2007,2008 Pierre Habouzit
|
|
|
|
*
|
2008-06-22 14:59:45 +02:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The names of its contributors may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
#ifndef AWESOME_COMMON_BUFFER_H
|
|
|
|
#define AWESOME_COMMON_BUFFER_H
|
2008-06-22 14:59:45 +02:00
|
|
|
|
|
|
|
#include "common/util.h"
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
typedef struct buffer_t
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
char *s;
|
|
|
|
int len, size;
|
|
|
|
unsigned alloced: 1;
|
|
|
|
unsigned offs :31;
|
|
|
|
} buffer_t;
|
|
|
|
|
|
|
|
extern char buffer_slop[1];
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
#define BUFFER_INIT (buffer_t) { .s = buffer_slop, .size = 1 }
|
2008-06-22 14:59:45 +02:00
|
|
|
|
|
|
|
#define buffer_inita(b, sz) \
|
|
|
|
({ int __sz = (sz); assert (__sz < (64 << 10)); \
|
|
|
|
buffer_init_buf((b), alloca(__sz), __sz); })
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
/** Initialize a buffer.
|
|
|
|
* \param buf A buffer pointer.
|
|
|
|
* \return The same buffer pointer.
|
|
|
|
*/
|
|
|
|
static inline buffer_t *
|
|
|
|
buffer_init(buffer_t *buf)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
*buf = BUFFER_INIT;
|
|
|
|
return buf;
|
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Initialize a buffer with data.
|
2015-07-28 18:47:37 +02:00
|
|
|
* \param b The buffer to init.
|
2008-06-22 18:43:04 +02:00
|
|
|
* \param buf The data to set.
|
|
|
|
* \param size Data size.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
buffer_init_buf(buffer_t *b, void *buf, int size)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
*b = (buffer_t){ .s = buf, .size = size };
|
|
|
|
b->s[0] = '\0';
|
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Wipe a buffer.
|
|
|
|
* \param buf The buffer.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
buffer_wipe(buffer_t *buf)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
if (buf->alloced)
|
|
|
|
free(buf->s - buf->offs);
|
|
|
|
buffer_init(buf);
|
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Get a new buffer.
|
2009-08-30 07:26:19 +02:00
|
|
|
* \return A new allocated buffer.
|
2008-06-22 18:43:04 +02:00
|
|
|
*/
|
2008-06-22 18:58:52 +02:00
|
|
|
static inline buffer_t *
|
2008-06-22 18:43:04 +02:00
|
|
|
buffer_new(void)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
return buffer_init(p_new(buffer_t, 1));
|
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Delete a buffer.
|
|
|
|
* \param buf A pointer to a buffer pointer to free.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
buffer_delete(buffer_t **buf)
|
|
|
|
{
|
|
|
|
if(*buf)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buffer_wipe(*buf);
|
|
|
|
p_delete(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *buffer_detach(buffer_t *buf);
|
|
|
|
void buffer_ensure(buffer_t *buf, int len);
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Grow a buffer.
|
|
|
|
* \param buf The buffer to grow.
|
|
|
|
* \param extra The number to add to length.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
buffer_grow(buffer_t *buf, int extra)
|
2008-06-22 14:59:45 +02:00
|
|
|
{
|
|
|
|
assert (extra >= 0);
|
2008-06-22 18:43:04 +02:00
|
|
|
if (buf->len + extra > buf->size)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buffer_ensure(buf, buf->len + extra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
/** Add data in the buffer.
|
|
|
|
* \param buf Buffer where to add.
|
|
|
|
* \param pos Position where to add.
|
|
|
|
* \param len Length.
|
|
|
|
* \param data Data to add.
|
|
|
|
* \param dlen Data length.
|
|
|
|
*/
|
2008-06-22 14:59:45 +02:00
|
|
|
static inline void
|
|
|
|
buffer_splice(buffer_t *buf, int pos, int len, const void *data, int dlen)
|
|
|
|
{
|
|
|
|
assert (pos >= 0 && len >= 0 && dlen >= 0);
|
|
|
|
|
|
|
|
if (unlikely(pos > buf->len))
|
|
|
|
pos = buf->len;
|
|
|
|
if (unlikely(len > buf->len - pos))
|
|
|
|
len = buf->len - pos;
|
2008-06-22 18:43:04 +02:00
|
|
|
if (pos == 0 && len + buf->offs >= dlen)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buf->offs += len - dlen;
|
|
|
|
buf->s += len - dlen;
|
|
|
|
buf->size -= len - dlen;
|
|
|
|
buf->len -= len - dlen;
|
2008-06-22 18:43:04 +02:00
|
|
|
}
|
|
|
|
else if (len != dlen)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buffer_ensure(buf, buf->len + dlen - len);
|
|
|
|
memmove(buf->s + pos + dlen, buf->s + pos + len, buf->len - pos - len);
|
|
|
|
buf->len += dlen - len;
|
|
|
|
buf->s[buf->len] = '\0';
|
|
|
|
}
|
|
|
|
memcpy(buf->s + pos, data, dlen);
|
|
|
|
}
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
/** Add data at the end of buffer.
|
|
|
|
* \param buf Buffer where to add.
|
|
|
|
* \param data Data to add.
|
|
|
|
* \param len Data length.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
buffer_add(buffer_t *buf, const void *data, int len)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buffer_splice(buf, buf->len, 0, data, len);
|
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
2009-04-26 20:21:54 +02:00
|
|
|
#define buffer_addsl(buf, data) \
|
|
|
|
buffer_add(buf, data, sizeof(data) - 1);
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
/** Add a string to the and of a buffer.
|
|
|
|
* \param buf The buffer where to add.
|
|
|
|
* \param s The string to add.
|
|
|
|
*/
|
|
|
|
static inline void buffer_adds(buffer_t *buf, const char *s)
|
|
|
|
{
|
2008-11-17 12:07:55 +01:00
|
|
|
buffer_splice(buf, buf->len, 0, s, a_strlen(s));
|
2008-06-22 14:59:45 +02:00
|
|
|
}
|
2008-06-22 18:43:04 +02:00
|
|
|
|
|
|
|
/** Add a char at the end of a buffer.
|
|
|
|
* \param buf The buffer where to add.
|
|
|
|
* \param c The char to add.
|
|
|
|
*/
|
|
|
|
static inline void buffer_addc(buffer_t *buf, int c)
|
|
|
|
{
|
2008-06-22 14:59:45 +02:00
|
|
|
buffer_grow(buf, 1);
|
|
|
|
buf->s[buf->len++] = c;
|
|
|
|
buf->s[buf->len] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
void buffer_addvf(buffer_t *buf, const char *fmt, va_list)
|
|
|
|
__attribute__((format(printf, 2, 0)));
|
|
|
|
|
|
|
|
void buffer_addf(buffer_t *buf, const char *fmt, ...)
|
|
|
|
__attribute__((format(printf, 2, 3)));
|
|
|
|
|
2008-06-22 18:43:04 +02:00
|
|
|
#endif
|