Move to kernel style SPDX license identifiers
[babeltrace.git] / src / lib / trace-ir / field-path.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016-2018 Philippe Proulx <pproulx@efficios.com>
5 *
6 * The Common Trace Format (CTF) Specification is available at
7 * http://www.efficios.com/ctf
8 */
9
10 #ifndef BABELTRACE_TRACE_IR_FIELD_PATH_INTERNAL
11 #define BABELTRACE_TRACE_IR_FIELD_PATH_INTERNAL
12
13 #include "lib/object.h"
14 #include <babeltrace2/trace-ir/field-path.h>
15 #include "common/assert.h"
16 #include "common/macros.h"
17 #include <glib.h>
18
19 struct bt_field_path_item {
20 enum bt_field_path_item_type type;
21 uint64_t index;
22 };
23
24 struct bt_field_path {
25 struct bt_object base;
26 enum bt_field_path_scope root;
27
28 /* Array of `struct bt_field_path_item` (items) */
29 GArray *items;
30 };
31
32 BT_HIDDEN
33 struct bt_field_path *bt_field_path_create(void);
34
35 static inline
36 struct bt_field_path_item *bt_field_path_borrow_item_by_index_inline(
37 const struct bt_field_path *field_path, uint64_t index)
38 {
39 BT_ASSERT_DBG(field_path);
40 BT_ASSERT_DBG(index < field_path->items->len);
41 return &g_array_index(field_path->items, struct bt_field_path_item,
42 index);
43 }
44
45 static inline
46 void bt_field_path_append_item(struct bt_field_path *field_path,
47 struct bt_field_path_item *item)
48 {
49 BT_ASSERT(field_path);
50 BT_ASSERT(item);
51 g_array_append_val(field_path->items, *item);
52 }
53
54 static inline
55 void bt_field_path_remove_last_item(struct bt_field_path *field_path)
56 {
57 BT_ASSERT(field_path);
58 BT_ASSERT(field_path->items->len > 0);
59 g_array_set_size(field_path->items, field_path->items->len - 1);
60 }
61
62 static inline
63 const char *bt_field_path_item_type_string(enum bt_field_path_item_type type)
64 {
65 switch (type) {
66 case BT_FIELD_PATH_ITEM_TYPE_INDEX:
67 return "INDEX";
68 case BT_FIELD_PATH_ITEM_TYPE_CURRENT_ARRAY_ELEMENT:
69 return "CURRENT_ARRAY_ELEMENT";
70 default:
71 return "(unknown)";
72 }
73 };
74
75 #endif /* BABELTRACE_TRACE_IR_FIELD_PATH_INTERNAL */
This page took 0.030202 seconds and 4 git commands to generate.