Commit | Line | Data |
---|---|---|
01dc0eed JG |
1 | /* |
2 | * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
3 | * | |
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. | |
7 | * | |
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 | |
11 | * for more details. | |
12 | * | |
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 | |
16 | */ | |
17 | ||
18 | #include <common/buffer-view.h> | |
19 | #include <common/dynamic-buffer.h> | |
01dc0eed JG |
20 | #include <common/error.h> |
21 | #include <assert.h> | |
22 | ||
d67b80c5 | 23 | LTTNG_HIDDEN |
01dc0eed JG |
24 | struct lttng_buffer_view lttng_buffer_view_from_view( |
25 | const struct lttng_buffer_view *src, size_t offset, | |
26 | ptrdiff_t len) | |
27 | { | |
28 | struct lttng_buffer_view view = { .data = NULL, .size = 0 }; | |
29 | ||
30 | assert(src); | |
31 | ||
32 | if (offset > src->size) { | |
33 | ERR("Attempt to create buffer view with invalid offset"); | |
34 | goto end; | |
35 | } | |
36 | ||
37 | if (len != -1 && len > (src->size - offset)) { | |
38 | ERR("Attempt to create buffer view with invalid length"); | |
39 | goto end; | |
40 | } | |
41 | ||
42 | view.data = src->data + offset; | |
43 | view.size = len == -1 ? (src->size - offset) : len; | |
44 | end: | |
45 | return view; | |
46 | } | |
47 | ||
d67b80c5 | 48 | LTTNG_HIDDEN |
01dc0eed JG |
49 | struct lttng_buffer_view lttng_buffer_view_from_dynamic_buffer( |
50 | const struct lttng_dynamic_buffer *src, size_t offset, | |
51 | ptrdiff_t len) | |
52 | { | |
53 | struct lttng_buffer_view view = { .data = NULL, .size = 0 }; | |
54 | ||
55 | assert(src); | |
56 | ||
57 | if (offset > src->size) { | |
58 | ERR("Attempt to create buffer view with invalid offset"); | |
59 | goto end; | |
60 | } | |
61 | ||
62 | if (len != -1 && len > (src->size - offset)) { | |
63 | ERR("Attempt to create buffer view with invalid length"); | |
64 | goto end; | |
65 | } | |
66 | ||
67 | view.data = src->data + offset; | |
68 | view.size = len == -1 ? (src->size - offset) : len; | |
69 | end: | |
70 | return view; | |
71 | } |