1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-02 22:12:22 +01:00
actix-net/actix-rt/src/lib.rs

146 lines
4.5 KiB
Rust
Raw Normal View History

2021-02-02 03:07:58 +01:00
//! Tokio-based single-threaded async runtime for the Actix ecosystem.
2021-01-31 06:19:30 +01:00
//!
//! In most parts of the the Actix ecosystem, it has been chosen to use !Send futures. For this
//! reason, a single-threaded runtime is appropriate since it is guaranteed that futures will not
//! be moved between threads. This can result in small performance improvements over cases where
//! atomics would otherwise be needed.
//!
//! To achieve similar performance to multi-threaded, work-stealing runtimes, applications
//! using `actix-rt` will create multiple, mostly disconnected, single-threaded runtimes.
//! This approach has good performance characteristics for workloads where the majority of tasks
//! have similar runtime expense.
//!
//! The disadvantage is that idle threads will not steal work from very busy, stuck or otherwise
//! backlogged threads. Tasks that are disproportionately expensive should be offloaded to the
2021-02-03 11:25:31 +01:00
//! blocking task thread-pool using [`task::spawn_blocking`].
2021-01-31 06:19:30 +01:00
//!
//! # Examples
//! ```
//! use std::sync::mpsc;
//! use actix_rt::{Arbiter, System};
//!
//! let _ = System::new();
//!
//! let (tx, rx) = mpsc::channel::<u32>();
//!
//! let arbiter = Arbiter::new();
//! arbiter.spawn_fn(move || tx.send(42).unwrap());
//!
//! let num = rx.recv().unwrap();
//! assert_eq!(num, 42);
//!
//! arbiter.stop();
//! arbiter.join().unwrap();
//! ```
2020-12-28 02:58:31 +01:00
#![deny(rust_2018_idioms, nonstandard_style)]
2019-12-02 17:30:09 +01:00
#![allow(clippy::type_complexity)]
2021-01-26 10:46:14 +01:00
#![warn(missing_docs)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
2018-12-10 04:55:40 +01:00
use std::future::Future;
2021-01-29 03:21:06 +01:00
use tokio::task::JoinHandle;
2021-01-09 16:12:59 +01:00
// Cannot define a main macro when compiled into test harness.
// Workaround for https://github.com/rust-lang/rust/issues/62127.
#[cfg(all(feature = "macros", not(test)))]
2019-11-25 16:49:11 +01:00
pub use actix_macros::{main, test};
mod arbiter;
2018-12-10 04:55:40 +01:00
mod runtime;
mod system;
pub use self::arbiter::{Arbiter, ArbiterHandle};
pub use self::runtime::Runtime;
pub use self::system::{System, SystemRunner};
2018-12-10 05:30:04 +01:00
2021-02-03 11:25:31 +01:00
pub use tokio::pin;
pub mod signal {
2021-01-29 05:08:14 +01:00
//! Asynchronous signal handling (Tokio re-exports).
#[cfg(unix)]
pub mod unix {
2021-01-29 05:08:14 +01:00
//! Unix specific signals (Tokio re-exports).
2019-12-05 11:40:24 +01:00
pub use tokio::signal::unix::*;
}
2019-12-05 11:40:24 +01:00
pub use tokio::signal::ctrl_c;
}
pub mod net {
2021-01-29 05:08:14 +01:00
//! TCP/UDP/Unix bindings (Tokio re-exports).
2021-01-26 10:46:14 +01:00
pub use tokio::net::UdpSocket;
pub use tokio::net::{TcpListener, TcpStream};
#[cfg(unix)]
2021-01-29 05:08:14 +01:00
pub use tokio::net::{UnixDatagram, UnixListener, UnixStream};
2021-02-20 18:25:22 +01:00
use std::task::{Context, Poll};
use tokio::io::{AsyncRead, AsyncWrite};
/// Trait for generic over tokio stream types and various wrapper types around them.
pub trait ActixStream: AsyncRead + AsyncWrite + Unpin + 'static {
/// poll stream and check read readiness of Self.
///
/// See [tokio::net::TcpStream::poll_read_ready] for detail
fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>>;
/// poll stream and check write readiness of Self.
///
/// See [tokio::net::TcpStream::poll_write_ready] for detail
fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>>;
}
impl ActixStream for TcpStream {
fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
TcpStream::poll_read_ready(self, cx)
}
fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
TcpStream::poll_write_ready(self, cx)
}
}
#[cfg(unix)]
impl ActixStream for UnixStream {
fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
UnixStream::poll_read_ready(self, cx)
}
fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> {
UnixStream::poll_write_ready(self, cx)
}
}
}
2019-11-26 03:12:16 +01:00
pub mod time {
2021-01-29 05:08:14 +01:00
//! Utilities for tracking time (Tokio re-exports).
2021-01-26 10:46:14 +01:00
2019-12-05 11:40:24 +01:00
pub use tokio::time::Instant;
pub use tokio::time::{interval, interval_at, Interval};
pub use tokio::time::{sleep, sleep_until, Sleep};
2019-12-05 11:40:24 +01:00
pub use tokio::time::{timeout, Timeout};
2019-11-26 03:12:16 +01:00
}
2021-01-03 19:16:57 +01:00
pub mod task {
2021-01-29 05:08:14 +01:00
//! Task management (Tokio re-exports).
2021-01-26 10:46:14 +01:00
2021-02-06 16:50:38 +01:00
pub use tokio::task::{spawn_blocking, yield_now, JoinError, JoinHandle};
2021-01-03 19:16:57 +01:00
}
2021-01-29 16:16:30 +01:00
/// Spawns a future on the current thread.
2021-01-29 16:16:30 +01:00
///
/// # Panics
/// Panics if Actix system is not running.
#[inline]
pub fn spawn<Fut>(f: Fut) -> JoinHandle<()>
where
Fut: Future<Output = ()> + 'static,
{
tokio::task::spawn_local(f)
}