2017-10-23 04:58:50 +02:00
|
|
|
use std::{fmt, cmp};
|
2017-10-09 05:16:48 +02:00
|
|
|
use std::rc::{Rc, Weak};
|
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::collections::VecDeque;
|
2017-10-20 01:22:21 +02:00
|
|
|
use std::error::Error;
|
2017-10-14 01:33:23 +02:00
|
|
|
use std::io::Error as IoError;
|
2017-10-14 09:11:12 +02:00
|
|
|
use bytes::{Bytes, BytesMut};
|
2017-10-09 05:16:48 +02:00
|
|
|
use futures::{Async, Poll, Stream};
|
|
|
|
use futures::task::{Task, current as current_task};
|
|
|
|
|
|
|
|
const MAX_PAYLOAD_SIZE: usize = 65_536; // max buffer size 64k
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
/// Just Bytes object
|
|
|
|
pub type PayloadItem = Result<Bytes, PayloadError>;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
/// A set of error that can occur during payload parsing.
|
|
|
|
pub enum PayloadError {
|
|
|
|
/// A payload reached EOF, but is not complete.
|
|
|
|
Incomplete,
|
|
|
|
/// Parse error
|
|
|
|
ParseError(IoError),
|
|
|
|
}
|
|
|
|
|
2017-10-20 01:22:21 +02:00
|
|
|
impl fmt::Display for PayloadError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
PayloadError::ParseError(ref e) => fmt::Display::fmt(e, f),
|
|
|
|
ref e => f.write_str(e.description()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for PayloadError {
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
match *self {
|
|
|
|
PayloadError::Incomplete => "A payload reached EOF, but is not complete.",
|
|
|
|
PayloadError::ParseError(ref e) => e.description(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cause(&self) -> Option<&Error> {
|
|
|
|
match *self {
|
|
|
|
PayloadError::ParseError(ref error) => Some(error),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
impl From<IoError> for PayloadError {
|
|
|
|
fn from(err: IoError) -> PayloadError {
|
|
|
|
PayloadError::ParseError(err)
|
|
|
|
}
|
|
|
|
}
|
2017-10-09 05:16:48 +02:00
|
|
|
|
|
|
|
/// Stream of byte chunks
|
|
|
|
///
|
|
|
|
/// Payload stores chunks in vector. First chunk can be received with `.readany()` method.
|
2017-10-19 08:43:50 +02:00
|
|
|
#[derive(Debug)]
|
2017-10-09 05:16:48 +02:00
|
|
|
pub struct Payload {
|
|
|
|
inner: Rc<RefCell<Inner>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Payload {
|
|
|
|
|
|
|
|
pub(crate) fn new(eof: bool) -> (PayloadSender, Payload) {
|
|
|
|
let shared = Rc::new(RefCell::new(Inner::new(eof)));
|
|
|
|
|
2017-10-23 04:58:50 +02:00
|
|
|
(PayloadSender{inner: Rc::downgrade(&shared)}, Payload{inner: shared})
|
2017-10-09 05:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Indicates paused state of the payload. If payload data is not consumed
|
|
|
|
/// it get paused. Max size of not consumed data is 64k
|
|
|
|
pub fn paused(&self) -> bool {
|
|
|
|
self.inner.borrow().paused()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Indicates EOF of payload
|
|
|
|
pub fn eof(&self) -> bool {
|
|
|
|
self.inner.borrow().eof()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Length of the data in this payload
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.inner.borrow().len()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Is payload empty
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.inner.borrow().len() == 0
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:55:44 +02:00
|
|
|
/// Get first available chunk of data.
|
2017-10-19 08:43:50 +02:00
|
|
|
/// Returns Some(PayloadItem) as chunk, `None` indicates eof.
|
2017-10-09 05:16:48 +02:00
|
|
|
pub fn readany(&mut self) -> Async<Option<PayloadItem>> {
|
|
|
|
self.inner.borrow_mut().readany()
|
|
|
|
}
|
|
|
|
|
2017-10-19 08:43:50 +02:00
|
|
|
/// Get exactly number of bytes
|
|
|
|
/// Returns Some(PayloadItem) as chunk, `None` indicates eof.
|
|
|
|
pub fn readexactly(&mut self, size: usize) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
self.inner.borrow_mut().readexactly(size)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read until `\n`
|
|
|
|
/// Returns Some(PayloadItem) as line, `None` indicates eof.
|
|
|
|
pub fn readline(&mut self) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
self.inner.borrow_mut().readline()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read until match line
|
|
|
|
/// Returns Some(PayloadItem) as line, `None` indicates eof.
|
|
|
|
pub fn readuntil(&mut self, line: &[u8]) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
self.inner.borrow_mut().readuntil(line)
|
|
|
|
}
|
|
|
|
|
2017-10-14 09:11:12 +02:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn readall(&mut self) -> Option<Bytes> {
|
|
|
|
self.inner.borrow_mut().readall()
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:16:48 +02:00
|
|
|
/// Put unused data back to payload
|
2017-10-14 01:33:23 +02:00
|
|
|
pub fn unread_data(&mut self, data: Bytes) {
|
2017-10-09 05:16:48 +02:00
|
|
|
self.inner.borrow_mut().unread_data(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl Stream for Payload {
|
|
|
|
type Item = PayloadItem;
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Option<PayloadItem>, ()> {
|
|
|
|
Ok(self.readany())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) struct PayloadSender {
|
|
|
|
inner: Weak<RefCell<Inner>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PayloadSender {
|
2017-10-14 01:33:23 +02:00
|
|
|
pub(crate) fn set_error(&mut self, err: PayloadError) {
|
|
|
|
if let Some(shared) = self.inner.upgrade() {
|
|
|
|
shared.borrow_mut().set_error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:16:48 +02:00
|
|
|
pub(crate) fn feed_eof(&mut self) {
|
|
|
|
if let Some(shared) = self.inner.upgrade() {
|
|
|
|
shared.borrow_mut().feed_eof()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn feed_data(&mut self, data: Bytes) {
|
|
|
|
if let Some(shared) = self.inner.upgrade() {
|
|
|
|
shared.borrow_mut().feed_data(data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn maybe_paused(&self) -> bool {
|
|
|
|
match self.inner.upgrade() {
|
|
|
|
Some(shared) => {
|
|
|
|
let inner = shared.borrow();
|
|
|
|
if inner.paused() && inner.len() < MAX_PAYLOAD_SIZE {
|
|
|
|
drop(inner);
|
|
|
|
shared.borrow_mut().resume();
|
|
|
|
false
|
|
|
|
} else if !inner.paused() && inner.len() > MAX_PAYLOAD_SIZE {
|
|
|
|
drop(inner);
|
|
|
|
shared.borrow_mut().pause();
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
inner.paused()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-19 08:43:50 +02:00
|
|
|
#[derive(Debug)]
|
2017-10-09 05:16:48 +02:00
|
|
|
struct Inner {
|
|
|
|
len: usize,
|
|
|
|
eof: bool,
|
|
|
|
paused: bool,
|
2017-10-14 01:33:23 +02:00
|
|
|
err: Option<PayloadError>,
|
2017-10-09 05:16:48 +02:00
|
|
|
task: Option<Task>,
|
|
|
|
items: VecDeque<Bytes>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Inner {
|
|
|
|
|
|
|
|
fn new(eof: bool) -> Self {
|
|
|
|
Inner {
|
|
|
|
len: 0,
|
|
|
|
eof: eof,
|
|
|
|
paused: false,
|
2017-10-14 01:33:23 +02:00
|
|
|
err: None,
|
2017-10-09 05:16:48 +02:00
|
|
|
task: None,
|
|
|
|
items: VecDeque::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn paused(&self) -> bool {
|
|
|
|
self.paused
|
|
|
|
}
|
|
|
|
|
|
|
|
fn pause(&mut self) {
|
|
|
|
self.paused = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resume(&mut self) {
|
|
|
|
self.paused = false;
|
|
|
|
}
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
fn set_error(&mut self, err: PayloadError) {
|
|
|
|
self.err = Some(err);
|
|
|
|
if let Some(task) = self.task.take() {
|
|
|
|
task.notify()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:16:48 +02:00
|
|
|
fn feed_eof(&mut self) {
|
|
|
|
self.eof = true;
|
|
|
|
if let Some(task) = self.task.take() {
|
|
|
|
task.notify()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn feed_data(&mut self, data: Bytes) {
|
|
|
|
self.len += data.len();
|
|
|
|
self.items.push_back(data);
|
|
|
|
if let Some(task) = self.task.take() {
|
|
|
|
task.notify()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn eof(&self) -> bool {
|
2017-10-14 09:11:12 +02:00
|
|
|
self.items.is_empty() && self.eof
|
2017-10-09 05:16:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn len(&self) -> usize {
|
|
|
|
self.len
|
|
|
|
}
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
fn readany(&mut self) -> Async<Option<PayloadItem>> {
|
2017-10-09 05:16:48 +02:00
|
|
|
if let Some(data) = self.items.pop_front() {
|
|
|
|
self.len -= data.len();
|
2017-10-14 01:33:23 +02:00
|
|
|
Async::Ready(Some(Ok(data)))
|
2017-10-09 05:16:48 +02:00
|
|
|
} else if self.eof {
|
|
|
|
Async::Ready(None)
|
2017-10-14 01:33:23 +02:00
|
|
|
} else if let Some(err) = self.err.take() {
|
|
|
|
Async::Ready(Some(Err(err)))
|
2017-10-09 05:16:48 +02:00
|
|
|
} else {
|
|
|
|
self.task = Some(current_task());
|
|
|
|
Async::NotReady
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-19 08:43:50 +02:00
|
|
|
fn readexactly(&mut self, size: usize) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
if size <= self.len {
|
|
|
|
let mut buf = BytesMut::with_capacity(size);
|
|
|
|
while buf.len() < size {
|
|
|
|
let mut chunk = self.items.pop_front().unwrap();
|
2017-10-23 04:58:50 +02:00
|
|
|
let rem = cmp::min(size - buf.len(), chunk.len());
|
|
|
|
self.len -= rem;
|
2017-10-19 08:43:50 +02:00
|
|
|
buf.extend(&chunk.split_to(rem));
|
|
|
|
if !chunk.is_empty() {
|
|
|
|
self.items.push_front(chunk);
|
|
|
|
return Ok(Async::Ready(buf.freeze()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(err) = self.err.take() {
|
|
|
|
Err(err)
|
|
|
|
} else {
|
|
|
|
self.task = Some(current_task());
|
|
|
|
Ok(Async::NotReady)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn readuntil(&mut self, line: &[u8]) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
let mut idx = 0;
|
|
|
|
let mut num = 0;
|
|
|
|
let mut offset = 0;
|
|
|
|
let mut found = false;
|
|
|
|
let mut length = 0;
|
|
|
|
|
|
|
|
for no in 0..self.items.len() {
|
|
|
|
{
|
|
|
|
let chunk = &self.items[no];
|
|
|
|
for (pos, ch) in chunk.iter().enumerate() {
|
|
|
|
if *ch == line[idx] {
|
|
|
|
idx += 1;
|
|
|
|
if idx == line.len() {
|
|
|
|
num = no;
|
|
|
|
offset = pos+1;
|
2017-10-23 05:07:18 +02:00
|
|
|
length += pos+1;
|
2017-10-19 08:43:50 +02:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
idx = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
length += chunk.len()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if found {
|
|
|
|
let mut buf = BytesMut::with_capacity(length);
|
|
|
|
if num > 0 {
|
|
|
|
for _ in 0..num {
|
|
|
|
buf.extend(self.items.pop_front().unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if offset > 0 {
|
|
|
|
let mut chunk = self.items.pop_front().unwrap();
|
|
|
|
buf.extend(chunk.split_to(offset));
|
|
|
|
if !chunk.is_empty() {
|
|
|
|
self.items.push_front(chunk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.len -= length;
|
|
|
|
return Ok(Async::Ready(buf.freeze()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(err) = self.err.take() {
|
|
|
|
Err(err)
|
|
|
|
} else {
|
|
|
|
self.task = Some(current_task());
|
|
|
|
Ok(Async::NotReady)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn readline(&mut self) -> Result<Async<Bytes>, PayloadError> {
|
|
|
|
self.readuntil(b"\n")
|
|
|
|
}
|
|
|
|
|
2017-10-14 09:11:12 +02:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn readall(&mut self) -> Option<Bytes> {
|
|
|
|
let len = self.items.iter().fold(0, |cur, item| cur + item.len());
|
|
|
|
if len > 0 {
|
|
|
|
let mut buf = BytesMut::with_capacity(len);
|
|
|
|
for item in &self.items {
|
|
|
|
buf.extend(item);
|
|
|
|
}
|
|
|
|
self.items = VecDeque::new();
|
2017-10-19 08:43:50 +02:00
|
|
|
self.len = 0;
|
2017-10-14 09:11:12 +02:00
|
|
|
Some(buf.take().freeze())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:16:48 +02:00
|
|
|
pub fn unread_data(&mut self, data: Bytes) {
|
|
|
|
self.len += data.len();
|
|
|
|
self.items.push_front(data)
|
|
|
|
}
|
|
|
|
}
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
use futures::future::{lazy, result};
|
|
|
|
use tokio_core::reactor::Core;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_basic() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (_, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
assert!(!payload.eof());
|
|
|
|
assert!(payload.is_empty());
|
|
|
|
assert_eq!(payload.len(), 0);
|
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::NotReady => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_eof() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::NotReady => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(!payload.eof());
|
|
|
|
|
|
|
|
sender.feed_data(Bytes::from("data"));
|
|
|
|
sender.feed_eof();
|
|
|
|
|
|
|
|
assert!(!payload.eof());
|
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::Ready(Some(data)) => assert_eq!(&data.unwrap(), "data"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
assert!(payload.is_empty());
|
|
|
|
assert!(payload.eof());
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 0);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::Ready(None) => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_err() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::NotReady => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
sender.set_error(PayloadError::Incomplete);
|
|
|
|
match payload.readany() {
|
|
|
|
Async::Ready(Some(data)) => assert!(data.is_err()),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_readany() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
sender.feed_data(Bytes::from("line1"));
|
|
|
|
|
|
|
|
assert!(!payload.is_empty());
|
|
|
|
assert_eq!(payload.len(), 5);
|
|
|
|
|
|
|
|
sender.feed_data(Bytes::from("line2"));
|
|
|
|
assert!(!payload.is_empty());
|
|
|
|
assert_eq!(payload.len(), 10);
|
|
|
|
|
|
|
|
match payload.readany() {
|
|
|
|
Async::Ready(Some(data)) => assert_eq!(&data.unwrap(), "line1"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
assert!(!payload.is_empty());
|
|
|
|
assert_eq!(payload.len(), 5);
|
|
|
|
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_readexactly() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
match payload.readexactly(2) {
|
|
|
|
Ok(Async::NotReady) => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
sender.feed_data(Bytes::from("line1"));
|
|
|
|
sender.feed_data(Bytes::from("line2"));
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 10);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
match payload.readexactly(2) {
|
|
|
|
Ok(Async::Ready(data)) => assert_eq!(&data, "li"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 8);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
match payload.readexactly(4) {
|
|
|
|
Ok(Async::Ready(data)) => assert_eq!(&data, "ne1l"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 4);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
sender.set_error(PayloadError::Incomplete);
|
|
|
|
match payload.readexactly(10) {
|
|
|
|
Err(_) => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_readuntil() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
match payload.readuntil(b"ne") {
|
|
|
|
Ok(Async::NotReady) => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
sender.feed_data(Bytes::from("line1"));
|
|
|
|
sender.feed_data(Bytes::from("line2"));
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 10);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
match payload.readuntil(b"ne") {
|
|
|
|
Ok(Async::Ready(data)) => assert_eq!(&data, "line"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 6);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
match payload.readuntil(b"2") {
|
|
|
|
Ok(Async::Ready(data)) => assert_eq!(&data, "1line2"),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
2017-10-23 05:07:18 +02:00
|
|
|
assert_eq!(payload.len(), 0);
|
2017-10-23 04:58:50 +02:00
|
|
|
|
|
|
|
sender.set_error(PayloadError::Incomplete);
|
|
|
|
match payload.readuntil(b"b") {
|
|
|
|
Err(_) => (),
|
|
|
|
_ => panic!("error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pause() {
|
|
|
|
Core::new().unwrap().run(lazy(|| {
|
|
|
|
let (mut sender, mut payload) = Payload::new(false);
|
|
|
|
|
|
|
|
assert!(!payload.paused());
|
|
|
|
assert!(!sender.maybe_paused());
|
|
|
|
|
|
|
|
for _ in 0..MAX_PAYLOAD_SIZE+1 {
|
|
|
|
sender.feed_data(Bytes::from("1"));
|
|
|
|
}
|
|
|
|
assert!(sender.maybe_paused());
|
|
|
|
assert!(payload.paused());
|
|
|
|
|
|
|
|
payload.readexactly(10).unwrap();
|
|
|
|
assert!(!sender.maybe_paused());
|
|
|
|
assert!(!payload.paused());
|
|
|
|
|
|
|
|
let res: Result<(), ()> = Ok(());
|
|
|
|
result(res)
|
|
|
|
})).unwrap();
|
|
|
|
}
|
|
|
|
}
|