2019-04-08 23:51:16 +02:00
|
|
|
use std::marker::PhantomData;
|
2019-11-15 10:54:11 +01:00
|
|
|
use std::task::{Context, 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};
|
2019-12-13 06:24:57 +01:00
|
|
|
use futures_util::future::Ready;
|
2019-04-08 23:51:16 +02:00
|
|
|
|
|
|
|
use crate::error::Error;
|
|
|
|
use crate::h1::Codec;
|
|
|
|
use crate::request::Request;
|
|
|
|
|
|
|
|
pub struct UpgradeHandler<T>(PhantomData<T>);
|
|
|
|
|
2019-11-15 10:54:11 +01:00
|
|
|
impl<T> ServiceFactory for UpgradeHandler<T> {
|
2019-12-02 12:33:11 +01:00
|
|
|
type Config = ();
|
2019-04-08 23:51:16 +02:00
|
|
|
type Request = (Request, Framed<T, Codec>);
|
|
|
|
type Response = ();
|
|
|
|
type Error = Error;
|
|
|
|
type Service = UpgradeHandler<T>;
|
|
|
|
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!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Service for UpgradeHandler<T> {
|
|
|
|
type Request = (Request, Framed<T, Codec>);
|
|
|
|
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
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Ok(()))
|
2019-04-08 23:51:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, _: Self::Request) -> Self::Future {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|