Fix: variable declaration shadows previously declared variable
[babeltrace.git] / plugins / ctf / common / notif-iter / notif-iter.h
CommitLineData
e98a2d6e
PP
1#ifndef CTF_NOTIF_ITER_H
2#define CTF_NOTIF_ITER_H
3
4/*
5 * Babeltrace - CTF notification iterator
6 * ¯¯¯¯¯ ¯¯¯¯
7 * Copyright (c) 2015-2016 EfficiOS Inc. and Linux Foundation
8 * Copyright (c) 2015-2016 Philippe Proulx <pproulx@efficios.com>
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 <stdint.h>
30#include <stdio.h>
31#include <stddef.h>
9d408fca 32#include <babeltrace/babeltrace.h>
e98a2d6e
PP
33#include <babeltrace/babeltrace-internal.h>
34
35/**
36 * @file ctf-notif-iter.h
37 *
38 * CTF notification iterator
39 * ¯¯¯¯¯ ¯¯¯¯
40 * This is a common internal API used by CTF source plugins. It allows
41 * one to get notifications from a user-provided medium.
42 */
43
44/**
45 * Medium operations status codes.
46 */
47enum bt_ctf_notif_iter_medium_status {
48 /**
49 * End of file.
50 *
51 * The medium function called by the notification iterator
52 * function reached the end of the file.
53 */
9e0c8dbb 54 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF = 1,
e98a2d6e
PP
55
56 /**
57 * There is no data available right now, try again later.
58 */
9e0c8dbb
JG
59 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_AGAIN = 11,
60
61 /** Unsupported operation. */
62 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_UNSUPPORTED = -3,
e98a2d6e
PP
63
64 /** Invalid argument. */
9e0c8dbb 65 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_INVAL = -2,
e98a2d6e
PP
66
67 /** General error. */
9e0c8dbb 68 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_ERROR = -1,
e98a2d6e
PP
69
70 /** Everything okay. */
9e0c8dbb 71 BT_CTF_NOTIF_ITER_MEDIUM_STATUS_OK = 0,
e98a2d6e
PP
72};
73
74/**
75 * CTF notification iterator API status code.
76 */
77enum bt_ctf_notif_iter_status {
78 /**
79 * End of file.
80 *
81 * The medium function called by the notification iterator
82 * function reached the end of the file.
83 */
dc77b521 84 BT_CTF_NOTIF_ITER_STATUS_EOF = BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF,
e98a2d6e
PP
85
86 /**
87 * There is no data available right now, try again later.
88 *
89 * Some condition resulted in the
90 * bt_ctf_notif_iter_medium_ops::request_bytes() user function not
91 * having access to any data now. You should retry calling the
92 * last called notification iterator function once the situation
93 * is resolved.
94 */
dc77b521 95 BT_CTF_NOTIF_ITER_STATUS_AGAIN = BT_CTF_NOTIF_ITER_MEDIUM_STATUS_AGAIN,
e98a2d6e
PP
96
97 /** Invalid argument. */
dc77b521 98 BT_CTF_NOTIF_ITER_STATUS_INVAL = BT_CTF_NOTIF_ITER_MEDIUM_STATUS_INVAL,
e98a2d6e 99
9e0c8dbb
JG
100 /** Unsupported operation. */
101 BT_CTF_NOTIF_ITER_STATUS_UNSUPPORTED = BT_CTF_NOTIF_ITER_MEDIUM_STATUS_UNSUPPORTED,
102
e98a2d6e 103 /** General error. */
dc77b521 104 BT_CTF_NOTIF_ITER_STATUS_ERROR = BT_CTF_NOTIF_ITER_MEDIUM_STATUS_ERROR,
e98a2d6e
PP
105
106 /** Everything okay. */
107 BT_CTF_NOTIF_ITER_STATUS_OK = 0,
108};
109
9e0c8dbb
JG
110/**
111 * CTF notification iterator seek operation directives.
112 */
113enum bt_ctf_notif_iter_seek_whence {
114 /**
115 * Set the iterator's position to an absolute offset in the underlying
116 * medium.
117 */
118 BT_CTF_NOTIF_ITER_SEEK_WHENCE_SET,
119};
120
e98a2d6e
PP
121/**
122 * Medium operations.
123 *
124 * Those user functions are called by the notification iterator
125 * functions to request medium actions.
126 */
127struct bt_ctf_notif_iter_medium_ops {
128 /**
129 * Returns the next byte buffer to be used by the binary file
130 * reader to deserialize binary data.
131 *
132 * This function \em must be defined.
133 *
134 * The purpose of this function is to return a buffer of bytes
135 * to the notification iterator, of a maximum of \p request_sz
136 * bytes. If this function cannot return a buffer of at least
137 * \p request_sz bytes, it may return a smaller buffer. In
138 * either cases, \p buffer_sz must be set to the returned buffer
139 * size (in bytes).
140 *
141 * The returned buffer's ownership remains the medium, in that
142 * it won't be freed by the notification iterator functions. The
143 * returned buffer won't be modified by the notification
144 * iterator functions either.
145 *
146 * When this function is called for the first time for a given
147 * file, the offset within the file is considered to be 0. The
148 * next times this function is called, the returned buffer's
149 * byte offset within the complete file must be the previous
150 * offset plus the last returned value of \p buffer_sz by this
151 * medium.
152 *
153 * This function must return one of the following statuses:
154 *
155 * - <b>#BT_CTF_NOTIF_ITER_MEDIUM_STATUS_OK</b>: Everything
156 * is okay, i.e. \p buffer_sz is set to a positive value
157 * reflecting the number of available bytes in the buffer
158 * starting at the address written in \p buffer_addr.
159 * - <b>#BT_CTF_NOTIF_ITER_MEDIUM_STATUS_AGAIN</b>: No data is
160 * available right now. In this case, the notification
161 * iterator function called by the user returns
162 * #BT_CTF_NOTIF_ITER_STATUS_AGAIN, and it is the user's
163 * responsibility to make sure enough data becomes available
164 * before calling the \em same notification iterator
165 * function again to continue the decoding process.
166 * - <b>#BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF</b>: The end of
167 * the file was reached, and no more data will ever be
168 * available for this file. In this case, the notification
169 * iterator function called by the user returns
170 * #BT_CTF_NOTIF_ITER_STATUS_EOF. This must \em not be
171 * returned when returning at least one byte of data to the
172 * caller, i.e. this must be returned when there's
173 * absolutely nothing left; should the request size be
174 * larger than what's left in the file, this function must
175 * return what's left, setting \p buffer_sz to the number of
176 * remaining bytes, and return
177 * #BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF on the \em following
178 * call.
179 * - <b>#BT_CTF_NOTIF_ITER_MEDIUM_STATUS_ERROR</b>: A fatal
180 * error occured during this operation. In this case, the
181 * notification iterator function called by the user returns
182 * #BT_CTF_NOTIF_ITER_STATUS_ERROR.
183 *
184 * If #BT_CTF_NOTIF_ITER_MEDIUM_STATUS_OK is not returned, the
185 * values of \p buffer_sz and \p buffer_addr are \em ignored by
186 * the caller.
187 *
188 * @param request_sz Requested buffer size (bytes)
189 * @param buffer_addr Returned buffer address
190 * @param buffer_sz Returned buffer's size (bytes)
191 * @param data User data
192 * @returns Status code (see description above)
193 */
194 enum bt_ctf_notif_iter_medium_status (* request_bytes)(
195 size_t request_sz, uint8_t **buffer_addr,
196 size_t *buffer_sz, void *data);
197
9e0c8dbb
JG
198 /**
199 * Repositions the underlying stream's position.
200 *
201 * This *optional* method repositions the underlying stream
202 * to a given absolute or relative position, as indicated by
203 * the whence directive.
204 *
205 * @param whence One of #bt_ctf_notif_iter_seek_whence values
206 * @param offset Offset to use for the given directive
207 * @param data User data
208 * @returns One of #bt_ctf_notif_iter_medium_status values
209 */
210 enum bt_ctf_notif_iter_medium_status (* seek)(
211 enum bt_ctf_notif_iter_seek_whence whence,
212 off_t offset, void *data);
213
e98a2d6e
PP
214 /**
215 * Returns a stream instance (weak reference) for the given
216 * stream class.
217 *
218 * This is called after a packet header is read, and the
219 * corresponding stream class is found by the notification
220 * iterator.
221 *
b92735af
PP
222 * @param stream_class Stream class of the stream to get
223 * @param stream_id Stream (instance) ID of the stream
224 * to get (-1ULL if not available)
e98a2d6e
PP
225 * @param data User data
226 * @returns Stream instance (weak reference) or
227 * \c NULL on error
228 */
229 struct bt_ctf_stream * (* get_stream)(
b92735af
PP
230 struct bt_ctf_stream_class *stream_class,
231 uint64_t stream_id, void *data);
e98a2d6e
PP
232};
233
234/** CTF notification iterator. */
235struct bt_ctf_notif_iter;
236
237// TODO: Replace by the real thing
238enum bt_ctf_notif_iter_notif_type {
239 BT_CTF_NOTIF_ITER_NOTIF_NEW_PACKET,
240 BT_CTF_NOTIF_ITER_NOTIF_END_OF_PACKET,
241 BT_CTF_NOTIF_ITER_NOTIF_EVENT,
242};
243
244struct bt_ctf_notif_iter_notif {
245 enum bt_ctf_notif_iter_notif_type type;
246};
247
248struct bt_ctf_notif_iter_notif_new_packet {
249 struct bt_ctf_notif_iter_notif base;
250 struct bt_ctf_packet *packet;
251};
252
253struct bt_ctf_notif_iter_notif_end_of_packet {
254 struct bt_ctf_notif_iter_notif base;
255 struct bt_ctf_packet *packet;
256};
257
258struct bt_ctf_notif_iter_notif_event {
259 struct bt_ctf_notif_iter_notif base;
260 struct bt_ctf_event *event;
261};
262
e98a2d6e
PP
263/**
264 * Creates a CTF notification iterator.
265 *
266 * Upon successful completion, the reference count of \p trace is
267 * incremented.
268 *
269 * @param trace Trace to read
270 * @param max_request_sz Maximum buffer size, in bytes, to
271 * request to
272 * bt_ctf_notif_iter_medium_ops::request_bytes()
273 * at a time
274 * @param medops Medium operations
275 * @param medops_data User data (passed to medium operations)
e98a2d6e
PP
276 * @returns New CTF notification iterator on
277 * success, or \c NULL on error
278 */
2cf1d51e 279BT_HIDDEN
e98a2d6e
PP
280struct bt_ctf_notif_iter *bt_ctf_notif_iter_create(struct bt_ctf_trace *trace,
281 size_t max_request_sz, struct bt_ctf_notif_iter_medium_ops medops,
55314f2a 282 void *medops_data);
e98a2d6e
PP
283
284/**
285 * Destroys a CTF notification iterator, freeing all internal resources.
286 *
287 * The registered trace's reference count is decremented.
288 *
289 * @param notif_iter CTF notification iterator
290 */
2cf1d51e 291BT_HIDDEN
e98a2d6e
PP
292void bt_ctf_notif_iter_destroy(struct bt_ctf_notif_iter *notif_iter);
293
e98a2d6e
PP
294/**
295 * Returns the next notification from a CTF notification iterator.
296 *
297 * Upon successful completion, #BT_CTF_NOTIF_ITER_STATUS_OK is
298 * returned, and the next notification is written to \p notif.
299 * In this case, the caller is responsible for calling
300 * bt_notification_put() on the returned notification.
301 *
302 * If this function returns #BT_CTF_NOTIF_ITER_STATUS_AGAIN, the caller
303 * should make sure that data becomes available to its medium, and
304 * call this function again, until another status is returned.
305 *
306 * @param notif_iter CTF notification iterator
0982a26d
PP
307 * @param cc_prio_map Clock class priority map to use when
308 * creating an event notification
e98a2d6e
PP
309 * @param notification Returned notification if the function's
310 * return value is #BT_CTF_NOTIF_ITER_STATUS_OK
311 * @returns One of #bt_ctf_notif_iter_status values
312 */
2cf1d51e 313BT_HIDDEN
e98a2d6e 314enum bt_ctf_notif_iter_status bt_ctf_notif_iter_get_next_notification(
78586d8a 315 struct bt_ctf_notif_iter *notit,
0982a26d 316 struct bt_clock_class_priority_map *cc_prio_map,
78586d8a 317 struct bt_notification **notification);
e98a2d6e 318
87187cbf
PP
319/**
320 * Returns the first packet header and context fields. This function
321 * never needs to call the `get_stream()` medium operation because
322 * it does not create packet or event objects.
323 *
324 * @param notif_iter CTF notification iterator
325 * @param packet_header_field Packet header field (\c NULL if there's
326 * no packet header field)
327 * @param packet_context_field Packet context field (\c NULL if there's
328 * no packet context field)
329 * @returns One of #bt_ctf_notif_iter_status values
330 */
331BT_HIDDEN
332enum bt_ctf_notif_iter_status bt_ctf_notif_iter_get_packet_header_context_fields(
333 struct bt_ctf_notif_iter *notit,
334 struct bt_ctf_field **packet_header_field,
335 struct bt_ctf_field **packet_context_field);
336
6de92955
PP
337BT_HIDDEN
338void bt_ctf_notif_iter_set_medops_data(struct bt_ctf_notif_iter *notit,
339 void *medops_data);
340
9e0c8dbb
JG
341BT_HIDDEN
342enum bt_ctf_notif_iter_status bt_ctf_notif_iter_seek(
343 struct bt_ctf_notif_iter *notit, off_t offset);
344
345/*
346 * Get the current packet's offset in bytes relative to the media's initial
347 * position.
348 */
349BT_HIDDEN
350off_t bt_ctf_notif_iter_get_current_packet_offset(
351 struct bt_ctf_notif_iter *notit);
352
353/* Get the current packet's size (in bits). */
354BT_HIDDEN
355off_t bt_ctf_notif_iter_get_current_packet_size(
356 struct bt_ctf_notif_iter *notit);
357
fdf0e7a0
PP
358static inline
359const char *bt_ctf_notif_iter_medium_status_string(
360 enum bt_ctf_notif_iter_medium_status status)
361{
362 switch (status) {
363 case BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF:
364 return "BT_CTF_NOTIF_ITER_MEDIUM_STATUS_EOF";
365 case BT_CTF_NOTIF_ITER_MEDIUM_STATUS_AGAIN:
366 return "BT_CTF_NOTIF_ITER_MEDIUM_STATUS_AGAIN";
367 case BT_CTF_NOTIF_ITER_MEDIUM_STATUS_INVAL:
368 return "BT_CTF_NOTIF_ITER_MEDIUM_STATUS_INVAL";
369 case BT_CTF_NOTIF_ITER_MEDIUM_STATUS_ERROR:
370 return "BT_CTF_NOTIF_ITER_MEDIUM_STATUS_ERROR";
371 case BT_CTF_NOTIF_ITER_MEDIUM_STATUS_OK:
372 return "BT_CTF_NOTIF_ITER_MEDIUM_STATUS_OK";
373 default:
374 return "(unknown)";
375 }
376}
377
378static inline
379const char *bt_ctf_notif_iter_status_string(
380 enum bt_ctf_notif_iter_status status)
381{
382 switch (status) {
383 case BT_CTF_NOTIF_ITER_STATUS_EOF:
384 return "BT_CTF_NOTIF_ITER_STATUS_EOF";
385 case BT_CTF_NOTIF_ITER_STATUS_AGAIN:
386 return "BT_CTF_NOTIF_ITER_STATUS_AGAIN";
387 case BT_CTF_NOTIF_ITER_STATUS_INVAL:
388 return "BT_CTF_NOTIF_ITER_STATUS_INVAL";
389 case BT_CTF_NOTIF_ITER_STATUS_ERROR:
390 return "BT_CTF_NOTIF_ITER_STATUS_ERROR";
391 case BT_CTF_NOTIF_ITER_STATUS_OK:
392 return "BT_CTF_NOTIF_ITER_STATUS_OK";
393 default:
394 return "(unknown)";
395 }
396}
397
e98a2d6e 398#endif /* CTF_NOTIF_ITER_H */
This page took 0.050005 seconds and 4 git commands to generate.