2018-09-11 08:43:23 -07:00
|
|
|
//! General purpose networking server
|
|
|
|
|
|
|
|
use actix::Message;
|
|
|
|
|
|
|
|
mod accept;
|
2018-12-09 20:30:04 -08:00
|
|
|
mod builder;
|
2018-11-03 09:09:14 -07:00
|
|
|
mod config;
|
2018-09-11 08:43:23 -07:00
|
|
|
mod services;
|
|
|
|
mod worker;
|
|
|
|
|
2018-12-09 20:30:04 -08:00
|
|
|
pub use self::builder::ServerBuilder;
|
2018-11-03 09:09:14 -07:00
|
|
|
pub use self::config::{ServiceConfig, ServiceRuntime};
|
2018-09-26 20:40:45 -07:00
|
|
|
pub use self::services::{ServerMessage, ServiceFactory, StreamServiceFactory};
|
2018-09-11 08:43:23 -07:00
|
|
|
|
|
|
|
/// Pause accepting incoming connections
|
|
|
|
///
|
|
|
|
/// If socket contains some pending connection, they might be dropped.
|
|
|
|
/// All opened connection remains active.
|
|
|
|
#[derive(Message)]
|
|
|
|
pub struct PauseServer;
|
|
|
|
|
|
|
|
/// Resume accepting incoming connections
|
|
|
|
#[derive(Message)]
|
|
|
|
pub struct ResumeServer;
|
|
|
|
|
|
|
|
/// Stop incoming connection processing, stop all workers and exit.
|
|
|
|
///
|
|
|
|
/// If server starts with `spawn()` method, then spawned thread get terminated.
|
|
|
|
pub struct StopServer {
|
|
|
|
/// Whether to try and shut down gracefully
|
|
|
|
pub graceful: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Message for StopServer {
|
|
|
|
type Result = Result<(), ()>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Socket id token
|
2018-11-03 09:09:14 -07:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
2018-09-11 08:43:23 -07:00
|
|
|
pub(crate) struct Token(usize);
|
2018-11-03 09:09:14 -07:00
|
|
|
|
|
|
|
impl Token {
|
2018-11-14 14:20:33 -08:00
|
|
|
pub(crate) fn next(&mut self) -> Token {
|
|
|
|
let token = Token(self.0 + 1);
|
|
|
|
self.0 += 1;
|
|
|
|
token
|
2018-11-03 09:09:14 -07:00
|
|
|
}
|
2018-11-17 18:46:26 -08:00
|
|
|
}
|