Standardize *get_*_count() functions
[babeltrace.git] / include / babeltrace / graph / component-internal.h
index 1e7b547aef911b56b6f5b9076e8c6bb750737522..ae08b8b7ddfd61f71d4738210691dc787915cf8d 100644 (file)
 #define DEFAULT_INPUT_PORT_NAME                "default"
 #define DEFAULT_OUTPUT_PORT_NAME       "default"
 
+typedef void (*bt_component_destroy_listener_func)(
+               struct bt_component *class, void *data);
+
+struct bt_component_destroy_listener {
+       bt_component_destroy_listener_func func;
+       void *data;
+};
+
 struct bt_component {
        struct bt_object base;
        struct bt_component_class *class;
@@ -61,6 +69,9 @@ struct bt_component {
        /* Input and output ports (weak references) */
        GPtrArray *input_ports;
        GPtrArray *output_ports;
+
+       /* Array of struct bt_component_destroy_listener */
+       GArray *destroy_listeners;
 };
 
 static inline
@@ -95,10 +106,10 @@ void bt_component_set_graph(struct bt_component *component,
                struct bt_graph *graph);
 
 BT_HIDDEN
-uint64_t bt_component_get_input_port_count(struct bt_component *comp);
+int64_t bt_component_get_input_port_count(struct bt_component *comp);
 
 BT_HIDDEN
-uint64_t bt_component_get_output_port_count(struct bt_component *comp);
+int64_t bt_component_get_output_port_count(struct bt_component *comp);
 
 BT_HIDDEN
 struct bt_port *bt_component_get_input_port_at_index(struct bt_component *comp,
@@ -128,4 +139,12 @@ BT_HIDDEN
 enum bt_component_status bt_component_remove_port(
                struct bt_component *component, struct bt_port *port);
 
+BT_HIDDEN
+void bt_component_add_destroy_listener(struct bt_component *component,
+               bt_component_destroy_listener_func func, void *data);
+
+BT_HIDDEN
+void bt_component_remove_destroy_listener(struct bt_component *component,
+               bt_component_destroy_listener_func func, void *data);
+
 #endif /* BABELTRACE_COMPONENT_COMPONENT_INTERNAL_H */
This page took 0.040184 seconds and 4 git commands to generate.