Rename bt_ctf_X -> bt_X, maintain backward compat. for pre-2.0 CTF writer
[babeltrace.git] / include / babeltrace / ctf-ir / field-path.h
CommitLineData
1ca80abd
PP
1#ifndef BABELTRACE_CTF_IR_FIELD_PATH_H
2#define BABELTRACE_CTF_IR_FIELD_PATH_H
b011f6b0
PP
3
4/*
5 * BabelTrace - CTF IR: Field path
6 *
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 * The Common Trace Format (CTF) Specification is available at
28 * http://www.efficios.com/ctf
29 */
30
544d0515 31#include <stdint.h>
b011f6b0
PP
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
50842bdc 37struct bt_field_type;
9d408fca 38
269b496c
PP
39/**
40@defgroup ctfirfieldpath CTF IR field path
41@ingroup ctfir
42@brief CTF IR field path.
43
44@code
45#include <babeltrace/ctf-ir/field-path.h>
46@endcode
47
48A CTF IR <strong><em>field path</em></strong> represents an absolute
49path to a field in the hierarchy of a
50\link ctfirtraceclass CTF IR trace class\endlink, of a
51\link ctfirstreamclass CTF IR stream class\endlink, or of a
52\link ctfireventclass CTF IR event class\endlink.
53
54As a reminder, here's the structure of a CTF packet:
55
56@imgpacketstructure
57
58Sequence and variant \link ctfirfieldtypes CTF IR field types\endlink
59can return a field path to resp. their length field and tag field
50842bdc
PP
60with resp. bt_field_type_sequence_get_length_field_path() and
61bt_field_type_variant_get_tag_field_path().
269b496c
PP
62
63A field path has a <em>root scope</em> which indicates from which of the
64six CTF scopes to begin. It also has a list of structure field <em>path
65indexes</em> which indicate the path to take to reach the destination
66field. A path index set to -1 means that you need to continue the lookup
67within the current element of an array or sequence field.
68
69As with any Babeltrace object, CTF IR field path objects have
70<a href="https://en.wikipedia.org/wiki/Reference_counting">reference
71counts</a>. See \ref refs to learn more about the reference counting
72management of Babeltrace objects.
73
74@file
75@brief CTF IR field path type and functions.
76@sa ctfirfieldpath
77
78@addtogroup ctfirfieldpath
79@{
80*/
81
82/**
50842bdc 83@struct bt_field_path
269b496c
PP
84@brief A CTF IR field path.
85@sa ctfirfieldpath
86*/
50842bdc 87struct bt_field_path;
b011f6b0 88
269b496c
PP
89/**
90@brief Returns the root scope of the CTF IR field path \p field_path.
91
92@param[in] field_path Field path of which to get the root scope.
93@returns Root scope of \p field_path, or
50842bdc 94 #BT_SCOPE_UNKNOWN on error.
269b496c
PP
95
96@prenotnull{field_path}
97@postrefcountsame{field_path}
98*/
50842bdc
PP
99extern enum bt_scope bt_field_path_get_root_scope(
100 const struct bt_field_path *field_path);
b011f6b0 101
269b496c
PP
102/**
103@brief Returns the number of path indexes contained in the CTF IR field
104 path \p field_path.
105
106@param[in] field_path Field path of which to get the number of
107 path indexes.
108@returns Number of path indexes contained in
109 \p field_path, or a negative value on error.
110
111@prenotnull{field_path}
112@postrefcountsame{field_path}
113*/
50842bdc
PP
114extern int64_t bt_field_path_get_index_count(
115 const struct bt_field_path *field_path);
b011f6b0 116
269b496c
PP
117/**
118@brief Returns the path index contained in the CTF IR field
119 path \p field_path at index \p index.
120
121@param[in] field_path Field path of which to get the path index
122 at index \p index.
123@param[in] index Index of path index to get.
124@returns Path index of \p field_path at index \p index,
125 or \c INT_MIN on error.
126
127@prenotnull{field_path}
128@pre \p index is lesser than the number of path indexes contained in the
129 field path \p field_path (see
50842bdc 130 bt_field_path_get_index_count()).
269b496c
PP
131@postrefcountsame{field_path}
132*/
50842bdc
PP
133extern int bt_field_path_get_index(
134 const struct bt_field_path *field_path, uint64_t index);
b011f6b0 135
269b496c
PP
136/** @} */
137
b011f6b0
PP
138#ifdef __cplusplus
139}
140#endif
141
1ca80abd 142#endif /* BABELTRACE_CTF_IR_FIELD_PATH_H */
This page took 0.042927 seconds and 4 git commands to generate.