2021-02-07 02:00:40 +01:00
|
|
|
use std::task::Poll;
|
2019-04-08 23:51:16 +02:00
|
|
|
|
|
|
|
use actix_codec::Framed;
|
2019-11-15 10:54:11 +01:00
|
|
|
use actix_service::{Service, ServiceFactory};
|
2020-12-23 02:28:17 +01:00
|
|
|
use futures_util::future::{ready, Ready};
|
2019-04-08 23:51:16 +02:00
|
|
|
|
|
|
|
use crate::error::Error;
|
|
|
|
use crate::h1::Codec;
|
|
|
|
use crate::request::Request;
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
pub struct UpgradeHandler;
|
2019-04-08 23:51:16 +02:00
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl<T> ServiceFactory<(Request, Framed<T, Codec>)> for UpgradeHandler {
|
2019-04-08 23:51:16 +02:00
|
|
|
type Response = ();
|
|
|
|
type Error = Error;
|
2021-01-04 00:47:04 +01:00
|
|
|
type Config = ();
|
|
|
|
type Service = UpgradeHandler;
|
2019-04-08 23:51:16 +02:00
|
|
|
type InitError = Error;
|
2019-11-15 10:54:11 +01:00
|
|
|
type Future = Ready<Result<Self::Service, Self::InitError>>;
|
2019-04-08 23:51:16 +02:00
|
|
|
|
2019-12-02 16:37:13 +01:00
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
2019-04-08 23:51:16 +02:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl<T> Service<(Request, Framed<T, Codec>)> for UpgradeHandler {
|
2019-04-08 23:51:16 +02:00
|
|
|
type Response = ();
|
|
|
|
type Error = Error;
|
2019-11-15 10:54:11 +01:00
|
|
|
type Future = Ready<Result<Self::Response, Self::Error>>;
|
2019-04-08 23:51:16 +02:00
|
|
|
|
2021-02-07 02:00:40 +01:00
|
|
|
actix_service::always_ready!();
|
2019-04-08 23:51:16 +02:00
|
|
|
|
2021-02-07 02:00:40 +01:00
|
|
|
fn call(&self, _: (Request, Framed<T, Codec>)) -> Self::Future {
|
2020-12-23 02:28:17 +01:00
|
|
|
ready(Ok(()))
|
2019-04-08 23:51:16 +02:00
|
|
|
}
|
|
|
|
}
|