Allow a component to remove a port and any user to disconnect one
[babeltrace.git] / include / babeltrace / component / graph.h
CommitLineData
f60c8b34
JG
1#ifndef BABELTRACE_COMPONENT_GRAPH_H
2#define BABELTRACE_COMPONENT_GRAPH_H
c0418dd9
JG
3
4/*
f60c8b34 5 * BabelTrace - Babeltrace Graph Interface
c0418dd9 6 *
f60c8b34 7 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
c0418dd9
JG
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
33b34c43 30#include <babeltrace/component/component.h>
c0418dd9
JG
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
f60c8b34
JG
36struct bt_port;
37struct bt_connection;
c0418dd9 38
f60c8b34 39enum bt_graph_status {
72b913fb
PP
40 /** No sink can consume at the moment. */
41 BT_GRAPH_STATUS_AGAIN = 2,
f60c8b34
JG
42 /** Downstream component does not support multiple inputs. */
43 BT_GRAPH_STATUS_END = 1,
44 BT_GRAPH_STATUS_OK = 0,
45 /** Downstream component does not support multiple inputs. */
46 BT_GRAPH_STATUS_MULTIPLE_INPUTS_UNSUPPORTED = -1,
47 /** Component is already part of another graph. */
48 BT_GRAPH_STATUS_ALREADY_IN_A_GRAPH = -2,
49 /** Invalid arguments. */
50 BT_GRAPH_STATUS_INVALID = -3,
51 /** No sink in graph. */
52 BT_GRAPH_STATUS_NO_SINK = -4,
53 /** General error. */
54 BT_GRAPH_STATUS_ERROR = -5,
f60c8b34 55};
c0418dd9 56
f60c8b34 57extern struct bt_graph *bt_graph_create(void);
c0418dd9
JG
58
59/**
f60c8b34
JG
60 * Creates a connection between two components using the two ports specified
61 * and adds the connection and components (if not already added) to the graph.
c0418dd9 62 */
f60c8b34
JG
63extern struct bt_connection *bt_graph_connect(struct bt_graph *graph,
64 struct bt_port *upstream,
65 struct bt_port *downstream);
c0418dd9
JG
66
67/**
68 * Add a component as a "sibling" of the origin component. Sibling share
69 * connections equivalent to each other at the time of connection (same
f60c8b34 70 * upstream and downstream ports).
c0418dd9 71 */
f60c8b34
JG
72extern enum bt_graph_status bt_graph_add_component_as_sibling(
73 struct bt_graph *graph, struct bt_component *origin,
c0418dd9
JG
74 struct bt_component *new_component);
75
76/**
f60c8b34
JG
77 * Run graph to completion or until a single sink is left and "AGAIN" is received.
78 *
c0418dd9 79 * Runs "bt_component_sink_consume()" on all sinks in round-robin until they all
f60c8b34
JG
80 * indicate that the end is reached or that an error occured.
81 */
72b913fb 82extern enum bt_graph_status bt_graph_run(struct bt_graph *graph);
f60c8b34
JG
83
84/**
85 * Runs "bt_component_sink_consume()" on the graph's sinks. Each invokation will
86 * invoke "bt_component_sink_consume()" on the next sink, in round-robin, until
87 * they all indicated that the end is reached.
c0418dd9 88 */
72b913fb 89extern enum bt_graph_status bt_graph_consume(struct bt_graph *graph);
c0418dd9
JG
90
91#ifdef __cplusplus
92}
93#endif
94
f60c8b34 95#endif /* BABELTRACE_COMPONENT_GRAPH_H */
This page took 0.029528 seconds and 4 git commands to generate.