buf.c revision 1.29 1 1.29 rillig /* $NetBSD: buf.c,v 1.29 2020/08/01 21:40:49 rillig Exp $ */
2 1.6 christos
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5 1.14 agc * All rights reserved.
6 1.14 agc *
7 1.14 agc * This code is derived from software contributed to Berkeley by
8 1.14 agc * Adam de Boor.
9 1.14 agc *
10 1.14 agc * Redistribution and use in source and binary forms, with or without
11 1.14 agc * modification, are permitted provided that the following conditions
12 1.14 agc * are met:
13 1.14 agc * 1. Redistributions of source code must retain the above copyright
14 1.14 agc * notice, this list of conditions and the following disclaimer.
15 1.14 agc * 2. Redistributions in binary form must reproduce the above copyright
16 1.14 agc * notice, this list of conditions and the following disclaimer in the
17 1.14 agc * documentation and/or other materials provided with the distribution.
18 1.14 agc * 3. Neither the name of the University nor the names of its contributors
19 1.14 agc * may be used to endorse or promote products derived from this software
20 1.14 agc * without specific prior written permission.
21 1.14 agc *
22 1.14 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.14 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.14 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.14 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.14 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.14 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.14 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.14 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.14 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.14 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.14 agc * SUCH DAMAGE.
33 1.14 agc */
34 1.14 agc
35 1.14 agc /*
36 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
37 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
38 1.1 cgd * All rights reserved.
39 1.1 cgd *
40 1.1 cgd * This code is derived from software contributed to Berkeley by
41 1.1 cgd * Adam de Boor.
42 1.1 cgd *
43 1.1 cgd * Redistribution and use in source and binary forms, with or without
44 1.1 cgd * modification, are permitted provided that the following conditions
45 1.1 cgd * are met:
46 1.1 cgd * 1. Redistributions of source code must retain the above copyright
47 1.1 cgd * notice, this list of conditions and the following disclaimer.
48 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
49 1.1 cgd * notice, this list of conditions and the following disclaimer in the
50 1.1 cgd * documentation and/or other materials provided with the distribution.
51 1.1 cgd * 3. All advertising materials mentioning features or use of this software
52 1.1 cgd * must display the following acknowledgement:
53 1.1 cgd * This product includes software developed by the University of
54 1.1 cgd * California, Berkeley and its contributors.
55 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
56 1.1 cgd * may be used to endorse or promote products derived from this software
57 1.1 cgd * without specific prior written permission.
58 1.1 cgd *
59 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 1.1 cgd * SUCH DAMAGE.
70 1.1 cgd */
71 1.1 cgd
72 1.15 ross #ifndef MAKE_NATIVE
73 1.29 rillig static char rcsid[] = "$NetBSD: buf.c,v 1.29 2020/08/01 21:40:49 rillig Exp $";
74 1.11 lukem #else
75 1.10 christos #include <sys/cdefs.h>
76 1.1 cgd #ifndef lint
77 1.6 christos #if 0
78 1.8 christos static char sccsid[] = "@(#)buf.c 8.1 (Berkeley) 6/6/93";
79 1.6 christos #else
80 1.29 rillig __RCSID("$NetBSD: buf.c,v 1.29 2020/08/01 21:40:49 rillig Exp $");
81 1.6 christos #endif
82 1.1 cgd #endif /* not lint */
83 1.11 lukem #endif
84 1.1 cgd
85 1.29 rillig /* Functions for automatically-expanded NUL-terminated buffers. */
86 1.1 cgd
87 1.27 rillig #include <limits.h>
88 1.27 rillig #include "make.h"
89 1.27 rillig #include "buf.h"
90 1.1 cgd
91 1.1 cgd #ifndef max
92 1.29 rillig #define max(a, b) ((a) > (b) ? (a) : (b))
93 1.1 cgd #endif
94 1.1 cgd
95 1.1 cgd #define BUF_DEF_SIZE 256 /* Default buffer size */
96 1.1 cgd
97 1.29 rillig /* Extend the buffer for adding a single byte. */
98 1.1 cgd void
99 1.24 dsl Buf_Expand_1(Buffer *bp)
100 1.1 cgd {
101 1.24 dsl bp->size += max(bp->size, 16);
102 1.24 dsl bp->buffer = bmake_realloc(bp->buffer, bp->size);
103 1.1 cgd }
104 1.24 dsl
105 1.29 rillig /* Add the given bytes to the buffer. */
106 1.1 cgd void
107 1.29 rillig Buf_AddBytesZ(Buffer *bp, const Byte *bytesPtr, size_t numBytes)
108 1.1 cgd {
109 1.29 rillig size_t count = bp->count;
110 1.1 cgd
111 1.24 dsl if (__predict_false(count + numBytes >= bp->size)) {
112 1.24 dsl bp->size += max(bp->size, numBytes + 16);
113 1.24 dsl bp->buffer = bmake_realloc(bp->buffer, bp->size);
114 1.24 dsl }
115 1.1 cgd
116 1.29 rillig Byte *ptr = bp->buffer + count;
117 1.24 dsl bp->count = count + numBytes;
118 1.24 dsl memcpy(ptr, bytesPtr, numBytes);
119 1.29 rillig ptr[numBytes] = '\0';
120 1.1 cgd }
121 1.24 dsl
122 1.29 rillig /* Add the bytes between start and end to the buffer. */
123 1.28 rillig void
124 1.28 rillig Buf_AddBytesBetween(Buffer *bp, const char *start, const char *end)
125 1.28 rillig {
126 1.29 rillig Buf_AddBytesZ(bp, start, (size_t)(end - start));
127 1.28 rillig }
128 1.28 rillig
129 1.29 rillig /* Add the given string to the buffer. */
130 1.28 rillig void
131 1.28 rillig Buf_AddStr(Buffer *bp, const char *str)
132 1.28 rillig {
133 1.29 rillig Buf_AddBytesZ(bp, str, strlen(str));
134 1.28 rillig }
135 1.28 rillig
136 1.29 rillig /* Add the given number to the buffer. */
137 1.27 rillig void
138 1.27 rillig Buf_AddInt(Buffer *bp, int n)
139 1.27 rillig {
140 1.27 rillig /*
141 1.27 rillig * We need enough space for the decimal representation of an int.
142 1.27 rillig * We calculate the space needed for the octal representation, and
143 1.27 rillig * add enough slop to cope with a '-' sign and a trailing '\0'.
144 1.27 rillig */
145 1.27 rillig size_t bits = sizeof(int) * CHAR_BIT;
146 1.27 rillig char buf[1 + (bits + 2) / 3 + 1];
147 1.27 rillig
148 1.29 rillig size_t len = (size_t)snprintf(buf, sizeof buf, "%d", n);
149 1.29 rillig Buf_AddBytesZ(bp, buf, len);
150 1.27 rillig }
151 1.27 rillig
152 1.29 rillig /* Get the data (usually a string) from the buffer.
153 1.29 rillig * The returned data is valid until the next modifying operation
154 1.29 rillig * on the buffer.
155 1.1 cgd *
156 1.29 rillig * Returns the pointer to the data and optionally the length of the
157 1.29 rillig * data in the buffer. */
158 1.1 cgd Byte *
159 1.29 rillig Buf_GetAllZ(Buffer *bp, size_t *numBytesPtr)
160 1.1 cgd {
161 1.24 dsl if (numBytesPtr != NULL)
162 1.24 dsl *numBytesPtr = bp->count;
163 1.26 rillig return bp->buffer;
164 1.1 cgd }
165 1.24 dsl
166 1.29 rillig /* Mark the buffer as empty, so it can be filled with data again. */
167 1.1 cgd void
168 1.24 dsl Buf_Empty(Buffer *bp)
169 1.1 cgd {
170 1.24 dsl bp->count = 0;
171 1.29 rillig bp->buffer[0] = '\0';
172 1.1 cgd }
173 1.24 dsl
174 1.29 rillig /* Initialize a buffer.
175 1.29 rillig * If the given initial size is 0, a reasonable default is used. */
176 1.24 dsl void
177 1.29 rillig Buf_InitZ(Buffer *bp, size_t size)
178 1.1 cgd {
179 1.21 christos if (size <= 0) {
180 1.1 cgd size = BUF_DEF_SIZE;
181 1.1 cgd }
182 1.24 dsl bp->size = size;
183 1.24 dsl bp->count = 0;
184 1.22 joerg bp->buffer = bmake_malloc(size);
185 1.24 dsl *bp->buffer = 0;
186 1.24 dsl }
187 1.1 cgd
188 1.29 rillig /* Reset the buffer.
189 1.29 rillig * If freeData is TRUE, the data from the buffer is freed as well.
190 1.29 rillig * Otherwise it is kept and returned. */
191 1.24 dsl Byte *
192 1.24 dsl Buf_Destroy(Buffer *buf, Boolean freeData)
193 1.1 cgd {
194 1.29 rillig Byte *data = buf->buffer;
195 1.1 cgd if (freeData) {
196 1.24 dsl free(data);
197 1.24 dsl data = NULL;
198 1.1 cgd }
199 1.24 dsl
200 1.24 dsl buf->size = 0;
201 1.24 dsl buf->count = 0;
202 1.24 dsl buf->buffer = NULL;
203 1.24 dsl
204 1.24 dsl return data;
205 1.1 cgd }
206 1.25 sjg
207 1.25 sjg #ifndef BUF_COMPACT_LIMIT
208 1.25 sjg # define BUF_COMPACT_LIMIT 128 /* worthwhile saving */
209 1.25 sjg #endif
210 1.25 sjg
211 1.29 rillig /* Reset the buffer and return its data.
212 1.29 rillig *
213 1.29 rillig * If the buffer size is much greater than its content,
214 1.29 rillig * a new buffer will be allocated and the old one freed. */
215 1.25 sjg Byte *
216 1.25 sjg Buf_DestroyCompact(Buffer *buf)
217 1.25 sjg {
218 1.25 sjg #if BUF_COMPACT_LIMIT > 0
219 1.25 sjg if (buf->size - buf->count >= BUF_COMPACT_LIMIT) {
220 1.25 sjg /* We trust realloc to be smart */
221 1.29 rillig Byte *data = bmake_realloc(buf->buffer, buf->count + 1);
222 1.29 rillig if (data) { /* XXX: can never be NULL */
223 1.25 sjg data[buf->count] = 0;
224 1.25 sjg Buf_Destroy(buf, FALSE);
225 1.25 sjg return data;
226 1.25 sjg }
227 1.25 sjg }
228 1.25 sjg #endif
229 1.25 sjg return Buf_Destroy(buf, FALSE);
230 1.25 sjg }
231