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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//! Servlin
//! ========
//! [](https://crates.io/crates/servlin)
//! [](http://www.apache.org/licenses/LICENSE-2.0)
//! [](https://github.com/rust-secure-code/safety-dance/)
//! [](https://github.com/mleonhard/servlin/actions)
//!
//! A modular HTTP server library in Rust.
//!
//! # Features
//! - `forbid(unsafe_code)`
//! - Threaded request handlers:<br>
//! `FnOnce(Request) -> Response + 'static + Clone + Send + Sync`
//! - Uses async code internally for excellent performance under load
//! - JSON
//! - Server-Sent Events (SSE)
//! - Saves large request bodies to temp files
//! - Sends 100-Continue
//! - Limits number of threads and connections
//! - Modular: roll your own logging, write custom versions of internal methods, etc.
//! - No macros or complicated type params
//! - Good test coverage (63%)
//!
//! # Limitations
//! - New, not proven in production.
//! - To do:
//! - Request timeouts
//! - `chunked` transfer-encoding for request bodies
//! - gzip
//! - brotli
//! - TLS
//! - automatically getting TLS certs via ACME
//! - Drop idle connections when approaching connection limit.
//! - Denial-of-Service mitigation: source throttling, minimum throughput
//! - Complete functional test suite
//! - Missing load tests
//! - Disk space usage limits
//!
//! # Examples
//! Complete examples: [`examples/`](https://github.com/mleonhard/servlin/tree/main/examples).
//!
//! Simple example:
//! ```rust
//! use serde::Deserialize;
//! use serde_json::json;
//! use servlin::{
//! socket_addr_127_0_0_1,
//! Error,
//! HttpServerBuilder,
//! Request,
//! Response
//! };
//! use servlin::log::log_request_and_response;
//! use std::sync::Arc;
//! use temp_dir::TempDir;
//!
//! struct State {}
//!
//! fn hello(_state: Arc<State>, req: Request) -> Result<Response, Error> {
//! #[derive(Deserialize)]
//! struct Input {
//! name: String,
//! }
//! let input: Input = req.json()?;
//! Ok(Response::json(200, json!({"message": format!("Hello, {}!", input.name)}))?)
//! }
//!
//! fn handle_req(state: Arc<State>, req: Request) -> Result<Response, Error> {
//! match (req.method(), req.url().path()) {
//! ("GET", "/ping") => Ok(Response::text(200, "ok")),
//! ("POST", "/hello") => hello(state, req),
//! _ => Ok(Response::text(404, "Not found")),
//! }
//! }
//!
//! let state = Arc::new(State {});
//! let request_handler = move |req: Request| {
//! log_request_and_response(req, |req| handle_req(state, req)).unwrap()
//! };
//! let cache_dir = TempDir::new().unwrap();
//! safina::timer::start_timer_thread();
//! let executor = safina::executor::Executor::new(1, 9).unwrap();
//! # let permit = permit::Permit::new();
//! # let server_permit = permit.new_sub();
//! # std::thread::spawn(move || {
//! # std::thread::sleep(std::time::Duration::from_millis(100));
//! # drop(permit);
//! # });
//! executor.block_on(
//! HttpServerBuilder::new()
//! # .permit(server_permit)
//! .listen_addr(socket_addr_127_0_0_1(8271))
//! .max_conns(1000)
//! .small_body_len(64 * 1024)
//! .receive_large_bodies(cache_dir.path())
//! .spawn_and_join(request_handler)
//! ).unwrap();
//! ```
//! # Cargo Geiger Safety Report
//! # Alternatives
//! See [rust-webserver-comparison.md](https://github.com/mleonhard/servlin/blob/main/rust-webserver-comparison.md).
//!
//! # Changelog
//! - v0.6.0 2024-11-02
//! - Remove `servlin::reexports` module.
//! - Use `safina` v0.6.0.
//! - v0.5.1 2024-10-26 - Remove dependency on `once_cell`.
//! - v0.5.0 2024-10-21 - Remove `LogFileWriterBuilder`.
//! - v0.4.3 - Implement `From<Cow<'_, str>>` and `From<&Path>` for `TagValue`.
//! - v0.4.2 - Implement `Seek` for `BodyReader`.
//! - v0.4.1
//! - Add `Request::opt_json`.
//! - Implement `From<LoggerStoppedError>` for `Error`.
//! - v0.4.0
//! - Changed `Response::json` to return `Result<Response, Error>`.
//! - Changed `log_request_and_response` to return `Result`.
//! - Added `Response::unprocessable_entity_422`.
//! - v0.3.2 - Fix bug in `Response::include_dir` redirects.
//! - v0.3.1
//! - Add `Response::redirect_301`
//! - `Response::include_dir` to redirect from `/somedir` to `/somedir/` so relative URLs will work.
//! - v0.3.0 - Changed `Response::include_dir` to take `&Request` and look for `index.html` in dirs.
//! - v0.2.0
//! - Added:
//! - `log_request_and_response` and other logging tooling
//! - `Response::ok_200()`
//! - `Response::unauthorized_401()`
//! - `Response::forbidden_403()`
//! - `Response::internal_server_errror_500()`
//! - `Response::not_implemented_501()`
//! - `Response::service_unavailable_503()`
//! - `EventSender::is_connected()`
//! - `PORT_env()`
//! - Removed `print_log_response` and `RequestBody::length_is_known`
//! - Changed `RequestBody::len` and `is_empty` to return `Option`.
//! - Bugfixes
//! - v0.1.1 - Add `EventSender::unconnected`.
//! - v0.1.0 - Rename library to Servlin.
//!
//! # TO DO
//! - Fix limitations above
//! - Support [HEAD](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD)
//! responses that have Content-Length set and no body.
//! - Add a server-wide limit on upload body size.
//! - Limit disk usage for caching uploads.
//! - Update `rust-webserver-comparison.md`
//! - Add missing data
//! - Add other servers from <https://www.arewewebyet.org/topics/frameworks/>
//! - Rearrange
//! - Generate geiger reports for each web server
pub use crate;
pub use crate AsciiString;
pub use crate BodyAsyncReader;
pub use crate BodyReader;
pub use crate ContentType;
pub use crate;
pub use crate Error;
pub use crate;
pub use crate;
pub use crate HttpConn;
pub use crate Request;
pub use crate RequestBody;
pub use crate Response;
pub use crate ResponseBody;
/// This part of the library is not covered by the semver guarantees.
/// If you use these in your program, a minor version upgrade could break your build.
///
/// If you use these items in a published library,
/// your library should depend on a specific version of this library.
use crate accept_loop;
use crate handle_http_conn;
use crate TokenSet;
use TcpListener;
use Permit;
use SocketAddr;
use PathBuf;
/// Builds an HTTP server.