This commit is contained in:
Nikolay Kim 2021-06-26 14:04:49 +06:00
parent d997890c8f
commit 630942bc68
6 changed files with 64 additions and 87 deletions

View file

@ -1,4 +1,4 @@
use std::{cmp, io::IoSlice, mem, ptr}; use std::{cmp, mem, ptr};
macro_rules! buf_get_impl { macro_rules! buf_get_impl {
($this:ident, $typ:tt::$conv:tt) => {{ ($this:ident, $typ:tt::$conv:tt) => {{
@ -120,46 +120,6 @@ pub trait Buf {
/// empty slice. /// empty slice.
fn chunk(&self) -> &[u8]; fn chunk(&self) -> &[u8];
/// Fills `dst` with potentially multiple slices starting at `self`'s
/// current position.
///
/// If the `Buf` is backed by disjoint slices of bytes, `bytes_vectored` enables
/// fetching more than one slice at once. `dst` is a slice of `IoSlice`
/// references, enabling the slice to be directly used with [`writev`]
/// without any further conversion. The sum of the lengths of all the
/// buffers in `dst` will be less than or equal to `Buf::remaining()`.
///
/// The entries in `dst` will be overwritten, but the data **contained** by
/// the slices **will not** be modified. If `bytes_vectored` does not fill every
/// entry in `dst`, then `dst` is guaranteed to contain all remaining slices
/// in `self.
///
/// This is a lower level function. Most operations are done with other
/// functions.
///
/// # Implementer notes
///
/// This function should never panic. Once the end of the buffer is reached,
/// i.e., `Buf::remaining` returns 0, calls to `bytes_vectored` must return 0
/// without mutating `dst`.
///
/// Implementations should also take care to properly handle being called
/// with `dst` being a zero length slice.
///
/// [`writev`]: http://man7.org/linux/man-pages/man2/readv.2.html
fn bytes_vectored<'a>(&'a self, dst: &mut [IoSlice<'a>]) -> usize {
if dst.is_empty() {
return 0;
}
if self.has_remaining() {
dst[0] = IoSlice::new(self.chunk());
1
} else {
0
}
}
/// Advance the internal cursor of the Buf /// Advance the internal cursor of the Buf
/// ///
/// The next call to `bytes` will return a slice starting `cnt` bytes /// The next call to `bytes` will return a slice starting `cnt` bytes
@ -271,6 +231,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is no more remaining data in `self`. /// This function panics if there is no more remaining data in `self`.
#[inline]
fn get_u8(&mut self) -> u8 { fn get_u8(&mut self) -> u8 {
assert!(self.remaining() >= 1); assert!(self.remaining() >= 1);
let ret = self.chunk()[0]; let ret = self.chunk()[0];
@ -294,6 +255,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is no more remaining data in `self`. /// This function panics if there is no more remaining data in `self`.
#[inline]
fn get_i8(&mut self) -> i8 { fn get_i8(&mut self) -> i8 {
assert!(self.remaining() >= 1); assert!(self.remaining() >= 1);
let ret = self.chunk()[0] as i8; let ret = self.chunk()[0] as i8;
@ -317,6 +279,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u16(&mut self) -> u16 { fn get_u16(&mut self) -> u16 {
buf_get_impl!(self, u16::from_be_bytes); buf_get_impl!(self, u16::from_be_bytes);
} }
@ -337,6 +300,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u16_le(&mut self) -> u16 { fn get_u16_le(&mut self) -> u16 {
buf_get_impl!(self, u16::from_le_bytes); buf_get_impl!(self, u16::from_le_bytes);
} }
@ -357,6 +321,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i16(&mut self) -> i16 { fn get_i16(&mut self) -> i16 {
buf_get_impl!(self, i16::from_be_bytes); buf_get_impl!(self, i16::from_be_bytes);
} }
@ -377,6 +342,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i16_le(&mut self) -> i16 { fn get_i16_le(&mut self) -> i16 {
buf_get_impl!(self, i16::from_le_bytes); buf_get_impl!(self, i16::from_le_bytes);
} }
@ -397,6 +363,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u32(&mut self) -> u32 { fn get_u32(&mut self) -> u32 {
buf_get_impl!(self, u32::from_be_bytes); buf_get_impl!(self, u32::from_be_bytes);
} }
@ -417,6 +384,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u32_le(&mut self) -> u32 { fn get_u32_le(&mut self) -> u32 {
buf_get_impl!(self, u32::from_le_bytes); buf_get_impl!(self, u32::from_le_bytes);
} }
@ -437,6 +405,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i32(&mut self) -> i32 { fn get_i32(&mut self) -> i32 {
buf_get_impl!(self, i32::from_be_bytes); buf_get_impl!(self, i32::from_be_bytes);
} }
@ -457,6 +426,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i32_le(&mut self) -> i32 { fn get_i32_le(&mut self) -> i32 {
buf_get_impl!(self, i32::from_le_bytes); buf_get_impl!(self, i32::from_le_bytes);
} }
@ -477,6 +447,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u64(&mut self) -> u64 { fn get_u64(&mut self) -> u64 {
buf_get_impl!(self, u64::from_be_bytes); buf_get_impl!(self, u64::from_be_bytes);
} }
@ -497,6 +468,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u64_le(&mut self) -> u64 { fn get_u64_le(&mut self) -> u64 {
buf_get_impl!(self, u64::from_le_bytes); buf_get_impl!(self, u64::from_le_bytes);
} }
@ -517,6 +489,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i64(&mut self) -> i64 { fn get_i64(&mut self) -> i64 {
buf_get_impl!(self, i64::from_be_bytes); buf_get_impl!(self, i64::from_be_bytes);
} }
@ -537,6 +510,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i64_le(&mut self) -> i64 { fn get_i64_le(&mut self) -> i64 {
buf_get_impl!(self, i64::from_le_bytes); buf_get_impl!(self, i64::from_le_bytes);
} }
@ -557,6 +531,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u128(&mut self) -> u128 { fn get_u128(&mut self) -> u128 {
buf_get_impl!(self, u128::from_be_bytes); buf_get_impl!(self, u128::from_be_bytes);
} }
@ -577,6 +552,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_u128_le(&mut self) -> u128 { fn get_u128_le(&mut self) -> u128 {
buf_get_impl!(self, u128::from_le_bytes); buf_get_impl!(self, u128::from_le_bytes);
} }
@ -597,6 +573,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i128(&mut self) -> i128 { fn get_i128(&mut self) -> i128 {
buf_get_impl!(self, i128::from_be_bytes); buf_get_impl!(self, i128::from_be_bytes);
} }
@ -617,6 +594,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_i128_le(&mut self) -> i128 { fn get_i128_le(&mut self) -> i128 {
buf_get_impl!(self, i128::from_le_bytes); buf_get_impl!(self, i128::from_le_bytes);
} }
@ -637,6 +615,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_uint(&mut self, nbytes: usize) -> u64 { fn get_uint(&mut self, nbytes: usize) -> u64 {
buf_get_impl!(be => self, u64, nbytes); buf_get_impl!(be => self, u64, nbytes);
} }
@ -657,6 +636,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_uint_le(&mut self, nbytes: usize) -> u64 { fn get_uint_le(&mut self, nbytes: usize) -> u64 {
buf_get_impl!(le => self, u64, nbytes); buf_get_impl!(le => self, u64, nbytes);
} }
@ -677,6 +657,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_int(&mut self, nbytes: usize) -> i64 { fn get_int(&mut self, nbytes: usize) -> i64 {
buf_get_impl!(be => self, i64, nbytes); buf_get_impl!(be => self, i64, nbytes);
} }
@ -697,6 +678,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_int_le(&mut self, nbytes: usize) -> i64 { fn get_int_le(&mut self, nbytes: usize) -> i64 {
buf_get_impl!(le => self, i64, nbytes); buf_get_impl!(le => self, i64, nbytes);
} }
@ -718,6 +700,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_f32(&mut self) -> f32 { fn get_f32(&mut self) -> f32 {
f32::from_bits(Self::get_u32(self)) f32::from_bits(Self::get_u32(self))
} }
@ -739,6 +722,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_f32_le(&mut self) -> f32 { fn get_f32_le(&mut self) -> f32 {
f32::from_bits(Self::get_u32_le(self)) f32::from_bits(Self::get_u32_le(self))
} }
@ -760,6 +744,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_f64(&mut self) -> f64 { fn get_f64(&mut self) -> f64 {
f64::from_bits(Self::get_u64(self)) f64::from_bits(Self::get_u64(self))
} }
@ -781,6 +766,7 @@ pub trait Buf {
/// # Panics /// # Panics
/// ///
/// This function panics if there is not enough remaining data in `self`. /// This function panics if there is not enough remaining data in `self`.
#[inline]
fn get_f64_le(&mut self) -> f64 { fn get_f64_le(&mut self) -> f64 {
f64::from_bits(Self::get_u64_le(self)) f64::from_bits(Self::get_u64_le(self))
} }
@ -795,6 +781,8 @@ pub trait Buf {
/// let bytes = "hello world".to_bytes(); /// let bytes = "hello world".to_bytes();
/// assert_eq!(&bytes[..], &b"hello world"[..]); /// assert_eq!(&bytes[..], &b"hello world"[..]);
/// ``` /// ```
#[inline]
#[allow(clippy::wrong_self_convention)]
fn to_bytes(&mut self) -> crate::Bytes { fn to_bytes(&mut self) -> crate::Bytes {
use super::BufMut; use super::BufMut;
let mut ret = crate::BytesMut::with_capacity(self.remaining()); let mut ret = crate::BytesMut::with_capacity(self.remaining());
@ -804,36 +792,33 @@ pub trait Buf {
} }
impl<T: Buf + ?Sized> Buf for &mut T { impl<T: Buf + ?Sized> Buf for &mut T {
#[inline]
fn remaining(&self) -> usize { fn remaining(&self) -> usize {
(**self).remaining() (**self).remaining()
} }
#[inline]
fn chunk(&self) -> &[u8] { fn chunk(&self) -> &[u8] {
(**self).chunk() (**self).chunk()
} }
fn bytes_vectored<'b>(&'b self, dst: &mut [IoSlice<'b>]) -> usize { #[inline]
(**self).bytes_vectored(dst)
}
fn advance(&mut self, cnt: usize) { fn advance(&mut self, cnt: usize) {
(**self).advance(cnt) (**self).advance(cnt)
} }
} }
impl<T: Buf + ?Sized> Buf for Box<T> { impl<T: Buf + ?Sized> Buf for Box<T> {
#[inline]
fn remaining(&self) -> usize { fn remaining(&self) -> usize {
(**self).remaining() (**self).remaining()
} }
#[inline]
fn chunk(&self) -> &[u8] { fn chunk(&self) -> &[u8] {
(**self).chunk() (**self).chunk()
} }
fn bytes_vectored<'b>(&'b self, dst: &mut [IoSlice<'b>]) -> usize {
(**self).bytes_vectored(dst)
}
fn advance(&mut self, cnt: usize) { fn advance(&mut self, cnt: usize) {
(**self).advance(cnt) (**self).advance(cnt)
} }
@ -883,9 +868,7 @@ impl Buf for Option<[u8; 1]> {
} }
fn chunk(&self) -> &[u8] { fn chunk(&self) -> &[u8] {
self.as_ref() self.as_ref().map(AsRef::as_ref).unwrap_or_default()
.map(AsRef::as_ref)
.unwrap_or(Default::default())
} }
fn advance(&mut self, cnt: usize) { fn advance(&mut self, cnt: usize) {

View file

@ -88,6 +88,7 @@ pub trait BufMut {
/// the call must behave as if `cnt == self.remaining_mut()`. /// the call must behave as if `cnt == self.remaining_mut()`.
/// ///
/// A call with `cnt == 0` should never panic and be a no-op. /// A call with `cnt == 0` should never panic and be a no-op.
#[allow(clippy::missing_safety_doc)]
unsafe fn advance_mut(&mut self, cnt: usize); unsafe fn advance_mut(&mut self, cnt: usize);
/// Returns true if there is space in `self` for more bytes. /// Returns true if there is space in `self` for more bytes.

View file

@ -142,6 +142,7 @@ impl UninitSlice {
/// assert_eq!(len, 3); /// assert_eq!(len, 3);
/// ``` /// ```
#[inline] #[inline]
#[allow(clippy::len_without_is_empty)]
pub fn len(&self) -> usize { pub fn len(&self) -> usize {
self.0.len() self.0.len()
} }

View file

@ -884,7 +884,7 @@ impl Bytes {
/// assert_eq!(iter.next().map(|b| *b), Some(b'c')); /// assert_eq!(iter.next().map(|b| *b), Some(b'c'));
/// assert_eq!(iter.next(), None); /// assert_eq!(iter.next(), None);
/// ``` /// ```
pub fn iter<'a>(&'a self) -> std::slice::Iter<'a, u8> { pub fn iter(&'_ self) -> std::slice::Iter<'_, u8> {
self.chunk().iter() self.chunk().iter()
} }
} }
@ -1022,7 +1022,7 @@ impl FromIterator<u8> for Bytes {
impl<'a> FromIterator<&'a u8> for BytesMut { impl<'a> FromIterator<&'a u8> for BytesMut {
fn from_iter<T: IntoIterator<Item = &'a u8>>(into_iter: T) -> Self { fn from_iter<T: IntoIterator<Item = &'a u8>>(into_iter: T) -> Self {
BytesMut::from_iter(into_iter.into_iter().map(|b| *b)) BytesMut::from_iter(into_iter.into_iter().copied())
} }
} }
@ -1095,7 +1095,7 @@ impl<'a> IntoIterator for &'a Bytes {
type IntoIter = std::slice::Iter<'a, u8>; type IntoIter = std::slice::Iter<'a, u8>;
fn into_iter(self) -> Self::IntoIter { fn into_iter(self) -> Self::IntoIter {
self.as_ref().into_iter() self.as_ref().iter()
} }
} }
@ -1133,7 +1133,7 @@ impl<'a> Extend<&'a u8> for Bytes {
where where
T: IntoIterator<Item = &'a u8>, T: IntoIterator<Item = &'a u8>,
{ {
self.extend(iter.into_iter().map(|b| *b)) self.extend(iter.into_iter().copied())
} }
} }
@ -1479,6 +1479,7 @@ impl BytesMut {
/// This method will panic if `len` is out of bounds for the underlying /// This method will panic if `len` is out of bounds for the underlying
/// slice or if it comes after the `end` of the configured window. /// slice or if it comes after the `end` of the configured window.
#[inline] #[inline]
#[allow(clippy::missing_safety_doc)]
pub unsafe fn set_len(&mut self, len: usize) { pub unsafe fn set_len(&mut self, len: usize) {
self.inner.set_len(len) self.inner.set_len(len)
} }
@ -1614,7 +1615,7 @@ impl BytesMut {
/// assert_eq!(iter.next().map(|b| *b), Some(b'c')); /// assert_eq!(iter.next().map(|b| *b), Some(b'c'));
/// assert_eq!(iter.next(), None); /// assert_eq!(iter.next(), None);
/// ``` /// ```
pub fn iter<'a>(&'a self) -> std::slice::Iter<'a, u8> { pub fn iter(&'_ self) -> std::slice::Iter<'_, u8> {
self.chunk().iter() self.chunk().iter()
} }
} }
@ -1870,7 +1871,7 @@ impl<'a> IntoIterator for &'a BytesMut {
type IntoIter = std::slice::Iter<'a, u8>; type IntoIter = std::slice::Iter<'a, u8>;
fn into_iter(self) -> Self::IntoIter { fn into_iter(self) -> Self::IntoIter {
self.as_ref().into_iter() self.as_ref().iter()
} }
} }
@ -1895,7 +1896,7 @@ impl<'a> Extend<&'a u8> for BytesMut {
where where
T: IntoIterator<Item = &'a u8>, T: IntoIterator<Item = &'a u8>,
{ {
self.extend(iter.into_iter().map(|b| *b)) self.extend(iter.into_iter().copied())
} }
} }
@ -2000,13 +2001,13 @@ impl Inner {
let len = self.inline_len(); let len = self.inline_len();
assert!(len < INLINE_CAP); assert!(len < INLINE_CAP);
unsafe { unsafe {
*self.inline_ptr().offset(len as isize) = n; *self.inline_ptr().add(len) = n;
} }
self.set_inline_len(len + 1); self.set_inline_len(len + 1);
} else { } else {
assert!(self.len < self.cap); assert!(self.len < self.cap);
unsafe { unsafe {
*self.ptr.offset(self.len as isize) = n; *self.ptr.add(self.len) = n;
} }
self.len += 1; self.len += 1;
} }
@ -2109,7 +2110,7 @@ impl Inner {
} }
unsafe { unsafe {
ptr = self.ptr.offset(self.len as isize); ptr = self.ptr.add(self.len);
} }
if ptr == other.ptr && self.kind() == KIND_ARC && other.kind() == KIND_ARC { if ptr == other.ptr && self.kind() == KIND_ARC && other.kind() == KIND_ARC {
debug_assert_eq!(self.arc.load(Acquire), other.arc.load(Acquire)); debug_assert_eq!(self.arc.load(Acquire), other.arc.load(Acquire));
@ -2163,7 +2164,7 @@ impl Inner {
let new_len = len - start; let new_len = len - start;
let dst = self.inline_ptr(); let dst = self.inline_ptr();
let src = (dst as *const u8).offset(start as isize); let src = (dst as *const u8).add(start);
ptr::copy(src, dst, new_len); ptr::copy(src, dst, new_len);
@ -2194,7 +2195,7 @@ impl Inner {
// Updating the start of the view is setting `ptr` to point to the // Updating the start of the view is setting `ptr` to point to the
// new start and updating the `len` field to reflect the new length // new start and updating the `len` field to reflect the new length
// of the view. // of the view.
self.ptr = self.ptr.offset(start as isize); self.ptr = self.ptr.add(start);
if self.len >= start { if self.len >= start {
self.len -= start; self.len -= start;
@ -2229,12 +2230,10 @@ impl Inner {
// Always check `inline` first, because if the handle is using inline // Always check `inline` first, because if the handle is using inline
// data storage, all of the `Inner` struct fields will be gibberish. // data storage, all of the `Inner` struct fields will be gibberish.
if kind == KIND_INLINE { if kind == KIND_INLINE || kind == KIND_VEC {
// Inlined buffers can always be mutated as the data is never shared // Inlined buffers can always be mutated as the data is never shared
// across handles. // across handles.
true true
} else if kind == KIND_VEC {
true
} else if kind == KIND_STATIC { } else if kind == KIND_STATIC {
false false
} else { } else {
@ -2462,7 +2461,7 @@ impl Inner {
v.reserve(additional); v.reserve(additional);
// Update the info // Update the info
self.ptr = v.as_mut_ptr().offset(off as isize); self.ptr = v.as_mut_ptr().add(off);
self.len = v.len() - off; self.len = v.len() - off;
self.cap = v.capacity() - off; self.cap = v.capacity() - off;
@ -2569,19 +2568,13 @@ impl Inner {
/// safe to check VEC_KIND /// safe to check VEC_KIND
#[inline] #[inline]
fn is_shared(&mut self) -> bool { fn is_shared(&mut self) -> bool {
match self.kind() { !matches!(self.kind(), KIND_VEC)
KIND_VEC => false,
_ => true,
}
} }
/// Used for `debug_assert` statements /// Used for `debug_assert` statements
#[inline] #[inline]
fn is_static(&mut self) -> bool { fn is_static(&mut self) -> bool {
match self.kind() { matches!(self.kind(), KIND_STATIC)
KIND_STATIC => true,
_ => false,
}
} }
#[inline] #[inline]
@ -2651,7 +2644,7 @@ impl Inner {
unsafe { unsafe {
let p: &mut AtomicPtr<Shared> = &mut self.arc; let p: &mut AtomicPtr<Shared> = &mut self.arc;
let p: &mut usize = mem::transmute(p); let p: &mut usize = &mut *(p as *mut _ as *mut usize);
*p = (pos << VEC_POS_OFFSET) | (prev & NOT_VEC_POS_MASK); *p = (pos << VEC_POS_OFFSET) | (prev & NOT_VEC_POS_MASK);
} }
} }
@ -2854,7 +2847,7 @@ impl PartialOrd<BytesMut> for str {
impl PartialEq<Vec<u8>> for BytesMut { impl PartialEq<Vec<u8>> for BytesMut {
fn eq(&self, other: &Vec<u8>) -> bool { fn eq(&self, other: &Vec<u8>) -> bool {
*self == &other[..] *self == other[..]
} }
} }
@ -2878,7 +2871,7 @@ impl PartialOrd<BytesMut> for Vec<u8> {
impl PartialEq<String> for BytesMut { impl PartialEq<String> for BytesMut {
fn eq(&self, other: &String) -> bool { fn eq(&self, other: &String) -> bool {
*self == &other[..] *self == other[..]
} }
} }
@ -2992,7 +2985,7 @@ impl PartialOrd<Bytes> for str {
impl PartialEq<Vec<u8>> for Bytes { impl PartialEq<Vec<u8>> for Bytes {
fn eq(&self, other: &Vec<u8>) -> bool { fn eq(&self, other: &Vec<u8>) -> bool {
*self == &other[..] *self == other[..]
} }
} }
@ -3016,7 +3009,7 @@ impl PartialOrd<Bytes> for Vec<u8> {
impl PartialEq<String> for Bytes { impl PartialEq<String> for Bytes {
fn eq(&self, other: &String) -> bool { fn eq(&self, other: &String) -> bool {
*self == &other[..] *self == other[..]
} }
} }
@ -3082,13 +3075,13 @@ where
impl PartialEq<BytesMut> for Bytes { impl PartialEq<BytesMut> for Bytes {
fn eq(&self, other: &BytesMut) -> bool { fn eq(&self, other: &BytesMut) -> bool {
&other[..] == &self[..] other[..] == self[..]
} }
} }
impl PartialEq<Bytes> for BytesMut { impl PartialEq<Bytes> for BytesMut {
fn eq(&self, other: &Bytes) -> bool { fn eq(&self, other: &Bytes) -> bool {
&other[..] == &self[..] other[..] == self[..]
} }
} }

View file

@ -28,7 +28,7 @@ impl fmt::Debug for BsDebug<'_> {
} else if c == b'\0' { } else if c == b'\0' {
write!(fmt, "\\0")?; write!(fmt, "\\0")?;
// ASCII printable // ASCII printable
} else if c >= 0x20 && c < 0x7f { } else if (0x20..0x7f).contains(&c) {
write!(fmt, "{}", c as char)?; write!(fmt, "{}", c as char)?;
} else { } else {
write!(fmt, "\\x{:02x}", c)?; write!(fmt, "\\x{:02x}", c)?;

View file

@ -550,10 +550,9 @@ impl<T, U> FramedParts<T, U> {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use bytes::Bytes; use futures::{future::lazy, Sink};
use futures::future::lazy;
use futures::Sink;
use ntex::testing::Io; use ntex::testing::Io;
use ntex_bytes::Bytes;
use super::*; use super::*;
use crate::BytesCodec; use crate::BytesCodec;