lib: do not finalize a non-initialized notification iterator
[babeltrace.git] / include / babeltrace / graph / notification-iterator-internal.h
CommitLineData
33b34c43
PP
1#ifndef BABELTRACE_COMPONENT_NOTIFICATION_ITERATOR_INTERNAL_H
2#define BABELTRACE_COMPONENT_NOTIFICATION_ITERATOR_INTERNAL_H
47e5a032
JG
3
4/*
5 * BabelTrace - Notification Iterator Internal
6 *
7 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3230ee6b 8 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
47e5a032
JG
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29#include <babeltrace/babeltrace-internal.h>
890882ef 30#include <babeltrace/object-internal.h>
fb2dcc52 31#include <babeltrace/ref-internal.h>
bd14d768 32#include <babeltrace/graph/connection.h>
b2e0c907
PP
33#include <babeltrace/graph/notification.h>
34#include <babeltrace/graph/notification-iterator.h>
35#include <babeltrace/graph/private-notification-iterator.h>
c55a9f58 36#include <babeltrace/types.h>
088d4023 37#include <stdbool.h>
47e5a032 38
3230ee6b
PP
39struct bt_port;
40
fa054faf
PP
41enum bt_notification_iterator_notif_type {
42 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_EVENT = (1U << 0),
43 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_INACTIVITY = (1U << 1),
44 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_BEGIN = (1U << 2),
45 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_STREAM_END = (1U << 3),
46 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_BEGIN = (1U << 4),
47 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_PACKET_END = (1U << 5),
2ec84d26
PP
48 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_EVENTS = (1U << 6),
49 BT_NOTIFICATION_ITERATOR_NOTIF_TYPE_DISCARDED_PACKETS = (1U << 7),
fa054faf
PP
50};
51
bd14d768 52enum bt_notification_iterator_state {
088d4023
PP
53 /* Iterator is not initialized. */
54 BT_NOTIFICATION_ITERATOR_STATE_NON_INITIALIZED,
55
bd14d768
PP
56 /* Iterator is active, not at the end yet, and not finalized. */
57 BT_NOTIFICATION_ITERATOR_STATE_ACTIVE,
58
59 /*
60 * Iterator is ended, not finalized yet: the "next" method
61 * returns BT_NOTIFICATION_ITERATOR_STATUS_END.
62 */
63 BT_NOTIFICATION_ITERATOR_STATE_ENDED,
64
65 /*
66 * Iterator is finalized, but not at the end yet. This means
67 * that the "next" method can still return queued notifications
68 * before returning the BT_NOTIFICATION_ITERATOR_STATUS_CANCELED
69 * status.
70 */
71 BT_NOTIFICATION_ITERATOR_STATE_FINALIZED,
72
73 /*
74 * Iterator is finalized and ended: the "next" method always
75 * returns BT_NOTIFICATION_ITERATOR_STATUS_CANCELED.
76 */
77 BT_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED,
78};
79
47e5a032 80struct bt_notification_iterator {
b8a06801 81 struct bt_object base;
bd14d768
PP
82 struct bt_component *upstream_component; /* Weak */
83 struct bt_port *upstream_port; /* Weak */
84 struct bt_connection *connection; /* Weak */
3230ee6b
PP
85 struct bt_notification *current_notification; /* owned by this */
86 GQueue *queue; /* struct bt_notification * (owned by this) */
87
88 /*
89 * This hash table keeps the state of a stream as viewed by
90 * this notification iterator. This is used to:
91 *
92 * * Automatically enqueue "stream begin", "packet begin",
93 * "packet end", and "stream end" notifications depending
94 * on the stream's state and on the next notification returned
95 * by the upstream component.
96 *
97 * * Make sure that, once the notification iterator has seen
98 * a "stream end" notification for a given stream, that no
99 * other notifications which refer to this stream can be
100 * delivered by this iterator.
101 *
102 * The key (struct bt_ctf_stream *) is not owned by this. The
103 * value is an allocated state structure.
104 */
105 GHashTable *stream_states;
106
107 /*
108 * This is an array of actions which can be rolled back. It's
109 * similar to the memento pattern, but it's not exactly that. It
110 * is allocated once and reset for each notification to process.
111 * More details near the implementation.
112 */
113 GArray *actions;
114
fa054faf
PP
115 /*
116 * This is a mask of notifications to which the user of this
117 * iterator is subscribed
118 * (see enum bt_notification_iterator_notif_type above).
119 */
120 uint32_t subscription_mask;
121
bd14d768 122 enum bt_notification_iterator_state state;
47e5a032
JG
123 void *user_data;
124};
125
890882ef
PP
126static inline
127struct bt_notification_iterator *bt_notification_iterator_from_private(
128 struct bt_private_notification_iterator *private_notification_iterator)
129{
130 return (void *) private_notification_iterator;
131}
132
133static inline
134struct bt_private_notification_iterator *
135bt_private_notification_iterator_from_notification_iterator(
136 struct bt_notification_iterator *notification_iterator)
137{
138 return (void *) notification_iterator;
139}
140
47e5a032 141BT_HIDDEN
73d5c1ad
PP
142enum bt_connection_status bt_notification_iterator_create(
143 struct bt_component *upstream_comp,
fa054faf 144 struct bt_port *upstream_port,
bd14d768 145 const enum bt_notification_type *notification_types,
73d5c1ad
PP
146 struct bt_connection *connection,
147 struct bt_notification_iterator **iterator);
47e5a032 148
bd14d768
PP
149BT_HIDDEN
150void bt_notification_iterator_finalize(
151 struct bt_notification_iterator *iterator);
152
153BT_HIDDEN
154void bt_notification_iterator_set_connection(
155 struct bt_notification_iterator *iterator,
156 struct bt_connection *connection);
157
a36bfb16
PP
158static inline
159const char *bt_notification_iterator_status_string(
160 enum bt_notification_iterator_status status)
161{
162 switch (status) {
163 case BT_NOTIFICATION_ITERATOR_STATUS_CANCELED:
164 return "BT_NOTIFICATION_ITERATOR_STATUS_CANCELED";
165 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
166 return "BT_NOTIFICATION_ITERATOR_STATUS_AGAIN";
167 case BT_NOTIFICATION_ITERATOR_STATUS_END:
168 return "BT_NOTIFICATION_ITERATOR_STATUS_END";
169 case BT_NOTIFICATION_ITERATOR_STATUS_OK:
170 return "BT_NOTIFICATION_ITERATOR_STATUS_OK";
171 case BT_NOTIFICATION_ITERATOR_STATUS_INVALID:
172 return "BT_NOTIFICATION_ITERATOR_STATUS_INVALID";
173 case BT_NOTIFICATION_ITERATOR_STATUS_ERROR:
174 return "BT_NOTIFICATION_ITERATOR_STATUS_ERROR";
175 case BT_NOTIFICATION_ITERATOR_STATUS_NOMEM:
176 return "BT_NOTIFICATION_ITERATOR_STATUS_NOMEM";
177 case BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED:
178 return "BT_NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED";
179 default:
180 return "(unknown)";
181 }
182};
183
8f9d7550
PP
184static inline
185const char *bt_notification_iterator_state_string(
186 enum bt_notification_iterator_state state)
187{
188 switch (state) {
189 case BT_NOTIFICATION_ITERATOR_STATE_ACTIVE:
190 return "BT_NOTIFICATION_ITERATOR_STATE_ACTIVE";
191 case BT_NOTIFICATION_ITERATOR_STATE_ENDED:
192 return "BT_NOTIFICATION_ITERATOR_STATE_ENDED";
193 case BT_NOTIFICATION_ITERATOR_STATE_FINALIZED:
194 return "BT_NOTIFICATION_ITERATOR_STATE_FINALIZED";
195 case BT_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED:
196 return "BT_NOTIFICATION_ITERATOR_STATE_FINALIZED_AND_ENDED";
197 default:
198 return "(unknown)";
199 }
200};
201
33b34c43 202#endif /* BABELTRACE_COMPONENT_NOTIFICATION_ITERATOR_INTERNAL_H */
This page took 0.04475 seconds and 4 git commands to generate.