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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
use Future;
use Pin;
use Arc;
use mpsc;
use watch;
use crateTaskFactory;
use crate;
// ---------------------------------------------------------------------------
// Public wrappers — no internal types leaked
// ---------------------------------------------------------------------------
/// A handle that can enqueue maintenance tasks.
///
/// Created internally by the builder and passed to strategies via
/// [`BackgroundContext`]. Downstream users never construct this directly.
/// Read-only cancellation token for background scheduling loops.
///
/// Exposes only `cancelled()` (wait for cancellation) and `is_cancelled()`
/// (poll current state). Strategies can **observe** shutdown but cannot
/// **initiate** it — the `cancel()` method is intentionally absent from
/// the public API.
///
/// The inner [`tokio_util::sync::CancellationToken`] is only ever cancelled
/// internally when the last store reference is dropped.
/// Context provided to a [`BackgroundStrategy`] during `schedule()`.
///
/// Contains everything a strategy needs:
/// - [`trigger()`](Self::trigger) / [`try_trigger()`](Self::try_trigger) to enqueue maintenance
/// - [`cancellation()`](Self::cancellation) to listen for store shutdown (read‑only)
// ---------------------------------------------------------------------------
// BackgroundStrategy trait — now a real public extension point
// ---------------------------------------------------------------------------
/// Trait for scheduling background maintenance tasks (cleanup, rekey).
///
/// Implementations decide **WHEN** maintenance is enqueued. The crate decides
/// **WHAT** maintenance actually does. Strategies receive a
/// [`BackgroundContext`] that lets them enqueue work via
/// [`ctx.trigger().await`](BackgroundContext::trigger) or
/// [`ctx.try_trigger()`](BackgroundContext::try_trigger), and observe
/// shutdown via [`ctx.cancelled().await`](BackgroundContext::cancelled) or
/// [`ctx.cancellation().cancelled().await`](BackgroundCancellation::cancelled).
///
/// All tasks from all strategies run in FIFO order on a single shared
/// sequential worker. Strategies do not see queue internals, task factories,
/// boxed futures, store internals, or raw shutdown primitives.
///
/// # Built-in strategies
///
/// | Type | Behaviour |
/// |---|---|
/// | [`OnStart`] | Runs once immediately during `build()` |
/// | [`Periodic`] | Runs immediately, then repeats every `Duration` |
/// | [`Manual`] | Runs only when [`Manual::trigger()`] is called |
///
/// # Implementing a custom strategy
///
/// ```rust,no_run
/// use std::time::Duration;
/// use xtax_blob_storage::{
/// BackgroundContext,
/// BackgroundStrategy,
/// Result,
/// };
///
/// pub struct EveryFiveMinutes;
///
/// impl BackgroundStrategy for EveryFiveMinutes {
/// fn schedule(&self, ctx: BackgroundContext) -> Result<()> {
/// tokio::spawn(async move {
/// loop {
/// tokio::select! {
/// _ = ctx.cancelled() => {
/// break;
/// }
/// _ = tokio::time::sleep(Duration::from_secs(300)) => {
/// if let Err(err) = ctx.trigger().await {
/// tracing::warn!(?err, "failed to enqueue maintenance task");
/// break;
/// }
/// }
/// }
/// }
/// });
///
/// Ok(())
/// }
/// }
/// ```
///
/// # Shutdown
///
/// Strategies that run long-lived scheduling loops **must** listen to
/// [`ctx.cancelled()`](BackgroundContext::cancelled) or
/// [`ctx.cancellation().cancelled()`](BackgroundCancellation::cancelled).
/// When the signal fires (when the user drops the last `Arc` to the store),
/// the strategy MUST stop its scheduling loop. This prevents background
/// tasks from keeping the store alive forever.
///
/// The cancellation signal is **read‑only** for strategies — custom
/// implementations can observe shutdown but cannot initiate it.
///
/// # Custom validation
///
/// Override [`validate()`](Self::validate) to reject invalid configuration
/// (e.g., zero durations). The builder calls `validate()` before `schedule()`.
// ---------------------------------------------------------------------------
// OnStart
// ---------------------------------------------------------------------------
/// Strategy that runs the task once immediately.
///
/// # Example
///
/// ```rust,no_run
/// use std::sync::Arc;
/// use xtax_blob_storage::{BlobStoreBuilder, OnStart};
///
/// # #[cfg(feature = "fs")]
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # #[cfg(feature = "fs")]
/// # {
/// let store = BlobStoreBuilder::new()
/// .with_fs("/tmp/data")
/// .with_clean(
/// Box::new(|key, _meta| key.starts_with("tmp-")),
/// Arc::new(OnStart),
/// )
/// .build()
/// .await?;
/// # Ok(())
/// # }
/// # }
/// # #[cfg(not(feature = "fs"))]
/// # fn main() {}
/// ```
;
// ---------------------------------------------------------------------------
// Periodic
// ---------------------------------------------------------------------------
/// Strategy that runs the task immediately, then repeats periodically.
///
/// The inner [`std::time::Duration`] must be **non-zero**. Passing `Duration::ZERO` causes
/// `build()` to return an `Err(InvalidInput(...))`.
///
/// # Example
///
/// ```rust,no_run
/// use std::time::Duration;
/// use xtax_blob_storage::{BlobStoreBuilder, Periodic};
///
/// # #[cfg(feature = "fs")]
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # #[cfg(feature = "fs")]
/// # {
/// let store = BlobStoreBuilder::new()
/// .with_fs("/tmp/data")
/// .with_clean(
/// Box::new(|key, _meta| key.starts_with("tmp-")),
/// std::sync::Arc::new(Periodic(Duration::from_secs(3600))),
/// )
/// .build()
/// .await?;
/// # Ok(())
/// # }
/// # }
/// # #[cfg(not(feature = "fs"))]
/// # fn main() {}
/// ```
;
// ---------------------------------------------------------------------------
// Manual
// ---------------------------------------------------------------------------
/// Strategy that only runs the task when [`trigger()`](Manual::trigger) is called.
///
/// # Semantics
///
/// - **State-based**: `trigger()` is not edge-only. A trigger fired after
/// the Manual strategy has been registered during build is not lost,
/// even if the spawned scheduling loop has not polled yet.
/// - Triggers fired before the Manual strategy is registered are not
/// replayed.
/// - **Coalescing**: multiple rapid `trigger()` calls may coalesce into a
/// single enqueued task if the receiver has not polled between them.
/// Maintenance tasks are expected to be safe to run repeatedly and are
/// executed sequentially.
/// - **Multi-registration**: a single `Manual` can control multiple background
/// maintenance registrations. A trigger observed by multiple registered
/// strategies may enqueue one maintenance task per registration; all tasks
/// still run through the shared sequential queue.
/// - **Not a counting semaphore**: `Manual` does not guarantee one enqueued
/// task per `trigger()` call. It is intended as a manual “maintenance
/// requested” signal, not an exact event counter.
///
/// # Example
///
/// ```rust,no_run
/// use std::sync::Arc;
/// use xtax_blob_storage::{BlobStoreBuilder, Manual};
///
/// # #[cfg(feature = "fs")]
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// # #[cfg(feature = "fs")]
/// # {
/// let manual = Arc::new(Manual::new());
/// let store = BlobStoreBuilder::new()
/// .with_fs("/tmp/data")
/// .with_rekey(manual.clone())
/// .build()
/// .await?;
///
/// // Later, trigger rekey manually:
/// manual.trigger();
/// # Ok(())
/// # }
/// # }
/// # #[cfg(not(feature = "fs"))]
/// # fn main() {}
/// ```
///
/// # Cancellation
///
/// The spawned scheduling loop stops when the cancellation token fires
/// (when the user drops the last `Arc` to the store) or when the
/// [`watch::Sender`] is dropped.