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
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 {
use js_sys::Function;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen (catch, js_name = setInterval)]
pub fn set_interval(closure: &Function, timeout: u32) -> std::result::Result<u32, JsValue>;
#[wasm_bindgen (catch, js_name = clearInterval)]
pub fn clear_interval(interval: u32) -> std::result::Result<(), JsValue>;
#[wasm_bindgen (catch, js_name = setTimeout)]
pub fn set_timeout(closure: &Function, timeout: u32) -> std::result::Result<u32, JsValue>;
#[wasm_bindgen (catch, js_name = clearTimeout)]
pub fn clear_timeout(interval: u32) -> std::result::Result<(), JsValue>;
}
}
#[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");
}
}
}
#[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");
}
}
}
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))))
}
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)
}
}
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))))
}
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)
}
}