ctf: msg-iter.c: rename `notit` to `msg_it`
[babeltrace.git] / src / plugins / ctf / common / msg-iter / msg-iter.h
CommitLineData
b09a5592
PP
1#ifndef CTF_MSG_ITER_H
2#define CTF_MSG_ITER_H
e98a2d6e
PP
3
4/*
b09a5592 5 * Babeltrace - CTF message iterator
bbbd35bf 6 *
e98a2d6e
PP
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
969c1d8a 29#include <stdbool.h>
e98a2d6e
PP
30#include <stdint.h>
31#include <stdio.h>
32#include <stddef.h>
71c5da58 33#include <babeltrace2/babeltrace.h>
85e7137b 34#include "common/macros.h"
e98a2d6e 35
7b33a0e0
PP
36#include "../metadata/ctf-meta.h"
37
e98a2d6e 38/**
b09a5592 39 * @file ctf-msg-iter.h
e98a2d6e 40 *
b09a5592 41 * CTF message iterator
bbbd35bf 42 *
e98a2d6e 43 * This is a common internal API used by CTF source plugins. It allows
b09a5592 44 * one to get messages from a user-provided medium.
e98a2d6e
PP
45 */
46
47/**
48 * Medium operations status codes.
49 */
b09a5592 50enum bt_msg_iter_medium_status {
e98a2d6e
PP
51 /**
52 * End of file.
53 *
b09a5592 54 * The medium function called by the message iterator
e98a2d6e
PP
55 * function reached the end of the file.
56 */
b09a5592 57 BT_MSG_ITER_MEDIUM_STATUS_EOF = 1,
e98a2d6e
PP
58
59 /**
60 * There is no data available right now, try again later.
61 */
b09a5592 62 BT_MSG_ITER_MEDIUM_STATUS_AGAIN = 11,
bb230c9b
JG
63
64 /** Unsupported operation. */
b09a5592 65 BT_MSG_ITER_MEDIUM_STATUS_UNSUPPORTED = -3,
e98a2d6e
PP
66
67 /** Invalid argument. */
b09a5592 68 BT_MSG_ITER_MEDIUM_STATUS_INVAL = -2,
e98a2d6e
PP
69
70 /** General error. */
b09a5592 71 BT_MSG_ITER_MEDIUM_STATUS_ERROR = -1,
e98a2d6e
PP
72
73 /** Everything okay. */
b09a5592 74 BT_MSG_ITER_MEDIUM_STATUS_OK = 0,
e98a2d6e
PP
75};
76
77/**
b09a5592 78 * CTF message iterator API status code.
e98a2d6e 79 */
b09a5592 80enum bt_msg_iter_status {
e98a2d6e
PP
81 /**
82 * End of file.
83 *
b09a5592 84 * The medium function called by the message iterator
e98a2d6e
PP
85 * function reached the end of the file.
86 */
b09a5592 87 BT_MSG_ITER_STATUS_EOF = BT_MSG_ITER_MEDIUM_STATUS_EOF,
e98a2d6e
PP
88
89 /**
90 * There is no data available right now, try again later.
91 *
92 * Some condition resulted in the
b09a5592 93 * bt_msg_iter_medium_ops::request_bytes() user function not
e98a2d6e 94 * having access to any data now. You should retry calling the
b09a5592 95 * last called message iterator function once the situation
e98a2d6e
PP
96 * is resolved.
97 */
b09a5592 98 BT_MSG_ITER_STATUS_AGAIN = BT_MSG_ITER_MEDIUM_STATUS_AGAIN,
e98a2d6e
PP
99
100 /** Invalid argument. */
b09a5592 101 BT_MSG_ITER_STATUS_INVAL = BT_MSG_ITER_MEDIUM_STATUS_INVAL,
e98a2d6e 102
bb230c9b 103 /** Unsupported operation. */
b09a5592 104 BT_MSG_ITER_STATUS_UNSUPPORTED = BT_MSG_ITER_MEDIUM_STATUS_UNSUPPORTED,
bb230c9b 105
e98a2d6e 106 /** General error. */
b09a5592 107 BT_MSG_ITER_STATUS_ERROR = BT_MSG_ITER_MEDIUM_STATUS_ERROR,
e98a2d6e
PP
108
109 /** Everything okay. */
b09a5592 110 BT_MSG_ITER_STATUS_OK = 0,
e98a2d6e
PP
111};
112
bb230c9b 113/**
b09a5592 114 * CTF message iterator seek operation directives.
bb230c9b 115 */
b09a5592 116enum bt_msg_iter_seek_whence {
bb230c9b
JG
117 /**
118 * Set the iterator's position to an absolute offset in the underlying
119 * medium.
120 */
b09a5592 121 BT_MSG_ITER_SEEK_WHENCE_SET,
bb230c9b
JG
122};
123
e98a2d6e
PP
124/**
125 * Medium operations.
126 *
b09a5592 127 * Those user functions are called by the message iterator
e98a2d6e
PP
128 * functions to request medium actions.
129 */
b09a5592 130struct bt_msg_iter_medium_ops {
e98a2d6e
PP
131 /**
132 * Returns the next byte buffer to be used by the binary file
133 * reader to deserialize binary data.
134 *
135 * This function \em must be defined.
136 *
137 * The purpose of this function is to return a buffer of bytes
b09a5592 138 * to the message iterator, of a maximum of \p request_sz
e98a2d6e
PP
139 * bytes. If this function cannot return a buffer of at least
140 * \p request_sz bytes, it may return a smaller buffer. In
141 * either cases, \p buffer_sz must be set to the returned buffer
142 * size (in bytes).
143 *
144 * The returned buffer's ownership remains the medium, in that
b09a5592
PP
145 * it won't be freed by the message iterator functions. The
146 * returned buffer won't be modified by the message
e98a2d6e
PP
147 * iterator functions either.
148 *
149 * When this function is called for the first time for a given
150 * file, the offset within the file is considered to be 0. The
151 * next times this function is called, the returned buffer's
152 * byte offset within the complete file must be the previous
153 * offset plus the last returned value of \p buffer_sz by this
154 * medium.
155 *
156 * This function must return one of the following statuses:
157 *
b09a5592 158 * - <b>#BT_MSG_ITER_MEDIUM_STATUS_OK</b>: Everything
e98a2d6e
PP
159 * is okay, i.e. \p buffer_sz is set to a positive value
160 * reflecting the number of available bytes in the buffer
161 * starting at the address written in \p buffer_addr.
b09a5592
PP
162 * - <b>#BT_MSG_ITER_MEDIUM_STATUS_AGAIN</b>: No data is
163 * available right now. In this case, the message
e98a2d6e 164 * iterator function called by the user returns
b09a5592 165 * #BT_MSG_ITER_STATUS_AGAIN, and it is the user's
e98a2d6e 166 * responsibility to make sure enough data becomes available
b09a5592 167 * before calling the \em same message iterator
e98a2d6e 168 * function again to continue the decoding process.
b09a5592 169 * - <b>#BT_MSG_ITER_MEDIUM_STATUS_EOF</b>: The end of
e98a2d6e 170 * the file was reached, and no more data will ever be
b09a5592 171 * available for this file. In this case, the message
e98a2d6e 172 * iterator function called by the user returns
b09a5592 173 * #BT_MSG_ITER_STATUS_EOF. This must \em not be
e98a2d6e
PP
174 * returned when returning at least one byte of data to the
175 * caller, i.e. this must be returned when there's
176 * absolutely nothing left; should the request size be
177 * larger than what's left in the file, this function must
178 * return what's left, setting \p buffer_sz to the number of
179 * remaining bytes, and return
b09a5592 180 * #BT_MSG_ITER_MEDIUM_STATUS_EOF on the \em following
e98a2d6e 181 * call.
b09a5592 182 * - <b>#BT_MSG_ITER_MEDIUM_STATUS_ERROR</b>: A fatal
e98a2d6e 183 * error occured during this operation. In this case, the
b09a5592
PP
184 * message iterator function called by the user returns
185 * #BT_MSG_ITER_STATUS_ERROR.
e98a2d6e 186 *
b09a5592 187 * If #BT_MSG_ITER_MEDIUM_STATUS_OK is not returned, the
e98a2d6e
PP
188 * values of \p buffer_sz and \p buffer_addr are \em ignored by
189 * the caller.
190 *
191 * @param request_sz Requested buffer size (bytes)
192 * @param buffer_addr Returned buffer address
193 * @param buffer_sz Returned buffer's size (bytes)
194 * @param data User data
195 * @returns Status code (see description above)
196 */
bbbd35bf
PP
197 enum bt_msg_iter_medium_status (* request_bytes)(size_t request_sz,
198 uint8_t **buffer_addr, size_t *buffer_sz, void *data);
e98a2d6e 199
bb230c9b
JG
200 /**
201 * Repositions the underlying stream's position.
202 *
203 * This *optional* method repositions the underlying stream
204 * to a given absolute or relative position, as indicated by
205 * the whence directive.
206 *
b09a5592 207 * @param whence One of #bt_msg_iter_seek_whence values
bb230c9b
JG
208 * @param offset Offset to use for the given directive
209 * @param data User data
b09a5592 210 * @returns One of #bt_msg_iter_medium_status values
bb230c9b 211 */
b09a5592
PP
212 enum bt_msg_iter_medium_status (* seek)(
213 enum bt_msg_iter_seek_whence whence,
bb230c9b
JG
214 off_t offset, void *data);
215
e98a2d6e
PP
216 /**
217 * Returns a stream instance (weak reference) for the given
218 * stream class.
219 *
220 * This is called after a packet header is read, and the
b09a5592 221 * corresponding stream class is found by the message
e98a2d6e
PP
222 * iterator.
223 *
0659c536
PP
224 * @param stream_class Stream class of the stream to get
225 * @param stream_id Stream (instance) ID of the stream
226 * to get (-1ULL if not available)
e98a2d6e
PP
227 * @param data User data
228 * @returns Stream instance (weak reference) or
229 * \c NULL on error
230 */
bbbd35bf 231 bt_stream * (* borrow_stream)(bt_stream_class *stream_class,
7b33a0e0 232 int64_t stream_id, void *data);
e98a2d6e
PP
233};
234
b09a5592
PP
235/** CTF message iterator. */
236struct bt_msg_iter;
e98a2d6e 237
e98a2d6e 238/**
b09a5592 239 * Creates a CTF message iterator.
e98a2d6e
PP
240 *
241 * Upon successful completion, the reference count of \p trace is
242 * incremented.
243 *
244 * @param trace Trace to read
245 * @param max_request_sz Maximum buffer size, in bytes, to
246 * request to
b09a5592 247 * bt_msg_iter_medium_ops::request_bytes()
e98a2d6e
PP
248 * at a time
249 * @param medops Medium operations
250 * @param medops_data User data (passed to medium operations)
b09a5592 251 * @returns New CTF message iterator on
e98a2d6e
PP
252 * success, or \c NULL on error
253 */
2cf1d51e 254BT_HIDDEN
b09a5592
PP
255struct bt_msg_iter *bt_msg_iter_create(struct ctf_trace_class *tc,
256 size_t max_request_sz, struct bt_msg_iter_medium_ops medops,
e310e6e2
PP
257 void *medops_data, bt_logging_level log_level,
258 bt_self_component *self_comp);
e98a2d6e
PP
259
260/**
b09a5592 261 * Destroys a CTF message iterator, freeing all internal resources.
e98a2d6e
PP
262 *
263 * The registered trace's reference count is decremented.
264 *
b09a5592 265 * @param msg_iter CTF message iterator
e98a2d6e 266 */
2cf1d51e 267BT_HIDDEN
b09a5592 268void bt_msg_iter_destroy(struct bt_msg_iter *msg_iter);
e98a2d6e 269
e98a2d6e 270/**
b09a5592 271 * Returns the next message from a CTF message iterator.
e98a2d6e 272 *
b09a5592
PP
273 * Upon successful completion, #BT_MSG_ITER_STATUS_OK is
274 * returned, and the next message is written to \p msg.
e98a2d6e 275 * In this case, the caller is responsible for calling
b09a5592 276 * bt_message_put() on the returned message.
e98a2d6e 277 *
b09a5592 278 * If this function returns #BT_MSG_ITER_STATUS_AGAIN, the caller
e98a2d6e
PP
279 * should make sure that data becomes available to its medium, and
280 * call this function again, until another status is returned.
281 *
b09a5592
PP
282 * @param msg_iter CTF message iterator
283 * @param message Returned message if the function's
284 * return value is #BT_MSG_ITER_STATUS_OK
285 * @returns One of #bt_msg_iter_status values
e98a2d6e 286 */
2cf1d51e 287BT_HIDDEN
b09a5592 288enum bt_msg_iter_status bt_msg_iter_get_next_message(
c9d45a6b 289 struct bt_msg_iter *msg_it,
b09a5592
PP
290 bt_self_message_iterator *msg_iter,
291 bt_message **message);
e98a2d6e 292
b09a5592 293struct bt_msg_iter_packet_properties {
bbbd35bf
PP
294 int64_t exp_packet_total_size;
295 int64_t exp_packet_content_size;
7b33a0e0
PP
296 uint64_t stream_class_id;
297 int64_t data_stream_id;
298
299 struct {
300 uint64_t discarded_events;
301 uint64_t packets;
302 uint64_t beginning_clock;
303 uint64_t end_clock;
304 } snapshots;
305};
306
307BT_HIDDEN
b09a5592 308enum bt_msg_iter_status bt_msg_iter_get_packet_properties(
c9d45a6b 309 struct bt_msg_iter *msg_it,
b09a5592 310 struct bt_msg_iter_packet_properties *props);
7b33a0e0 311
5ce43109
FD
312BT_HIDDEN
313enum bt_msg_iter_status bt_msg_iter_curr_packet_first_event_clock_snapshot(
c9d45a6b 314 struct bt_msg_iter *msg_it, uint64_t *first_event_cs);
5ce43109
FD
315
316BT_HIDDEN
317enum bt_msg_iter_status bt_msg_iter_curr_packet_last_event_clock_snapshot(
c9d45a6b 318 struct bt_msg_iter *msg_it, uint64_t *last_event_cs);
5ce43109 319
55fa6491 320BT_HIDDEN
c9d45a6b 321void bt_msg_iter_set_medops_data(struct bt_msg_iter *msg_it,
55fa6491
PP
322 void *medops_data);
323
bb230c9b 324BT_HIDDEN
b09a5592 325enum bt_msg_iter_status bt_msg_iter_seek(
c9d45a6b 326 struct bt_msg_iter *msg_it, off_t offset);
bb230c9b 327
6ff151ad
PP
328/*
329 * Resets the iterator so that the next requested medium bytes are
bbbd35bf
PP
330 * assumed to be the first bytes of a new stream. Depending on
331 * bt_msg_iter_set_emit_stream_beginning_message(), the first message
332 * which this iterator emits after calling bt_msg_iter_reset() is of
333 * type `BT_MESSAGE_TYPE_STREAM_BEGINNING`.
6ff151ad
PP
334 */
335BT_HIDDEN
c9d45a6b 336void bt_msg_iter_reset(struct bt_msg_iter *msg_it);
6ff151ad 337
989925d1
PP
338/*
339 * Like bt_msg_iter_reset(), but preserves stream-dependent state.
340 */
341BT_HIDDEN
c9d45a6b 342void bt_msg_iter_reset_for_next_stream_file(struct bt_msg_iter *msg_it);
989925d1 343
7b33a0e0 344BT_HIDDEN
c9d45a6b 345void bt_msg_iter_set_emit_stream_beginning_message(struct bt_msg_iter *msg_it,
bbbd35bf
PP
346 bool val);
347
348BT_HIDDEN
c9d45a6b 349void bt_msg_iter_set_emit_stream_end_message(struct bt_msg_iter *msg_it,
bbbd35bf 350 bool val);
7b33a0e0 351
8482a078 352BT_HIDDEN
c9d45a6b 353void bt_msg_iter_set_dry_run(struct bt_msg_iter *msg_it,
8482a078
FD
354 bool val);
355
fdf0e7a0 356static inline
b09a5592
PP
357const char *bt_msg_iter_medium_status_string(
358 enum bt_msg_iter_medium_status status)
fdf0e7a0
PP
359{
360 switch (status) {
b09a5592 361 case BT_MSG_ITER_MEDIUM_STATUS_EOF:
e05f8464 362 return "EOF";
b09a5592 363 case BT_MSG_ITER_MEDIUM_STATUS_AGAIN:
e05f8464 364 return "AGAIN";
b09a5592 365 case BT_MSG_ITER_MEDIUM_STATUS_INVAL:
e05f8464 366 return "INVAL";
b09a5592 367 case BT_MSG_ITER_MEDIUM_STATUS_ERROR:
e05f8464 368 return "ERROR";
b09a5592 369 case BT_MSG_ITER_MEDIUM_STATUS_OK:
e05f8464 370 return "OK";
fdf0e7a0
PP
371 default:
372 return "(unknown)";
373 }
374}
375
376static inline
b09a5592
PP
377const char *bt_msg_iter_status_string(
378 enum bt_msg_iter_status status)
fdf0e7a0
PP
379{
380 switch (status) {
b09a5592 381 case BT_MSG_ITER_STATUS_EOF:
e05f8464 382 return "EOF";
b09a5592 383 case BT_MSG_ITER_STATUS_AGAIN:
e05f8464 384 return "AGAIN";
b09a5592 385 case BT_MSG_ITER_STATUS_INVAL:
e05f8464 386 return "INVAL";
b09a5592 387 case BT_MSG_ITER_STATUS_ERROR:
e05f8464 388 return "ERROR";
b09a5592 389 case BT_MSG_ITER_STATUS_OK:
e05f8464 390 return "OK";
fdf0e7a0
PP
391 default:
392 return "(unknown)";
393 }
394}
395
b09a5592 396#endif /* CTF_MSG_ITER_H */
This page took 0.07437 seconds and 4 git commands to generate.