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
use crate::calls::Metadata;
use crate::types::{Call, Output, Request, Response};
use futures::{future::Either, Future};
pub trait Middleware<M: Metadata>: Send + Sync + 'static {
type Future: Future<Item = Option<Response>, Error = ()> + Send + 'static;
type CallFuture: Future<Item = Option<Output>, Error = ()> + Send + 'static;
fn on_request<F, X>(&self, request: Request, meta: M, next: F) -> Either<Self::Future, X>
where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
{
Either::B(next(request, meta))
}
fn on_call<F, X>(&self, call: Call, meta: M, next: F) -> Either<Self::CallFuture, X>
where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,
{
Either::B(next(call, meta))
}
}
pub type NoopFuture = Box<dyn Future<Item = Option<Response>, Error = ()> + Send>;
pub type NoopCallFuture = Box<dyn Future<Item = Option<Output>, Error = ()> + Send>;
#[derive(Clone, Debug, Default)]
pub struct Noop;
impl<M: Metadata> Middleware<M> for Noop {
type Future = NoopFuture;
type CallFuture = NoopCallFuture;
}
impl<M: Metadata, A: Middleware<M>, B: Middleware<M>> Middleware<M> for (A, B) {
type Future = Either<A::Future, B::Future>;
type CallFuture = Either<A::CallFuture, B::CallFuture>;
fn on_request<F, X>(&self, request: Request, meta: M, process: F) -> Either<Self::Future, X>
where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
{
repack(self.0.on_request(request, meta, |request, meta| {
self.1.on_request(request, meta, &process)
}))
}
fn on_call<F, X>(&self, call: Call, meta: M, process: F) -> Either<Self::CallFuture, X>
where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,
{
repack(
self.0
.on_call(call, meta, |call, meta| self.1.on_call(call, meta, &process)),
)
}
}
impl<M: Metadata, A: Middleware<M>, B: Middleware<M>, C: Middleware<M>> Middleware<M> for (A, B, C) {
type Future = Either<A::Future, Either<B::Future, C::Future>>;
type CallFuture = Either<A::CallFuture, Either<B::CallFuture, C::CallFuture>>;
fn on_request<F, X>(&self, request: Request, meta: M, process: F) -> Either<Self::Future, X>
where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
{
repack(self.0.on_request(request, meta, |request, meta| {
repack(self.1.on_request(request, meta, |request, meta| {
self.2.on_request(request, meta, &process)
}))
}))
}
fn on_call<F, X>(&self, call: Call, meta: M, process: F) -> Either<Self::CallFuture, X>
where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,
{
repack(self.0.on_call(call, meta, |call, meta| {
repack(
self.1
.on_call(call, meta, |call, meta| self.2.on_call(call, meta, &process)),
)
}))
}
}
impl<M: Metadata, A: Middleware<M>, B: Middleware<M>, C: Middleware<M>, D: Middleware<M>> Middleware<M>
for (A, B, C, D)
{
type Future = Either<A::Future, Either<B::Future, Either<C::Future, D::Future>>>;
type CallFuture = Either<A::CallFuture, Either<B::CallFuture, Either<C::CallFuture, D::CallFuture>>>;
fn on_request<F, X>(&self, request: Request, meta: M, process: F) -> Either<Self::Future, X>
where
F: Fn(Request, M) -> X + Send + Sync,
X: Future<Item = Option<Response>, Error = ()> + Send + 'static,
{
repack(self.0.on_request(request, meta, |request, meta| {
repack(self.1.on_request(request, meta, |request, meta| {
repack(self.2.on_request(request, meta, |request, meta| {
self.3.on_request(request, meta, &process)
}))
}))
}))
}
fn on_call<F, X>(&self, call: Call, meta: M, process: F) -> Either<Self::CallFuture, X>
where
F: Fn(Call, M) -> X + Send + Sync,
X: Future<Item = Option<Output>, Error = ()> + Send + 'static,
{
repack(self.0.on_call(call, meta, |call, meta| {
repack(self.1.on_call(call, meta, |call, meta| {
repack(
self.2
.on_call(call, meta, |call, meta| self.3.on_call(call, meta, &process)),
)
}))
}))
}
}
#[inline(always)]
fn repack<A, B, X>(result: Either<A, Either<B, X>>) -> Either<Either<A, B>, X> {
match result {
Either::A(a) => Either::A(Either::A(a)),
Either::B(Either::A(b)) => Either::A(Either::B(b)),
Either::B(Either::B(x)) => Either::B(x),
}
}