12 const std::vector<std::shared_ptr<Node>> empty {};
16 : m_registered_sample_rate(sample_rate)
17 , m_registered_block_size(block_size)
18 , m_registered_frame_rate(frame_rate)
32 node->set_gpu_compatible(
true);
36 root.register_node(node);
46 root.unregister_node(node);
49const std::vector<std::shared_ptr<Node>>&
57 "Attempted to get nodes for non-existent token {}. Returning empty vector.",
61 auto channel_it = token_it->second.find(channel);
63 if (channel_it == token_it->second.end()) {
66 "Attempted to get nodes for token {} channel {} which does not exist. Returning empty vector.",
71 return channel_it->second->nodes();
75 std::function<
void(std::span<RootNode*>)> processor)
82 static std::unordered_map<unsigned int, std::shared_ptr<RootNode>> audio_roots;
87 for (
const auto& [channel, root] : it->second) {
88 audio_roots[channel] = root;
98 if (!processing_ptr) {
99 processing_ptr = std::make_unique<std::atomic<bool>>(
false);
102 bool expected =
false;
103 return processing_ptr->compare_exchange_strong(
105 std::memory_order_acquire,
106 std::memory_order_relaxed);
117 it->second(std::span<RootNode*>(roots.data(), roots.size()));
127 for (
auto&
network : it->second) {
132 if (!
network->is_processed_this_cycle()) {
133 network->mark_processing(
true);
134 network->process_batch(num_samples);
135 network->mark_processing(
false);
144 for (
auto* root : roots) {
145 root->process_batch(num_samples);
148 for (
auto* root : roots) {
149 root->process_batch_frame(num_samples);
160 std::vector<std::vector<double>> all_network_outputs;
164 for (
auto&
network : audio_it->second) {
169 if (!
network->is_registered_on_channel(channel)) {
173 if (!
network->is_processed_this_cycle()) {
174 network->mark_processing(
true);
175 network->process_batch(num_samples);
176 network->mark_processing(
false);
180 const auto& net_buffer =
network->get_audio_buffer();
182 if (
network->needs_channel_routing()) {
183 double scale =
network->get_routing_state().amount[channel];
188 all_network_outputs.push_back(*net_buffer);
190 std::vector<double> scaled_buffer = *net_buffer;
191 for (
auto& sample : scaled_buffer)
194 all_network_outputs.push_back(std::move(scaled_buffer));
197 all_network_outputs.push_back(*net_buffer);
204 return all_network_outputs;
210 auto ch = channel.value_or(0U);
213 for (
auto&
network : it->second) {
215 network->mark_processed(
false);
221 it->second->store(
false, std::memory_order_release);
229 for (
auto&
network : audio_it->second) {
231 if (
network->is_registered_on_channel(channel)) {
232 network->request_reset_from_channel(channel);
252 unsigned int channel,
unsigned int num_samples)
261 return it->second(&root, num_samples);
264 std::vector<double> samples = root.process_batch(num_samples);
266 uint32_t normalize_coef = root.get_node_size();
267 for (
double& sample : samples) {
281 return it->second(&root, channel);
284 double sample = root.process_sample();
294 sample /= std::sqrt(
static_cast<double>(num_nodes));
296 const double threshold = 0.95;
297 const double knee = 0.1;
298 const double abs_sample = std::abs(sample);
300 if (abs_sample > threshold) {
301 const double excess = abs_sample - threshold;
302 const double compressed_excess = std::tanh(excess / knee) * knee;
303 const double limited_abs = threshold + compressed_excess;
304 sample = std::copysign(limited_abs, sample);
311 std::unordered_map<unsigned int, std::vector<double>> channel_data;
315 for (
unsigned int channel : channels) {
325 return static_cast<unsigned int>(channels.size());
330 std::vector<RootNode*> roots;
334 for (
auto& [channel, root] : it->second) {
335 roots.push_back(root.get());
358 m_token_roots[token][channel] = std::make_shared<RootNode>(token, channel);
364 for (uint32_t ch = 0; ch < num_channels; ++ch) {
377 node->register_channel_usage(channel_id);
388 node->unregister_channel_usage(channel_id);
393 std::vector<ProcessingToken> tokens;
395 if (!channels.empty()) {
396 tokens.push_back(token);
404 std::vector<unsigned int> channels;
407 for (
const auto& [channel, root] : it->second) {
408 channels.push_back(channel);
419 for (
const auto& [channel, root] : it->second) {
420 count += root->get_node_size();
448 uint32_t channel_mask =
network->get_channel_mask();
450 if (channel_mask == 0) {
455 auto channels =
network->get_registered_channels();
458 for (
auto ch : channels) {
462 "Added audio network to token {} channel {}: {} nodes",
463 static_cast<int>(token), ch,
network->get_node_count());
471 "Added network to token {}: {} nodes, mode={}",
472 static_cast<int>(token),
474 static_cast<int>(
network->get_output_mode()));
489 auto& networks = token_it->second;
490 std::erase_if(networks, [&](
const auto& n) {
return n ==
network; });
495 auto& networks = it->second;
496 std::erase_if(networks, [&](
const auto& n) {
return n ==
network; });
503std::vector<std::shared_ptr<Network::NodeNetwork>>
511 std::vector<std::shared_ptr<Network::NodeNetwork>> result;
513 for (
const auto& n : it->second) {
514 if (n && n->is_registered_on_channel(channel))
526std::vector<std::shared_ptr<Network::NodeNetwork>>
529 std::vector<std::shared_ptr<Network::NodeNetwork>> all_networks;
533 all_networks.insert(all_networks.end(),
534 audio_it->second.begin(),
535 audio_it->second.end());
540 all_networks.insert(all_networks.end(),
541 token_it->second.begin(),
542 token_it->second.end());
554 count += audio_it->second.size();
559 count += token_it->second.size();
595 for (
auto&
network : networks) {
603 for (
auto&
network : networks) {
614 for (
auto* root : roots) {
615 root->terminate_all_nodes();
634 if (!node->needs_channel_routing())
647 const std::shared_ptr<Node>& node,
648 const std::vector<uint32_t>& target_channels,
649 uint32_t fade_cycles,
652 uint32_t current_channels = node->get_channel_mask();
654 uint32_t target_bitmask = 0;
655 for (
auto ch : target_channels) {
656 target_bitmask |= (1 << ch);
660 fade_blocks = std::max(1U, fade_blocks);
668 for (uint32_t ch = 0; ch < 32; ch++) {
669 state.
amount[ch] = (current_channels & (1 << ch)) ? 1.0 : 0.0;
672 node->get_routing_state() = state;
674 for (
auto ch : target_channels) {
675 if (!(current_channels & (1 << ch))) {
682 const std::shared_ptr<Network::NodeNetwork>&
network,
683 const std::vector<uint32_t>& target_channels,
684 uint32_t fade_cycles,
690 "Attempted to route network that is not an audio sink. Operation ignored.");
698 if (std::ranges::find(networks,
network) == networks.end()) {
702 uint32_t current_channels =
network->get_channel_mask();
704 uint32_t target_bitmask = 0;
705 for (
auto ch : target_channels) {
706 target_bitmask |= (1 << ch);
709 uint32_t combined_mask = current_channels | target_bitmask;
710 network->set_channel_mask(combined_mask);
711 for (
auto ch : target_channels) {
712 network->add_channel_usage(ch);
717 fade_blocks = std::max(1U, fade_blocks);
725 for (uint32_t ch = 0; ch < 32; ch++) {
726 state.
amount[ch] = (current_channels & (1 << ch)) ? 1.0 : 0.0;
729 network->get_routing_state() = state;
734 std::vector<std::pair<std::shared_ptr<Node>, uint32_t>> nodes_to_remove;
737 if (!node->needs_channel_routing())
740 auto& state = node->get_routing_state();
743 for (uint32_t ch = 0; ch < 32; ch++) {
744 if ((state.from_channels & (1 << ch)) && !(state.to_channels & (1 << ch))) {
745 nodes_to_remove.emplace_back(node, ch);
752 for (
auto& [node, channel] : nodes_to_remove) {
756 std::vector<std::pair<std::shared_ptr<Network::NodeNetwork>, uint32_t>> networks_to_cleanup;
762 auto& state =
network->get_routing_state();
765 network->set_channel_mask(state.to_channels);
767 for (uint32_t ch = 0; ch < 32; ch++) {
768 if ((state.from_channels & (1 << ch)) && !(state.to_channels & (1 << ch))) {
769 networks_to_cleanup.emplace_back(
network, ch);
776 for (
auto& [
network, channel] : networks_to_cleanup) {
777 network->remove_channel_usage(channel);
779 if (
network->get_channel_mask() == 0) {
781 std::erase_if(networks, [&](
const auto& n) {
return n ==
network; });
#define MF_INFO(comp, ctx,...)
#define MF_ERROR(comp, ctx,...)
#define MF_WARN(comp, ctx,...)
Core::GlobalNetworkConfig network
void register_token_processor(ProcessingToken token, std::function< void(std::span< RootNode * >)> processor)
Register subsystem processor for a specific token.
void update_routing_states_for_cycle(ProcessingToken token)
Updates routing states for all nodes and networks for a given 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.
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.
void route_node_to_channels(const std::shared_ptr< Node > &node, const std::vector< uint32_t > &target_channels, uint32_t fade_cycles, ProcessingToken token)
Routes a node's output to specific channels within a token domain.
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.
void reset_audio_network_state(ProcessingToken token, uint32_t channel=0)
Resets the processing state of audio networks for a token and channel.
uint32_t m_registered_block_size
Block size for audio processing, used for normalizationbuffer.
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.
uint32_t m_registered_sample_rate
Sample rate for audio processing, used for normalization.
std::unordered_map< ProcessingToken, TokenSampleProcessor > m_token_sample_processors
Per-sample processors for each processing token.
std::unordered_set< 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.
NodeGraphManager(uint32_t sample_rate=48000, uint32_t block_size=512, uint32_t frame_rate=60)
Creates a new NodeGraphManager.
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.
std::unordered_set< std::shared_ptr< Network::NodeNetwork > > m_network_registry
Global network registry (like m_Node_registry)
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.
bool is_node_registered(const std::shared_ptr< Node > &node)
Checks if a node is registered with this manager.
void route_network_to_channels(const std::shared_ptr< Network::NodeNetwork > &network, const std::vector< uint32_t > &target_channels, uint32_t fade_cycles, ProcessingToken token)
Routes a network's output to specific channels within a token domain.
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.
void cleanup_completed_routing(ProcessingToken token)
Cleans up completed routing transitions for a given token.
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.
uint32_t m_registered_frame_rate
Frame rate for visual processing, used for timing and normalization.
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.
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.
const std::vector< std::shared_ptr< Node > > & get_nodes(ProcessingToken token, uint32_t channel=0) const
Get all nodes from their respective root nodes for a specific token and/or channel.
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.
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.
@ AUDIO_COMPUTE
processed each cycle but not sent to output
@ AUDIO_SINK
Aggregated audio samples sent to output.
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
void update_routing_state(RoutingState &state)
Updates the routing state for a node based on its current channel usage.
std::function< std::vector< double >(RootNode *, uint32_t)> TokenChannelProcessor
Contains the node-based computational processing system components.
constexpr std::string_view enum_to_string(EnumType value) noexcept
Universal enum to string converter using magic_enum (original case)
@ COMPLETED
Routing transition has completed.
@ ACTIVE
Currently in the fade-out phase of a routing transition.
Represents the state of routing transitions for a node.