7184a3400888ce602c9ec59377ee9c426fc3a5ee
2 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #include <common/dynamic-buffer.h>
19 #include <common/macros.h>
20 #include <common/utils.h>
24 size_t round_to_power_of_2(size_t val
)
29 order
= utils_get_count_order_u64(val
);
31 rounded
= (1ULL << order
);
32 assert(rounded
>= val
);
37 void lttng_dynamic_buffer_init(struct lttng_dynamic_buffer
*buffer
)
40 memset(buffer
, 0, sizeof(*buffer
));
43 int lttng_dynamic_buffer_append(struct lttng_dynamic_buffer
*buffer
,
44 const void *buf
, size_t len
)
48 if (!buffer
|| (!buf
&& len
)) {
54 /* Not an error, no-op. */
58 assert(buffer
->capacity
>= buffer
->size
);
59 if (buffer
->capacity
< (len
+ buffer
->size
)) {
60 ret
= lttng_dynamic_buffer_set_capacity(buffer
,
62 (len
- (buffer
->capacity
- buffer
->size
)));
68 memcpy(buffer
->data
+ buffer
->size
, buf
, len
);
74 int lttng_dynamic_buffer_append_buffer(struct lttng_dynamic_buffer
*dst_buffer
,
75 struct lttng_dynamic_buffer
*src_buffer
)
79 if (!dst_buffer
|| !src_buffer
) {
84 ret
= lttng_dynamic_buffer_append(dst_buffer
, src_buffer
->data
,
90 int lttng_dynamic_buffer_set_size(struct lttng_dynamic_buffer
*buffer
,
99 if (new_size
== buffer
->size
) {
103 if (new_size
> buffer
->capacity
) {
104 ret
= lttng_dynamic_buffer_set_capacity(buffer
, new_size
);
108 } else if (new_size
> buffer
->size
) {
109 memset(buffer
->data
+ buffer
->size
, 0, new_size
- buffer
->size
);
112 * Shrinking size. There is no need to zero-out the newly
113 * released memory as it will either be:
114 * - overwritten by lttng_dynamic_buffer_append,
115 * - expanded later, which will zero-out the memory
117 * Users of external APIs are encouraged to set the buffer's
118 * size _before_ making such calls.
121 buffer
->size
= new_size
;
126 int lttng_dynamic_buffer_set_capacity(struct lttng_dynamic_buffer
*buffer
,
130 size_t rounded_capacity
= round_to_power_of_2(new_capacity
);
132 if (!buffer
|| new_capacity
< buffer
->size
) {
137 if (rounded_capacity
== buffer
->capacity
) {
142 buffer
->data
= zmalloc(rounded_capacity
);
150 new_buf
= realloc(buffer
->data
, rounded_capacity
);
152 if (rounded_capacity
> buffer
->capacity
) {
153 memset(new_buf
+ buffer
->capacity
, 0,
154 rounded_capacity
- buffer
->capacity
);
157 /* Realloc failed, try to acquire a new block. */
158 new_buf
= zmalloc(rounded_capacity
);
163 memcpy(new_buf
, buffer
->data
, buffer
->size
);
166 buffer
->data
= new_buf
;
168 buffer
->capacity
= rounded_capacity
;
173 /* Release any memory used by the dynamic buffer. */
174 void lttng_dynamic_buffer_reset(struct lttng_dynamic_buffer
*buffer
)
180 buffer
->capacity
= 0;
This page took 0.032038 seconds and 3 git commands to generate.