1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 09:23:54 +00:00

Revert "remove unnecessary use of unsafe in read_from_io"

This reverts commit da237611cb.
This commit is contained in:
Nikolay Kim 2018-06-22 08:55:19 +06:00
parent 3afdf3fa7e
commit 17c033030b

View file

@ -1,5 +1,5 @@
use bytes::{BufMut, BytesMut};
use futures::Poll;
use futures::{Async, Poll};
use std::io;
use super::IoStream;
@ -10,8 +10,22 @@ const HW_BUFFER_SIZE: usize = 32_768;
pub fn read_from_io<T: IoStream>(
io: &mut T, buf: &mut BytesMut,
) -> Poll<usize, io::Error> {
unsafe {
if buf.remaining_mut() < LW_BUFFER_SIZE {
buf.reserve(HW_BUFFER_SIZE);
}
io.read_buf(buf)
match io.read(buf.bytes_mut()) {
Ok(n) => {
buf.advance_mut(n);
Ok(Async::Ready(n))
}
Err(e) => {
if e.kind() == io::ErrorKind::WouldBlock {
Ok(Async::NotReady)
} else {
Err(e)
}
}
}
}
}