libdaw 0.2.0

A library for Rust for making programmable DAWs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
mod error;

pub use error::Error;

type Result<T> = std::result::Result<T, Error>;

use crate::nodes::Passthrough;
use crate::stream::Stream;
use crate::Node;
use nohash_hasher::{IntSet, IsEnabled};

use std::hash::Hash;
use std::sync::{Arc, Mutex};
use Error::IllegalIndex;
use Error::NoSuchConnection;

/// A strong node shared smart pointer.
type Strong = Arc<dyn Node>;

/// The node index.
#[derive(Debug, Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Hash)]
pub struct Index(usize);

impl IsEnabled for Index {}

#[derive(Debug, Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Hash)]
struct Input {
    source: Index,
    stream: Option<usize>,
}

#[derive(Debug)]
struct Slot {
    node: Strong,
    output: Mutex<Vec<Stream>>,
    input_buffer: Mutex<Vec<Stream>>,
    inputs: Vec<Input>,
}

/// The processing order list, keeping the list in memory so that we only have
/// to rebuild it if the graph has changed.
#[derive(Debug, Default)]
struct ProcessList {
    list: Vec<Index>,
    memo: IntSet<Index>,
    reprocess: bool,
}

#[derive(Debug)]
struct InnerGraph {
    nodes: Vec<Option<Slot>>,
    empty_nodes: IntSet<Index>,
    set_nodes: IntSet<Index>,
    process_list: Mutex<ProcessList>,
}

impl Default for InnerGraph {
    fn default() -> Self {
        let mut graph = Self {
            nodes: Default::default(),
            empty_nodes: Default::default(),
            set_nodes: Default::default(),
            process_list: Default::default(),
        };
        // input
        graph.add(Arc::new(Passthrough::default()));
        // output
        graph.add(Arc::new(Passthrough::default()));
        graph
    }
}

impl InnerGraph {
    pub fn add(&mut self, node: Strong) -> Index {
        self.process_list.lock().expect("mutex poisoned").reprocess = true;
        let slot = Some(Slot {
            node,
            output: Default::default(),
            input_buffer: Default::default(),
            inputs: Default::default(),
        });
        if let Some(index) = self.empty_nodes.iter().next().copied() {
            self.empty_nodes.remove(&index);
            self.set_nodes.insert(index);
            self.nodes[index.0] = slot;
            index
        } else {
            let index = Index(self.nodes.len());
            self.nodes.push(slot);
            self.set_nodes.insert(index);
            index
        }
    }

    pub fn remove(&mut self, index: Index) -> Result<Option<Strong>> {
        match index {
            Index(0) => {
                return Err(IllegalIndex {
                    index,
                    message: "Can not remove the input",
                })
            }
            Index(1) => {
                return Err(IllegalIndex {
                    index,
                    message: "Can not remove the output",
                })
            }
            _ => (),
        }

        self.process_list.lock().expect("mutex poisoned").reprocess = true;

        if let Some(slot) = self.nodes[index.0].take() {
            self.empty_nodes.insert(index);
            self.set_nodes.remove(&index);

            // Remove all nodes that used this one as input
            for set_index in self.set_nodes.iter().copied() {
                let slot = self.nodes[set_index.0]
                    .as_mut()
                    .expect("set slot not existing");
                slot.inputs.retain(|input| input.source != index);
            }
            Ok(Some(slot.node))
        } else {
            Ok(None)
        }
    }

    fn inner_connect(
        &mut self,
        source: Index,
        destination: Index,
        stream: Option<usize>,
    ) -> Result<()> {
        if self.nodes[source.0].is_none() {
            return Err(IllegalIndex {
                index: source,
                message: "source must be a valid index",
            });
        }
        let destination = self.nodes[destination.0]
            .as_mut()
            .ok_or_else(|| IllegalIndex {
                index: destination,
                message: "destination must be a valid index",
            })?;

        self.process_list.lock().expect("mutex poisoned").reprocess = true;
        destination.inputs.push(Input { source, stream });
        Ok(())
    }

    /// Connect the given output of the source to the destination.  The same
    /// output may be attached  multiple times. `None` will attach all outputs.
    pub fn connect(
        &mut self,
        source: Index,
        destination: Index,
        stream: Option<usize>,
    ) -> Result<()> {
        match (source, destination) {
            (Index(0), _) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "use `input` instead",
                })
            }
            (Index(1), _) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "cannot connect or disconnect output",
                })
            }
            (_, Index(0)) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "cannot connect or disconnect input",
                })
            }
            (_, Index(1)) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "use `output` instead",
                })
            }
            _ => (),
        }
        self.inner_connect(source, destination, stream)
    }

    /// Disconnect the last-added matching connection.
    fn inner_disconnect(
        &mut self,
        source: Index,
        destination: Index,
        stream: Option<usize>,
    ) -> Result<()> {
        let destination_slot = self.nodes[destination.0]
            .as_mut()
            .ok_or_else(|| IllegalIndex {
                index: destination,
                message: "destination must be a valid index",
            })?;
        let source_input = Input { source, stream };
        let (index, _) = destination_slot
            .inputs
            .iter()
            .enumerate()
            .rev()
            .find(|(_, input)| **input == source_input)
            .ok_or_else(move || NoSuchConnection {
                source,
                destination,
                stream,
            })?;
        destination_slot.inputs.remove(index);
        self.process_list.lock().expect("mutex poisoned").reprocess = true;
        Ok(())
    }

    /// Disconnect the last-added matching connection, returning a boolean
    /// indicating if anything was disconnected.
    pub fn disconnect(
        &mut self,
        source: Index,
        destination: Index,
        stream: Option<usize>,
    ) -> Result<()> {
        match (source, destination) {
            (Index(0), _) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "use `remove_input` instead",
                })
            }
            (Index(1), _) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "cannot connect or disconnect output",
                })
            }
            (_, Index(0)) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "cannot connect or disconnect input",
                })
            }
            (_, Index(1)) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "use `remove_output` instead",
                })
            }
            _ => (),
        }
        self.disconnect(source, destination, stream)
    }

    /// Connect the given output of the initial input to the destination.  The
    /// same output may be attached multiple times. `None` will attach all
    /// outputs.
    pub fn input(&mut self, destination: Index, stream: Option<usize>) -> Result<()> {
        match destination {
            Index(0) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "Can not `input` the input",
                })
            }
            Index(1) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "Can not `input` the output",
                })
            }
            _ => (),
        }
        self.inner_connect(Index(0), destination, stream)
    }

    /// Disconnect the last-added matching connection from the destination,
    /// returning a boolean indicating if anything was disconnected.
    pub fn remove_input(&mut self, destination: Index, stream: Option<usize>) -> Result<()> {
        match destination {
            Index(0) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "Can not `remove_input` the input",
                })
            }
            Index(1) => {
                return Err(IllegalIndex {
                    index: destination,
                    message: "Can not `remove_input` the output",
                })
            }
            _ => (),
        }
        self.inner_disconnect(Index(0), destination, stream)
    }

    /// Connect the given output of the source to the final destinaton.  The
    /// same output may be attached multiple times. `None` will attach all
    /// outputs.
    pub fn output(&mut self, source: Index, stream: Option<usize>) -> Result<()> {
        match source {
            Index(0) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "Can not `output` the input",
                })
            }
            Index(1) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "Can not `output` the output",
                })
            }
            _ => (),
        }
        self.inner_connect(source, Index(1), stream)
    }

    /// Disconnect the last-added matching connection from the destination,
    /// returning a boolean indicating if anything was disconnected.
    pub fn remove_output(&mut self, source: Index, stream: Option<usize>) -> Result<()> {
        match source {
            Index(0) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "Can not `remove_output` the input",
                })
            }
            Index(1) => {
                return Err(IllegalIndex {
                    index: source,
                    message: "Can not `remove_output` the output",
                })
            }
            _ => (),
        }
        self.inner_disconnect(source, Index(1), stream)
    }

    fn walk_node(&self, node: Index, process_list: &mut ProcessList) {
        if process_list.memo.insert(node) {
            process_list.list.push(node);
            let slot = self
                .nodes
                .get(node.0)
                .map(Option::as_ref)
                .flatten()
                .expect("walk_node found node that doesn't exist");
            for input in &slot.inputs {
                self.walk_node(input.source, process_list);
            }
        }
    }

    /// Get the processing list, in order from sink to roots.
    fn build_process_list(&self) {
        let mut process_list = self.process_list.lock().expect("mutex poisoned");
        if process_list.reprocess {
            process_list.list.clear();
            process_list.memo.clear();
            // Special case the input node to ensure it's always at the end of
            // the list.
            process_list.memo.insert(Index(0));
            self.walk_node(Index(1), &mut process_list);
            if process_list.list.len() < self.nodes.len() {
                for index in self.set_nodes.iter().copied() {
                    self.walk_node(index, &mut process_list);
                }
            }
            process_list.list.push(Index(0));
            process_list.reprocess = false;
        }
    }

    /// Process all inputs from roots down to the sink.
    /// All sinks are added together to turn this into a single output.
    fn process<'a, 'b, 'c>(
        &'a mut self,
        inputs: &'b [Stream],
        outputs: &'c mut Vec<Stream>,
    ) -> crate::Result<()> {
        self.build_process_list();
        // First process all process-needing nodes in reverse order.
        for node in self
            .process_list
            .lock()
            .expect("mutex poisoned")
            .list
            .iter()
            .rev()
            .copied()
        {
            let slot = self.nodes[node.0].as_ref().expect("node needs to be set");
            let mut input_buffer = slot.input_buffer.lock().expect("mutex poisoned");
            input_buffer.clear();
            if node == Index(0) {
                // The input node, 0, just gets the inputs from the outside world.
                input_buffer.extend_from_slice(inputs);
            } else if !slot.inputs.is_empty() {
                for input in slot.inputs.iter().copied() {
                    let input_slot = self.nodes[input.source.0]
                        .as_ref()
                        .expect("process node not in input values");
                    if let Some(output) = input.stream {
                        if let Some(stream) = input_slot
                            .output
                            .lock()
                            .expect("mutex poisoned")
                            .get(output)
                            .cloned()
                        {
                            input_buffer.push(stream);
                        }
                    } else {
                        input_buffer
                            .extend_from_slice(&input_slot.output.lock().expect("mutex poisoned"));
                    }
                }
            }
            let mut output = slot.output.lock().expect("mutex poisoned");
            output.clear();
            slot.node.process(&input_buffer, &mut output)?;
        }
        outputs.extend_from_slice(
            &self.nodes[1]
                .as_ref()
                .expect("Sink does not exist")
                .output
                .lock()
                .expect("mutex poisoned"),
        );
        Ok(())
    }
}

#[derive(Debug, Default)]
pub struct Graph {
    inner: Mutex<InnerGraph>,
}

impl Graph {
    pub fn add(&self, node: Strong) -> Index {
        self.inner.lock().expect("mutex poisoned").add(node)
    }

    pub fn remove(&self, index: Index) -> Result<Option<Strong>> {
        self.inner.lock().expect("mutex poisoned").remove(index)
    }

    /// Connect the given output of the source to the destination.  The same
    /// output may be attached  multiple times. `None` will attach all outputs.
    pub fn connect(&self, source: Index, destination: Index, stream: Option<usize>) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .connect(source, destination, stream)
    }

    /// Disconnect the last-added matching connection, returning a boolean
    /// indicating if anything was disconnected.
    pub fn disconnect(
        &self,
        source: Index,
        destination: Index,
        stream: Option<usize>,
    ) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .disconnect(source, destination, stream)
    }

    /// Connect the given output of the source to the final destinaton.  The
    /// same output may be attached multiple times. `None` will attach all
    /// outputs.
    pub fn input(&self, source: Index, stream: Option<usize>) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .input(source, stream)
    }

    /// Disconnect the last-added matching connection from the destination,
    /// returning a boolean indicating if anything was disconnected.
    pub fn remove_input(&self, source: Index, stream: Option<usize>) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .remove_input(source, stream)
    }

    /// Connect the given output of the source to the final destinaton.  The
    /// same output may be attached multiple times. `None` will attach all
    /// outputs.
    pub fn output(&self, source: Index, stream: Option<usize>) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .output(source, stream)
    }

    /// Disconnect the last-added matching connection from the destination,
    /// returning a boolean indicating if anything was disconnected.
    pub fn remove_output(&self, source: Index, stream: Option<usize>) -> Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .remove_output(source, stream)
    }
}

impl Node for Graph {
    fn process<'a, 'b, 'c>(
        &'a self,
        inputs: &'b [Stream],
        outputs: &'c mut Vec<Stream>,
    ) -> crate::Result<()> {
        self.inner
            .lock()
            .expect("mutex poisoned")
            .process(inputs, outputs)
    }
}