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