11 , lhs_value(lhs_value)
12 , rhs_value(rhs_value)
25 , input_values(
std::move(input_values))
39 , m_func(
std::move(func))
40 , m_context(0.0, 0.0, 0.0)
41 , m_context_gpu(0.0, 0.0, 0.0, get_gpu_data_buffer())
44 error<std::invalid_argument>(
46 std::source_location::current(),
47 "BinaryOpNode requires both lhs and rhs nodes to be non-null");
52 const std::shared_ptr<Node>& lhs,
53 const std::shared_ptr<Node>& rhs,
68 auto self = shared_from_this();
69 uint32_t lhs_mask =
m_lhs ?
m_lhs->get_channel_mask().load() : 0;
70 uint32_t rhs_mask =
m_rhs ?
m_rhs->get_channel_mask().load() : 0;
71 uint32_t combined_mask = lhs_mask | rhs_mask;
73 if (combined_mask != 0) {
118 uint32_t lstate =
m_lhs->m_state.load();
126 uint32_t rstate =
m_rhs->m_state.load();
150 std::vector<double> output(num_samples);
151 for (
unsigned int i = 0; i < num_samples; ++i) {
167 if (condition(ctx)) {
177 m_lhs->reset_processed_state();
179 m_rhs->reset_processed_state();
201 m_lhs->restore_state();
203 m_rhs->restore_state();
231 auto lstate =
m_lhs->m_state.load();
232 auto rstate =
m_rhs->m_state.load();
235 return !is_lhs_registered && !is_rhs_registered;
241 const std::vector<std::shared_ptr<Node>>& inputs,
244 const std::shared_ptr<Node>& self)
246 uint32_t combined_mask = 0;
247 for (
const auto& input : inputs)
248 combined_mask |= input->get_channel_mask().load();
250 if (combined_mask != 0) {
259 const std::vector<std::shared_ptr<Node>>& inputs,
266 for (
const auto& input : inputs) {
274 if (
N > 0 && inputs.size() !=
N) {
275 error<std::invalid_argument>(
277 std::source_location::current(),
278 "CompositeOpNode<{}> requires exactly {} inputs, got {}",
279 N,
N, inputs.size());
282 if (inputs.size() < 2) {
283 error<std::invalid_argument>(
285 std::source_location::current(),
286 "CompositeOpNode requires at least 2 inputs, got {}",
290 for (
size_t i = 0; i < inputs.size(); ++i) {
292 error<std::invalid_argument>(
294 std::source_location::current(),
295 "CompositeOpNode input at index {} is null", i);
#define N(method_name, full_type_name)
BinaryOpContextGpu(double value, double lhs_value, double rhs_value, std::span< const float > gpu_data)
GPU-compatible context for binary operation callbacks.
double rhs_value
The value from the right-hand side node.
BinaryOpContext(double value, double lhs_value, double rhs_value)
Constructs a BinaryOpContext with the current operation state.
double lhs_value
The value from the left-hand side node.
Specialized context for binary operation callbacks.
bool m_is_initialized
Flag indicating whether the binary operator has been properly initialized.
void restore_state() override
Restores the node's state from the last save Recursively cascades through all connected modulator nod...
ProcessingToken m_token
The processing token indicating the domain in which this node operates.
void update_context(double value) override
updates context object for callbacks
NodeGraphManager * m_manager
Reference to the node graph manager for registration and callback management.
void initialize()
Initializes the binary operation node.
bool is_initialized() const
NodeContext & get_last_context() override
Retrieves the last created context object.
void notify_tick(double value) override
Notifies all registered callbacks about a new output value.
std::shared_ptr< Node > m_lhs
The left-hand side node.
double m_saved_last_rhs_value
std::function< double(double, double)> CombineFunc
Function type for combining two node outputs.
void reset_processed_state() override
Resets the processed state of the node and any attached input nodes.
CombineFunc m_func
The function used to combine the outputs of both nodes.
double process_sample(double input=0.) override
Processes a single sample through both nodes and combines the results.
void save_state() override
Saves the node's current state for later restoration Recursively cascades through all connected modul...
double m_saved_last_lhs_value
std::vector< double > process_batch(unsigned int num_samples) override
Processes multiple samples through both nodes and combines the results.
double m_last_rhs_value
The last output value from the right-hand side node.
double m_last_lhs_value
The last output value from the left-hand side node.
BinaryOpContext m_context
BinaryOpNode(const std::shared_ptr< Node > &lhs, const std::shared_ptr< Node > &rhs, CombineFunc func)
Creates a new binary operation node.
std::shared_ptr< Node > m_rhs
The right-hand side node.
BinaryOpContextGpu m_context_gpu
Combines the outputs of two nodes using a binary operation.
CompositeOpContextGpu(double value, std::vector< double > input_values, std::span< const float > gpu_data)
GPU-compatible context for composite operation callbacks.
CompositeOpContext(double value, std::vector< double > input_values)
Context for N-ary composite operation callbacks.
GPU-uploadable 1D array data interface.
std::string type_id
Type identifier for runtime type checking.
double value
Current sample value.
Base context class for node callbacks.
void add_to_root(const std::shared_ptr< Node > &node, ProcessingToken token, unsigned int channel=0)
Add node to specific processing token and channel.
void remove_from_root(const std::shared_ptr< Node > &node, ProcessingToken token, unsigned int channel=0)
Remove node from a specific processing token and channel.
NodeConfig & get_node_config()
Gets the current node configuration.
Central manager for the computational processing node graph.
std::vector< NodeHook > m_callbacks
Collection of standard callback functions.
double m_last_output
The most recent sample value generated by this oscillator.
std::atomic< NodeState > m_state
Atomic state flag tracking the node's processing status.
bool m_fire_events_during_snapshot
Internal flag controlling whether notify_tick fires during state snapshots Default: false (events don...
std::vector< std::pair< NodeHook, NodeCondition > > m_conditional_callbacks
Collection of conditional callback functions with their predicates.
bool m_gpu_compatible
Flag indicating if the node supports GPU processing This flag is set by derived classes to indicate w...
@ Init
Engine/subsystem initialization.
@ Nodes
DSP Generator and Filter Nodes, graph pipeline, node management.
void composite_validate(const std::vector< std::shared_ptr< Node > > &inputs, size_t N)
void composite_initialize(const std::vector< std::shared_ptr< Node > > &inputs, NodeGraphManager &manager, ProcessingToken token, const std::shared_ptr< Node > &self)
void composite_apply_semantics(const std::vector< std::shared_ptr< Node > > &inputs, NodeGraphManager &manager, ProcessingToken token)
@ PROCESSED
Node has been processed this cycle.
@ ACTIVE
Engine is processing this node.
ProcessingToken
Enumerates the different processing domains for nodes.
void atomic_add_flag(std::atomic< NodeState > &state, NodeState flag)
Atomically adds a flag to a node state.
std::vector< uint32_t > get_active_channels(const std::shared_ptr< Nodes::Node > &node, uint32_t fallback_channel)
Extracts active channel list from a node's channel mask.
@ KEEP
Preserve both nodes in the binary op, add new binary op node to root, i.e doubling the signal.
@ REPLACE
Unregister both nodes and register with the new binary op node.
void try_reset_processed_state(std::shared_ptr< Node > node)
Attempts to reset the processed state of a node.
void atomic_inc_modulator_count(std::atomic< uint32_t > &count, int amount)
Atomically increments the modulator count by a specified amount.
void atomic_remove_flag(std::atomic< NodeState > &state, NodeState flag)
Atomically removes a flag from a node state.
void atomic_dec_modulator_count(std::atomic< uint32_t > &count, int amount)
Atomically decrements the modulator count by a specified amount.
Contains the node-based computational processing system components.
NodeBinaryOpSemantics binary_op_semantics