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
//! maker_web - High-performance, zero-allocation HTTP server for microservices
//!
//! A performance-oriented HTTP server with comprehensive configuration
//! for memory management, connection handling, and protocol support.
//! Designed for microservices requiring fine-grained control over resources.
//!
//! # Protocol Support
//!
//! - **HTTP/1.1**: Full protocol with persistent connections and chunked encoding
//! - **HTTP/1.0**: Basic protocol support for legacy clients and simple requests
//! - **HTTP/0.9+**: [High-performance variant with keep-alive and query support](limits::Http09Limits)
//!
//! # Performance Characteristics
//!
//! - **Zero-allocation pipeline** - no heap allocations during request/response processing
//! - **Async/await ready** - built on Tokio for scalable I/O and high concurrency
//! - **Pre-calculated buffers** - fixed memory allocation per connection based on configured limits
//! - **Connection reuse** - efficient keep-alive and connection pooling
//! - **Configurable timeouts** - precise control over connection lifetimes and I/O operations
//! - **Multi-protocol optimization** - HTTP/1.1, HTTP/1.0, and HTTP/0.9+ for various performance needs
//!
//! # Examples
//!
//! Quick start:
//! ```no_run
//! use maker_web::{Server, Handler, Request, Response, Handled, StatusCode};
//! use tokio::net::TcpListener;
//!
//! struct MyHandler;
//!
//! impl Handler<()> for MyHandler {
//! async fn handle(&self, _: &mut (), _: &Request, resp: &mut Response) -> Handled {
//! resp.status(StatusCode::Ok).body("Hello World!")
//! }
//! }
//!
//! #[tokio::main]
//! async fn main() {
//! Server::builder()
//! .listener(TcpListener::bind("127.0.0.1:8080").await.unwrap())
//! .handler(MyHandler)
//! .build()
//! .launch()
//! .await;
//! }
//! ```
//! Something in between :) :
//! ```no_run
//! use maker_web::{Handled, Handler, Request, Response, Server, StatusCode};
//! use tokio::net::TcpListener;
//!
//! struct MyHandler;
//!
//! impl Handler<()> for MyHandler {
//! async fn handle(&self, _: &mut (), req: &Request, resp: &mut Response) -> Handled {
//! match req.url().path_segments() {
//! [b"api", user, b"name"] => {
//! resp.status(StatusCode::Ok).body(user)
//! }
//! [b"api", user, b"name", b"len"] => {
//! resp.status(StatusCode::Ok).body(user.len())
//! }
//! [b"api", b"echo", text] => {
//! resp.status(StatusCode::Ok).body(text)
//! }
//! _ => resp.status(StatusCode::NotFound).body("qwe"),
//! }
//! }
//! }
//!
//! #[tokio::main]
//! async fn main() {
//! Server::builder()
//! .listener(TcpListener::bind("127.0.0.1:8080").await.unwrap())
//! .handler(MyHandler)
//! .build()
//! .launch()
//! .await;
//! }
//! ```
//! Advanced configuration:
//! ```no_run
//! # maker_web::impt_default_handler!{MyHandler}
//! use maker_web::{Server, limits::{ConnLimits, ReqLimits, ServerLimits}};
//! use tokio::net::TcpListener;
//! use std::time::Duration;
//!
//! #[tokio::main]
//! async fn main() {
//! Server::builder()
//! .listener(TcpListener::bind("127.0.0.1:8080").await.unwrap())
//! .handler(MyHandler)
//! .server_limits(ServerLimits {
//! max_connections: 5000, // Higher concurrency
//! ..ServerLimits::default()
//! })
//! .connection_limits(ConnLimits {
//! socket_read_timeout: Duration::from_secs(5),
//! max_requests_per_connection: 10_000,
//! ..ConnLimits::default()
//! })
//! .request_limits(ReqLimits {
//! header_count: 18, // More headers for complex APIs
//! body_size: 16 * 1024, // 16KB for larger payloads
//! ..ReqLimits::default()
//! })
//! .build()
//! .launch()
//! .await;
//! }
//! ```
//!
//! # Use Cases
//!
//! - **High-throughput microservices** - configurable for specific workloads
//! - **Resource-constrained environments** - predictable memory usage
//! - **Internal APIs** - security-conscious defaults
//! - **Performance-critical applications** - zero-allocation design
//! - **Legacy system integration** - HTTP/1.0 compatibility
pub
pub
pub
pub use crate::;