mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Update neon apis (#520)
This commit is contained in:
parent
ecfc2936b5
commit
cfc32ed74f
8 changed files with 17 additions and 25 deletions
|
@ -45,6 +45,8 @@ ntex-util = { path = "ntex-util" }
|
||||||
ntex-compio = { path = "ntex-compio" }
|
ntex-compio = { path = "ntex-compio" }
|
||||||
ntex-tokio = { path = "ntex-tokio" }
|
ntex-tokio = { path = "ntex-tokio" }
|
||||||
|
|
||||||
|
ntex-neon = { git = "https://github.com/ntex-rs/neon.git" }
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
async-task = "4.5.0"
|
async-task = "4.5.0"
|
||||||
bitflags = "2"
|
bitflags = "2"
|
||||||
|
|
|
@ -40,7 +40,7 @@ ntex-util = "2.5"
|
||||||
|
|
||||||
ntex-tokio = { version = "0.5.3", optional = true }
|
ntex-tokio = { version = "0.5.3", optional = true }
|
||||||
ntex-compio = { version = "0.2.4", optional = true }
|
ntex-compio = { version = "0.2.4", optional = true }
|
||||||
ntex-neon = { version = "0.1.0", optional = true }
|
ntex-neon = { version = "0.1.1", optional = true }
|
||||||
|
|
||||||
bitflags = { workspace = true }
|
bitflags = { workspace = true }
|
||||||
cfg-if = { workspace = true }
|
cfg-if = { workspace = true }
|
||||||
|
|
|
@ -95,7 +95,7 @@ impl ConnectOps {
|
||||||
s
|
s
|
||||||
} else {
|
} else {
|
||||||
let mut inner = None;
|
let mut inner = None;
|
||||||
rt.driver().register_handler(|api| {
|
rt.driver().register(|api| {
|
||||||
let ops = Rc::new(ConnectOpsInner {
|
let ops = Rc::new(ConnectOpsInner {
|
||||||
api,
|
api,
|
||||||
connects: RefCell::new(Slab::new()),
|
connects: RefCell::new(Slab::new()),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::{cell::Cell, collections::VecDeque, io, rc::Rc, task, task::Poll};
|
use std::{cell::Cell, collections::VecDeque, io, rc::Rc, task, task::Poll};
|
||||||
|
|
||||||
use ntex_neon::driver::op::{CloseSocket, Handler, Interest};
|
use ntex_neon::driver::op::{close_socket, Handler, Interest};
|
||||||
use ntex_neon::driver::{AsRawFd, DriverApi, RawFd};
|
use ntex_neon::driver::{AsRawFd, DriverApi, RawFd};
|
||||||
use ntex_neon::{syscall, Runtime};
|
use ntex_neon::{syscall, Runtime};
|
||||||
use slab::Slab;
|
use slab::Slab;
|
||||||
|
@ -57,7 +57,7 @@ impl<T: AsRawFd + 'static> StreamOps<T> {
|
||||||
s
|
s
|
||||||
} else {
|
} else {
|
||||||
let mut inner = None;
|
let mut inner = None;
|
||||||
rt.driver().register_handler(|api| {
|
rt.driver().register(|api| {
|
||||||
let ops = Rc::new(StreamOpsInner {
|
let ops = Rc::new(StreamOpsInner {
|
||||||
api,
|
api,
|
||||||
feed: Cell::new(Some(VecDeque::new())),
|
feed: Cell::new(Some(VecDeque::new())),
|
||||||
|
@ -216,10 +216,8 @@ impl<T> StreamCtl<T> {
|
||||||
let (io, fd) =
|
let (io, fd) =
|
||||||
self.with(|streams| (streams[self.id].io.take(), streams[self.id].fd));
|
self.with(|streams| (streams[self.id].io.take(), streams[self.id].fd));
|
||||||
if let Some(io) = io {
|
if let Some(io) = io {
|
||||||
let op = CloseSocket::from_raw_fd(fd);
|
|
||||||
let fut = ntex_neon::submit(op);
|
|
||||||
std::mem::forget(io);
|
std::mem::forget(io);
|
||||||
fut.await.0?;
|
close_socket(fd).await?;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,7 @@ impl ConnectOps {
|
||||||
s
|
s
|
||||||
} else {
|
} else {
|
||||||
let mut inner = None;
|
let mut inner = None;
|
||||||
rt.driver().register_handler(|api| {
|
rt.driver().register(|api| {
|
||||||
let ops = Rc::new(ConnectOpsInner {
|
let ops = Rc::new(ConnectOpsInner {
|
||||||
api,
|
api,
|
||||||
ops: RefCell::new(Slab::new()),
|
ops: RefCell::new(Slab::new()),
|
||||||
|
|
|
@ -64,7 +64,7 @@ impl<T: AsRawFd + 'static> StreamOps<T> {
|
||||||
s
|
s
|
||||||
} else {
|
} else {
|
||||||
let mut inner = None;
|
let mut inner = None;
|
||||||
rt.driver().register_handler(|api| {
|
rt.driver().register(|api| {
|
||||||
let mut ops = Slab::new();
|
let mut ops = Slab::new();
|
||||||
ops.insert(Operation::Nop);
|
ops.insert(Operation::Nop);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-rt"
|
name = "ntex-rt"
|
||||||
version = "0.4.27"
|
version = "0.4.28"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex runtime"
|
description = "ntex runtime"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
@ -42,7 +42,7 @@ tok-io = { version = "1", package = "tokio", default-features = false, features
|
||||||
"net",
|
"net",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
||||||
ntex-neon = { version = "0.1", optional = true }
|
ntex-neon = { version = "0.1.1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.11"
|
env_logger = "0.11"
|
||||||
|
|
|
@ -258,11 +258,12 @@ mod neon {
|
||||||
/// Runs the provided future, blocking the current thread until the future
|
/// Runs the provided future, blocking the current thread until the future
|
||||||
/// completes.
|
/// completes.
|
||||||
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
pub fn block_on<F: Future<Output = ()>>(fut: F) {
|
||||||
|
let rt = Runtime::new().unwrap();
|
||||||
log::info!(
|
log::info!(
|
||||||
"Starting neon runtime, driver {:?}",
|
"Starting neon runtime, driver {:?}",
|
||||||
ntex_neon::driver::DriverType::current()
|
rt.driver().tp().name()
|
||||||
);
|
);
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
rt.block_on(fut);
|
rt.block_on(fut);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -376,17 +377,7 @@ mod neon {
|
||||||
|
|
||||||
impl<T> JoinHandle<T> {
|
impl<T> JoinHandle<T> {
|
||||||
pub fn is_finished(&self) -> bool {
|
pub fn is_finished(&self) -> bool {
|
||||||
if let Some(hnd) = &self.fut {
|
false
|
||||||
hnd.is_finished()
|
|
||||||
} else {
|
|
||||||
true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Drop for JoinHandle<T> {
|
|
||||||
fn drop(&mut self) {
|
|
||||||
self.fut.take().unwrap().detach();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -396,7 +387,8 @@ mod neon {
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
Poll::Ready(
|
Poll::Ready(
|
||||||
ready!(Pin::new(self.fut.as_mut().unwrap()).poll(cx))
|
ready!(Pin::new(self.fut.as_mut().unwrap()).poll(cx))
|
||||||
.map_err(|_| JoinError),
|
.map_err(|_| JoinError)
|
||||||
|
.and_then(|result| result.map_err(|_| JoinError)),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue