-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72c1c67
commit b6bffe2
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
//! Service utilities. | ||
|
||
use pin_project_lite::pin_project; | ||
use std::{ | ||
future::Future, | ||
pin::Pin, | ||
task::{Context, Poll}, | ||
}; | ||
use tower::{util::Oneshot, ServiceExt}; | ||
|
||
/// A tower service converted into a hyper service. | ||
#[cfg(all( | ||
any(feature = "http1", feature = "http2"), | ||
any(feature = "server", feature = "client") | ||
))] | ||
#[derive(Debug, Copy, Clone)] | ||
pub struct TowerToHyperService<S> { | ||
service: S, | ||
} | ||
|
||
impl<S> TowerToHyperService<S> { | ||
/// Create a new `TowerToHyperService` from a tower service. | ||
pub fn new(tower_service: S) -> Self { | ||
Self { | ||
service: tower_service, | ||
} | ||
} | ||
} | ||
|
||
impl<S, R> hyper::service::Service<R> for TowerToHyperService<S> | ||
where | ||
S: tower_service::Service<R> + Clone, | ||
{ | ||
type Response = S::Response; | ||
type Error = S::Error; | ||
type Future = TowerToHyperServiceFuture<S, R>; | ||
|
||
fn call(&self, req: R) -> Self::Future { | ||
TowerToHyperServiceFuture { | ||
future: self.service.clone().oneshot(req), | ||
} | ||
} | ||
} | ||
|
||
pin_project! { | ||
/// Response future for [`TowerToHyperService`]. | ||
#[cfg(all( | ||
any(feature = "http1", feature = "http2"), | ||
any(feature = "server", feature = "client") | ||
))] | ||
pub struct TowerToHyperServiceFuture<S, R> | ||
where | ||
S: tower_service::Service<R>, | ||
{ | ||
#[pin] | ||
future: Oneshot<S, R>, | ||
} | ||
} | ||
|
||
impl<S, R> Future for TowerToHyperServiceFuture<S, R> | ||
where | ||
S: tower_service::Service<R>, | ||
{ | ||
type Output = Result<S::Response, S::Error>; | ||
|
||
#[inline] | ||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { | ||
self.project().future.poll(cx) | ||
} | ||
} |