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
use std::marker::PhantomData;
use std::time::Duration;

use crate::{Sample, Source};

use super::SeekError;

/// An empty source which executes a callback function
pub struct EmptyCallback<S> {
    pub phantom_data: PhantomData<S>,
    pub callback: Box<dyn Send + Fn()>,
}

impl<S> EmptyCallback<S> {
    #[inline]
    pub fn new(callback: Box<dyn Send + Fn()>) -> EmptyCallback<S> {
        EmptyCallback {
            phantom_data: PhantomData,
            callback,
        }
    }
}

impl<S> Iterator for EmptyCallback<S> {
    type Item = S;

    #[inline]
    fn next(&mut self) -> Option<S> {
        (self.callback)();
        None
    }
}

impl<S> Source for EmptyCallback<S>
where
    S: Sample,
{
    #[inline]
    fn current_frame_len(&self) -> Option<usize> {
        None
    }

    #[inline]
    fn channels(&self) -> u16 {
        1
    }

    #[inline]
    fn sample_rate(&self) -> u32 {
        48000
    }

    #[inline]
    fn total_duration(&self) -> Option<Duration> {
        Some(Duration::new(0, 0))
    }

    #[inline]
    fn try_seek(&mut self, _: Duration) -> Result<(), SeekError> {
        Err(SeekError::NotSupported {
            underlying_source: std::any::type_name::<Self>(),
        })
    }
}