pub mod header;
mod io;
use futures::future::Either;
use header::{Header, StreamId, Data, WindowUpdate, GoAway, Ping};
use std::{convert::TryInto, num::TryFromIntError};
pub(crate) use io::Io;
pub use io::FrameDecodeError;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Frame<T> {
header: Header<T>,
body: Vec<u8>
}
impl<T> Frame<T> {
pub fn new(header: Header<T>) -> Self {
Frame { header, body: Vec::new() }
}
pub fn header(&self) -> &Header<T> {
&self.header
}
pub fn header_mut(&mut self) -> &mut Header<T> {
&mut self.header
}
pub(crate) fn right<U>(self) -> Frame<Either<U, T>> {
Frame { header: self.header.right(), body: self.body }
}
pub(crate) fn left<U>(self) -> Frame<Either<T, U>> {
Frame { header: self.header.left(), body: self.body }
}
}
impl Frame<()> {
pub(crate) fn into_data(self) -> Frame<Data> {
Frame { header: self.header.into_data(), body: self.body }
}
pub(crate) fn into_window_update(self) -> Frame<WindowUpdate> {
Frame { header: self.header.into_window_update(), body: self.body }
}
pub(crate) fn into_ping(self) -> Frame<Ping> {
Frame { header: self.header.into_ping(), body: self.body }
}
}
impl Frame<Data> {
pub fn data(id: StreamId, b: Vec<u8>) -> Result<Self, TryFromIntError> {
Ok(Frame {
header: Header::data(id, b.len().try_into()?),
body: b
})
}
pub fn body(&self) -> &[u8] {
&self.body
}
pub fn body_len(&self) -> u32 {
self.body().len() as u32
}
pub fn into_body(self) -> Vec<u8> {
self.body
}
}
impl Frame<WindowUpdate> {
pub fn window_update(id: StreamId, credit: u32) -> Self {
Frame {
header: Header::window_update(id, credit),
body: Vec::new()
}
}
}
impl Frame<GoAway> {
pub fn term() -> Self {
Frame {
header: Header::term(),
body: Vec::new()
}
}
pub fn protocol_error() -> Self {
Frame {
header: Header::protocol_error(),
body: Vec::new()
}
}
pub fn internal_error() -> Self {
Frame {
header: Header::internal_error(),
body: Vec::new()
}
}
}