forked from istio/ztunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pending hyperium/tonic#1740. DNM until its released. This lets us drop a few shims
- Loading branch information
1 parent
3a41b09
commit 6d01599
Showing
10 changed files
with
343 additions
and
336 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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,75 @@ | ||
use pin_project_lite::pin_project; | ||
use tonic::body::BoxBody; | ||
use tonic::Status; | ||
use tower::{BoxError, ServiceExt}; | ||
|
||
// Copied from https://github.com/hyperium/tonic/blob/34b863b1d2a204ef3dd871ec86860fc92aafb451/examples/src/tls_rustls/server.rs | ||
|
||
/// An adaptor which converts a [`tower::Service`] to a [`hyper::service::Service`]. | ||
/// | ||
/// The [`hyper::service::Service`] trait is used by hyper to handle incoming requests, | ||
/// and does not support the `poll_ready` method that is used by tower services. | ||
/// | ||
/// This is provided here because the equivalent adaptor in hyper-util does not support | ||
/// tonic::body::BoxBody bodies. | ||
#[derive(Debug, Clone)] | ||
pub struct TowerToHyperService<S> { | ||
service: S, | ||
} | ||
|
||
impl<S> TowerToHyperService<S> { | ||
/// Create a new `TowerToHyperService` from a tower service. | ||
pub fn new(service: S) -> Self { | ||
Self { service } | ||
} | ||
} | ||
|
||
impl<S> hyper::service::Service<hyper::Request<hyper::body::Incoming>> for TowerToHyperService<S> | ||
where | ||
S: tower::Service<hyper::Request<BoxBody>> + Clone, | ||
S::Error: Into<BoxError> + 'static, | ||
{ | ||
type Response = S::Response; | ||
type Error = BoxError; | ||
type Future = TowerToHyperServiceFuture<S, hyper::Request<BoxBody>>; | ||
|
||
fn call(&self, req: hyper::Request<hyper::body::Incoming>) -> Self::Future { | ||
use http_body_util::BodyExt; | ||
let req = req.map(|incoming| { | ||
incoming | ||
.map_err(|err| Status::from_error(err.into())) | ||
.boxed_unsync() | ||
}); | ||
TowerToHyperServiceFuture { | ||
future: self.service.clone().oneshot(req), | ||
} | ||
} | ||
} | ||
|
||
pin_project! { | ||
/// Future returned by [`TowerToHyperService`]. | ||
#[derive(Debug)] | ||
pub struct TowerToHyperServiceFuture<S, R> | ||
where | ||
S: tower::Service<R>, | ||
{ | ||
#[pin] | ||
future: tower::util::Oneshot<S, R>, | ||
} | ||
} | ||
|
||
impl<S, R> std::future::Future for TowerToHyperServiceFuture<S, R> | ||
where | ||
S: tower::Service<R>, | ||
S::Error: Into<BoxError> + 'static, | ||
{ | ||
type Output = Result<S::Response, BoxError>; | ||
|
||
#[inline] | ||
fn poll( | ||
self: std::pin::Pin<&mut Self>, | ||
cx: &mut std::task::Context<'_>, | ||
) -> std::task::Poll<Self::Output> { | ||
self.project().future.poll(cx).map_err(Into::into) | ||
} | ||
} |
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