ctf: make ctf_msg_iter_seek assert that the seek callback is not NULL
[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 */
5d452e1f 50enum ctf_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 */
5d452e1f 57 CTF_MSG_ITER_MEDIUM_STATUS_EOF = 1,
e98a2d6e
PP
58
59 /**
60 * There is no data available right now, try again later.
61 */
5d452e1f 62 CTF_MSG_ITER_MEDIUM_STATUS_AGAIN = 11,
bb230c9b 63
e98a2d6e 64 /** General error. */
5d452e1f 65 CTF_MSG_ITER_MEDIUM_STATUS_ERROR = -1,
e98a2d6e
PP
66
67 /** Everything okay. */
5d452e1f 68 CTF_MSG_ITER_MEDIUM_STATUS_OK = 0,
e98a2d6e
PP
69};
70
71/**
b09a5592 72 * CTF message iterator API status code.
e98a2d6e 73 */
5d452e1f 74enum ctf_msg_iter_status {
e98a2d6e
PP
75 /**
76 * End of file.
77 *
b09a5592 78 * The medium function called by the message iterator
e98a2d6e
PP
79 * function reached the end of the file.
80 */
5d452e1f 81 CTF_MSG_ITER_STATUS_EOF = CTF_MSG_ITER_MEDIUM_STATUS_EOF,
e98a2d6e
PP
82
83 /**
84 * There is no data available right now, try again later.
85 *
86 * Some condition resulted in the
5d452e1f 87 * ctf_msg_iter_medium_ops::request_bytes() user function not
e98a2d6e 88 * having access to any data now. You should retry calling the
b09a5592 89 * last called message iterator function once the situation
e98a2d6e
PP
90 * is resolved.
91 */
5d452e1f 92 CTF_MSG_ITER_STATUS_AGAIN = CTF_MSG_ITER_MEDIUM_STATUS_AGAIN,
e98a2d6e 93
e98a2d6e 94 /** General error. */
5d452e1f 95 CTF_MSG_ITER_STATUS_ERROR = CTF_MSG_ITER_MEDIUM_STATUS_ERROR,
e98a2d6e
PP
96
97 /** Everything okay. */
5d452e1f 98 CTF_MSG_ITER_STATUS_OK = CTF_MSG_ITER_MEDIUM_STATUS_OK,
e98a2d6e
PP
99};
100
101/**
102 * Medium operations.
103 *
b09a5592 104 * Those user functions are called by the message iterator
e98a2d6e
PP
105 * functions to request medium actions.
106 */
5d452e1f 107struct ctf_msg_iter_medium_ops {
e98a2d6e
PP
108 /**
109 * Returns the next byte buffer to be used by the binary file
110 * reader to deserialize binary data.
111 *
112 * This function \em must be defined.
113 *
114 * The purpose of this function is to return a buffer of bytes
b09a5592 115 * to the message iterator, of a maximum of \p request_sz
e98a2d6e
PP
116 * bytes. If this function cannot return a buffer of at least
117 * \p request_sz bytes, it may return a smaller buffer. In
118 * either cases, \p buffer_sz must be set to the returned buffer
119 * size (in bytes).
120 *
121 * The returned buffer's ownership remains the medium, in that
b09a5592
PP
122 * it won't be freed by the message iterator functions. The
123 * returned buffer won't be modified by the message
e98a2d6e
PP
124 * iterator functions either.
125 *
126 * When this function is called for the first time for a given
127 * file, the offset within the file is considered to be 0. The
128 * next times this function is called, the returned buffer's
129 * byte offset within the complete file must be the previous
130 * offset plus the last returned value of \p buffer_sz by this
131 * medium.
132 *
133 * This function must return one of the following statuses:
134 *
5d452e1f 135 * - <b>#CTF_MSG_ITER_MEDIUM_STATUS_OK</b>: Everything
e98a2d6e
PP
136 * is okay, i.e. \p buffer_sz is set to a positive value
137 * reflecting the number of available bytes in the buffer
138 * starting at the address written in \p buffer_addr.
5d452e1f 139 * - <b>#CTF_MSG_ITER_MEDIUM_STATUS_AGAIN</b>: No data is
b09a5592 140 * available right now. In this case, the message
e98a2d6e 141 * iterator function called by the user returns
5d452e1f 142 * #CTF_MSG_ITER_STATUS_AGAIN, and it is the user's
e98a2d6e 143 * responsibility to make sure enough data becomes available
b09a5592 144 * before calling the \em same message iterator
e98a2d6e 145 * function again to continue the decoding process.
5d452e1f 146 * - <b>#CTF_MSG_ITER_MEDIUM_STATUS_EOF</b>: The end of
e98a2d6e 147 * the file was reached, and no more data will ever be
b09a5592 148 * available for this file. In this case, the message
e98a2d6e 149 * iterator function called by the user returns
5d452e1f 150 * #CTF_MSG_ITER_STATUS_EOF. This must \em not be
e98a2d6e
PP
151 * returned when returning at least one byte of data to the
152 * caller, i.e. this must be returned when there's
153 * absolutely nothing left; should the request size be
154 * larger than what's left in the file, this function must
155 * return what's left, setting \p buffer_sz to the number of
156 * remaining bytes, and return
5d452e1f 157 * #CTF_MSG_ITER_MEDIUM_STATUS_EOF on the \em following
e98a2d6e 158 * call.
5d452e1f 159 * - <b>#CTF_MSG_ITER_MEDIUM_STATUS_ERROR</b>: A fatal
e98a2d6e 160 * error occured during this operation. In this case, the
b09a5592 161 * message iterator function called by the user returns
5d452e1f 162 * #CTF_MSG_ITER_STATUS_ERROR.
e98a2d6e 163 *
5d452e1f 164 * If #CTF_MSG_ITER_MEDIUM_STATUS_OK is not returned, the
e98a2d6e
PP
165 * values of \p buffer_sz and \p buffer_addr are \em ignored by
166 * the caller.
167 *
168 * @param request_sz Requested buffer size (bytes)
169 * @param buffer_addr Returned buffer address
170 * @param buffer_sz Returned buffer's size (bytes)
171 * @param data User data
172 * @returns Status code (see description above)
173 */
5d452e1f 174 enum ctf_msg_iter_medium_status (* request_bytes)(size_t request_sz,
bbbd35bf 175 uint8_t **buffer_addr, size_t *buffer_sz, void *data);
e98a2d6e 176
bb230c9b
JG
177 /**
178 * Repositions the underlying stream's position.
179 *
180 * This *optional* method repositions the underlying stream
9a4c10a7 181 * to a given absolute position in the medium.
bb230c9b 182 *
bb230c9b
JG
183 * @param offset Offset to use for the given directive
184 * @param data User data
5d452e1f 185 * @returns One of #ctf_msg_iter_medium_status values
bb230c9b 186 */
9a4c10a7 187 enum ctf_msg_iter_medium_status (* seek)(off_t offset, void *data);
bb230c9b 188
e98a2d6e
PP
189 /**
190 * Returns a stream instance (weak reference) for the given
191 * stream class.
192 *
193 * This is called after a packet header is read, and the
b09a5592 194 * corresponding stream class is found by the message
e98a2d6e
PP
195 * iterator.
196 *
0659c536
PP
197 * @param stream_class Stream class of the stream to get
198 * @param stream_id Stream (instance) ID of the stream
199 * to get (-1ULL if not available)
e98a2d6e
PP
200 * @param data User data
201 * @returns Stream instance (weak reference) or
202 * \c NULL on error
203 */
bbbd35bf 204 bt_stream * (* borrow_stream)(bt_stream_class *stream_class,
7b33a0e0 205 int64_t stream_id, void *data);
e98a2d6e
PP
206};
207
b09a5592 208/** CTF message iterator. */
5d452e1f 209struct ctf_msg_iter;
e98a2d6e 210
e98a2d6e 211/**
b09a5592 212 * Creates a CTF message iterator.
e98a2d6e
PP
213 *
214 * Upon successful completion, the reference count of \p trace is
215 * incremented.
216 *
217 * @param trace Trace to read
218 * @param max_request_sz Maximum buffer size, in bytes, to
219 * request to
5d452e1f 220 * ctf_msg_iter_medium_ops::request_bytes()
e98a2d6e
PP
221 * at a time
222 * @param medops Medium operations
223 * @param medops_data User data (passed to medium operations)
b09a5592 224 * @returns New CTF message iterator on
e98a2d6e
PP
225 * success, or \c NULL on error
226 */
2cf1d51e 227BT_HIDDEN
2428e031
SM
228struct ctf_msg_iter *ctf_msg_iter_create(
229 struct ctf_trace_class *tc,
230 size_t max_request_sz,
231 struct ctf_msg_iter_medium_ops medops,
232 void *medops_data,
233 bt_logging_level log_level,
234 bt_self_component *self_comp,
235 bt_self_message_iterator *self_msg_iter);
e98a2d6e
PP
236
237/**
b09a5592 238 * Destroys a CTF message iterator, freeing all internal resources.
e98a2d6e
PP
239 *
240 * The registered trace's reference count is decremented.
241 *
b09a5592 242 * @param msg_iter CTF message iterator
e98a2d6e 243 */
2cf1d51e 244BT_HIDDEN
5d452e1f 245void ctf_msg_iter_destroy(struct ctf_msg_iter *msg_iter);
e98a2d6e 246
e98a2d6e 247/**
b09a5592 248 * Returns the next message from a CTF message iterator.
e98a2d6e 249 *
5d452e1f 250 * Upon successful completion, #CTF_MSG_ITER_STATUS_OK is
b09a5592 251 * returned, and the next message is written to \p msg.
e98a2d6e 252 * In this case, the caller is responsible for calling
b09a5592 253 * bt_message_put() on the returned message.
e98a2d6e 254 *
5d452e1f 255 * If this function returns #CTF_MSG_ITER_STATUS_AGAIN, the caller
e98a2d6e
PP
256 * should make sure that data becomes available to its medium, and
257 * call this function again, until another status is returned.
258 *
b09a5592
PP
259 * @param msg_iter CTF message iterator
260 * @param message Returned message if the function's
5d452e1f
SM
261 * return value is #CTF_MSG_ITER_STATUS_OK
262 * @returns One of #ctf_msg_iter_status values
e98a2d6e 263 */
2cf1d51e 264BT_HIDDEN
5d452e1f
SM
265enum ctf_msg_iter_status ctf_msg_iter_get_next_message(
266 struct ctf_msg_iter *msg_it,
55e57fc9 267 const bt_message **message);
e98a2d6e 268
5d452e1f 269struct ctf_msg_iter_packet_properties {
bbbd35bf
PP
270 int64_t exp_packet_total_size;
271 int64_t exp_packet_content_size;
7b33a0e0
PP
272 uint64_t stream_class_id;
273 int64_t data_stream_id;
274
275 struct {
276 uint64_t discarded_events;
277 uint64_t packets;
278 uint64_t beginning_clock;
279 uint64_t end_clock;
280 } snapshots;
281};
282
283BT_HIDDEN
5d452e1f
SM
284enum ctf_msg_iter_status ctf_msg_iter_get_packet_properties(
285 struct ctf_msg_iter *msg_it,
286 struct ctf_msg_iter_packet_properties *props);
7b33a0e0 287
5ce43109 288BT_HIDDEN
5d452e1f
SM
289enum ctf_msg_iter_status ctf_msg_iter_curr_packet_first_event_clock_snapshot(
290 struct ctf_msg_iter *msg_it, uint64_t *first_event_cs);
5ce43109
FD
291
292BT_HIDDEN
5d452e1f
SM
293enum ctf_msg_iter_status ctf_msg_iter_curr_packet_last_event_clock_snapshot(
294 struct ctf_msg_iter *msg_it, uint64_t *last_event_cs);
5ce43109 295
55fa6491 296BT_HIDDEN
5d452e1f 297void ctf_msg_iter_set_medops_data(struct ctf_msg_iter *msg_it,
55fa6491
PP
298 void *medops_data);
299
bb230c9b 300BT_HIDDEN
5d452e1f
SM
301enum ctf_msg_iter_status ctf_msg_iter_seek(
302 struct ctf_msg_iter *msg_it, off_t offset);
bb230c9b 303
6ff151ad
PP
304/*
305 * Resets the iterator so that the next requested medium bytes are
bbbd35bf 306 * assumed to be the first bytes of a new stream. Depending on
5d452e1f
SM
307 * ctf_msg_iter_set_emit_stream_beginning_message(), the first message
308 * which this iterator emits after calling ctf_msg_iter_reset() is of
309 * type `CTF_MESSAGE_TYPE_STREAM_BEGINNING`.
6ff151ad
PP
310 */
311BT_HIDDEN
5d452e1f 312void ctf_msg_iter_reset(struct ctf_msg_iter *msg_it);
6ff151ad 313
989925d1 314/*
5d452e1f 315 * Like ctf_msg_iter_reset(), but preserves stream-dependent state.
989925d1
PP
316 */
317BT_HIDDEN
5d452e1f 318void ctf_msg_iter_reset_for_next_stream_file(struct ctf_msg_iter *msg_it);
989925d1 319
7b33a0e0 320BT_HIDDEN
5d452e1f 321void ctf_msg_iter_set_emit_stream_beginning_message(struct ctf_msg_iter *msg_it,
bbbd35bf
PP
322 bool val);
323
324BT_HIDDEN
5d452e1f 325void ctf_msg_iter_set_emit_stream_end_message(struct ctf_msg_iter *msg_it,
bbbd35bf 326 bool val);
7b33a0e0 327
8482a078 328BT_HIDDEN
5d452e1f 329void ctf_msg_iter_set_dry_run(struct ctf_msg_iter *msg_it,
8482a078
FD
330 bool val);
331
fdf0e7a0 332static inline
5d452e1f
SM
333const char *ctf_msg_iter_medium_status_string(
334 enum ctf_msg_iter_medium_status status)
fdf0e7a0
PP
335{
336 switch (status) {
5d452e1f 337 case CTF_MSG_ITER_MEDIUM_STATUS_EOF:
e05f8464 338 return "EOF";
5d452e1f 339 case CTF_MSG_ITER_MEDIUM_STATUS_AGAIN:
e05f8464 340 return "AGAIN";
5d452e1f 341 case CTF_MSG_ITER_MEDIUM_STATUS_ERROR:
e05f8464 342 return "ERROR";
5d452e1f 343 case CTF_MSG_ITER_MEDIUM_STATUS_OK:
e05f8464 344 return "OK";
fdf0e7a0
PP
345 default:
346 return "(unknown)";
347 }
348}
349
350static inline
5d452e1f
SM
351const char *ctf_msg_iter_status_string(
352 enum ctf_msg_iter_status status)
fdf0e7a0
PP
353{
354 switch (status) {
5d452e1f 355 case CTF_MSG_ITER_STATUS_EOF:
e05f8464 356 return "EOF";
5d452e1f 357 case CTF_MSG_ITER_STATUS_AGAIN:
e05f8464 358 return "AGAIN";
5d452e1f 359 case CTF_MSG_ITER_STATUS_ERROR:
e05f8464 360 return "ERROR";
5d452e1f 361 case CTF_MSG_ITER_STATUS_OK:
e05f8464 362 return "OK";
fdf0e7a0
PP
363 default:
364 return "(unknown)";
365 }
366}
367
b09a5592 368#endif /* CTF_MSG_ITER_H */
This page took 0.076789 seconds and 4 git commands to generate.