22 root.register_node(node);
32 root.unregister_node(node);
36 std::function<
void(std::span<RootNode*>)> processor)
43 static std::unordered_map<unsigned int, std::shared_ptr<RootNode>> audio_roots;
48 for (
const auto& [channel, root] : it->second) {
49 audio_roots[channel] = root;
59 if (!processing_ptr) {
60 processing_ptr = std::make_unique<std::atomic<bool>>(
false);
63 bool expected =
false;
64 return processing_ptr->compare_exchange_strong(
66 std::memory_order_acquire,
67 std::memory_order_relaxed);
78 it->second(std::span<RootNode*>(roots.data(), roots.size()));
88 for (
auto& network : it->second) {
89 if (!network || !network->is_enabled()) {
93 if (!network->is_processed_this_cycle()) {
94 network->mark_processing(
true);
95 network->process_batch(num_samples);
96 network->mark_processing(
false);
97 network->mark_processed(
true);
105 for (
auto* root : roots) {
106 root->process_batch(num_samples);
109 for (
auto* root : roots) {
110 root->process_batch_frame(num_samples);
121 std::vector<std::vector<double>> all_network_outputs;
125 for (
auto& network : audio_it->second) {
126 if (!network || !network->is_enabled()) {
130 if (!network->is_registered_on_channel(channel)) {
134 if (!network->is_processed_this_cycle()) {
135 network->mark_processing(
true);
136 network->process_batch(num_samples);
137 network->mark_processing(
false);
138 network->mark_processed(
true);
141 const auto& net_buffer = network->get_audio_buffer();
143 all_network_outputs.push_back(*net_buffer);
149 return all_network_outputs;
155 auto ch = channel.value_or(0U);
158 for (
auto& network : it->second) {
159 if (network && network->is_enabled()) {
160 network->mark_processed(
false);
166 it->second->store(
false, std::memory_order_release);
174 for (
auto& network : audio_it->second) {
176 if (network->is_registered_on_channel(channel)) {
177 network->request_reset_from_channel(channel);
197 unsigned int channel,
unsigned int num_samples)
206 return it->second(&root, num_samples);
209 std::vector<double> samples = root.process_batch(num_samples);
211 uint32_t normalize_coef = root.get_node_size();
212 for (
double& sample : samples) {
226 return it->second(&root, channel);
229 double sample = root.process_sample();
239 sample /= std::sqrt(
static_cast<double>(num_nodes));
241 const double threshold = 0.95;
242 const double knee = 0.1;
243 const double abs_sample = std::abs(sample);
245 if (abs_sample > threshold) {
246 const double excess = abs_sample - threshold;
247 const double compressed_excess = std::tanh(excess / knee) * knee;
248 const double limited_abs = threshold + compressed_excess;
249 sample = std::copysign(limited_abs, sample);
256 std::unordered_map<unsigned int, std::vector<double>> channel_data;
260 for (
unsigned int channel : channels) {
270 return static_cast<unsigned int>(channels.size());
275 std::vector<RootNode*> roots;
279 for (
auto& [channel, root] : it->second) {
280 roots.push_back(root.get());
309 for (uint32_t ch = 0; ch < num_channels; ++ch) {
317 std::stringstream ss;
318 ss <<
"node_" << node.get();
319 std::string generated_id = ss.str();
327 node->register_channel_usage(channel_id);
333 if (pair.second == node) {
343 node->unregister_channel_usage(channel_id);
348 std::vector<ProcessingToken> tokens;
350 if (!channels.empty()) {
351 tokens.push_back(
token);
359 std::vector<unsigned int> channels;
362 for (
const auto& [channel, root] : it->second) {
363 channels.push_back(channel);
374 for (
const auto& [channel, root] : it->second) {
375 count += root->get_node_size();
385 "=== NodeGraphManager Summary ===");
393 "Token {}: {} nodes across {} channels",
394 static_cast<int>(
token), total_nodes, channels.size());
396 for (
auto channel : channels) {
402 " Channel {}: {} nodes, {} networks",
403 channel, root.get_node_size(), networks.size());
405 for (
const auto& network : networks) {
409 " Network: {} internal nodes, mode={}, enabled={}",
410 network->get_node_count(),
411 static_cast<int>(network->get_output_mode()),
412 network->is_enabled());
432 [&node](
const auto& pair) {
return pair.second == node; });
440 if (source && target) {
458 network->set_enabled(
true);
461 uint32_t channel_mask = network->get_channel_mask();
463 if (channel_mask == 0) {
465 network->add_channel_usage(0);
468 auto channels = network->get_registered_channels();
471 for (
auto ch : channels) {
475 "Added audio network to token {} channel {}: {} nodes",
476 static_cast<int>(
token), ch, network->get_node_count());
484 "Added network to token {}: {} nodes, mode={}",
485 static_cast<int>(
token),
486 network->get_node_count(),
487 static_cast<int>(network->get_output_mode()));
501 auto& networks = token_it->second;
503 std::remove(networks.begin(), networks.end(), network),
509 auto& networks = it->second;
511 std::remove(networks.begin(), networks.end(), network),
519std::vector<std::shared_ptr<Network::NodeNetwork>>
524 std::vector<std::shared_ptr<Network::NodeNetwork>> networks_on_channel;
525 for (
const auto& network : token_it->second) {
526 if (network && network->is_registered_on_channel(channel)) {
527 networks_on_channel.push_back(network);
530 return networks_on_channel;
535std::vector<std::shared_ptr<Network::NodeNetwork>>
538 std::vector<std::shared_ptr<Network::NodeNetwork>> all_networks;
542 all_networks.insert(all_networks.end(),
543 audio_it->second.begin(),
544 audio_it->second.end());
549 all_networks.insert(all_networks.end(),
550 token_it->second.begin(),
551 token_it->second.end());
563 count += audio_it->second.size();
568 count += token_it->second.size();
583 std::stringstream ss;
584 ss <<
"network_" << network.get();
585 std::string generated_id = ss.str();
593 if (pair.second == network) {
603 [&network](
const auto& pair) {
return pair.second == network; });
612 for (
auto& network : networks) {
620 for (
auto& network : networks) {
631 for (
auto* root : roots) {
632 root->terminate_all_nodes();
#define MF_INFO(comp, ctx,...)
#define MF_PRINT(comp, ctx,...)
static MayaFlux::Nodes::ProcessingToken token
@ AUDIO_SINK
Aggregated audio samples sent to output.
void register_token_processor(ProcessingToken token, std::function< void(std::span< RootNode * >)> processor)
Register subsystem processor for a specific token.
void remove_network(const std::shared_ptr< Network::NodeNetwork > &network, ProcessingToken token)
Remove a network from a processing token.
void register_token_sample_processor(ProcessingToken token, TokenSampleProcessor processor)
Register per-sample processor for a specific token.
void terminate_active_processing()
Terminates all active processing across all tokens and channels.
void clear_networks(ProcessingToken token)
Clear all networks from a token.
void print_summary() const
Prints a summary of all tokens, channels, and node counts.
const std::unordered_map< unsigned int, std::shared_ptr< RootNode > > & get_all_channel_root_nodes(ProcessingToken token=ProcessingToken::AUDIO_RATE) const
Gets all channel root nodes for the AUDIO_RATE domain.
std::vector< std::vector< double > > process_audio_networks(ProcessingToken token, uint32_t num_samples, uint32_t channel=0)
Process audio networks for a specific channel.
std::unordered_map< ProcessingToken, std::vector< std::shared_ptr< Network::NodeNetwork > > > m_token_networks
Non-audio networks (token-level processing) For NONE, GRAPHICS_BIND, CUSTOM output modes.
std::atomic< bool > m_terminate_requested
Global termination flag.
std::unordered_map< ProcessingToken, std::function< void(std::span< RootNode * >)> > m_token_processors
Registered custom processors for each processing token.
void add_network(const std::shared_ptr< Network::NodeNetwork > &network, ProcessingToken token)
Add a network to a processing token.
size_t get_network_count(ProcessingToken token) const
Get count of networks for a token.
bool preprocess_networks(ProcessingToken token)
Preprocess networks for a specific token.
void normalize_sample(double &sample, uint32_t num_nodes)
Normalizes a sample to the range [-1, 1] based on the number of nodes.
size_t get_node_count(ProcessingToken token) const
Gets the total number of nodes registered under a given token.
void unregister_global(const std::shared_ptr< Node > &node)
Unregisters a node globally.
unsigned int get_channel_count(ProcessingToken token) const
Get the number of active channels for a specific token.
void unset_channel_mask(const std::shared_ptr< Node > &node, uint32_t channel_id)
Unsets the specified channel mask from a node's global registration.
std::unordered_map< std::string, std::shared_ptr< Network::NodeNetwork > > m_network_registry
Global network registry (like m_Node_registry)
void reset_audio_network_state(ProcessingToken token, uint32_t channel=0)
Resets the processing state of audio networks for a token and channel.
void process_all_tokens(unsigned int num_samples=1)
Process all active tokens sequentially.
void register_global(const std::shared_ptr< Node > &node)
Registers a node globally if not already registered.
std::unordered_map< ProcessingToken, TokenSampleProcessor > m_token_sample_processors
Per-sample processors for each processing token.
std::unordered_map< std::string, std::shared_ptr< Node > > m_Node_registry
Registry of all nodes by their string identifiers.
std::vector< double > process_channel(ProcessingToken token, unsigned int channel, unsigned int num_samples)
Process a specific channel within a token domain.
void register_network_global(const std::shared_ptr< Network::NodeNetwork > &network)
Register network globally (like nodes)
void postprocess_networks(ProcessingToken token, std::optional< uint32_t > channel)
Postprocess networks for a specific token and channel.
void ensure_root_exists(ProcessingToken token, unsigned int channel)
Ensures a root node exists for the given token and channel.
double process_sample(ProcessingToken token, uint32_t channel)
Process a single sample for a specific channel.
void connect(const std::string &source_id, const std::string &target_id)
Connects two nodes by their string identifiers.
void set_channel_mask(const std::shared_ptr< Node > &node, uint32_t channel_id)
Adds the specified channel mask to a node's global registration.
void add_to_root(const std::shared_ptr< Node > &node, ProcessingToken token, unsigned int channel=0)
Add node to specific processing token and channel.
RootNode & get_root_node(ProcessingToken token, unsigned int channel)
Gets or creates the root node for a specific token and channel.
NodeGraphManager()
Creates a new NodeGraphManager.
bool is_node_registered(const std::shared_ptr< Node > &node)
Checks if a node is registered with this manager.
std::unordered_map< ProcessingToken, std::unordered_map< unsigned int, std::shared_ptr< RootNode > > > m_token_roots
Multi-modal map of processing tokens to their channel root nodes.
std::vector< std::shared_ptr< Network::NodeNetwork > > get_all_networks(ProcessingToken token) const
Get all networks for a specific token across all channels.
~NodeGraphManager()
Destroys the NodeGraphManager.
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.
std::unordered_map< unsigned int, std::vector< double > > process_token_with_channel_data(ProcessingToken token, unsigned int num_samples)
Process all channels for a token and return channel-separated data.
std::unordered_map< ProcessingToken, std::vector< std::shared_ptr< Network::NodeNetwork > > > m_audio_networks
Audio-sink networks Only populated for networks with OutputMode::AUDIO_SINK.
std::shared_ptr< Node > get_node(const std::string &id)
Looks up a node by its string identifier.
void unregister_network_global(const std::shared_ptr< Network::NodeNetwork > &network)
Unregister network globally.
std::vector< ProcessingToken > get_active_tokens() const
Gets all currently active processing tokens (domains)
std::unordered_map< ProcessingToken, TokenChannelProcessor > m_token_channel_processors
Per-channel processors for each processing token.
void ensure_token_exists(ProcessingToken token, uint32_t num_channels=1)
Ensures that a processing token entry exists.
bool is_network_registered(const std::shared_ptr< Network::NodeNetwork > &network)
Check if network is registered globally.
std::unordered_map< ProcessingToken, std::unique_ptr< std::atomic< bool > > > m_token_network_processing
Processing flags for each token's networks.
std::vector< std::shared_ptr< Network::NodeNetwork > > get_networks(ProcessingToken token, uint32_t channel=0) const
Get all networks for a specific token.
std::vector< RootNode * > get_all_root_nodes(ProcessingToken token)
Get spans of root nodes for a token (for custom processing)
std::vector< unsigned int > get_all_channels(ProcessingToken token) const
Gets all channel indices for a given processing token.
void process_token(ProcessingToken token, unsigned int num_samples=1)
Process all nodes in a specific token domain Calls registered processor if available,...
void register_token_channel_processor(ProcessingToken token, TokenChannelProcessor processor)
Register per-channel processor for a specific token.
Central manager for the computational processing node graph.
Container for top-level nodes in a processing channel with multi-modal support.
@ NodeProcessing
Node graph processing (Nodes::NodeGraphManager)
@ Nodes
DSP Generator and Filter Nodes, graph pipeline, node management.
ProcessingToken
Enumerates the different processing domains for nodes.
@ AUDIO_RATE
Nodes that process at the audio sample rate.
@ VISUAL_RATE
Nodes that process at the visual frame rate.
std::function< double(RootNode *, uint32_t)> TokenSampleProcessor
std::function< std::vector< double >(RootNode *, uint32_t)> TokenChannelProcessor
Contains the node-based computational processing system components.