API : split iterator headers from babeltrace.h
authorJulien Desfossez <julien.desfossez@efficios.com>
Wed, 25 Jan 2012 20:29:47 +0000 (15:29 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 25 Jan 2012 20:29:47 +0000 (15:29 -0500)
Removed the iterator specific prototypes from babeltrace.h
No change in functionnality.

Signed-off-by: Julien Desfossez <julien.desfossez@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
converter/babeltrace.c
include/Makefile.am
include/babeltrace/babeltrace.h
include/babeltrace/iterator.h [new file with mode: 0644]
lib/iterator.c

index 269ed4639d75b5db219013898d007e45b0f8f5e1..fbdc9ed7de4b81b0fb505da287c446981f2c6dec 100644 (file)
@@ -25,6 +25,7 @@
 #include <babeltrace/context.h>
 #include <babeltrace/ctf/types.h>
 #include <babeltrace/ctf-text/types.h>
 #include <babeltrace/context.h>
 #include <babeltrace/ctf/types.h>
 #include <babeltrace/ctf-text/types.h>
+#include <babeltrace/iterator.h>
 #include <popt.h>
 #include <errno.h>
 #include <stdlib.h>
 #include <popt.h>
 #include <errno.h>
 #include <stdlib.h>
index 727704273288196ec855ad84769094b13ffa41d3..b5d26808ef76909a981b8d0b9e1dfcfec2b7c40a 100644 (file)
@@ -1,7 +1,8 @@
 babeltraceinclude_HEADERS = \
        babeltrace/babeltrace.h \
        babeltrace/format.h \
 babeltraceinclude_HEADERS = \
        babeltrace/babeltrace.h \
        babeltrace/format.h \
-       babeltrace/context.h
+       babeltrace/context.h \
+       babeltrace/iterator.h
 
 
 noinst_HEADERS = \
 
 
 noinst_HEADERS = \
index 792eeab08196b6c6b75efe39344973b2533912cf..c37e846b45179b6bd0c34f874d548c8be4705c3a 100644 (file)
  */
 
 #include <glib.h>
  */
 
 #include <glib.h>
-#include <stdint.h>
 #include <babeltrace/format.h>
 #include <babeltrace/format.h>
-#include <babeltrace/context.h>
 
 typedef GQuark bt_event_name;
 
 /* Forward declarations */
 struct babeltrace_iter;
 
 typedef GQuark bt_event_name;
 
 /* Forward declarations */
 struct babeltrace_iter;
-struct trace_collection;
 struct ctf_stream_event;
 struct ctf_stream;
 struct ctf_stream_event;
 struct ctf_stream;
-struct babeltrace_saved_pos;
 struct bt_dependencies;
 struct bt_dependencies;
-struct bt_context;
 
 enum bt_cb_ret {
        BT_CB_OK                = 0,
 
 enum bt_cb_ret {
        BT_CB_OK                = 0,
@@ -40,89 +35,11 @@ enum bt_cb_ret {
        BT_CB_ERROR_CONTINUE    = 3,
 };
 
        BT_CB_ERROR_CONTINUE    = 3,
 };
 
-struct trace_collection_pos {
-       enum {
-               BT_SEEK_TIME,           /* uses u.seek_time */
-               BT_SEEK_RESTORE,        /* uses u.restore */
-               BT_SEEK_CUR,
-               BT_SEEK_BEGIN,
-               BT_SEEK_END,
-       } type;
-       union {
-               uint64_t seek_time;
-               struct babeltrace_saved_pos *restore;
-       } u;
-};
-
 struct bt_ctf_data {
        struct ctf_stream_event *event;
        struct ctf_stream *stream;
 };
 
 struct bt_ctf_data {
        struct ctf_stream_event *event;
        struct ctf_stream *stream;
 };
 
-/*
- * babeltrace_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 babeltrace_iter *babeltrace_iter_create(struct bt_context *ctx,
-               struct trace_collection_pos *begin_pos,
-               struct trace_collection_pos *end_pos);
-
-/*
- * babeltrace_iter_destroy - Free a trace collection iterator.
- */
-void babeltrace_iter_destroy(struct babeltrace_iter *iter);
-
-/*
- * babeltrace_iter_next: Move trace collection position to the next event.
- *
- * Returns 0 on success, a negative value on error
- */
-int babeltrace_iter_next(struct babeltrace_iter *iter);
-
-/*
- * babeltrace_iter_save_pos - Save the current trace collection position.
- *
- * The position returned by this function needs to be freed by
- * babeltrace_iter_free_pos after use.
- */
-struct trace_collection_pos *
-       babeltrace_iter_save_pos(struct babeltrace_iter *iter);
-
-/*
- * babeltrace_iter_free_pos - Free the position.
- */
-void babeltrace_iter_free_pos(struct trace_collection_pos *pos);
-
-/*
- * babeltrace_iter_seek: seek iterator to given position.
- *
- * Return EOF if position is after the last event of the trace collection.
- * Return other negative value for other errors.
- * Return 0 for success.
- */
-int babeltrace_iter_seek(struct babeltrace_iter *iter,
-               const struct trace_collection_pos *pos);
-
-/*
- * babeltrace_iter_read_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.
- */
-int babeltrace_iter_read_event(struct babeltrace_iter *iter,
-               struct ctf_stream **stream,
-               struct ctf_stream_event **event);
-
 /*
  * Receives a variable number of strings as parameter, ended with NULL.
  */
 /*
  * Receives a variable number of strings as parameter, ended with NULL.
  */
diff --git a/include/babeltrace/iterator.h b/include/babeltrace/iterator.h
new file mode 100644 (file)
index 0000000..923d2e1
--- /dev/null
@@ -0,0 +1,109 @@
+#ifndef _BABELTRACE_ITERATOR_H
+#define _BABELTRACE_ITERATOR_H
+
+/*
+ * BabelTrace API Iterators
+ *
+ * Copyright 2010-2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ */
+
+#include <babeltrace/format.h>
+#include <babeltrace/context.h>
+
+typedef GQuark bt_event_name;
+
+/* Forward declarations */
+struct babeltrace_iter;
+struct ctf_stream_event;
+struct ctf_stream;
+struct babeltrace_saved_pos;
+
+struct trace_collection_pos {
+       enum {
+               BT_SEEK_TIME,           /* uses u.seek_time */
+               BT_SEEK_RESTORE,        /* uses u.restore */
+               BT_SEEK_CUR,
+               BT_SEEK_BEGIN,
+               BT_SEEK_END,
+       } type;
+       union {
+               uint64_t seek_time;
+               struct babeltrace_saved_pos *restore;
+       } u;
+};
+
+/*
+ * babeltrace_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 babeltrace_iter *babeltrace_iter_create(struct bt_context *ctx,
+               struct trace_collection_pos *begin_pos,
+               struct trace_collection_pos *end_pos);
+
+/*
+ * babeltrace_iter_destroy - Free a trace collection iterator.
+ */
+void babeltrace_iter_destroy(struct babeltrace_iter *iter);
+
+/*
+ * babeltrace_iter_next: Move trace collection position to the next event.
+ *
+ * Returns 0 on success, a negative value on error
+ */
+int babeltrace_iter_next(struct babeltrace_iter *iter);
+
+/*
+ * babeltrace_iter_save_pos - Save the current trace collection position.
+ *
+ * The position returned by this function needs to be freed by
+ * babeltrace_iter_free_pos after use.
+ */
+struct trace_collection_pos *
+       babeltrace_iter_save_pos(struct babeltrace_iter *iter);
+
+/*
+ * babeltrace_iter_free_pos - Free the position.
+ */
+void babeltrace_iter_free_pos(struct trace_collection_pos *pos);
+
+/*
+ * babeltrace_iter_seek: seek iterator to given position.
+ *
+ * Return EOF if position is after the last event of the trace collection.
+ * Return other negative value for other errors.
+ * Return 0 for success.
+ */
+int babeltrace_iter_seek(struct babeltrace_iter *iter,
+               const struct trace_collection_pos *pos);
+
+/*
+ * babeltrace_iter_read_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.
+ */
+int babeltrace_iter_read_event(struct babeltrace_iter *iter,
+               struct ctf_stream **stream,
+               struct ctf_stream_event **event);
+
+#endif /* _BABELTRACE_ITERATOR_H */
index 82cd42979d5adbf053dd3c08f716ce805202b0dd..f8232eded5e5d66ec08d90cc8e418edae413aad8 100644 (file)
@@ -24,6 +24,7 @@
 #include <babeltrace/context.h>
 #include <babeltrace/ctf/metadata.h>
 #include <babeltrace/iterator-internal.h>
 #include <babeltrace/context.h>
 #include <babeltrace/ctf/metadata.h>
 #include <babeltrace/iterator-internal.h>
+#include <babeltrace/iterator.h>
 #include <babeltrace/prio_heap.h>
 
 struct stream_saved_pos {
 #include <babeltrace/prio_heap.h>
 
 struct stream_saved_pos {
This page took 0.028373 seconds and 4 git commands to generate.