Struct TowerService03HttpServiceAsHyper1HttpService

Source
pub struct TowerService03HttpServiceAsHyper1HttpService<S, B> { /* private fields */ }
Available on (crate features http1 or http2) and (crate features server or client) only.
Expand description

Converts a tower-service 0.3 HTTP Service to a hyper 1.0 HTTP Service.

An HTTP Service is a Service where the request is http::Request<_> and the response is http::Response<_>.

§Example

use http::{Request, Response, StatusCode};
use hyper_1::{server::conn::http1, service::service_fn, body, body::Bytes};
use std::{net::SocketAddr, convert::Infallible};
use tokio::net::TcpListener;
use tower_hyper_http_body_compat::TowerService03HttpServiceAsHyper1HttpService;

// a service function that uses hyper 0.14, tower-service 0.3, and http-body 0.4
async fn handler<B>(req: Request<B>) -> Result<Response<hyper_014::body::Body>, Infallible>
where
    B: hyper_014::body::HttpBody<Data = hyper_014::body::Bytes>,
    B::Error: Into<Box<dyn std::error::Error + Send + Sync>>,
{
   let body = req.into_body();
   let body = http_body_04::Limited::new(body, 1024);
   let bytes = match hyper_014::body::to_bytes(body).await {
       Ok(bytes) => bytes,
       Err(err) => {
           let res = Response::builder()
               .status(StatusCode::BAD_REQUEST)
               .body(hyper_014::body::Body::empty())
               .unwrap();
           return Ok(res)
       }
   };

   let res = Response::builder()
       .body(hyper_014::body::Body::from(format!("Received {} bytes", bytes.len())))
       .unwrap();
   Ok(res)
}

// run `handler` on hyper 1.0
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    let addr: SocketAddr = ([127, 0, 0, 1], 8080).into();

    let service = tower::service_fn(handler);
    let service = TowerService03HttpServiceAsHyper1HttpService::new(service);

    let mut tcp_listener = TcpListener::bind(addr).await?;
    loop {
        let (tcp_stream, _) = tcp_listener.accept().await?;
        let tcp_stream = hyper_util::rt::TokioIo::new(tcp_stream);
        let service = service.clone();
        tokio::task::spawn(async move {
            if let Err(http_err) = http1::Builder::new()
                    .keep_alive(true)
                    .serve_connection(tcp_stream, service)
                    .await {
                eprintln!("Error while serving HTTP connection: {}", http_err);
            }
        });
    }
}

Implementations§

Source§

impl<S, B> TowerService03HttpServiceAsHyper1HttpService<S, B>

Source

pub fn new(service: S) -> Self

Create a new TowerService03HttpServiceAsHyper1HttpService.

Trait Implementations§

Source§

impl<S, B> Clone for TowerService03HttpServiceAsHyper1HttpService<S, B>
where S: Clone,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S, B> Debug for TowerService03HttpServiceAsHyper1HttpService<S, B>
where S: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<S, ReqBody, ResBody> Service<Request<ReqBody>> for TowerService03HttpServiceAsHyper1HttpService<S, HttpBody1ToHttpBody04<ReqBody>>
where S: Service<Request<HttpBody1ToHttpBody04<ReqBody>>, Response = Response<ResBody>> + Clone,

Source§

type Response = Response<HttpBody04ToHttpBody1<ResBody>>

Responses given by the service.
Source§

type Error = <S as Service<Request<HttpBody1ToHttpBody04<ReqBody>>>>::Error

Errors produced by the service. Read more
Source§

type Future = TowerService03HttpServiceAsHyper1HttpServiceFuture<S, Request<HttpBody1ToHttpBody04<ReqBody>>>

The future response value.
Source§

fn call(&self, req: Request<ReqBody>) -> Self::Future

Process the request and return the response asynchronously. call takes &self instead of mut &self because: Read more
Source§

impl<S, B> Copy for TowerService03HttpServiceAsHyper1HttpService<S, B>
where S: Copy,

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more