relentless 0.9.0

Composable retry policies for fallible operations and polling.
Documentation
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
//! Predicate trait and built-in retry predicate factories.
//!
//! This module provides the [`Predicate`] trait and the default retry predicates:
//! - [`any_error`] retries on any `Err`.
//! - [`error`] retries on selected errors.
//! - [`result`] retries based on the full `Result<T, E>`.
//! - [`ok`] retries on selected `Ok` values and treats any `Err` as terminal.
//!
//! Predicates compose with `|` and `&` operators, or via `.or()` and `.and()`
//! methods on the [`Predicate`] trait.

#[cfg(feature = "alloc")]
use crate::compat::Box;
use core::ops::{BitAnd, BitOr};

/// Examines the outcome of an operation and decides whether to retry.
///
/// Composition methods are provided directly on the trait with
/// `where Self: Sized` bounds.
///
/// # Examples
///
/// ```
/// use relentless::Predicate;
///
/// struct RetryOnError;
///
/// impl Predicate<String, &str> for RetryOnError {
///     fn should_retry(&self, outcome: &Result<String, &str>) -> bool {
///         outcome.is_err()
///     }
/// }
/// ```
pub trait Predicate<T, E> {
    /// Returns `true` if the retry loop should retry based on this outcome.
    fn should_retry(&self, outcome: &Result<T, E>) -> bool;

    /// Returns a predicate that retries when either side retries.
    ///
    /// This is the named equivalent of the `|` operator.
    ///
    /// ```
    /// use relentless::{Predicate, predicate};
    ///
    /// // These are equivalent:
    /// let a = predicate::error(|e: &&str| *e == "retry").or(predicate::ok(|v: &u32| *v < 2));
    /// let b = predicate::error(|e: &&str| *e == "retry") | predicate::ok(|v: &u32| *v < 2);
    /// ```
    #[must_use]
    fn or<P: Predicate<T, E>>(self, other: P) -> PredicateAny<Self, P>
    where
        Self: Sized,
    {
        PredicateAny::new(self, other)
    }

    /// Returns a predicate that retries only when both sides retry.
    ///
    /// This is the named equivalent of the `&` operator.
    ///
    /// ```
    /// use relentless::{Predicate, predicate};
    ///
    /// // These are equivalent:
    /// let a = predicate::error(|e: &&str| *e == "retry").and(predicate::ok(|v: &u32| *v < 2));
    /// let b = predicate::error(|e: &&str| *e == "retry") & predicate::ok(|v: &u32| *v < 2);
    /// ```
    #[must_use]
    fn and<P: Predicate<T, E>>(self, other: P) -> PredicateAll<Self, P>
    where
        Self: Sized,
    {
        PredicateAll::new(self, other)
    }
}

/// Any `Fn(&Result<T, E>) -> bool` can be used directly as a [`Predicate`],
/// without wrapping in a named type.
///
/// ```
/// use relentless::Predicate;
///
/// let pred = |outcome: &Result<i32, &str>| outcome.is_err();
/// let err: Result<i32, &str> = Err("boom");
/// assert!(pred.should_retry(&err));
/// ```
impl<T, E, F> Predicate<T, E> for F
where
    F: Fn(&Result<T, E>) -> bool,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        (self)(outcome)
    }
}

#[cfg(feature = "alloc")]
impl<T, E> Predicate<T, E> for Box<dyn Predicate<T, E> + '_> {
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        (**self).should_retry(outcome)
    }
}

#[cfg(feature = "alloc")]
impl<T, E> Predicate<T, E> for Box<dyn Predicate<T, E> + Send + '_> {
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        (**self).should_retry(outcome)
    }
}

#[cfg(feature = "alloc")]
impl<T, E> Predicate<T, E> for Box<dyn Predicate<T, E> + Send + Sync + '_> {
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        (**self).should_retry(outcome)
    }
}

/// Predicate that retries on any error.
///
/// Created by [`any_error`].
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let predicate = predicate::any_error();
/// let outcome: Result<u32, &str> = Err("boom");
/// assert!(predicate.should_retry(&outcome));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateAnyError;

/// Creates a predicate that retries on any `Err` value.
#[must_use]
pub fn any_error() -> PredicateAnyError {
    PredicateAnyError
}

impl<T, E> Predicate<T, E> for PredicateAnyError {
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        outcome.is_err()
    }
}

/// Predicate that retries when an `Err(e)` matches `matcher`.
///
/// Created by [`error`].
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let predicate = predicate::error(|err: &&str| *err == "retryable");
/// let retryable: Result<u32, &str> = Err("retryable");
/// let fatal: Result<u32, &str> = Err("fatal");
///
/// assert!(predicate.should_retry(&retryable));
/// assert!(!predicate.should_retry(&fatal));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateError<F> {
    matcher: F,
}

/// Produces a predicate that retries when `outcome` is `Err(e)` and
/// `matcher(e)` returns `true`.
#[must_use]
pub fn error<F>(matcher: F) -> PredicateError<F> {
    PredicateError { matcher }
}

impl<T, E, F> Predicate<T, E> for PredicateError<F>
where
    F: Fn(&E) -> bool,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        match outcome {
            Ok(_) => false,
            Err(error) => (self.matcher)(error),
        }
    }
}

/// Predicate that retries based on the full `Result<T, E>`.
///
/// Created by [`result`].
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let predicate = predicate::result(|outcome: &Result<u32, &str>| {
///     matches!(outcome, Ok(value) if *value < 10)
/// });
///
/// assert!(predicate.should_retry(&Ok(3)));
/// assert!(!predicate.should_retry(&Ok(10)));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateResult<F> {
    matcher: F,
}

/// Creates a predicate that retries when `matcher` returns `true` for the outcome.
#[must_use]
pub fn result<F>(matcher: F) -> PredicateResult<F> {
    PredicateResult { matcher }
}

impl<T, E, F> Predicate<T, E> for PredicateResult<F>
where
    F: Fn(&Result<T, E>) -> bool,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        (self.matcher)(outcome)
    }
}

/// Predicate that retries when an `Ok(value)` matches `matcher`.
///
/// Created by [`ok`].
///
/// Behavior:
///
/// | Outcome | Retries? |
/// | --- | --- |
/// | `Err(e)` | no |
/// | `Ok(v)` and `matcher(v) == true` | yes |
/// | `Ok(v)` and `matcher(v) == false` | no |
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let predicate = predicate::ok(|value: &u32| *value < 3);
///
/// assert!(predicate.should_retry(&Ok::<u32, &str>(2)));
/// assert!(!predicate.should_retry(&Ok::<u32, &str>(3)));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateOk<F> {
    matcher: F,
}

/// Produces a predicate that retries when `outcome` is `Ok(value)` and
/// `matcher(value)` returns `true`.
///
/// Use this when `Err` outcomes should return immediately, and only selected
/// `Ok` values should continue retrying.
///
/// If the stop strategy fires while `ok(...)` is still asking for another
/// attempt, execution terminates with
/// [`RetryError::Exhausted`](crate::RetryError::Exhausted).
///
/// For polling flows:
/// - use `ok(|value| !is_ready(value))` when any `Err` should stop immediately
/// - combine it with [`error`] when only selected errors are retryable
/// - use [`result`] when the retry decision needs the full `Result<T, E>`
#[must_use]
pub fn ok<F>(matcher: F) -> PredicateOk<F> {
    PredicateOk { matcher }
}

impl<T, E, F> Predicate<T, E> for PredicateOk<F>
where
    F: Fn(&T) -> bool,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        match outcome {
            Ok(value) => (self.matcher)(value),
            Err(_) => false,
        }
    }
}

/// Predicate that negates the inner predicate's decision.
///
/// Created by [`until`] or by calling `.until(p)` on a [`crate::RetryPolicy`]
/// or extension builder. Retries *until* the inner predicate returns `true`.
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let p = predicate::until(predicate::ok(|v: &u32| *v >= 10));
/// assert!(p.should_retry(&Ok::<u32, &str>(3)));   // not ready → retry
/// assert!(!p.should_retry(&Ok::<u32, &str>(10))); // ready → stop
/// ```
#[derive(Debug, Clone)]
pub struct PredicateUntil<P> {
    inner: P,
}

/// Wraps a predicate so that its `should_retry()` result is negated.
///
/// The resulting predicate retries *until* the inner predicate returns `true`.
#[must_use]
pub fn until<P>(inner: P) -> PredicateUntil<P> {
    PredicateUntil { inner }
}

impl<T, E, P> Predicate<T, E> for PredicateUntil<P>
where
    P: Predicate<T, E>,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        !self.inner.should_retry(outcome)
    }
}

/// Composite predicate that retries when **either** predicate retries.
///
/// Created by combining predicates with the `|` operator or the
/// [`Predicate::or`] named method.
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let p = predicate::error(|err: &&str| *err == "retryable") | predicate::ok(|value: &u32| *value < 2);
/// assert!(p.should_retry(&Err("retryable")));
/// assert!(p.should_retry(&Ok(1)));
/// assert!(!p.should_retry(&Ok(5)));
///
/// // Equivalent using the named method:
/// let p = predicate::error(|err: &&str| *err == "retryable").or(predicate::ok(|value: &u32| *value < 2));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateAny<A, B> {
    left: A,
    right: B,
}

impl<A, B> PredicateAny<A, B> {
    /// Prefer the `|` operator or [`Predicate::or`] method over this constructor.
    #[must_use]
    pub fn new(left: A, right: B) -> Self {
        Self { left, right }
    }
}

impl<T, E, A, B> Predicate<T, E> for PredicateAny<A, B>
where
    A: Predicate<T, E>,
    B: Predicate<T, E>,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        self.left.should_retry(outcome) || self.right.should_retry(outcome)
    }
}

/// Composite predicate that retries only when **both** predicates retry.
///
/// Created by combining predicates with the `&` operator or the
/// [`Predicate::and`] named method.
///
/// # Examples
///
/// ```
/// use relentless::{Predicate, predicate};
///
/// let p = predicate::result(|outcome: &Result<u32, &str>| outcome.is_err())
///     & predicate::error(|err: &&str| *err == "retryable");
///
/// assert!(p.should_retry(&Err("retryable")));
/// assert!(!p.should_retry(&Err("fatal")));
///
/// // Equivalent using the named method:
/// let p = predicate::result(|outcome: &Result<u32, &str>| outcome.is_err())
///     .and(predicate::error(|err: &&str| *err == "retryable"));
/// ```
#[derive(Debug, Clone)]
pub struct PredicateAll<A, B> {
    left: A,
    right: B,
}

impl<A, B> PredicateAll<A, B> {
    /// Prefer the `&` operator or [`Predicate::and`] method over this constructor.
    #[must_use]
    pub fn new(left: A, right: B) -> Self {
        Self { left, right }
    }
}

impl<T, E, A, B> Predicate<T, E> for PredicateAll<A, B>
where
    A: Predicate<T, E>,
    B: Predicate<T, E>,
{
    fn should_retry(&self, outcome: &Result<T, E>) -> bool {
        self.left.should_retry(outcome) && self.right.should_retry(outcome)
    }
}

/// Generates `BitOr` / `BitAnd` operator impls for a predicate type.
macro_rules! impl_predicate_ops {
    ($ty:ty $(, $param:ident)*) => {
        impl<$($param,)* Rhs> BitOr<Rhs> for $ty {
            type Output = PredicateAny<Self, Rhs>;

            fn bitor(self, rhs: Rhs) -> Self::Output {
                PredicateAny::new(self, rhs)
            }
        }

        impl<$($param,)* Rhs> BitAnd<Rhs> for $ty {
            type Output = PredicateAll<Self, Rhs>;

            fn bitand(self, rhs: Rhs) -> Self::Output {
                PredicateAll::new(self, rhs)
            }
        }
    };
}

impl_predicate_ops!(PredicateAnyError);
impl_predicate_ops!(PredicateError<F>, F);
impl_predicate_ops!(PredicateResult<F>, F);
impl_predicate_ops!(PredicateOk<F>, F);
impl_predicate_ops!(PredicateAny<A, B>, A, B);
impl_predicate_ops!(PredicateAll<A, B>, A, B);
impl_predicate_ops!(PredicateUntil<P>, P);