2 * Copyright (c) 2005 Max Okumoto
3 * Copyright (c) 1988, 1989, 1990, 1993
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1988, 1989 by Adam de Boor
6 * Copyright (c) 1989 by Berkeley Softworks
9 * This code is derived from software contributed to Berkeley by
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * @(#)buf.c 8.1 (Berkeley) 6/6/93
41 * $FreeBSD: src/usr.bin/make/buf.c,v 1.32 2005/02/07 11:27:47 harti Exp $
42 * $DragonFly: src/usr.bin/make/buf.c,v 1.43 2005/09/24 07:37:38 okumoto Exp $
47 * Functions for automatically-expanded buffers.
57 * Returns the number of bytes in the buffer. Doesn't include the
58 * null-terminating byte.
60 * @return The number of bytes in Buffer object.
63 Buf_Size(const Buffer
*buf
)
65 return (buf
->end
- buf
->buf
);
69 * Returns a reference to the data contained in the buffer.
71 * @note Adding data to the Buffer object may invalidate the reference.
74 Buf_Data(const Buffer
*bp
)
80 * Expand the buffer to hold the number of additional bytes, plus
81 * space to store a terminating NULL byte.
84 BufExpand(Buffer
*bp
, size_t nb
)
86 size_t len
= Buf_Size(bp
);
87 if (bp
->size
< len
+ nb
+ 1) {
88 int size
= bp
->size
+ MAX(nb
+ 1, BUF_ADD_INC
);
90 bp
->buf
= erealloc(bp
->buf
, size
);
92 bp
->end
= bp
->buf
+ len
;
97 * Add a single byte to the buffer.
100 Buf_AddByte(Buffer
*bp
, char byte
)
110 * Add bytes to the buffer.
113 Buf_AddBytes(Buffer
*bp
, size_t len
, const char bytes
[])
117 memcpy(bp
->end
, bytes
, len
);
123 * Get the contents of a buffer and destroy the buffer. If the buffer
124 * is NULL, return NULL.
127 * the pointer to the data.
142 * Initialize a buffer. If no initial size is given, a reasonable
145 * @return A buffer object to be given to other functions in this library.
148 * Space is allocated for the Buffer object and a internal buffer.
151 Buf_Init(size_t size
)
153 Buffer
*bp
; /* New Buffer */
158 bp
= emalloc(sizeof(*bp
));
160 bp
->buf
= emalloc(size
);
168 * Destroy a buffer, and optionally free its data, too.
171 * Space for the Buffer object and possibly the internal buffer
175 Buf_Destroy(Buffer
*buf
, bool freeData
)
183 * Replace the last byte in a buffer. If the buffer was empty
184 * intially, then a new byte will be added.
187 Buf_ReplaceLastByte(Buffer
*bp
, char byte
)
189 if (bp
->end
== bp
->buf
) {
190 Buf_AddByte(bp
, byte
);
192 *(bp
->end
- 1) = byte
;
197 * Append characters in str to Buffer object
200 Buf_Append(Buffer
*bp
, const char str
[])
202 Buf_AddBytes(bp
, strlen(str
), str
);
206 * Append characters in buf to Buffer object
209 Buf_AppendBuf(Buffer
*bp
, const Buffer
*buf
)
211 Buf_AddBytes(bp
, Buf_Size(buf
), buf
->buf
);
215 * Append characters between str and end to Buffer object.
218 Buf_AppendRange(Buffer
*bp
, const char str
[], const char *end
)
220 Buf_AddBytes(bp
, end
- str
, str
);
224 * Convert newlines in buffer to spaces. The trailing newline is
228 Buf_StripNewlines(Buffer
*bp
)
233 * If there is anything in the buffer, remove the last
236 if (ptr
!= bp
->buf
) {
237 if (*(ptr
- 1) == '\n') {
245 /* Convert newline characters to a space characters. */
246 while (ptr
!= bp
->buf
) {
255 * Clear the contents of the buffer.
258 Buf_Clear(Buffer
*bp
)