API doc: add more details about reference counting
[babeltrace.git] / include / babeltrace / ref.h
CommitLineData
83509119
JG
1#ifndef BABELTRACE_REF_H
2#define BABELTRACE_REF_H
de3dd40e
PP
3
4/*
83509119 5 * BabelTrace: common reference counting
de3dd40e
PP
6 *
7 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
8 * Copyright (c) 2015 Philippe Proulx <pproulx@efficios.com>
83509119 9 * Copyright (c) 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
de3dd40e
PP
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
26162993
PP
30#ifdef __cplusplus
31extern "C" {
32#endif
33
b62d3f21
PP
34/**
35@defgroup refs Reference counting management
36@ingroup apiref
37@brief Common reference counting management for all Babeltrace objects.
38
39The macros and functions of this module are everything that is needed
40to handle the <strong><em>reference counting</em></strong> of
41Babeltrace objects.
42
223f6c6a 43Any Babeltrace object can be shared by multiple owners thanks to
b62d3f21 44<a href="https://en.wikipedia.org/wiki/Reference_counting">reference
223f6c6a 45counting</a>.
b62d3f21 46
223f6c6a
PP
47The Babeltrace C API complies with the following key principles:
48
491. When you call an API function which accepts a Babeltrace object
50 pointer as a parameter, the API function <strong>borrows the
51 reference</strong> for the <strong>duration of the function</strong>.
52
53 @image html ref-count-user-calls.png
54
55 The API function can also get a new reference if the system needs a
56 more persistent reference, but the ownership is <strong>never
57 transferred</strong> from the caller to the API function.
58
59 In other words, the caller still owns the object after calling any
60 API function: no function "steals" the user's reference (except
61 bt_put()).
62
632. An API function which \em returns a Babeltrace object pointer to the
64 user returns a <strong>new reference</strong>. The caller becomes an
65 owner of the object.
66
67 @image html ref-count-api-returns.png
68
69 It is your responsibility to discard the object when you don't
70 need it anymore with bt_put().
71
72 For example, see bt_value_array_get().
73
743. A Babeltrace object pointer received as a parameter in a user
75 function called back from an API function is a
76 <strong>borrowed</strong>, or <strong>weak reference</strong>: if you
77 need a reference which is more persistent that the duration of the
78 user function, call bt_get() on the pointer.
79
80 @image html ref-count-callback.png
81
82 For example, see bt_value_map_foreach().
b62d3f21
PP
83
84The two macros BT_PUT() and BT_MOVE() operate on \em variables rather
85than pointer values. You should use BT_PUT() instead of bt_put() when
86possible to avoid "double puts". For the same reason, you should use use
87BT_MOVE() instead of performing manual reference moves between
88variables.
89
90@file
91@brief Reference counting management macros and functions.
92@sa refs
93
94@addtogroup refs
95@{
96*/
97
98/**
34d0da31
PP
99@brief Calls bt_put() on a variable named \p _var, then
100 sets \p _var to \c NULL.
b62d3f21
PP
101
102Using this macro is considered safer than calling bt_put() because it
103makes sure that the variable which used to contain a reference to a
104Babeltrace object is set to \c NULL so that a future BT_PUT() or
105bt_put() call will not cause another, unwanted reference decrementation.
106
34d0da31
PP
107@param[in,out] _var Name of a variable containing a
108 Babeltrace object's address (this address
109 can be \c NULL).
b62d3f21 110
34d0da31
PP
111@post <strong>If \p _var does not contain \p NULL</strong>,
112 its reference count is decremented.
113@post \p _var contains \c NULL.
b62d3f21
PP
114
115@sa BT_MOVE(): Transfers the ownership of a Babeltrace object from a
116 variable to another.
117*/
118#define BT_PUT(_var) \
83509119 119 do { \
b62d3f21
PP
120 bt_put(_var); \
121 (_var) = NULL; \
de3dd40e
PP
122 } while (0)
123
b62d3f21 124/**
34d0da31
PP
125@brief Transfers the ownership of a Babeltrace object from a variable
126 named \p _var_src to a variable named \p _var_dst.
b62d3f21
PP
127
128This macro implements the following common pattern:
129
130 1. Call bt_put() on \p _var_dst to make sure the previous reference
131 held by \p _var_dst is discarded.
132 2. Assign \p _var_src to \p _var_dst.
133 3. Set \p _var_src to \c NULL to avoid future, unwanted reference
134 decrementation of \p _var_src.
135
136@warning
137You must \em not use this macro when both \p _var_dst and
138\p _var_src contain the same Babeltrace object address and the reference
139count of this object is 1. The initial call to bt_put() on \p _var_dst
140would destroy the object and leave a dangling pointer in \p _var_dst.
141
34d0da31
PP
142@param[in,out] _var_dst Name of the destination variable, containing
143 either the address of a Babeltrace object to
144 put first, or \c NULL.
145@param[in,out] _var_src Name of the source variable, containing
146 either the address of a Babeltrace object to
147 move, or \c NULL.
b62d3f21
PP
148
149@pre <strong>If \p _var_dst and \p _var_src contain the same
34d0da31
PP
150 value which is not \c NULL</strong>, this object's reference
151 count is greater than 1.
b62d3f21
PP
152@post <strong>If \c _var_dst is not \c NULL</strong>, its reference
153 count is decremented.
34d0da31
PP
154@post \p _var_dst is equal to the value of \p _var_src \em before
155 you called this macro.
b62d3f21
PP
156@post \p _var_src is \c NULL.
157
158@sa BT_PUT(): Calls bt_put() on a variable, then sets it to \c NULL.
159*/
160#define BT_MOVE(_var_dst, _var_src) \
161 do { \
162 bt_put(_var_dst); \
163 (_var_dst) = (_var_src); \
164 (_var_src) = NULL; \
e693822d
PP
165 } while (0)
166
b62d3f21
PP
167/**
168@brief Increments the reference count of the Babeltrace object \p obj.
169
170@param[in] obj Babeltrace object of which to get a new reference
171 (can be \c NULL).
172@returns \p obj
173
174@post <strong>If \c obj is not \c NULL</strong>, its reference
175 count is incremented.
176
177@sa bt_put(): Decrements the reference count of a Babeltrace object.
178*/
b82cd9f0 179void *bt_get(void *obj);
de3dd40e 180
b62d3f21
PP
181/**
182@brief Decrements the reference count of the Babeltrace object
183 \p obj.
184
185When the object's reference count reaches 0, the object can no longer
186be accessed and is considered \em destroyed.
187
188@remarks
189You should use the BT_PUT() macro instead of calling bt_put() since the
190former is generally safer.
191
192@param[in] obj Babeltrace object of which to drop a reference
193 (can be \c NULL).
194
195@post <strong>If \c obj is not \c NULL</strong>, its reference
196 count is decremented.
197
198@sa BT_PUT(): Calls bt_put() on a variable, then sets it to \c NULL.
199@sa BT_MOVE(): Transfers the ownership of a Babeltrace object from a
200 variable to another.
201@sa bt_get(): Increments the reference count of a Babeltrace object.
202*/
83509119 203void bt_put(void *obj);
de3dd40e 204
b62d3f21
PP
205/**
206@}
207*/
208
26162993
PP
209#ifdef __cplusplus
210}
211#endif
212
83509119 213#endif /* BABELTRACE_REF_H */
This page took 0.037526 seconds and 4 git commands to generate.