Add missing iterator.h into the git repo
[babeltrace.git] / include / babeltrace / iterator.h
index 3dcf0825f2efaf03ef7b9545512d0b61f52a7946..94df03c868526b1bcdf3fdbe935d8dfbf09406c9 100644 (file)
 
 #include <babeltrace/format.h>
 #include <babeltrace/context.h>
-#include <babeltrace/ctf/events.h>
 
 /* Forward declarations */
 struct bt_iter;
-struct ctf_stream_event;
-struct ctf_stream;
 struct bt_saved_pos;
 
 struct bt_iter_pos {
@@ -41,27 +38,6 @@ struct bt_iter_pos {
        } u;
 };
 
-/*
- * bt_iter_create - Allocate a trace collection iterator.
- *
- * begin_pos and end_pos are optional parameters to specify the position
- * at which the trace collection should be seeked upon iterator
- * creation, and the position at which iteration will start returning
- * "EOF".
- *
- * By default, if begin_pos is NULL, a BT_SEEK_CUR is performed at
- * creation. By default, if end_pos is NULL, a BT_SEEK_END (end of
- * trace) is the EOF criterion.
- */
-struct bt_iter *bt_iter_create(struct bt_context *ctx,
-               struct bt_iter_pos *begin_pos,
-               struct bt_iter_pos *end_pos);
-
-/*
- * bt_iter_destroy - Free a trace collection iterator.
- */
-void bt_iter_destroy(struct bt_iter *iter);
-
 /*
  * bt_iter_next: Move trace collection position to the next event.
  *
@@ -75,8 +51,7 @@ int bt_iter_next(struct bt_iter *iter);
  * The position returned by this function needs to be freed by
  * bt_iter_free_pos after use.
  */
-struct bt_iter_pos *
-       bt_iter_get_pos(struct bt_iter *iter);
+struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter);
 
 /*
  * bt_iter_free_pos - Free the position.
@@ -107,14 +82,4 @@ int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos);
 struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter,
                uint64_t timestamp);
 
-/*
- * bt_iter_read_ctf_event: Read the iterator's current event data.
- *
- * @iter: trace collection iterator (input)
- * @stream: stream containing event at current position (output)
- * @event: current event (output)
- * Return 0 on success, negative error value on error.
- */
-struct bt_ctf_event *bt_iter_read_ctf_event(struct bt_iter *iter);
-
 #endif /* _BABELTRACE_ITERATOR_H */
This page took 0.03359 seconds and 4 git commands to generate.