1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 14:14:41 +01:00

42 lines
737 B
Rust
Raw Normal View History

2021-02-11 22:39:54 +00:00
//! Content-Encoding support.
2019-03-26 15:14:32 -07:00
use std::io;
use bytes::{Bytes, BytesMut};
mod decoder;
mod encoder;
pub use self::decoder::Decoder;
pub use self::encoder::Encoder;
2021-12-04 19:40:47 +00:00
/// Special-purpose writer for streaming (de-)compression.
///
/// Pre-allocates 8KiB of capacity.
2019-03-26 15:14:32 -07:00
pub(self) struct Writer {
buf: BytesMut,
}
impl Writer {
fn new() -> Writer {
Writer {
buf: BytesMut::with_capacity(8192),
}
}
2019-12-20 13:50:07 +06:00
2019-03-26 15:14:32 -07:00
fn take(&mut self) -> Bytes {
2019-12-05 23:35:43 +06:00
self.buf.split().freeze()
2019-03-26 15:14:32 -07:00
}
}
impl io::Write for Writer {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.buf.extend_from_slice(buf);
Ok(buf.len())
}
2019-12-20 13:50:07 +06:00
2019-03-26 15:14:32 -07:00
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}