Fix: variable declaration shadows previously declared variable
[babeltrace.git] / lib / ctf-ir / field-path.c
CommitLineData
b011f6b0
PP
1/*
2 * field-path.c
3 *
4 * Babeltrace CTF IR - Field path
5 *
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
1e6cfa95
PP
28#define BT_LOG_TAG "FIELD-PATH"
29#include <babeltrace/lib-logging-internal.h>
30
2e33ac5a 31#include <babeltrace/ctf-ir/field-types.h>
331b8d44 32#include <babeltrace/ctf-ir/field-types-internal.h>
b011f6b0
PP
33#include <babeltrace/ctf-ir/field-path-internal.h>
34#include <babeltrace/ctf-ir/field-path.h>
35#include <limits.h>
544d0515 36#include <stdint.h>
1e6cfa95 37#include <inttypes.h>
b011f6b0
PP
38#include <glib.h>
39
40static
41void field_path_destroy(struct bt_object *obj)
42{
43 struct bt_ctf_field_path *field_path = (struct bt_ctf_field_path *) obj;
44
1e6cfa95
PP
45 BT_LOGD("Destroying field path: addr=%p", obj);
46
b011f6b0
PP
47 if (!field_path) {
48 return;
49 }
50
51 if (field_path->indexes) {
52 g_array_free(field_path->indexes, TRUE);
53 }
54 g_free(field_path);
55}
56
57BT_HIDDEN
58struct bt_ctf_field_path *bt_ctf_field_path_create(void)
59{
60 struct bt_ctf_field_path *field_path = NULL;
61
1e6cfa95
PP
62 BT_LOGD_STR("Creating empty field path object.");
63
b011f6b0
PP
64 field_path = g_new0(struct bt_ctf_field_path, 1);
65 if (!field_path) {
1e6cfa95 66 BT_LOGE_STR("Failed to allocate one field path.");
b011f6b0
PP
67 goto error;
68 }
69
70 bt_object_init(field_path, field_path_destroy);
46df6b28 71 field_path->root = BT_CTF_SCOPE_UNKNOWN;
b011f6b0
PP
72 field_path->indexes = g_array_new(TRUE, FALSE, sizeof(int));
73 if (!field_path->indexes) {
1e6cfa95 74 BT_LOGE_STR("Failed to allocate a GArray.");
b011f6b0
PP
75 goto error;
76 }
77
1e6cfa95 78 BT_LOGD("Created empty field path object: addr=%p", field_path);
b011f6b0
PP
79 return field_path;
80
81error:
82 BT_PUT(field_path);
83 return NULL;
84}
85
86BT_HIDDEN
87void bt_ctf_field_path_clear(struct bt_ctf_field_path *field_path)
88{
89 if (field_path->indexes->len > 0) {
90 g_array_remove_range(field_path->indexes, 0,
91 field_path->indexes->len);
92 }
93}
94
95BT_HIDDEN
96struct bt_ctf_field_path *bt_ctf_field_path_copy(
97 struct bt_ctf_field_path *path)
98{
1e6cfa95 99 struct bt_ctf_field_path *new_path;
b011f6b0 100
1e6cfa95
PP
101 assert(path);
102 BT_LOGD("Copying field path: addr=%p, index-count=%u",
103 path, path->indexes->len);
104 new_path = bt_ctf_field_path_create();
b011f6b0 105 if (!new_path) {
1e6cfa95 106 BT_LOGE_STR("Cannot create empty field path.");
b011f6b0
PP
107 goto end;
108 }
109
110 new_path->root = path->root;
111 g_array_insert_vals(new_path->indexes, 0,
112 path->indexes->data, path->indexes->len);
1e6cfa95
PP
113 BT_LOGD("Copied field path: original-addr=%p, copy-addr=%p",
114 path, new_path);
b011f6b0
PP
115end:
116 return new_path;
117}
118
b74f1a20 119enum bt_ctf_scope bt_ctf_field_path_get_root_scope(
b011f6b0
PP
120 const struct bt_ctf_field_path *field_path)
121{
46df6b28 122 enum bt_ctf_scope scope = BT_CTF_SCOPE_UNKNOWN;
b011f6b0
PP
123
124 if (!field_path) {
1e6cfa95 125 BT_LOGW_STR("Invalid parameter: field path is NULL.");
b011f6b0
PP
126 goto end;
127 }
128
129 scope = field_path->root;
130
131end:
132 return scope;
133}
134
544d0515 135int64_t bt_ctf_field_path_get_index_count(
b011f6b0
PP
136 const struct bt_ctf_field_path *field_path)
137{
1e6cfa95
PP
138 int64_t count = (int64_t) -1;
139
140 if (!field_path) {
141 BT_LOGW_STR("Invalid parameter: field path is NULL.");
142 goto end;
143 }
144
145 count = (int64_t) field_path->indexes->len;
146
147end:
148 return count;
b011f6b0
PP
149}
150
151int bt_ctf_field_path_get_index(const struct bt_ctf_field_path *field_path,
9ac68eb1 152 uint64_t index)
b011f6b0
PP
153{
154 int ret = INT_MIN;
155
9ac68eb1 156 if (!field_path) {
1e6cfa95 157 BT_LOGW_STR("Invalid parameter: field path is NULL.");
b011f6b0
PP
158 goto end;
159 }
160
161 if (index >= field_path->indexes->len) {
1e6cfa95
PP
162 BT_LOGW("Invalid parameter: index is out of bounds: "
163 "addr=%p, index=%" PRIu64 ", count=%u",
164 field_path, index, field_path->indexes->len);
b011f6b0
PP
165 goto end;
166 }
167
168 ret = g_array_index(field_path->indexes, int, index);
169
170end:
171 return ret;
172}
This page took 0.042983 seconds and 4 git commands to generate.