1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//! Instructions of components including [client], [affix], [request], [response], [task], [utils].
//!
//! # OverView
//!
//! `client` contains some methods to execute `Request` as Future;
//!
//! `utils` is a collection of useful tools like [hash] get now time stamp [now] and other stuff;
//!
//! the others, as the file name suggests, serve as component in integration
//!
//! [hash]: crate::component::utils::hash
//! [now]: crate::component::utils::now
//! [client]: crate::component::client
//! [affix]: crate::component::affix
//! [request]: crate::component::request
//! [response]: crate::component::response
//! [task]: crate::component::task
//! [utils]: crate::component::utils
//!
pub mod affix;
pub mod body;
pub mod client;
pub mod couple;
pub mod info;
pub mod parsed;
pub mod request;
pub mod response;
pub mod task;
pub mod utils;

use std::convert::TryInto;

/// fundamental data struct
pub enum Poly {
    Task(Task),
    Affix(Affix),
    Request(Request),
    Couple(Couple),
    Response(Response),
}

impl From<Task> for Poly {
    fn from(task: Task) -> Self {
        Self::Task(task)
    }
}
impl TryInto<Task> for Poly {
    type Error = std::io::Error;

    fn try_into(self) -> Result<Task, Self::Error> {
        if let Poly::Task(task) = self {
            Ok(task)
        } else {
            Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "Invalid Cast to Task",
            ))
        }
    }
}

impl From<Affix> for Poly {
    fn from(affix: Affix) -> Self {
        Self::Affix(affix)
    }
}
impl TryInto<Affix> for Poly {
    type Error = std::io::Error;

    fn try_into(self) -> Result<Affix, Self::Error> {
        if let Poly::Affix(affix) = self {
            Ok(affix)
        } else {
            Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "Invalid Cast to Affix",
            ))
        }
    }
}

impl From<Request> for Poly {
    fn from(request: Request) -> Self {
        Self::Request(request)
    }
}
impl TryInto<Request> for Poly {
    type Error = std::io::Error;

    fn try_into(self) -> Result<Request, Self::Error> {
        if let Poly::Request(request) = self {
            Ok(request)
        } else {
            Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "Invalid Cast to Request",
            ))
        }
    }
}

impl From<(u64, Couple)> for Poly {
    fn from(couple: (u64, Couple)) -> Self {
        Self::Couple(couple.1)
    }
}
impl TryInto<(u64, Couple)> for Poly {
    type Error = std::io::Error;

    fn try_into(self) -> Result<(u64, Couple), Self::Error> {
        if let Poly::Couple(couple) = self {
            Ok((couple.id, couple))
        } else {
            Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "Invalid Cast to Couple",
            ))
        }
    }
}

impl From<Response> for Poly {
    fn from(response: Response) -> Self {
        Self::Response(response)
    }
}
impl TryInto<Response> for Poly {
    type Error = std::io::Error;

    fn try_into(self) -> Result<Response, Self::Error> {
        if let Poly::Response(response) = self {
            Ok(response)
        } else {
            Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                "Invalid Cast to Response",
            ))
        }
    }
}

#[doc(hidden)]
pub use affix::Affix;
#[doc(hidden)]
pub use body::{Body, Chunk, Kind};
pub use bytes::{Buf, Bytes};
#[doc(hidden)]
pub use client::Client;
#[doc(hidden)]
pub use couple::Couple;
#[doc(hidden)]
pub use info::Info;
#[doc(hidden)]
pub use parsed::Parsed;
#[doc(hidden)]
pub use request::{Exts, InnerRequest, MetaRequest, Request, RequestBuilder};
#[doc(hidden)]
pub use response::{InnerResponse, MetaResponse, Response, ResponseBuilder};
#[doc(hidden)]
pub use task::{InnerTask, MetaTask, Task, TaskBuilder};