OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
graph_interface.hpp
1#pragma once
2#include <ossia/dataflow/dataflow_fwd.hpp>
3#include <ossia/dataflow/graph_edge.hpp>
4#include <ossia/dataflow/transport.hpp>
5#include <ossia/detail/audio_spin_mutex.hpp>
6#include <ossia/detail/logger_fwd.hpp>
7
8#include <tcb/span.hpp>
9
10#include <smallfun.hpp>
11
12namespace spdlog
13{
14class logger;
15}
16namespace ossia
17{
18struct edge_pool;
19struct bench_map;
20struct connection;
21class time_interval;
22class OSSIA_EXPORT graph_interface
23{
24public:
25 graph_interface();
26 virtual ~graph_interface();
27 /* [[deprecated]] */ virtual void add_node(ossia::node_ptr) = 0;
28 /* [[deprecated]] */ virtual void remove_node(const ossia::node_ptr&) = 0;
29 /* [[deprecated]] */ virtual void connect(ossia::edge_ptr) = 0;
30 /* [[deprecated]] */ virtual void disconnect(const ossia::edge_ptr&) = 0;
31 /* [[deprecated]] */ virtual void disconnect(ossia::graph_edge*) = 0;
32 /* [[deprecated]] */ virtual void mark_dirty() = 0;
33
34 virtual void state(execution_state& e) = 0;
35
36 virtual void clear() = 0;
37
38 virtual void print(std::ostream&) = 0;
39
40 [[nodiscard]] virtual tcb::span<ossia::graph_node* const> get_nodes() const noexcept
41 = 0;
42
43 std::shared_ptr<edge_pool> pool;
44
45 ossia::edge_ptr allocate_edge(
46 connection c, outlet_ptr pout, inlet_ptr pin, node_ptr pout_node,
47 node_ptr pin_node);
48};
49
50struct graph_setup_options
51{
52 enum
53 {
54 StaticFixed,
55 StaticBFS,
56 StaticTC,
57 Dynamic
58 } scheduling{};
59 enum
60 {
61 Creation,
62 XY,
63 YX,
64 Temporal
65 } order{};
66 enum
67 {
68 Merge,
69 Append,
70 Replace
71 } merge{};
72
73 bool parallel{};
74 int parallel_threads = 8;
75 std::shared_ptr<ossia::logger_type> log{};
76 std::shared_ptr<bench_map> bench{};
77};
78
79struct tick_setup_options
80{
81 enum
82 {
83 Default,
84 Ordered,
85 Priorized,
86 Merged,
87 MergedThreaded,
88 DirectThreaded
89 } commit{};
90 enum
91 {
92 Buffer,
93 ScoreAccurate,
94 Precise
95 } tick{};
96};
97
98OSSIA_EXPORT
99std::shared_ptr<ossia::graph_interface> make_graph(const graph_setup_options&);
100
101}
Definition git_info.h:7
spdlog::logger & logger() noexcept
Where the errors will be logged. Default is stderr.
Definition context.cpp:118
ossia::value_with_unit merge(const value_with_unit &vu, const ossia::value &val, ossia::destination_index idx)
merge Merge a computed value in a unit-aware value
Definition dataspace_visitors.cpp:311
std::ostream & print(std::ostream &out, const state_element &e)
print Print a state_element
Definition state_element.cpp:23