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
//! Background cleanup worker for Drop-time async work.
//!
//! Certain RAII guards in this crate (`content_stream::Sink`,
//! `cache::stream::StreamGuard`, `cache::stream::ChunkSink`) need to do
//! async work at Drop time — removing a temp file, closing a CDP
//! IO-stream handle. Calling `tokio::spawn` directly from `Drop` is
//! dangerous:
//!
//! * It panics if the current thread is outside a tokio runtime
//! (panic unwind, sync destructor, post-shutdown).
//! * A panicking `Drop` during an existing unwind aborts the process.
//! * Every Drop call has to re-check `Handle::try_current()`.
//!
//! This module follows the same shape as [`crate::runtime_release`]:
//! a single long-lived background task owns an unbounded mpsc
//! receiver, and every `Drop` site becomes a wait-free
//! `UnboundedSender::send`. The Drop thread does not need a runtime,
//! cannot panic on the hot path, and performs no syscalls beyond one
//! atomic load + one lock-free mpsc push.
//!
//! # Lock-freedom
//!
//! | operation | primitive |
//! | ----------------- | ------------------------------------------------------- |
//! | [`submit`] | `OnceLock::get()` + `UnboundedSender::send` (lock-free) |
//! | [`init_worker`] | `OnceLock::get()` fast-path; `get_or_init` only once |
//! | worker drain | `recv_many` + `join_all` — no locks across `.await` |
//!
//! # Deadlock-freedom
//!
//! * Submitters never `.await` and never touch a lock another task holds.
//! * The worker's only wait is `rx.recv_many(..).await`, which parks on
//! tokio's lock-free `Notify` and wakes on any push.
//! * `page.execute(..)` inside the worker goes through the existing
//! CDP command pipeline; no new locks are introduced.
//! * If the worker task panics or exits, `submit` continues to succeed
//! (unbounded mpsc send does not require a live receiver — it just
//! grows the buffer). Pending tasks leak silently until the process
//! ends, which is strictly safer than aborting.
//!
//! # Initialisation
//!
//! [`init_worker`] must be called once from inside a tokio runtime
//! context, typically on the hot path of any entry point that might
//! later produce cleanup tasks. Subsequent calls are a single atomic
//! load and a no-op. If a Drop fires before the worker has been
//! initialised, [`submit`] silently drops the task — no panic, no
//! deadlock, just deferred or skipped cleanup.
use cratePage;
use ;
use PathBuf;
use OnceLock;
use mpsc;
/// Maximum number of cleanup tasks drained per worker round. Caps the
/// size of the transient batch `Vec` so a burst can't hold a very
/// large allocation while we `join_all` the futures.
const MAX_BATCH: usize = 64;
/// An async cleanup action to run on the background worker.
///
/// New variants can be added without touching the Drop call sites that
/// submit the existing variants — the worker's `match` is exhaustive
/// but small, and `submit` accepts any `CleanupTask`.
static CLEANUP_TX: = new;
/// Spawn the worker and return its sender. Only ever invoked once,
/// from inside the `OnceLock::get_or_init` closure on the very first
/// `init_worker` call.
/// Ensure the background cleanup worker is running.
///
/// Must be called from a tokio runtime context on the **first** call.
/// Subsequent calls are a single atomic load and return immediately —
/// safe to invoke on every hot-path entry that might later produce
/// cleanup work (e.g. opening a CDP stream, starting a response
/// staging pipeline).
/// Enqueue a cleanup task for background processing.
///
/// Lock-free (one atomic load + one wait-free mpsc push), safe to
/// invoke from any `Drop` implementation on any thread — including
/// threads with no tokio runtime context and threads currently
/// unwinding due to a panic.
///
/// If the worker has not been initialised (see [`init_worker`]), the
/// task is silently dropped. The alternative — panicking — would
/// propagate through `Drop` and potentially abort the process during
/// unwind, which is never what a best-effort cleanup should do.
/// Returns `true` if the worker has been initialised in this process.
/// Intended for tests and diagnostics; not part of the hot path.