This commit is contained in:
Nikolay Kim 2023-09-05 15:49:49 +06:00
parent d06fded946
commit 19cc8ab315
9 changed files with 22 additions and 36 deletions

View file

@ -187,7 +187,7 @@ pub trait BufMut {
let d = self.chunk_mut(); let d = self.chunk_mut();
l = cmp::min(s.len(), d.len()); l = cmp::min(s.len(), d.len());
ptr::copy_nonoverlapping(s.as_ptr(), d.as_mut_ptr() as *mut u8, l); ptr::copy_nonoverlapping(s.as_ptr(), d.as_mut_ptr(), l);
} }
src.advance(l); src.advance(l);
@ -228,11 +228,7 @@ pub trait BufMut {
let dst = self.chunk_mut(); let dst = self.chunk_mut();
cnt = cmp::min(dst.len(), src.len() - off); cnt = cmp::min(dst.len(), src.len() - off);
ptr::copy_nonoverlapping( ptr::copy_nonoverlapping(src[off..].as_ptr(), dst.as_mut_ptr(), cnt);
src[off..].as_ptr(),
dst.as_mut_ptr() as *mut u8,
cnt,
);
off += cnt; off += cnt;
} }

View file

@ -1607,11 +1607,7 @@ impl BufMut for BytesMut {
self.reserve(len); self.reserve(len);
unsafe { unsafe {
ptr::copy_nonoverlapping( ptr::copy_nonoverlapping(src.as_ptr(), self.chunk_mut().as_mut_ptr(), len);
src.as_ptr(),
self.chunk_mut().as_mut_ptr() as *mut u8,
len,
);
self.advance_mut(len); self.advance_mut(len);
} }
} }
@ -2418,11 +2414,7 @@ impl BufMut for BytesVec {
self.reserve(len); self.reserve(len);
unsafe { unsafe {
ptr::copy_nonoverlapping( ptr::copy_nonoverlapping(src.as_ptr(), self.chunk_mut().as_mut_ptr(), len);
src.as_ptr(),
self.chunk_mut().as_mut_ptr() as *mut u8,
len,
);
self.advance_mut(len); self.advance_mut(len);
} }
} }

View file

@ -1,8 +1,7 @@
//! utilities and helpers for testing //! utilities and helpers for testing
use std::cell::{Cell, RefCell};
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use std::task::{ready, Context, Poll, Waker}; use std::task::{ready, Context, Poll, Waker};
use std::{any, cmp, fmt, future::Future, io, mem, net, pin::Pin, rc::Rc}; use std::{any, cell::RefCell, cmp, fmt, future::Future, io, mem, net, pin::Pin, rc::Rc};
use ntex_bytes::{Buf, BufMut, Bytes, BytesVec}; use ntex_bytes::{Buf, BufMut, Bytes, BytesVec};
use ntex_util::future::poll_fn; use ntex_util::future::poll_fn;
@ -32,7 +31,7 @@ impl fmt::Debug for AtomicWaker {
pub struct IoTest { pub struct IoTest {
tp: Type, tp: Type,
peer_addr: Option<net::SocketAddr>, peer_addr: Option<net::SocketAddr>,
state: Arc<Cell<State>>, state: Arc<Mutex<RefCell<State>>>,
local: Arc<Mutex<RefCell<Channel>>>, local: Arc<Mutex<RefCell<Channel>>>,
remote: Arc<Mutex<RefCell<Channel>>>, remote: Arc<Mutex<RefCell<Channel>>>,
} }
@ -68,6 +67,9 @@ struct Channel {
write: IoTestState, write: IoTestState,
} }
unsafe impl Sync for Channel {}
unsafe impl Send for Channel {}
impl Channel { impl Channel {
fn is_closed(&self) -> bool { fn is_closed(&self) -> bool {
self.flags.contains(IoTestFlags::CLOSED) self.flags.contains(IoTestFlags::CLOSED)
@ -94,7 +96,7 @@ impl IoTest {
pub fn create() -> (IoTest, IoTest) { pub fn create() -> (IoTest, IoTest) {
let local = Arc::new(Mutex::new(RefCell::new(Channel::default()))); let local = Arc::new(Mutex::new(RefCell::new(Channel::default())));
let remote = Arc::new(Mutex::new(RefCell::new(Channel::default()))); let remote = Arc::new(Mutex::new(RefCell::new(Channel::default())));
let state = Arc::new(Cell::new(State::default())); let state = Arc::new(Mutex::new(RefCell::new(State::default())));
( (
IoTest { IoTest {
@ -115,11 +117,11 @@ impl IoTest {
} }
pub fn is_client_dropped(&self) -> bool { pub fn is_client_dropped(&self) -> bool {
self.state.get().client_dropped self.state.lock().unwrap().borrow().client_dropped
} }
pub fn is_server_dropped(&self) -> bool { pub fn is_server_dropped(&self) -> bool {
self.state.get().server_dropped self.state.lock().unwrap().borrow().server_dropped
} }
/// Check if channel is closed from remoote side /// Check if channel is closed from remoote side
@ -332,13 +334,13 @@ impl Clone for IoTest {
impl Drop for IoTest { impl Drop for IoTest {
fn drop(&mut self) { fn drop(&mut self) {
let mut state = self.state.get(); let mut state = *self.state.lock().unwrap().borrow();
match self.tp { match self.tp {
Type::Server => state.server_dropped = true, Type::Server => state.server_dropped = true,
Type::Client => state.client_dropped = true, Type::Client => state.client_dropped = true,
_ => (), _ => (),
} }
self.state.set(state); *self.state.lock().unwrap().borrow_mut() = state;
let guard = self.remote.lock().unwrap(); let guard = self.remote.lock().unwrap();
let mut remote = guard.borrow_mut(); let mut remote = guard.borrow_mut();

View file

@ -144,11 +144,7 @@ impl<'a, S> Copy for ServiceCtx<'a, S> {}
impl<'a, S> Clone for ServiceCtx<'a, S> { impl<'a, S> Clone for ServiceCtx<'a, S> {
#[inline] #[inline]
fn clone(&self) -> Self { fn clone(&self) -> Self {
Self { *self
idx: self.idx,
waiters: self.waiters,
_t: marker::PhantomData,
}
} }
} }

View file

@ -53,7 +53,7 @@ impl Extensions {
/// Add all items from other `Extensions` /// Add all items from other `Extensions`
pub fn extend(&mut self, other: Extensions) { pub fn extend(&mut self, other: Extensions) {
self.map.extend(other.map.into_iter()); self.map.extend(other.map);
} }
#[inline] #[inline]

View file

@ -73,7 +73,7 @@ pub struct Connect {
#[derive(Clone)] #[derive(Clone)]
pub struct Client(Rc<ClientConfig>); pub struct Client(Rc<ClientConfig>);
pub(self) struct ClientConfig { struct ClientConfig {
pub(self) connector: Box<dyn HttpConnect>, pub(self) connector: Box<dyn HttpConnect>,
pub(self) headers: HeaderMap, pub(self) headers: HeaderMap,
pub(self) timeout: Millis, pub(self) timeout: Millis,

View file

@ -9,7 +9,7 @@ mod encoder;
pub use self::decoder::Decoder; pub use self::decoder::Decoder;
pub use self::encoder::Encoder; pub use self::encoder::Encoder;
pub(self) struct Writer { struct Writer {
buf: BytesMut, buf: BytesMut,
} }

View file

@ -114,7 +114,7 @@ pub(super) trait MessageType: Sized {
let mut pos = 0; let mut pos = 0;
let mut has_date = false; let mut has_date = false;
let mut remaining = dst.capacity() - dst.len(); let mut remaining = dst.capacity() - dst.len();
let mut buf = dst.chunk_mut().as_mut_ptr() as *mut u8; let mut buf = dst.chunk_mut().as_mut_ptr();
for (key, value) in headers { for (key, value) in headers {
match *key { match *key {
CONNECTION => continue, CONNECTION => continue,
@ -138,7 +138,7 @@ pub(super) trait MessageType: Sized {
pos = 0; pos = 0;
dst.reserve(len * 2); dst.reserve(len * 2);
remaining = dst.capacity() - dst.len(); remaining = dst.capacity() - dst.len();
buf = dst.chunk_mut().as_mut_ptr() as *mut u8; buf = dst.chunk_mut().as_mut_ptr();
} }
copy_nonoverlapping(k.as_ptr(), buf, k_len); copy_nonoverlapping(k.as_ptr(), buf, k_len);
buf = buf.add(k_len); buf = buf.add(k_len);
@ -165,7 +165,7 @@ pub(super) trait MessageType: Sized {
pos = 0; pos = 0;
dst.reserve(len * 2); dst.reserve(len * 2);
remaining = dst.capacity() - dst.len(); remaining = dst.capacity() - dst.len();
buf = dst.chunk_mut().as_mut_ptr() as *mut u8; buf = dst.chunk_mut().as_mut_ptr();
} }
copy_nonoverlapping(k.as_ptr(), buf, k_len); copy_nonoverlapping(k.as_ptr(), buf, k_len);
buf = buf.add(k_len); buf = buf.add(k_len);

View file

@ -37,7 +37,7 @@ pub enum ServerStatus {
/// Socket id token /// Socket id token
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub(self) struct Token(usize); struct Token(usize);
impl Token { impl Token {
pub(self) fn next(&mut self) -> Token { pub(self) fn next(&mut self) -> Token {