X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace2%2Fgraph%2Fgraph.h;h=981fd6a4c126d865dc7a3e71282883ef442feb47;hb=c6fe8c4012c19ba7ab7fc16853a464e0381d6290;hp=30459fc497a0dd74ef0b0084fee50a2b35d385a9;hpb=648dab91badf89bda303707b6159d315448b8a16;p=babeltrace.git diff --git a/include/babeltrace2/graph/graph.h b/include/babeltrace2/graph/graph.h index 30459fc4..981fd6a4 100644 --- a/include/babeltrace2/graph/graph.h +++ b/include/babeltrace2/graph/graph.h @@ -91,7 +91,33 @@ typedef bt_graph_listener_func_status typedef void (* bt_graph_listener_removed_func)(void *data); -extern bt_graph *bt_graph_create(void); +typedef enum bt_graph_simple_sink_component_init_func_status { + BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK = __BT_FUNC_STATUS_OK, + BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_ERROR = __BT_FUNC_STATUS_ERROR, + BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR, +} bt_graph_simple_sink_component_init_func_status; + +typedef bt_graph_simple_sink_component_init_func_status +(*bt_graph_simple_sink_component_init_func)( + bt_self_component_port_input_message_iterator *iterator, + void *data); + +typedef enum bt_graph_simple_sink_component_consume_func_status { + BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_OK = __BT_FUNC_STATUS_OK, + BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_ERROR = __BT_FUNC_STATUS_ERROR, + BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR, + BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_AGAIN = __BT_FUNC_STATUS_AGAIN, + BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_END = __BT_FUNC_STATUS_END, +} bt_graph_simple_sink_component_consume_func_status; + +typedef bt_graph_simple_sink_component_consume_func_status +(*bt_graph_simple_sink_component_consume_func)( + bt_self_component_port_input_message_iterator *iterator, + void *data); + +typedef void (*bt_graph_simple_sink_component_finalize_func)(void *data); + +extern bt_graph *bt_graph_create(uint64_t mip_version); typedef enum bt_graph_add_component_status { BT_GRAPH_ADD_COMPONENT_STATUS_OK = __BT_FUNC_STATUS_OK, @@ -142,6 +168,13 @@ bt_graph_add_sink_component_with_init_method_data( void *init_method_data, bt_logging_level log_level, const bt_component_sink **component); +extern bt_graph_add_component_status +bt_graph_add_simple_sink_component(bt_graph *graph, const char *name, + bt_graph_simple_sink_component_init_func init_func, + bt_graph_simple_sink_component_consume_func consume_func, + bt_graph_simple_sink_component_finalize_func finalize_func, + void *user_data, const bt_component_sink **component); + typedef enum bt_graph_connect_ports_status { BT_GRAPH_CONNECT_PORTS_STATUS_OK = __BT_FUNC_STATUS_OK, BT_GRAPH_CONNECT_PORTS_STATUS_ERROR = __BT_FUNC_STATUS_ERROR, @@ -235,8 +268,8 @@ bt_graph_add_filter_sink_component_ports_connected_listener( bt_listener_id *listener_id); typedef enum bt_graph_add_interrupter_status { - BT_GRAPH_ADD_INTERRUPTER_STATUS_OK = __BT_FUNC_STATUS_OK, - BT_GRAPH_ADD_INTERRUPTER_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR, + BT_GRAPH_ADD_INTERRUPTER_STATUS_OK = __BT_FUNC_STATUS_OK, + BT_GRAPH_ADD_INTERRUPTER_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR, } bt_graph_add_interrupter_status; extern bt_graph_add_interrupter_status bt_graph_add_interrupter(bt_graph *graph,