3#if SIZE_MAX == 0xFFFFFFFF
4#include <ossia/dataflow/audio_port.hpp>
5#include <ossia/dataflow/midi_port.hpp>
6#include <ossia/dataflow/value_port.hpp>
9#include <ossia/dataflow/dataflow_fwd.hpp>
10#include <ossia/dataflow/exec_state_facade.hpp>
11#include <ossia/dataflow/token_request.hpp>
12#include <ossia/detail/small_vector.hpp>
13#include <ossia/detail/string_view.hpp>
22using token_request_vec = ossia::small_vector<token_request, 4>;
23using simple_token_request_vec = ossia::small_vector<simple_token_request, 4>;
24inline bool operator==(
const token_request_vec& lhs,
const simple_token_request_vec& rhs)
26 if(lhs.size() != rhs.size())
29 auto it1 = lhs.begin();
30 auto it2 = rhs.begin();
32 for(; it1 < e1; ++it1, ++it2)
42inline bool operator!=(
const token_request_vec& lhs,
const simple_token_request_vec& rhs)
44 if(lhs.size() != rhs.size())
47 auto it1 = lhs.begin();
48 auto it2 = rhs.begin();
50 for(; it1 < e1; ++it1, ++it2)
59inline bool operator==(
const simple_token_request_vec& lhs,
const token_request_vec& rhs)
63inline bool operator!=(
const simple_token_request_vec& lhs,
const token_request_vec& rhs)
68using inlets = ossia::small_vector<inlet_ptr, 2>;
69using outlets = ossia::small_vector<outlet_ptr, 2>;
110class OSSIA_EXPORT graph_node
113 graph_node() noexcept;
114 virtual ~graph_node();
116 [[nodiscard]]
bool enabled() const noexcept {
return !requested_tokens.empty(); }
118 [[nodiscard]]
bool executed() const noexcept {
return m_executed; }
120 void set_start_discontinuous(
bool b)
noexcept { m_start_discontinuous = b; }
121 void set_end_discontinuous(
bool b)
noexcept { m_end_discontinuous = b; }
123 virtual void prepare(
const execution_state& st)
noexcept;
124 [[nodiscard]]
virtual bool consumes(
const execution_state&)
const noexcept;
125 virtual void run(
const token_request&, exec_state_facade)
noexcept;
126 [[nodiscard]]
virtual std::string label() const noexcept = 0;
128 [[nodiscard]]
bool has_port_inputs() const noexcept;
129 [[nodiscard]]
bool has_global_inputs() const noexcept;
130 [[nodiscard]]
bool has_local_inputs(const execution_state& st) const noexcept;
132 [[nodiscard]] const inlets& root_inputs() const noexcept {
return m_inlets; }
133 [[nodiscard]]
const outlets& root_outputs() const noexcept {
return m_outlets; }
134 inlets& root_inputs() noexcept {
return m_inlets; }
135 outlets& root_outputs() noexcept {
return m_outlets; }
137 virtual void clear() noexcept;
139 [[nodiscard]]
bool start_discontinuous() const noexcept
141 return m_start_discontinuous;
143 [[nodiscard]]
bool end_discontinuous() const noexcept {
return m_end_discontinuous; }
145 void set_executed(
bool b)
noexcept { m_executed = b; }
147 void request(
const ossia::token_request& req)
noexcept;
148 void process_time(
const ossia::token_request& req, execution_state& st)
noexcept;
150 void disable() noexcept { requested_tokens.clear(); }
152 void set_logging(
bool b)
noexcept { m_logging = b; }
153 [[nodiscard]]
bool logged() const noexcept {
return m_logging; }
155 void set_mute(
bool b)
noexcept { m_muted = b; }
156 [[nodiscard]]
bool muted() const noexcept {
return m_muted; }
162 bool not_fp_safe() const noexcept
164 return m_not_fp_safe;
166 void set_not_fp_safe() noexcept { m_not_fp_safe =
true; }
173 bool not_threadable() const noexcept
175 return m_not_threadable;
183 int64_t processed_frames() const noexcept
185 return m_processed_frames;
188 virtual void all_notes_off() noexcept;
189 token_request_vec requested_tokens;
194 int64_t m_processed_frames{};
197 bool m_not_threadable{};
198 bool m_not_fp_safe{};
201 bool m_start_discontinuous{};
202 bool m_end_discontinuous{};
207class OSSIA_EXPORT nonowning_graph_node :
public graph_node
210 using graph_node::graph_node;
211 ~nonowning_graph_node()
override;
213 void clear() noexcept override;
216template <typename T, typename... Args>
217auto make_node(const execution_state& st, Args&&... args)
219 auto n = std::make_shared<T>(std::forward<Args>(args)...);
bool muted
Means that the node should not send / receives network messages.
Definition node_attributes.hpp:104