test_ctf_writer.c: put statements outside BT_ASSERT()
[babeltrace.git] / include / babeltrace / object-internal.h
CommitLineData
83509119
JG
1#ifndef BABELTRACE_OBJECT_INTERNAL_H
2#define BABELTRACE_OBJECT_INTERNAL_H
273b65be
JG
3
4/*
83509119 5 * Babeltrace - Base object
273b65be 6 *
83509119
JG
7 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
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
312c056a 30#include <babeltrace/babeltrace-internal.h>
de3dd40e 31#include <babeltrace/ref-internal.h>
5d2d9981 32#include <babeltrace/ref.h>
f6ccaed9 33#include <babeltrace/assert-internal.h>
312c056a 34#include <stdbool.h>
273b65be 35
83509119
JG
36/**
37 * All objects publicly exposed by Babeltrace APIs must contain this structure
38 * as their first member. This allows the unification of all ref counting
78586d8a 39 * mechanisms and may be used to provide more base functionality to all
83509119 40 * objects.
de3dd40e 41 */
83509119 42struct bt_object {
de3dd40e 43 struct bt_ref ref_count;
f167d3c0 44 /* Class-specific, optional release function. */
5d2d9981 45 bt_object_release_func release;
f167d3c0
PP
46 /* Class-specific, optional "parent is owner" notification listener. */
47 bt_object_release_func parent_is_owner_listener;
5d2d9981
JG
48 /* @see doc/ref-counting.md */
49 struct bt_object *parent;
312c056a
PP
50
51 /*
52 * True if this object is shared, that is, it uses reference
cdc4693d 53 * counting.
312c056a
PP
54 */
55 bool is_shared;
273b65be
JG
56};
57
58static inline
7c56f3cc
MD
59long bt_object_get_ref_count(const void *ptr)
60{
61 const struct bt_object *obj = ptr;
5d2d9981 62
7c56f3cc
MD
63 return obj->ref_count.count;
64}
65
66static inline
5d2d9981
JG
67void bt_object_release(void *ptr)
68{
69 struct bt_object *obj = ptr;
70
0f5e83e5
PP
71#ifdef BT_LOGV
72 BT_LOGV("Releasing object: addr=%p, ref-count=%lu", ptr,
73 obj->ref_count.count);
74#endif
75
36712f1d 76 if (obj && obj->release && bt_object_get_ref_count(obj) == 0) {
5d2d9981
JG
77 obj->release(obj);
78 }
79}
80
7c56f3cc 81static inline
5d2d9981
JG
82void generic_release(struct bt_object *obj)
83{
84 if (obj->parent) {
0f5e83e5
PP
85 struct bt_object *parent = obj->parent;
86
87#ifdef BT_LOGV
88 BT_LOGV("Releasing parented object: addr=%p, ref-count=%lu, "
89 "parent-addr=%p, parent-ref-count=%lu",
90 obj, obj->ref_count.count,
91 parent, parent->ref_count.count);
92#endif
f167d3c0
PP
93
94 if (obj->parent_is_owner_listener) {
95 /*
96 * Object has a chance to destroy itself here
97 * under certain conditions and notify its
98 * parent. At this point the parent is
99 * guaranteed to exist because it's not put yet.
100 */
101 obj->parent_is_owner_listener(obj);
102 }
103
5d2d9981 104 /* The release function will be invoked by the parent. */
f167d3c0 105 bt_put(parent);
5d2d9981
JG
106 } else {
107 bt_object_release(obj);
108 }
109}
110
111static inline
dc3fffef 112struct bt_object *bt_object_borrow_parent(void *ptr)
5d2d9981
JG
113{
114 struct bt_object *obj = ptr;
115
dc3fffef
PP
116 return obj ? obj->parent : NULL;
117}
118
119static inline
120struct bt_object *bt_object_get_parent(void *ptr)
121{
122 return bt_get(bt_object_borrow_parent(ptr));
5d2d9981
JG
123}
124
125static inline
126void bt_object_set_parent(void *child_ptr, void *parent)
273b65be 127{
5d2d9981
JG
128 struct bt_object *child = child_ptr;
129
130 if (!child) {
131 return;
132 }
133
0f5e83e5
PP
134#ifdef BT_LOGV
135 BT_LOGV("Setting object's parent: addr=%p, parent-addr=%p",
136 child_ptr, parent);
137#endif
138
5d2d9981 139 /*
cdc4693d
PP
140 * It is assumed that a "child" being "parented" is publicly
141 * reachable. Therefore, a reference to its parent must be
142 * taken. The reference to the parent will be released once the
143 * object's reference count falls to zero.
5d2d9981 144 */
5ed18445 145 BT_PUT(child->parent);
5d2d9981
JG
146 child->parent = bt_get(parent);
147}
148
312c056a 149static inline
cdc4693d 150void bt_object_set_is_shared(struct bt_object *obj, bool is_shared)
312c056a
PP
151{
152 obj->is_shared = is_shared;
153}
154
5d2d9981
JG
155static inline
156void bt_object_init(void *ptr, bt_object_release_func release)
157{
158 struct bt_object *obj = ptr;
159
160 obj->release = release;
935e7ed6 161 obj->parent = NULL;
312c056a 162 bt_object_set_is_shared(obj, true);
5d2d9981 163 bt_ref_init(&obj->ref_count, generic_release);
273b65be
JG
164}
165
f167d3c0
PP
166static inline
167void bt_object_set_parent_is_owner_listener(void *obj,
168 bt_object_release_func cb)
169{
f6ccaed9 170 BT_ASSERT(obj);
f167d3c0
PP
171 ((struct bt_object *) obj)->parent_is_owner_listener = cb;
172}
173
83509119 174#endif /* BABELTRACE_OBJECT_INTERNAL_H */
This page took 0.051951 seconds and 4 git commands to generate.