2019-04-08 14:51:16 -07:00
|
|
|
use actix_codec::Framed;
|
2019-11-15 15:54:11 +06:00
|
|
|
use actix_service::{Service, ServiceFactory};
|
2021-03-13 14:20:18 -08:00
|
|
|
use futures_core::future::LocalBoxFuture;
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2021-12-19 17:05:27 +00:00
|
|
|
use crate::{h1::Codec, Error, Request};
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2021-01-04 07:47:04 +08:00
|
|
|
pub struct UpgradeHandler;
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2021-01-04 07:47:04 +08:00
|
|
|
impl<T> ServiceFactory<(Request, Framed<T, Codec>)> for UpgradeHandler {
|
2019-04-08 14:51:16 -07:00
|
|
|
type Response = ();
|
|
|
|
type Error = Error;
|
2021-01-04 07:47:04 +08:00
|
|
|
type Config = ();
|
|
|
|
type Service = UpgradeHandler;
|
2019-04-08 14:51:16 -07:00
|
|
|
type InitError = Error;
|
2021-03-13 14:20:18 -08:00
|
|
|
type Future = LocalBoxFuture<'static, Result<Self::Service, Self::InitError>>;
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2019-12-02 21:37:13 +06:00
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
2019-04-08 14:51:16 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 07:47:04 +08:00
|
|
|
impl<T> Service<(Request, Framed<T, Codec>)> for UpgradeHandler {
|
2019-04-08 14:51:16 -07:00
|
|
|
type Response = ();
|
|
|
|
type Error = Error;
|
2021-03-13 14:20:18 -08:00
|
|
|
type Future = LocalBoxFuture<'static, Result<Self::Response, Self::Error>>;
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2021-02-06 17:00:40 -08:00
|
|
|
actix_service::always_ready!();
|
2019-04-08 14:51:16 -07:00
|
|
|
|
2021-02-06 17:00:40 -08:00
|
|
|
fn call(&self, _: (Request, Framed<T, Codec>)) -> Self::Future {
|
2021-03-13 14:20:18 -08:00
|
|
|
unimplemented!()
|
2019-04-08 14:51:16 -07:00
|
|
|
}
|
|
|
|
}
|