Cleanup: update ifdef wrapper name
[babeltrace.git] / include / babeltrace / iterator.h
CommitLineData
6204d33c
JD
1#ifndef _BABELTRACE_ITERATOR_H
2#define _BABELTRACE_ITERATOR_H
3
4/*
5 * BabelTrace API Iterators
6 *
7 * Copyright 2010-2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 */
19
20#include <babeltrace/format.h>
21#include <babeltrace/context.h>
22
6204d33c 23/* Forward declarations */
e8c92a62 24struct bt_iter;
e8c92a62 25struct bt_saved_pos;
6204d33c 26
31265d84
JD
27/*
28 * bt_iter is an abstract class, each format has to implement its own
29 * iterator derived from this parent class.
30 */
31
32/*
33 * bt_iter_pos
34 *
35 * This structure represents the position where to set an iterator.
36 *
37 * type represents the type of seek to use.
38 * u is the argument of the seek if necessary :
03798a93 39 * - seek_time is the real timestamp to seek to when using BT_SEEK_TIME, it
836c4dd8 40 * is expressed in nanoseconds
31265d84
JD
41 * - restore is a position saved with bt_iter_get_pos, it is used with
42 * BT_SEEK_RESTORE.
f7ed6563
MD
43 *
44 * Note about BT_SEEK_LAST: if many events happen to be at the last
45 * timestamp, it is implementation-defined which event will be the last,
46 * and the order of events with the same timestamp may not be the same
47 * as normal iteration on the trace. Therefore, it is recommended to
48 * only use BT_SEEK_LAST to get the timestamp of the last event(s) in
49 * the trace.
31265d84 50 */
e8c92a62 51struct bt_iter_pos {
6204d33c
JD
52 enum {
53 BT_SEEK_TIME, /* uses u.seek_time */
54 BT_SEEK_RESTORE, /* uses u.restore */
55 BT_SEEK_CUR,
56 BT_SEEK_BEGIN,
57 BT_SEEK_END,
f7ed6563 58 BT_SEEK_LAST,
6204d33c
JD
59 } type;
60 union {
61 uint64_t seek_time;
e8c92a62 62 struct bt_saved_pos *restore;
6204d33c
JD
63 } u;
64};
65
6204d33c 66/*
e8c92a62 67 * bt_iter_next: Move trace collection position to the next event.
6204d33c
JD
68 *
69 * Returns 0 on success, a negative value on error
70 */
e8c92a62 71int bt_iter_next(struct bt_iter *iter);
6204d33c
JD
72
73/*
90fcbacc 74 * bt_iter_get_pos - Get the current iterator position.
6204d33c
JD
75 *
76 * The position returned by this function needs to be freed by
e8c92a62 77 * bt_iter_free_pos after use.
6204d33c 78 */
5a23202c 79struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter);
6204d33c
JD
80
81/*
e8c92a62 82 * bt_iter_free_pos - Free the position.
6204d33c 83 */
e8c92a62 84void bt_iter_free_pos(struct bt_iter_pos *pos);
6204d33c
JD
85
86/*
90fcbacc 87 * bt_iter_set_pos: move the iterator to a given position.
6204d33c 88 *
dc81689e
JD
89 * On error, the stream_heap is reinitialized and returned empty.
90 *
6204d33c 91 * Return 0 for success.
dc81689e
JD
92 *
93 * Return EOF if the position requested is after the last event of the
94 * trace collection.
95 * Return -EINVAL when called with invalid parameter.
96 * Return -ENOMEM if the stream_heap could not be properly initialized.
97 */
98int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos);
99
100/*
101 * bt_iter_create_time_pos: create a position based on time
102 *
103 * This function allocates and returns a new bt_iter_pos (which must be freed
104 * with bt_iter_free_pos) to be able to restore an iterator position based on a
03798a93 105 * real timestamp.
6204d33c 106 */
dc81689e
JD
107struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter,
108 uint64_t timestamp);
6204d33c 109
6204d33c 110#endif /* _BABELTRACE_ITERATOR_H */
This page took 0.027786 seconds and 4 git commands to generate.