X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fiterator.h;h=94df03c868526b1bcdf3fdbe935d8dfbf09406c9;hp=2760724291250be7a71f328af0e33c081bdd82d7;hb=9347cbab752c9672e64f8a71a465cca15f7b45ce;hpb=90fcbacc6eb672f0d5e0c9d6722d397ac9f1a63e diff --git a/include/babeltrace/iterator.h b/include/babeltrace/iterator.h index 27607242..94df03c8 100644 --- a/include/babeltrace/iterator.h +++ b/include/babeltrace/iterator.h @@ -22,8 +22,6 @@ /* Forward declarations */ struct bt_iter; -struct ctf_stream_event; -struct ctf_stream; struct bt_saved_pos; struct bt_iter_pos { @@ -40,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. * @@ -74,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. @@ -85,23 +61,25 @@ void bt_iter_free_pos(struct bt_iter_pos *pos); /* * bt_iter_set_pos: move the iterator to a given position. * - * Return EOF if position is after the last event of the trace collection. - * Return other negative value for other errors. + * On error, the stream_heap is reinitialized and returned empty. + * * Return 0 for success. + * + * Return EOF if the position requested is after the last event of the + * trace collection. + * Return -EINVAL when called with invalid parameter. + * Return -ENOMEM if the stream_heap could not be properly initialized. */ -int bt_iter_set_pos(struct bt_iter *iter, - const struct bt_iter_pos *pos); +int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); /* - * bt_iter_read_event: Read the iterator's current event data. + * bt_iter_create_time_pos: create a position based on time * - * @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. + * This function allocates and returns a new bt_iter_pos (which must be freed + * with bt_iter_free_pos) to be able to restore an iterator position based on a + * timestamp. */ -int bt_iter_read_event(struct bt_iter *iter, - struct ctf_stream **stream, - struct ctf_stream_event **event); +struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, + uint64_t timestamp); #endif /* _BABELTRACE_ITERATOR_H */