Fix: variable declaration shadows previously declared variable
[babeltrace.git] / include / babeltrace / ctf-ir / visitor.h
CommitLineData
8bf65fbd
JG
1#ifndef BABELTRACE_CTF_IR_VISITOR_H
2#define BABELTRACE_CTF_IR_VISITOR_H
3
4/*
5 * BabelTrace - CTF IR: Visitor
6 *
7 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 *
29 * The Common Trace Format (CTF) Specification is available at
30 * http://www.efficios.com/ctf
31 */
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
304b3717
PP
37/**
38@defgroup ctfirvisitor CTF IR visitor
39@ingroup ctfir
40@brief CTF IR visitor.
41
6dd2bd0c
PP
42@code
43#include <babeltrace/ctf-ir/visitor.h>
44@endcode
45
304b3717
PP
46A CTF IR <strong><em>visitor</em></strong> is a function that you
47can use to visit the hierarchy of a
48\link ctfirtraceclass CTF IR trace class\endlink with
49bt_ctf_trace_visit() or of a
50\link ctfirstreamclass CTF IR stream class\endlink with
51bt_ctf_stream_class_visit().
52
53The traversal of the object's hierarchy is always done in a
54pre-order fashion.
55
56@sa ctfirstreamclass
57@sa ctfirtraceclass
58
59@file
60@brief CTF IR visitor types and functions.
61@sa ctfirvisitor
62
63@addtogroup ctfirvisitor
64@{
65*/
66
67/**
68@struct bt_ctf_object
69@brief A CTF IR object wrapper.
70
71This structure wraps both a CTF IR object and its type
72(see #bt_ctf_object_type). It is used in the visiting function.
73
74You can use the bt_ctf_object_get_type() and
75bt_ctf_object_get_object() accessors to get the type and wrapped
76CTF IR object of a CTF IR object wrapper.
77
78A CTF IR object wrapper has <strong>no reference count</strong>: do \em
79not use bt_put() or bt_get() on it.
80
81@sa ctfirvisitor
82*/
d9a13d86 83struct bt_ctf_object;
8bf65fbd 84
304b3717
PP
85/**
86@brief CTF IR object wrapper type.
87*/
d9a13d86 88enum bt_ctf_object_type {
304b3717 89 /// Unknown (used for errors).
d9a13d86 90 BT_CTF_OBJECT_TYPE_UNKNOWN = -1,
304b3717
PP
91
92 /// \ref ctfirtraceclass.
d9a13d86 93 BT_CTF_OBJECT_TYPE_TRACE = 0,
304b3717
PP
94
95 /// \ref ctfirstreamclass.
d9a13d86 96 BT_CTF_OBJECT_TYPE_STREAM_CLASS = 1,
304b3717
PP
97
98 /// \ref ctfirstream.
d9a13d86 99 BT_CTF_OBJECT_TYPE_STREAM = 2,
304b3717
PP
100
101 /// \ref ctfireventclass.
d9a13d86 102 BT_CTF_OBJECT_TYPE_EVENT_CLASS = 3,
304b3717
PP
103
104 /// \ref ctfirevent.
d9a13d86 105 BT_CTF_OBJECT_TYPE_EVENT = 4,
304b3717
PP
106
107 /// Number of entries in this enumeration.
d9a13d86 108 BT_CTF_OBJECT_TYPE_NR,
8bf65fbd
JG
109};
110
304b3717
PP
111/**
112@brief Visting function type.
113
114A function of this type is called by bt_ctf_trace_visit() or
115bt_ctf_stream_class_visit() when visiting the CTF IR object wrapper
116\p object.
117
118\p object has <strong>no reference count</strong>: do \em not use
119bt_put() or bt_get() on it.
120
121@param[in] object Currently visited CTF IR object wrapper.
122@param[in] data User data.
123@returns 0 on success, or a negative value on error.
124
125@prenotnull{object}
126
127@sa bt_ctf_trace_visit(): Accepts a visitor to visit a trace class.
128@sa bt_ctf_stream_class_visit(): Accepts a visitor to visit a stream
129 class.
130*/
d9a13d86 131typedef int (*bt_ctf_visitor)(struct bt_ctf_object *object,
8bf65fbd
JG
132 void *data);
133
304b3717
PP
134/**
135@brief Returns the type of the CTF IR object wrapped by the CTF IR
136 object wrapper \p object.
8bf65fbd 137
304b3717
PP
138@param[in] object Object wrapper of which to get the type.
139@returns Type of \p object.
140
141@prenotnull{object}
142
143@sa bt_ctf_object_get_object(): Returns the object wrapped by a given
144 CTF IR object wrapper.
145*/
146enum bt_ctf_object_type bt_ctf_object_get_type(struct bt_ctf_object *object);
147
148/**
149@brief Returns the CTF IR object wrapped by the CTF IR object
150 wrapper \p object.
151
c2f29fb9
PP
152The reference count of \p object is \em not incremented by this
153function. On success, you must call bt_get() on the return value to
154have your own reference.
155
304b3717
PP
156@param[in] object Object wrapper of which to get the wrapped
157 CTF IR object.
158@returns CTF IR object wrapped by \p object.
159
160@prenotnull{object}
c2f29fb9 161@post The reference count of the returned object is not modified.
304b3717
PP
162
163@sa bt_ctf_object_get_type(): Returns the type of a given
164 CTF IR object wrapper.
165*/
d9a13d86 166void *bt_ctf_object_get_object(struct bt_ctf_object *object);
8bf65fbd 167
304b3717
PP
168/** @} */
169
8bf65fbd
JG
170#ifdef __cplusplus
171}
172#endif
173
174#endif /* BABELTRACE_CTF_IR_VISITOR_H */
This page took 0.04519 seconds and 4 git commands to generate.