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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
use ;
use ;
use export_default;
// use crate::{module_builder::ModuleInfo, modules::module::export_default, vm::CtxExtension};
static TIMER_ID: AtomicUsize = new;
static TIME_POLL_ACTIVE: AtomicBool = new;
;
// impl From<TimersModule> for ModuleInfo<TimersModule> {
// fn from(val: TimersModule) -> Self {
// ModuleInfo {
// name: "timers",
// module: val,
// }
// }
// }
// pub fn init(ctx: &Ctx<'_>) -> Result<()> {
// let globals = ctx.globals();
// #[allow(clippy::arc_with_non_send_sync)]
// let timeouts = Arc::new(Mutex::new(Vec::<Timeout>::new()));
// let timeouts2 = timeouts.clone();
// let timeouts3 = timeouts.clone();
// let timeouts4 = timeouts.clone();
// globals.set(
// "setTimeout",
// Func::from(move |ctx, cb, delay| set_timeout_interval(&ctx, &timeouts, cb, delay, false)),
// )?;
// globals.set(
// "setInterval",
// Func::from(move |ctx, cb, delay| set_timeout_interval(&ctx, &timeouts2, cb, delay, true)),
// )?;
// globals.set(
// "clearTimeout",
// Func::from(move |id: usize| clear_timeout_interval(&timeouts3, id)),
// )?;
// globals.set(
// "clearInterval",
// Func::from(move |id: usize| clear_timeout_interval(&timeouts4, id)),
// )?;
// globals.set("setImmediate", Func::from(set_immediate))?;
// Ok(())
// }
// #[inline(always)]
// fn poll_timers<'js>(ctx: &Ctx<'js>, timeouts: Arc<Mutex<Vec<Timeout<'js>>>>) -> Result<()> {
// TIME_POLL_ACTIVE.store(true, Ordering::Relaxed);
// ctx.spawn_exit(async move {
// let mut interval = tokio::time::interval(Duration::from_millis(1));
// let mut to_call = Some(Vec::new());
// let mut exit_after_next_tick = false;
// loop {
// interval.tick().await;
// let mut call_vec = to_call.take().unwrap(); //avoid creating a new vec
// let current_time = get_current_time_millis();
// let mut had_items = false;
// timeouts.lock().unwrap().retain_mut(|timeout| {
// had_items = true;
// exit_after_next_tick = false;
// if current_time > timeout.timeout {
// if !timeout.repeating {
// //do not clone if not not repeating
// call_vec.push(timeout.cb.take());
// return false;
// }
// timeout.timeout = current_time + timeout.delay;
// call_vec.push(timeout.cb.clone());
// }
// true
// });
// for cb in call_vec.iter_mut() {
// if let Some(cb) = cb.take() {
// cb.call::<(), ()>(())?;
// };
// }
// call_vec.clear();
// to_call.replace(call_vec);
// if !had_items {
// if exit_after_next_tick {
// break;
// }
// exit_after_next_tick = true;
// }
// }
// TIME_POLL_ACTIVE.store(false, Ordering::Relaxed);
// Ok(())
// })?;
// Ok(())
// }