Commit | Line | Data |
---|---|---|
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 | ||
6946751f JD |
23 | #ifdef __cplusplus |
24 | extern "C" { | |
25 | #endif | |
26 | ||
6204d33c | 27 | /* Forward declarations */ |
e8c92a62 | 28 | struct bt_iter; |
e8c92a62 | 29 | struct bt_saved_pos; |
6204d33c | 30 | |
31265d84 JD |
31 | /* |
32 | * bt_iter is an abstract class, each format has to implement its own | |
33 | * iterator derived from this parent class. | |
34 | */ | |
35 | ||
36 | /* | |
37 | * bt_iter_pos | |
38 | * | |
39 | * This structure represents the position where to set an iterator. | |
40 | * | |
41 | * type represents the type of seek to use. | |
42 | * u is the argument of the seek if necessary : | |
03798a93 | 43 | * - seek_time is the real timestamp to seek to when using BT_SEEK_TIME, it |
836c4dd8 | 44 | * is expressed in nanoseconds |
31265d84 JD |
45 | * - restore is a position saved with bt_iter_get_pos, it is used with |
46 | * BT_SEEK_RESTORE. | |
f7ed6563 MD |
47 | * |
48 | * Note about BT_SEEK_LAST: if many events happen to be at the last | |
49 | * timestamp, it is implementation-defined which event will be the last, | |
50 | * and the order of events with the same timestamp may not be the same | |
51 | * as normal iteration on the trace. Therefore, it is recommended to | |
52 | * only use BT_SEEK_LAST to get the timestamp of the last event(s) in | |
53 | * the trace. | |
31265d84 | 54 | */ |
e8c92a62 | 55 | struct bt_iter_pos { |
6204d33c JD |
56 | enum { |
57 | BT_SEEK_TIME, /* uses u.seek_time */ | |
58 | BT_SEEK_RESTORE, /* uses u.restore */ | |
59 | BT_SEEK_CUR, | |
60 | BT_SEEK_BEGIN, | |
f7ed6563 | 61 | BT_SEEK_LAST, |
6204d33c JD |
62 | } type; |
63 | union { | |
64 | uint64_t seek_time; | |
e8c92a62 | 65 | struct bt_saved_pos *restore; |
6204d33c JD |
66 | } u; |
67 | }; | |
68 | ||
6204d33c | 69 | /* |
e8c92a62 | 70 | * bt_iter_next: Move trace collection position to the next event. |
6204d33c JD |
71 | * |
72 | * Returns 0 on success, a negative value on error | |
73 | */ | |
e8c92a62 | 74 | int bt_iter_next(struct bt_iter *iter); |
6204d33c JD |
75 | |
76 | /* | |
90fcbacc | 77 | * bt_iter_get_pos - Get the current iterator position. |
6204d33c JD |
78 | * |
79 | * The position returned by this function needs to be freed by | |
e8c92a62 | 80 | * bt_iter_free_pos after use. |
6204d33c | 81 | */ |
5a23202c | 82 | struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter); |
6204d33c JD |
83 | |
84 | /* | |
e8c92a62 | 85 | * bt_iter_free_pos - Free the position. |
6204d33c | 86 | */ |
e8c92a62 | 87 | void bt_iter_free_pos(struct bt_iter_pos *pos); |
6204d33c JD |
88 | |
89 | /* | |
90fcbacc | 90 | * bt_iter_set_pos: move the iterator to a given position. |
6204d33c | 91 | * |
dc81689e JD |
92 | * On error, the stream_heap is reinitialized and returned empty. |
93 | * | |
6204d33c | 94 | * Return 0 for success. |
dc81689e JD |
95 | * |
96 | * Return EOF if the position requested is after the last event of the | |
97 | * trace collection. | |
98 | * Return -EINVAL when called with invalid parameter. | |
99 | * Return -ENOMEM if the stream_heap could not be properly initialized. | |
100 | */ | |
101 | int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); | |
102 | ||
103 | /* | |
104 | * bt_iter_create_time_pos: create a position based on time | |
105 | * | |
106 | * This function allocates and returns a new bt_iter_pos (which must be freed | |
107 | * with bt_iter_free_pos) to be able to restore an iterator position based on a | |
03798a93 | 108 | * real timestamp. |
6204d33c | 109 | */ |
dc81689e JD |
110 | struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, |
111 | uint64_t timestamp); | |
6204d33c | 112 | |
6946751f JD |
113 | #ifdef __cplusplus |
114 | } | |
115 | #endif | |
116 | ||
6204d33c | 117 | #endif /* _BABELTRACE_ITERATOR_H */ |