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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
use self::request_spec::RequestSpec;
use self::tiny_map::TinyMap;
use crate::body::{boxed, Body, BoxBody, HttpBody};
use crate::error::BoxError;
use crate::protocols::Protocol;
use crate::runtime_error::{RuntimeError, RuntimeErrorKind};
use http::{Request, Response, StatusCode};
use std::{
convert::Infallible,
task::{Context, Poll},
};
use tower::layer::Layer;
use tower::util::ServiceExt;
use tower::{Service, ServiceBuilder};
use tower_http::map_response_body::MapResponseBodyLayer;
mod future;
mod into_make_service;
#[doc(hidden)]
pub mod request_spec;
mod route;
mod tiny_map;
pub use self::{future::RouterFuture, into_make_service::IntoMakeService, route::Route};
#[derive(Debug)]
pub struct Router<B = Body> {
routes: Routes<B>,
}
const ROUTE_CUTOFF: usize = 15;
#[derive(Debug)]
enum Routes<B = Body> {
RestXml(Vec<(Route<B>, RequestSpec)>),
RestJson1(Vec<(Route<B>, RequestSpec)>),
AwsJson10(TinyMap<String, Route<B>, ROUTE_CUTOFF>),
AwsJson11(TinyMap<String, Route<B>, ROUTE_CUTOFF>),
}
impl<B> Clone for Router<B> {
fn clone(&self) -> Self {
match &self.routes {
Routes::RestJson1(routes) => Router {
routes: Routes::RestJson1(routes.clone()),
},
Routes::RestXml(routes) => Router {
routes: Routes::RestXml(routes.clone()),
},
Routes::AwsJson10(routes) => Router {
routes: Routes::AwsJson10(routes.clone()),
},
Routes::AwsJson11(routes) => Router {
routes: Routes::AwsJson11(routes.clone()),
},
}
}
}
impl<B> Router<B>
where
B: Send + 'static,
{
fn unknown_operation(&self) -> RouterFuture<B> {
let protocol = match &self.routes {
Routes::RestJson1(_) => Protocol::RestJson1,
Routes::RestXml(_) => Protocol::RestXml,
Routes::AwsJson10(_) => Protocol::AwsJson10,
Routes::AwsJson11(_) => Protocol::AwsJson11,
};
let error = RuntimeError {
protocol,
kind: RuntimeErrorKind::UnknownOperation,
};
RouterFuture::from_response(error.into_response())
}
fn method_not_allowed(&self) -> RouterFuture<B> {
RouterFuture::from_response({
let mut res = Response::new(crate::body::empty());
*res.status_mut() = StatusCode::METHOD_NOT_ALLOWED;
res
})
}
pub fn into_make_service(self) -> IntoMakeService<Self> {
IntoMakeService::new(self)
}
pub fn layer<L, NewReqBody, NewResBody>(self, layer: L) -> Router<NewReqBody>
where
L: Layer<Route<B>>,
L::Service:
Service<Request<NewReqBody>, Response = Response<NewResBody>, Error = Infallible> + Clone + Send + 'static,
<L::Service as Service<Request<NewReqBody>>>::Future: Send + 'static,
NewResBody: HttpBody<Data = bytes::Bytes> + Send + 'static,
NewResBody::Error: Into<BoxError>,
{
let layer = ServiceBuilder::new()
.layer_fn(Route::new)
.layer(MapResponseBodyLayer::new(boxed))
.layer(layer);
match self.routes {
Routes::RestJson1(routes) => {
let routes = routes
.into_iter()
.map(|(route, request_spec)| (Layer::layer(&layer, route), request_spec))
.collect();
Router {
routes: Routes::RestJson1(routes),
}
}
Routes::RestXml(routes) => {
let routes = routes
.into_iter()
.map(|(route, request_spec)| (Layer::layer(&layer, route), request_spec))
.collect();
Router {
routes: Routes::RestXml(routes),
}
}
Routes::AwsJson10(routes) => {
let routes = routes
.into_iter()
.map(|(operation, route)| (operation, Layer::layer(&layer, route)))
.collect();
Router {
routes: Routes::AwsJson10(routes),
}
}
Routes::AwsJson11(routes) => {
let routes = routes
.into_iter()
.map(|(operation, route)| (operation, Layer::layer(&layer, route)))
.collect();
Router {
routes: Routes::AwsJson11(routes),
}
}
}
}
#[doc(hidden)]
pub fn new_rest_json_router<T>(routes: T) -> Self
where
T: IntoIterator<
Item = (
tower::util::BoxCloneService<Request<B>, Response<BoxBody>, Infallible>,
RequestSpec,
),
>,
{
let mut routes: Vec<(Route<B>, RequestSpec)> = routes
.into_iter()
.map(|(svc, request_spec)| (Route::from_box_clone_service(svc), request_spec))
.collect();
routes.sort_by_key(|(_route, request_spec)| std::cmp::Reverse(request_spec.rank()));
Self {
routes: Routes::RestJson1(routes),
}
}
#[doc(hidden)]
pub fn new_rest_xml_router<T>(routes: T) -> Self
where
T: IntoIterator<
Item = (
tower::util::BoxCloneService<Request<B>, Response<BoxBody>, Infallible>,
RequestSpec,
),
>,
{
let mut routes: Vec<(Route<B>, RequestSpec)> = routes
.into_iter()
.map(|(svc, request_spec)| (Route::from_box_clone_service(svc), request_spec))
.collect();
routes.sort_by_key(|(_route, request_spec)| std::cmp::Reverse(request_spec.rank()));
Self {
routes: Routes::RestXml(routes),
}
}
#[doc(hidden)]
pub fn new_aws_json_10_router<T>(routes: T) -> Self
where
T: IntoIterator<
Item = (
tower::util::BoxCloneService<Request<B>, Response<BoxBody>, Infallible>,
String,
),
>,
{
let routes = routes
.into_iter()
.map(|(svc, operation)| (operation, Route::from_box_clone_service(svc)))
.collect();
Self {
routes: Routes::AwsJson10(routes),
}
}
#[doc(hidden)]
pub fn new_aws_json_11_router<T>(routes: T) -> Self
where
T: IntoIterator<
Item = (
tower::util::BoxCloneService<Request<B>, Response<BoxBody>, Infallible>,
String,
),
>,
{
let routes = routes
.into_iter()
.map(|(svc, operation)| (operation, Route::from_box_clone_service(svc)))
.collect();
Self {
routes: Routes::AwsJson11(routes),
}
}
}
impl<B> Service<Request<B>> for Router<B>
where
B: Send + 'static,
{
type Response = Response<BoxBody>;
type Error = Infallible;
type Future = RouterFuture<B>;
#[inline]
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
#[inline]
fn call(&mut self, req: Request<B>) -> Self::Future {
match &self.routes {
Routes::RestJson1(routes) | Routes::RestXml(routes) => {
let mut method_not_allowed = false;
for (route, request_spec) in routes {
match request_spec.matches(&req) {
request_spec::Match::Yes => {
return RouterFuture::from_oneshot(route.clone().oneshot(req));
}
request_spec::Match::MethodNotAllowed => method_not_allowed = true,
request_spec::Match::No => continue,
}
}
if method_not_allowed {
self.method_not_allowed()
} else {
self.unknown_operation()
}
}
Routes::AwsJson10(routes) | Routes::AwsJson11(routes) => {
if req.uri() == "/" {
if req.method() == http::Method::POST {
if let Some(target) = req.headers().get("x-amz-target") {
if let Ok(target) = target.to_str() {
let route = routes.get(target);
if let Some(route) = route {
return RouterFuture::from_oneshot(route.clone().oneshot(req));
}
}
}
} else {
return self.method_not_allowed();
}
}
self.unknown_operation()
}
}
}
}
#[cfg(test)]
mod rest_tests {
use super::*;
use crate::{
body::{boxed, BoxBody},
routing::request_spec::*,
};
use futures_util::Future;
use http::{HeaderMap, Method};
use std::pin::Pin;
pub fn req(method: &Method, uri: &str, headers: Option<HeaderMap>) -> Request<()> {
let mut r = Request::builder().method(method).uri(uri).body(()).unwrap();
if let Some(headers) = headers {
*r.headers_mut() = headers
}
r
}
pub async fn get_body_as_string<B>(res: &mut Response<B>) -> String
where
B: http_body::Body + std::marker::Unpin,
B::Error: std::fmt::Debug,
{
let body_mut = res.body_mut();
let body_bytes = hyper::body::to_bytes(body_mut).await.unwrap();
String::from(std::str::from_utf8(&body_bytes).unwrap())
}
#[derive(Clone)]
struct NamedEchoUriService(String);
impl<B> Service<Request<B>> for NamedEchoUriService {
type Response = Response<BoxBody>;
type Error = Infallible;
type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send>>;
#[inline]
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
#[inline]
fn call(&mut self, req: Request<B>) -> Self::Future {
let body = boxed(Body::from(format!("{} :: {}", self.0, req.uri().to_string())));
let fut = async { Ok(Response::builder().status(&http::StatusCode::OK).body(body).unwrap()) };
Box::pin(fut)
}
}
#[tokio::test]
async fn simple_routing() {
let request_specs: Vec<(RequestSpec, &str)> = vec![
(
RequestSpec::from_parts(
Method::GET,
vec![
PathSegment::Literal(String::from("a")),
PathSegment::Label,
PathSegment::Label,
],
Vec::new(),
),
"A",
),
(
RequestSpec::from_parts(
Method::GET,
vec![
PathSegment::Literal(String::from("mg")),
PathSegment::Greedy,
PathSegment::Literal(String::from("z")),
],
Vec::new(),
),
"MiddleGreedy",
),
(
RequestSpec::from_parts(
Method::DELETE,
Vec::new(),
vec![
QuerySegment::KeyValue(String::from("foo"), String::from("bar")),
QuerySegment::Key(String::from("baz")),
],
),
"Delete",
),
(
RequestSpec::from_parts(
Method::POST,
vec![PathSegment::Literal(String::from("query_key_only"))],
vec![QuerySegment::Key(String::from("foo"))],
),
"QueryKeyOnly",
),
];
let router_json = Router::new_rest_json_router(request_specs.clone().into_iter().map(|(spec, svc_name)| {
(
tower::util::BoxCloneService::new(NamedEchoUriService(String::from(svc_name))),
spec,
)
}));
let router_xml = Router::new_rest_xml_router(request_specs.into_iter().map(|(spec, svc_name)| {
(
tower::util::BoxCloneService::new(NamedEchoUriService(String::from(svc_name))),
spec,
)
}));
for mut router in [router_json, router_xml] {
let hits = vec![
("A", Method::GET, "/a/b/c"),
("MiddleGreedy", Method::GET, "/mg/a/z"),
("MiddleGreedy", Method::GET, "/mg/a/b/c/d/z?abc=def"),
("Delete", Method::DELETE, "/?foo=bar&baz=quux"),
("Delete", Method::DELETE, "/?foo=bar&baz"),
("Delete", Method::DELETE, "/?foo=bar&baz=&"),
("Delete", Method::DELETE, "/?foo=bar&baz=quux&baz=grault"),
("QueryKeyOnly", Method::POST, "/query_key_only?foo=bar"),
("QueryKeyOnly", Method::POST, "/query_key_only?foo"),
("QueryKeyOnly", Method::POST, "/query_key_only?foo="),
("QueryKeyOnly", Method::POST, "/query_key_only?foo=&"),
];
for (svc_name, method, uri) in &hits {
let mut res = router.call(req(method, uri, None)).await.unwrap();
let actual_body = get_body_as_string(&mut res).await;
assert_eq!(format!("{} :: {}", svc_name, uri), actual_body);
}
for (_, _, uri) in hits {
let res = router.call(req(&Method::PATCH, uri, None)).await.unwrap();
assert_eq!(StatusCode::METHOD_NOT_ALLOWED, res.status());
}
let misses = vec![
(Method::GET, "/a"),
(Method::GET, "/a/b"),
(Method::GET, "/mg"),
(Method::GET, "/mg/q"),
(Method::GET, "/mg/z"),
(Method::GET, "/mg/a/b/z/c"),
(Method::DELETE, "/?foo=bar"),
(Method::DELETE, "/?foo=bar"),
(Method::DELETE, "/?baz=quux"),
(Method::POST, "/query_key_only?baz=quux"),
(Method::GET, "/"),
(Method::POST, "/"),
];
for (method, miss) in misses {
let res = router.call(req(&method, miss, None)).await.unwrap();
assert_eq!(StatusCode::NOT_FOUND, res.status());
}
}
}
#[tokio::test]
async fn basic_pattern_conflict_avoidance() {
let request_specs: Vec<(RequestSpec, &str)> = vec![
(
RequestSpec::from_parts(
Method::GET,
vec![PathSegment::Literal(String::from("a")), PathSegment::Label],
Vec::new(),
),
"A1",
),
(
RequestSpec::from_parts(
Method::GET,
vec![
PathSegment::Literal(String::from("a")),
PathSegment::Label,
PathSegment::Literal(String::from("a")),
],
Vec::new(),
),
"A2",
),
(
RequestSpec::from_parts(
Method::GET,
vec![PathSegment::Literal(String::from("b")), PathSegment::Greedy],
Vec::new(),
),
"B1",
),
(
RequestSpec::from_parts(
Method::GET,
vec![PathSegment::Literal(String::from("b")), PathSegment::Greedy],
vec![QuerySegment::Key(String::from("q"))],
),
"B2",
),
];
let mut router = Router::new_rest_json_router(request_specs.into_iter().map(|(spec, svc_name)| {
(
tower::util::BoxCloneService::new(NamedEchoUriService(String::from(svc_name))),
spec,
)
}));
let hits = vec![
("A1", Method::GET, "/a/foo"),
("A2", Method::GET, "/a/foo/a"),
("B1", Method::GET, "/b/foo/bar/baz"),
("B2", Method::GET, "/b/foo?q=baz"),
];
for (svc_name, method, uri) in &hits {
let mut res = router.call(req(method, uri, None)).await.unwrap();
let actual_body = get_body_as_string(&mut res).await;
assert_eq!(format!("{} :: {}", svc_name, uri), actual_body);
}
}
}
#[cfg(test)]
mod awsjson_tests {
use super::rest_tests::{get_body_as_string, req};
use super::*;
use crate::body::boxed;
use futures_util::Future;
use http::{HeaderMap, HeaderValue, Method};
use pretty_assertions::assert_eq;
use std::pin::Pin;
#[derive(Clone)]
struct NamedEchoOperationService(String);
impl<B> Service<Request<B>> for NamedEchoOperationService {
type Response = Response<BoxBody>;
type Error = Infallible;
type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send>>;
#[inline]
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
#[inline]
fn call(&mut self, req: Request<B>) -> Self::Future {
let target = req
.headers()
.get("x-amz-target")
.map(|x| x.to_str().unwrap())
.unwrap_or("unknown");
let body = boxed(Body::from(format!("{} :: {}", self.0, target)));
let fut = async { Ok(Response::builder().status(&http::StatusCode::OK).body(body).unwrap()) };
Box::pin(fut)
}
}
#[tokio::test]
async fn simple_routing() {
let routes = vec![("Service.Operation", "A")];
let router_json10 = Router::new_aws_json_10_router(routes.clone().into_iter().map(|(operation, svc_name)| {
(
tower::util::BoxCloneService::new(NamedEchoOperationService(String::from(svc_name))),
operation.to_string(),
)
}));
let router_json11 = Router::new_aws_json_11_router(routes.into_iter().map(|(operation, svc_name)| {
(
tower::util::BoxCloneService::new(NamedEchoOperationService(String::from(svc_name))),
operation.to_string(),
)
}));
for mut router in [router_json10, router_json11] {
let mut headers = HeaderMap::new();
headers.insert("x-amz-target", HeaderValue::from_static("Service.Operation"));
let mut res = router
.call(req(&Method::POST, "/", Some(headers.clone())))
.await
.unwrap();
let actual_body = get_body_as_string(&mut res).await;
assert_eq!(format!("{} :: {}", "A", "Service.Operation"), actual_body);
let res = router.call(req(&Method::POST, "/", None)).await.unwrap();
assert_eq!(res.status(), StatusCode::NOT_FOUND);
let res = router
.call(req(&Method::GET, "/", Some(headers.clone())))
.await
.unwrap();
assert_eq!(res.status(), StatusCode::METHOD_NOT_ALLOWED);
let res = router
.call(req(&Method::POST, "/something", Some(headers)))
.await
.unwrap();
assert_eq!(res.status(), StatusCode::NOT_FOUND);
}
}
}