2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or (at
5 * your option) any later version.
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 * Copyright © 2006 Pierre Habouzit
21 * Copyright notice from original mutt:
22 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
24 * This file is part of mutt-ng, see http://www.muttng.org/.
25 * It's licensed under the GNU General Public License,
26 * please see the file GPL in the top level source directory.
31 #define BUFSIZ_INCREMENT 1024
33 void buffer_resize(buffer_t *buf, ssize_t newsize)
35 if (newsize >= buf->size) {
36 /* rounds newsize to the 1024 multiple just after newsize+1 */
37 newsize = (newsize + BUFSIZ_INCREMENT) & ~(BUFSIZ_INCREMENT - 1);
38 p_realloc(&buf->data, newsize);
45 /****** LEGACY BUFFERS *******/
48 * Creates and initializes a BUFFER*. If passed an existing BUFFER*,
49 * just initializes. Frees anything already in the buffer.
51 * Disregards the 'destroy' flag, which seems reserved for caller.
52 * This is bad, but there's no apparent protocol for it.
54 BUFFER *mutt_buffer_init(BUFFER *b)
65 * Creates and initializes a BUFFER*. If passed an existing BUFFER*,
66 * just initializes. Frees anything already in the buffer. Copies in
69 * Disregards the 'destroy' flag, which seems reserved for caller.
70 * This is bad, but there's no apparent protocol for it.
72 BUFFER *mutt_buffer_from(BUFFER * b, const char *seed)
77 b = mutt_buffer_init(b);
78 b->dsize = m_strlen(seed);
79 b->data = m_strdup(seed);
80 b->dptr = (char *)b->data + b->dsize;
84 void mutt_buffer_free(BUFFER **p)
87 p_delete(&(*p)->data);
92 /* dynamically grows a BUFFER to accomodate s, in increments of 128 bytes.
93 * Always one byte bigger than necessary for the null terminator, and
94 * the buffer is always null-terminated */
95 void mutt_buffer_add(BUFFER *buf, const char *s, ssize_t len)
99 if (buf->dptr + len + 1 > buf->data + buf->dsize) {
100 offset = buf->dptr - buf->data;
101 buf->dsize += ((len + 1 + 127) & ~127);
102 p_realloc(&buf->data, buf->dsize);
103 buf->dptr = buf->data + offset;
105 memcpy(buf->dptr, s, len);
110 ssize_t buffer_addvf(buffer_t *buf, const char *fmt, va_list args)
116 buffer_ensure(buf, BUFSIZ);
118 len = vsnprintf(buf->data + buf->len, buf->size - buf->len, fmt, args);
121 if (len >= buf->size - buf->len) {
122 buffer_ensure(buf, len);
123 vsnprintf(buf->data + buf->len, buf->size - buf->len, fmt, ap);
126 buf->data[buf->len] = '\0';
131 ssize_t buffer_addf(buffer_t *buf, const char *fmt, ...)
136 res = buffer_addvf(buf, fmt, args);