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
//!
//! Interval and Timeout functions that return an [`IntervalHandle`] or [`TimeoutHandle`] handles
//! dropping which results in automatic clearing of the respective timeout or interval.
//!

use std::sync::{Arc, Mutex};
use thiserror::Error;
use wasm_bindgen::{prelude::*, JsCast};

#[derive(Error, Debug)]
pub enum Error {
    #[error("JsValue {0:?}")]
    JsValue(JsValue),

    #[error("Invalid interval handle")]
    InvalidIntervalHandle,

    #[error("Invalid timeout handle")]
    InvalidTimeoutHandle,
}

impl From<JsValue> for Error {
    fn from(value: JsValue) -> Self {
        Error::JsValue(value)
    }
}

pub mod native {
    //! bindings to JavaScript functions
    use js_sys::Function;
    use wasm_bindgen::prelude::*;
    #[wasm_bindgen]
    extern "C" {

        /// [`mod@wasm_bindgen`] binding to the native JavaScript [`setInterval()`](https://developer.mozilla.org/en-US/docs/Web/API/setInterval) function
        #[wasm_bindgen (catch, js_name = setInterval)]
        pub fn set_interval(closure: &Function, timeout: u32) -> std::result::Result<u32, JsValue>;

        /// [`mod@wasm_bindgen`] binding to the native JavaScript [`clearInterval()`](https://developer.mozilla.org/en-US/docs/Web/API/clearInterval) function
        #[wasm_bindgen (catch, js_name = clearInterval)]
        pub fn clear_interval(interval: u32) -> std::result::Result<(), JsValue>;

        /// [`mod@wasm_bindgen`] binding to the native JavaScript [`setTimeout()`](https://developer.mozilla.org/en-US/docs/Web/API/setTimeout) function
        #[wasm_bindgen (catch, js_name = setTimeout)]
        pub fn set_timeout(closure: &Function, timeout: u32) -> std::result::Result<u32, JsValue>;

        /// [`mod@wasm_bindgen`] binding to the native JavaScript [`clearTimeout()`](https://developer.mozilla.org/en-US/docs/Web/API/clearTimeout) function
        #[wasm_bindgen (catch, js_name = clearTimeout)]
        pub fn clear_timeout(interval: u32) -> std::result::Result<(), JsValue>;

    }
}

/// JavaScript interval handle dropping which stops and clears the associated interval
#[derive(Clone, Debug)]
pub struct IntervalHandle(Arc<Mutex<u32>>);

impl Drop for IntervalHandle {
    fn drop(&mut self) {
        let handle = self.0.lock().unwrap();
        if *handle != 0 {
            native::clear_interval(*handle).expect("Unable to clear interval");
        }
    }
}

/// JavaScript timeout handle, droppping which cancels the associated timeout.
#[derive(Clone)]
pub struct TimeoutHandle(Arc<Mutex<u32>>);

impl Drop for TimeoutHandle {
    fn drop(&mut self) {
        let handle = self.0.lock().unwrap();
        if *handle != 0 {
            native::clear_timeout(*handle).expect("Unable to clear timeout");
        }
    }
}

/// Create JavaScript interval
pub fn set_interval(closure: &Closure<dyn FnMut()>, timeout: u32) -> Result<IntervalHandle, Error> {
    let handle = native::set_interval(closure.as_ref().unchecked_ref(), timeout)?;
    Ok(IntervalHandle(Arc::new(Mutex::new(handle))))
}

/// Clear JavaScript interval using a handle returned by [`set_interval`]
pub fn clear_interval(handle: &IntervalHandle) -> Result<(), Error> {
    let mut handle = handle.0.lock().unwrap();
    if *handle != 0 {
        native::clear_timeout(*handle)?;
        *handle = 0;
        Ok(())
    } else {
        Err(Error::InvalidIntervalHandle)
    }
}

/// Create JavaScript timeout
pub fn set_timeout(closure: &Closure<dyn FnMut()>, timeout: u32) -> Result<TimeoutHandle, Error> {
    let handle = native::set_timeout(closure.as_ref().unchecked_ref(), timeout)?;
    Ok(TimeoutHandle(Arc::new(Mutex::new(handle))))
}

/// Clear JavaScript timeout using a handle returns by [`set_timeout`]
pub fn clear_timeout(handle: &TimeoutHandle) -> Result<(), Error> {
    let mut handle = handle.0.lock().unwrap();
    if *handle != 0 {
        native::clear_timeout(*handle)?;
        *handle = 0;
        Ok(())
    } else {
        Err(Error::InvalidTimeoutHandle)
    }
}