Add lttng_dynamic_buffer_append_view util
[lttng-tools.git] / src / common / dynamic-buffer.c
index cec2f1e608a67d1e0a148c491c8a8015ce5f27dc..9aa0bb3c94800068222eec05b98d52d4d4cf3fa9 100644 (file)
@@ -16,6 +16,7 @@
  */
 
 #include <common/dynamic-buffer.h>
+#include <common/buffer-view.h>
 #include <common/utils.h>
 #include <assert.h>
 
@@ -93,6 +94,23 @@ end:
        return ret;
 }
 
+LTTNG_HIDDEN
+int lttng_dynamic_buffer_append_view(struct lttng_dynamic_buffer *buffer,
+               const struct lttng_buffer_view *src)
+{
+       int ret;
+
+       if (!buffer || !src) {
+               ret = -1;
+               goto end;
+       }
+
+       ret = lttng_dynamic_buffer_append(buffer, src->data,
+                       src->size);
+end:
+       return ret;
+}
+
 LTTNG_HIDDEN
 int lttng_dynamic_buffer_set_size(struct lttng_dynamic_buffer *buffer,
                size_t new_size)
@@ -108,22 +126,12 @@ int lttng_dynamic_buffer_set_size(struct lttng_dynamic_buffer *buffer,
        }
 
        if (new_size > buffer->_capacity) {
-               size_t original_size = buffer->size;
-               size_t original_capacity = buffer->_capacity;
-
                ret = lttng_dynamic_buffer_set_capacity(buffer, new_size);
                if (ret) {
                        goto end;
                }
 
-               /*
-                * Zero-initialize the space that was left in the buffer at the
-                * before we increased its capacity (original capacity - original size).
-                * The newly acquired capacity (new capacity - original capacity)
-                * is zeroed by lttng_dynamic_buffer_set_capacity().
-                */
-               memset(buffer->data + original_size, 0,
-                               original_capacity - original_size);
+               memset(buffer->data + buffer->size, 0, new_size - buffer->size);
        } else if (new_size > buffer->size) {
                memset(buffer->data + buffer->size, 0, new_size - buffer->size);
        } else {
This page took 0.024019 seconds and 4 git commands to generate.