X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace2%2Fgraph%2Fcomponent-class-source.h;h=e523440313b36611d9026d7658b149f1d0b8edea;hb=59225a3e0e13a9c674234755e55055d9ff68d635;hp=55515bc5877ec467bf625a7c10199c0fb9da3659;hpb=d24d56638469189904fb6ddbb3c725817b3e9417;p=babeltrace.git diff --git a/include/babeltrace2/graph/component-class-source.h b/include/babeltrace2/graph/component-class-source.h index 55515bc5..e5234403 100644 --- a/include/babeltrace2/graph/component-class-source.h +++ b/include/babeltrace2/graph/component-class-source.h @@ -1,9 +1,8 @@ -#ifndef BABELTRACE_GRAPH_COMPONENT_CLASS_SOURCE_H -#define BABELTRACE_GRAPH_COMPONENT_CLASS_SOURCE_H +#ifndef BABELTRACE2_GRAPH_COMPONENT_CLASS_SOURCE_H +#define BABELTRACE2_GRAPH_COMPONENT_CLASS_SOURCE_H /* - * Copyright 2017-2018 Philippe Proulx - * Copyright 2016 Jérémie Galarneau + * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -24,30 +23,31 @@ * SOFTWARE. */ +#ifndef __BT_IN_BABELTRACE_H +# error "Please include instead." +#endif + #include -/* For bt_component_class_*_status */ #include - -/* - * For bt_component_class, bt_component_class_source, bt_port_input, - * bt_query_executor, bt_self_component_class_source, - * bt_self_component_source, bt_self_component_port_output, bt_value, - * bt_message_array_const, bt_bool, bt_self_message_iterator, - * __BT_UPCAST - */ #include - -/* For bt_logging_level */ #include #ifdef __cplusplus extern "C" { #endif +typedef bt_component_class_get_supported_mip_versions_method_status +(*bt_component_class_source_get_supported_mip_versions_method)( + bt_self_component_class_source *comp_class, + const bt_value *params, void *init_method_data, + bt_logging_level log_level, + bt_integer_range_set_unsigned *supported_versions); + typedef bt_component_class_init_method_status (*bt_component_class_source_init_method)( bt_self_component_source *self_component, + bt_self_component_source_configuration *config, const bt_value *params, void *init_method_data); typedef void (*bt_component_class_source_finalize_method)( @@ -78,22 +78,21 @@ typedef bt_component_class_message_iterator_seek_beginning_method_status (*bt_component_class_source_message_iterator_seek_beginning_method)( bt_self_message_iterator *message_iterator); -typedef bt_bool +typedef bt_component_class_message_iterator_can_seek_ns_from_origin_method_status (*bt_component_class_source_message_iterator_can_seek_ns_from_origin_method)( bt_self_message_iterator *message_iterator, - int64_t ns_from_origin); + int64_t ns_from_origin, bt_bool *can_seek); -typedef bt_bool +typedef bt_component_class_message_iterator_can_seek_beginning_method_status (*bt_component_class_source_message_iterator_can_seek_beginning_method)( - bt_self_message_iterator *message_iterator); + bt_self_message_iterator *message_iterator, bt_bool *can_seek); typedef bt_component_class_query_method_status (*bt_component_class_source_query_method)( bt_self_component_class_source *comp_class, - const bt_query_executor *query_executor, + bt_private_query_executor *query_executor, const char *object, const bt_value *params, - bt_logging_level logging_level, - const bt_value **result); + void *method_data, const bt_value **result); typedef bt_component_class_port_connected_method_status (*bt_component_class_source_output_port_connected_method)( @@ -113,6 +112,11 @@ bt_component_class_source *bt_component_class_source_create( const char *name, bt_component_class_source_message_iterator_next_method method); +extern bt_component_class_set_method_status +bt_component_class_source_set_get_supported_mip_versions_method( + bt_component_class_source *comp_class, + bt_component_class_source_get_supported_mip_versions_method method); + extern bt_component_class_set_method_status bt_component_class_source_set_init_method( bt_component_class_source *comp_class, @@ -167,4 +171,4 @@ bt_component_class_source_set_message_iterator_can_seek_beginning_method( } #endif -#endif /* BABELTRACE_GRAPH_COMPONENT_CLASS_SOURCE_H */ +#endif /* BABELTRACE2_GRAPH_COMPONENT_CLASS_SOURCE_H */