1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
use std::net::SocketAddr;
use std::sync::Arc;
use crate::core;
use crate::server_utils;
use crate::server_utils::cors::Origin;
use crate::server_utils::hosts::{DomainsValidation, Host};
use crate::server_utils::reactor::UninitializedExecutor;
use crate::server_utils::session::SessionStats;
use crate::error::Result;
use crate::metadata::{MetaExtractor, NoopExtractor};
use crate::server::Server;
use crate::session;
pub struct ServerBuilder<M: core::Metadata, S: core::Middleware<M>> {
handler: Arc<core::MetaIoHandler<M, S>>,
meta_extractor: Arc<dyn MetaExtractor<M>>,
allowed_origins: Option<Vec<Origin>>,
allowed_hosts: Option<Vec<Host>>,
request_middleware: Option<Arc<dyn session::RequestMiddleware>>,
session_stats: Option<Arc<dyn SessionStats>>,
executor: UninitializedExecutor,
max_connections: usize,
max_payload_bytes: usize,
}
impl<M: core::Metadata + Default, S: core::Middleware<M>> ServerBuilder<M, S> {
pub fn new<T>(handler: T) -> Self
where
T: Into<core::MetaIoHandler<M, S>>,
{
Self::with_meta_extractor(handler, NoopExtractor)
}
}
impl<M: core::Metadata, S: core::Middleware<M>> ServerBuilder<M, S> {
pub fn with_meta_extractor<T, E>(handler: T, extractor: E) -> Self
where
T: Into<core::MetaIoHandler<M, S>>,
E: MetaExtractor<M>,
{
ServerBuilder {
handler: Arc::new(handler.into()),
meta_extractor: Arc::new(extractor),
allowed_origins: None,
allowed_hosts: None,
request_middleware: None,
session_stats: None,
executor: UninitializedExecutor::Unspawned,
max_connections: 100,
max_payload_bytes: 5 * 1024 * 1024,
}
}
pub fn event_loop_executor(mut self, executor: server_utils::tokio::runtime::TaskExecutor) -> Self {
self.executor = UninitializedExecutor::Shared(executor);
self
}
pub fn session_meta_extractor<T: MetaExtractor<M>>(mut self, extractor: T) -> Self {
self.meta_extractor = Arc::new(extractor);
self
}
pub fn allowed_origins(mut self, allowed_origins: DomainsValidation<Origin>) -> Self {
self.allowed_origins = allowed_origins.into();
self
}
pub fn allowed_hosts(mut self, allowed_hosts: DomainsValidation<Host>) -> Self {
self.allowed_hosts = allowed_hosts.into();
self
}
pub fn session_stats<T: SessionStats>(mut self, stats: T) -> Self {
self.session_stats = Some(Arc::new(stats));
self
}
pub fn request_middleware<T: session::RequestMiddleware>(mut self, middleware: T) -> Self {
self.request_middleware = Some(Arc::new(middleware));
self
}
pub fn max_connections(mut self, max_connections: usize) -> Self {
self.max_connections = max_connections;
self
}
pub fn max_payload(mut self, max_payload_bytes: usize) -> Self {
self.max_payload_bytes = max_payload_bytes;
self
}
pub fn start(self, addr: &SocketAddr) -> Result<Server> {
Server::start(
addr,
self.handler,
self.meta_extractor,
self.allowed_origins,
self.allowed_hosts,
self.request_middleware,
self.session_stats,
self.executor,
self.max_connections,
self.max_payload_bytes,
)
}
}