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
use super::{AsyncFilter, Filter};
use tower_layer::Layer;

/// Conditionally dispatch requests to the inner service based on a synchronous
/// [predicate].
///
/// This [`Layer`] produces instances of the [`Filter`] service.
///
/// [predicate]: crate::filter::Predicate
/// [`Layer`]: crate::Layer
/// [`Filter`]: crate::filter::Filter
#[derive(Debug, Clone)]
pub struct FilterLayer<U> {
    predicate: U,
}

/// Conditionally dispatch requests to the inner service based on an asynchronous
/// [predicate].
///
/// This [`Layer`] produces instances of the [`AsyncFilter`] service.
///
/// [predicate]: crate::filter::AsyncPredicate
/// [`Layer`]: crate::Layer
/// [`Filter`]: crate::filter::AsyncFilter
#[derive(Debug)]
pub struct AsyncFilterLayer<U> {
    predicate: U,
}

// === impl FilterLayer ===

impl<U> FilterLayer<U> {
    /// Returns a new layer that produces [`Filter`] services with the given
    /// [`Predicate`].
    ///
    /// [`Predicate`]: crate::filter::Predicate
    /// [`Filter`]: crate::filter::Filter
    pub fn new(predicate: U) -> Self {
        Self { predicate }
    }
}

impl<U: Clone, S> Layer<S> for FilterLayer<U> {
    type Service = Filter<S, U>;

    fn layer(&self, service: S) -> Self::Service {
        let predicate = self.predicate.clone();
        Filter::new(service, predicate)
    }
}

// === impl AsyncFilterLayer ===

impl<U> AsyncFilterLayer<U> {
    /// Returns a new layer that produces [`AsyncFilter`] services with the given
    /// [`AsyncPredicate`].
    ///
    /// [`AsyncPredicate`]: crate::filter::AsyncPredicate
    /// [`Filter`]: crate::filter::Filter
    pub fn new(predicate: U) -> Self {
        Self { predicate }
    }
}

impl<U: Clone, S> Layer<S> for AsyncFilterLayer<U> {
    type Service = AsyncFilter<S, U>;

    fn layer(&self, service: S) -> Self::Service {
        let predicate = self.predicate.clone();
        AsyncFilter::new(service, predicate)
    }
}