2015-07-28 12:51:24 -07:00
|
|
|
use buf::{Buf, MutBuf};
|
|
|
|
|
use std::{cmp, io};
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct Take<T> {
|
|
|
|
|
inner: T,
|
|
|
|
|
limit: usize,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T> Take<T> {
|
|
|
|
|
pub fn new(inner: T, limit: usize) -> Take<T> {
|
|
|
|
|
Take {
|
|
|
|
|
inner: inner,
|
|
|
|
|
limit: limit,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn into_inner(self) -> T {
|
|
|
|
|
self.inner
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_ref(&self) -> &T {
|
|
|
|
|
&self.inner
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_mut(&mut self) -> &mut T {
|
|
|
|
|
&mut self.inner
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn limit(&self) -> usize {
|
|
|
|
|
self.limit
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_limit(&mut self, lim: usize) {
|
|
|
|
|
self.limit = lim
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Buf> Buf for Take<T> {
|
|
|
|
|
fn remaining(&self) -> usize {
|
|
|
|
|
cmp::min(self.inner.remaining(), self.limit)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn bytes<'a>(&'a self) -> &'a [u8] {
|
|
|
|
|
&self.inner.bytes()[..self.limit]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn advance(&mut self, cnt: usize) {
|
|
|
|
|
let cnt = cmp::min(cnt, self.limit);
|
|
|
|
|
self.limit -= cnt;
|
|
|
|
|
self.inner.advance(cnt);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Buf> io::Read for Take<T> {
|
|
|
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
|
|
|
if !self.has_remaining() {
|
|
|
|
|
return Ok(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(self.read_slice(buf))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: MutBuf> MutBuf for Take<T> {
|
|
|
|
|
fn remaining(&self) -> usize {
|
|
|
|
|
cmp::min(self.inner.remaining(), self.limit)
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-10 21:53:14 -07:00
|
|
|
unsafe fn mut_bytes<'a>(&'a mut self) -> &'a mut [u8] {
|
2015-07-28 12:51:24 -07:00
|
|
|
&mut self.inner.mut_bytes()[..self.limit]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn advance(&mut self, cnt: usize) {
|
|
|
|
|
let cnt = cmp::min(cnt, self.limit);
|
|
|
|
|
self.limit -= cnt;
|
|
|
|
|
self.inner.advance(cnt);
|
|
|
|
|
}
|
|
|
|
|
}
|