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
use std::{
future::{Future, IntoFuture},
marker::PhantomData,
pin::Pin,
};
use worker::Stub;
use crate::{
transport::{RequestTransport, ResponseTransport},
CrateOrObjectError, DoProxy,
};
pub struct Proxy<O> {
stub: Stub,
_phantom: PhantomData<O>,
}
impl<O: DoProxy> Proxy<O> {
pub(crate) fn new(stub: Stub) -> Self {
Self {
stub,
_phantom: PhantomData,
}
}
#[must_use = "you must await this future to send the request"]
pub fn send(&self, request: O::Request) -> Builder<'_, O, Send> {
Builder::new(&self.stub).send(request)
}
#[must_use = "you must await this future to send the request"]
pub fn init(&self, init: O::Init) -> Builder<'_, O, WithInit> {
Builder::new(&self.stub).init(init)
}
}
pub struct Builder<'s, O: DoProxy, State> {
stub: &'s Stub,
request: RequestTransport<O::Init, O::Request>,
_phantom: PhantomData<State>,
}
pub struct New;
pub struct WithInit;
pub struct Send;
impl<'s, O: DoProxy> Builder<'s, O, New> {
pub fn new(stub: &'s Stub) -> Self {
Self {
stub,
request: RequestTransport::Empty,
_phantom: PhantomData,
}
}
}
impl<'s, O: DoProxy> Builder<'s, O, New> {
pub fn send(self, request: O::Request) -> Builder<'s, O, Send> {
Builder {
stub: self.stub,
request: RequestTransport::Request { request },
_phantom: PhantomData,
}
}
pub fn init(self, init: O::Init) -> Builder<'s, O, WithInit> {
Builder {
stub: self.stub,
request: RequestTransport::Init { init },
_phantom: PhantomData,
}
}
}
impl<'s, O: DoProxy> Builder<'s, O, WithInit> {
pub fn and_send(mut self, request: O::Request) -> Builder<'s, O, Send> {
Builder {
stub: self.stub,
request: RequestTransport::InitWithRequest {
init: self.request.take_init().unwrap(),
request,
},
_phantom: PhantomData,
}
}
}
impl<'s, O: DoProxy> Builder<'s, O, Send> {
async fn run(self) -> Result<O::Response, CrateOrObjectError<O::Error>> {
match send_to_stub::<O>(self.stub, self.request).await {
Ok(response) => match response {
ResponseTransport::Response { response } => Ok(response),
ResponseTransport::Error { error } => Err(CrateOrObjectError::Object(error)),
ResponseTransport::Initialized => Err(crate::Error::ExpectedObjectResponse.into()),
},
Err(error) => Err(error.into()),
}
}
}
impl<'s, O: DoProxy> Builder<'s, O, WithInit> {
async fn run(self) -> Result<Result<(), O::Error>, crate::Error> {
match send_to_stub::<O>(self.stub, self.request).await {
Ok(response) => match response {
ResponseTransport::Initialized => Ok(Ok(())),
ResponseTransport::Response { .. } => Err(crate::Error::ExpectedObjectInitialized),
ResponseTransport::Error { error } => Ok(Err(error)),
},
Err(error) => Err(error),
}
}
}
impl<'s, O: DoProxy + 's> IntoFuture for Builder<'s, O, Send> {
type Output = Result<O::Response, CrateOrObjectError<O::Error>>;
type IntoFuture = Pin<Box<dyn Future<Output = Self::Output> + 's>>;
fn into_future(self) -> Self::IntoFuture {
Box::pin(async move { self.run().await })
}
}
impl<'s, O: DoProxy + 's> IntoFuture for Builder<'s, O, WithInit> {
type Output = Result<Result<(), O::Error>, crate::Error>;
type IntoFuture = Pin<Box<dyn Future<Output = Self::Output> + 's>>;
fn into_future(self) -> Self::IntoFuture {
Box::pin(async move { self.run().await })
}
}
async fn send_to_stub<O: DoProxy>(
stub: &Stub,
req: RequestTransport<O::Init, O::Request>,
) -> Result<ResponseTransport<O::Response, O::Error>, crate::Error> {
let json = serde_json::to_string(&req)?;
let mut request_init = worker::RequestInit::new();
request_init
.with_method(worker::Method::Post)
.with_body(Some(json.into()));
let request =
worker::Request::new_with_init(&format!("http://{}/", O::BINDING), &request_init)?;
let response: ResponseTransport<O::Response, O::Error> =
stub.fetch_with_request(request).await?.json().await?;
Ok(response)
}