Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use daggy's StableDag #147

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name = "dsp"
path = "./src/lib.rs"

[dependencies]
daggy = "0.4.0"
daggy = { git = "https://github.com/mitchmindtree/daggy", rev = "bcb36c7b", features = ["stable_dag"] }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, we might want to update to the next proper version of daggy once it is released to crates.io.

sample = "0.10.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/synth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn main() -> Result<(), pa::Error> {

// Traverse inputs or outputs of a node with the following pattern.
let mut inputs = graph.inputs(synth);
while let Some(input_idx) = inputs.next_node(&graph) {
while let Some((_, input_idx)) = inputs.walk_next(&graph) {
if let DspNode::Oscillator(_, ref mut pitch, _) = graph[input_idx] {
// Pitch down our oscillators for fun.
*pitch -= 0.1;
Expand Down
117 changes: 49 additions & 68 deletions src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,34 @@
//! The `Graph` type requires that its nodes implement the [`Node`](../node/trait.Node.html) trait.

use crate::node::Node;
use daggy::{self, Walker};
use daggy::{stabledag, petgraph::{self, visit::{IntoNodeReferences, IntoEdgeReferences}}};
use sample::{self, Frame, Sample};

// Daggy/petgraph re-exports
pub use stabledag::Walker;
pub use petgraph::visit::EdgeRef;

/// An alias for our Graph's Node Index.
pub type NodeIndex = daggy::NodeIndex<usize>;
pub type NodeIndex = stabledag::NodeIndex<usize>;
/// An alias for our Graph's Edge Index.
pub type EdgeIndex = daggy::EdgeIndex<usize>;
pub type EdgeIndex = stabledag::EdgeIndex<usize>;

/// An alias for the iterator yielding mutable access to all node weights.
pub type NodesMut<'a, N> = daggy::NodeWeightsMut<'a, N, usize>;
/// An alias for our Graph's Node Indices.
pub type NodeReferences<'a, N> = petgraph::stable_graph::NodeReferences<'a, N, usize>;
/// An alias for our Graph's Edge Indices.
pub type EdgeReferences<'a, N> = petgraph::stable_graph::EdgeReferences<'a, N, usize>;

/// Read only access to a **Graph**'s internal node array.
pub type RawNodes<'a, N> = daggy::RawNodes<'a, N, usize>;
/// Read only access to a **Graph**'s internal edge array.
pub type RawEdges<'a, F> = daggy::RawEdges<'a, Connection<F>, usize>;
/// An alias for the iterator yielding mutable access to all node weights.
pub type NodesMut<'a, N> = stabledag::NodeWeightsMut<'a, N, usize>;

/// An iterator yielding indices to recently added connections.
pub type EdgeIndices = daggy::EdgeIndices<usize>;
pub type EdgeIndices = stabledag::EdgeIndices<usize>;

/// An alias for the **Dag** used within our **Graph**.
pub type Dag<F, N> = daggy::Dag<N, Connection<F>, usize>;
pub type Dag<F, N> = stabledag::StableDag<N, Connection<F>, usize>;

/// An alias for the **PetGraph** used by our **Graph**'s internal **Dag**.
pub type PetGraph<F, N> = daggy::PetGraph<N, Connection<F>, usize>;
pub type PetGraph<F, N> = petgraph::stable_graph::StableDiGraph<N, Connection<F>, usize>;

/// A directed, acyclic DSP graph.
///
Expand Down Expand Up @@ -104,12 +108,12 @@ pub struct WouldCycle;

/// A walker object for walking over nodes that are inputs to some node.
pub struct Inputs<F, N> {
parents: daggy::Parents<N, Connection<F>, usize>,
parents: stabledag::Parents<N, Connection<F>, usize>,
}

/// A walker object for walking over nodes that are outputs to some node.
pub struct Outputs<F, N> {
children: daggy::Children<N, Connection<F>, usize>,
children: stabledag::Children<N, Connection<F>, usize>,
}

/// A walker type for walking over a **Graph**'s nodes in the order in which they will visited when
Expand All @@ -135,7 +139,7 @@ where
/// rough idea of the number of nodes, connections and frames per buffer upon the **Graph**'s
/// instantiation.
pub fn new() -> Self {
let dag = daggy::Dag::new();
let dag = Dag::new();
Graph {
dag: dag,
visit_order: Vec::new(),
Expand All @@ -152,7 +156,7 @@ where
/// for mixing the dry and wet signals when `Node::audio_requested` is called.
pub fn with_capacity(nodes: usize, connections: usize, frames_per_buffer: usize) -> Self {
Graph {
dag: daggy::Dag::with_capacity(nodes, connections),
dag: Dag::with_capacity(nodes, connections),
visit_order: Vec::with_capacity(nodes),
dry_buffer: Vec::with_capacity(frames_per_buffer),
maybe_master: None,
Expand Down Expand Up @@ -234,26 +238,24 @@ where
self.dag.node_weight_mut(node)
}

/// Read only access to the internal node array.
pub fn raw_nodes(&self) -> RawNodes<N> {
self.dag.raw_nodes()
/// An iterator over the graph's nodes.
pub fn node_references(&self) -> NodeReferences<N> {
self.dag.node_references()
}

/// An iterator yielding mutable access to all nodes.
///
/// The order in which nodes are yielded matches the order of their indices.
pub fn nodes_mut(&mut self) -> NodesMut<N> {
self.dag.node_weights_mut()
/// An iterator over the graph's edges.
pub fn edge_references(&self) -> EdgeReferences<Connection<F>> {
self.dag.edge_references()
}

/// A reference to the connection at the given index (or `None` if it doesn't exist).
pub fn connection(&self, edge: EdgeIndex) -> Option<&Connection<F>> {
self.dag.edge_weight(edge)
}

/// Read only access to the internal edge array.
pub fn raw_edges(&self) -> RawEdges<F> {
self.dag.raw_edges()
/// A mutable reference to the connection at the given index (or `None` if it doesn't exist)
fn connection_mut(&mut self, edge: EdgeIndex) -> Option<&mut Connection<F>> {
self.dag.edge_weight_mut(edge)
}

/// Index the **Graph** by two `NodeIndex`s at once.
Expand Down Expand Up @@ -480,7 +482,7 @@ where
pub fn remove_all_input_connections(&mut self, idx: NodeIndex) -> usize {
let mut inputs = self.inputs(idx);
let mut num = 0;
while let Some(connection) = inputs.next_edge(&self) {
while let Some((connection, _)) = inputs.walk_next(&self) {
self.remove_edge(connection);
num += 1;
}
Expand All @@ -493,7 +495,7 @@ where
pub fn remove_all_output_connections(&mut self, idx: NodeIndex) -> usize {
let mut outputs = self.outputs(idx);
let mut num = 0;
while let Some(connection) = outputs.next_edge(&self) {
while let Some((connection, _)) = outputs.walk_next(&self) {
self.remove_edge(connection);
num += 1;
}
Expand All @@ -509,8 +511,8 @@ where
let mut num_removed = 0;
for i in 0..self.dag.node_count() {
let idx = NodeIndex::new(i);
let num_inputs = self.inputs(idx).count(self);
let num_outputs = self.outputs(idx).count(self);
let num_inputs = self.inputs(idx).iter(self).count();
let num_outputs = self.outputs(idx).iter(self).count();
if num_inputs == 0 && num_outputs == 0 {
if self.maybe_master == Some(idx) {
self.maybe_master = None;
Expand All @@ -535,7 +537,9 @@ where
resize_buffer_to(&mut self.dry_buffer, buffer_size);

// Initialise all connection buffers.
for connection in self.dag.edge_weights_mut() {
let edge_ids = self.edge_references().map(|e| e.id()).collect::<Vec<_>>();
for edge_id in edge_ids {
let connection = self.connection_mut(edge_id).unwrap();
Copy link
Contributor Author

@fwcd fwcd Sep 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, this also means that we cannot mutably iterate the graph's nodes/edges directly (yet). To address this, I have implemented this workaround which is slightly less efficient.

resize_buffer_to(&mut connection.buffer, buffer_size);
}
}
Expand Down Expand Up @@ -566,7 +570,7 @@ where

// Walk over each of the input connections to sum their buffers to the output.
let mut inputs = self.inputs(node_idx);
while let Some(connection_idx) = inputs.next_edge(self) {
while let Some((connection_idx, _)) = inputs.walk_next(self) {
let connection = &self[connection_idx];
// Sum the connection's buffer onto the output.
//
Expand Down Expand Up @@ -621,7 +625,7 @@ where

// Walk over each of the outgoing connections and write the rendered output to them.
let mut outputs = self.outputs(node_idx);
while let Some(connection_idx) = outputs.next_edge(self) {
while let Some((connection_idx, _)) = outputs.walk_next(self) {
let connection = &mut self.dag[connection_idx];

// Ensure the buffer matches the target length.
Expand All @@ -646,7 +650,8 @@ where
///
/// The user should never have to worry about this, thus the method is private.
fn prepare_visit_order(&mut self) {
self.visit_order = daggy::petgraph::algo::toposort(self.dag.graph());
self.visit_order = petgraph::algo::toposort(self.dag.graph(), None)
.expect("A cycle was found in the DAG while toposorting");
}
}

Expand Down Expand Up @@ -686,7 +691,7 @@ where
// use the first node that has no output connections.
let mut visit_order_rev = self.visit_order_rev();
while let Some(node) = visit_order_rev.next(self) {
if self.inputs(node).count(self) == 0 {
if self.inputs(node).iter(self).count() == 0 {
self.audio_requested_from(node, output, sample_hz);
return;
}
Expand All @@ -696,47 +701,23 @@ where
}
}

impl<F, N> Walker<Graph<F, N>> for Inputs<F, N> {
type Index = usize;
impl<F, N> Walker<&Graph<F, N>> for Inputs<F, N> {
type Item = (EdgeIndex, NodeIndex);

/// The next (connection, node) input pair to some node in our walk for the given **Graph**.
#[inline]
fn next(&mut self, graph: &Graph<F, N>) -> Option<(EdgeIndex, NodeIndex)> {
self.parents.next(&graph.dag)
}

/// The next input connection to some node in our walk for the given **Graph**.
#[inline]
fn next_edge(&mut self, graph: &Graph<F, N>) -> Option<EdgeIndex> {
self.parents.next_edge(&graph.dag)
}

/// The next input node to some node in our walk for the given **Graph**.
#[inline]
fn next_node(&mut self, graph: &Graph<F, N>) -> Option<NodeIndex> {
self.parents.next_node(&graph.dag)
fn walk_next(&mut self, graph: &Graph<F, N>) -> Option<(EdgeIndex, NodeIndex)> {
self.parents.walk_next(&graph.dag)
}
}

impl<F, N> Walker<Graph<F, N>> for Outputs<F, N> {
type Index = usize;
impl<F, N> Walker<&Graph<F, N>> for Outputs<F, N> {
type Item = (EdgeIndex, NodeIndex);

/// The next (connection, node) output pair from some node in our walk for the given **Graph**.
#[inline]
fn next(&mut self, graph: &Graph<F, N>) -> Option<(EdgeIndex, NodeIndex)> {
self.children.next(&graph.dag)
}

/// The next output connection from some node in our walk for the given **Graph**.
#[inline]
fn next_edge(&mut self, graph: &Graph<F, N>) -> Option<EdgeIndex> {
self.children.next_edge(&graph.dag)
}

/// The next output node from some node in our walk for the given **Graph**.
#[inline]
fn next_node(&mut self, graph: &Graph<F, N>) -> Option<NodeIndex> {
self.children.next_node(&graph.dag)
fn walk_next(&mut self, graph: &Graph<F, N>) -> Option<(EdgeIndex, NodeIndex)> {
self.children.walk_next(&graph.dag)
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#![forbid(unsafe_code)]
#![deny(missing_docs)]

pub use daggy::{self, Walker};
pub use daggy::stabledag;
pub use graph::{
Connection, Dag, EdgeIndex, Graph, Inputs, NodeIndex, NodesMut, Outputs, PetGraph, RawEdges,
RawNodes, VisitOrder, VisitOrderReverse, WouldCycle,
Connection, Dag, EdgeIndex, EdgeRef, Graph, Inputs, NodeIndex, NodesMut, Outputs, PetGraph,
VisitOrder, VisitOrderReverse, WouldCycle, Walker,
};
pub use node::Node;
pub use sample::{
Expand Down