salvo_core 0.94.0

Salvo is a powerful web framework that can make your work easier.
Documentation
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
//! Handler abstractions for processing [`Request`] values.
//!
//! A middleware is also a [`Handler`]. Middleware can inspect or modify the request,
//! share state through [`Depot`], write to [`Response`], or stop the remaining handler
//! chain with [`FlowCtrl::skip_rest`].
//!
//! Middleware is added with [`Router::hoop`](crate::routing::Router::hoop).
//! Middleware attached to a router applies to that router and all of its descendants.
//!
//! ## Macro `#[handler]`
//!
//! `#[handler]` keeps handlers concise while still allowing Salvo to inject any
//! request context the function asks for.
//!
//! Add it to a function to make that function implement [`Handler`]:
//!
//! ```
//! use salvo_core::prelude::*;
//!
//! #[handler]
//! async fn hello() -> &'static str {
//!     "hello world!"
//! }
//! ```
//!
//! This is equivalent to:
//!
//! ```
//! use salvo_core::prelude::*;
//!
//! #[allow(non_camel_case_types)]
//! struct hello;
//!
//! #[async_trait]
//! impl Handler for hello {
//!     async fn handle(
//!         &self,
//!         _req: &mut Request,
//!         _depot: &mut Depot,
//!         res: &mut Response,
//!         _ctrl: &mut FlowCtrl,
//!     ) {
//!         res.render(Text::Plain("hello world!"));
//!     }
//! }
//! ```
//!
//! With `#[handler]`, the code becomes much simpler:
//!
//! - No need to manually add `#[async_trait]`.
//! - Unused context parameters can be omitted.
//! - Required parameters can be listed in any supported order.
//! - Return values that implement [`Writer`](crate::writing::Writer) or
//!   [`Scribe`](crate::writing::Scribe) can be returned directly.
//! - A handler can request [`ConnCtrl`](crate::ConnCtrl) to gracefully shut down or immediately
//!   abort the transport connection.
//!
//! ```
//! use salvo_core::prelude::*;
//!
//! #[handler]
//! async fn disconnect(conn: &mut ConnCtrl) {
//!     conn.abort();
//! }
//! ```
//!
//! `#[handler]` can also be added to an `impl` block. In that form, the `handle`
//! method becomes the [`Handler::handle`] implementation for the struct:
//!
//! ```
//! use salvo_core::prelude::*;
//!
//! struct Hello;
//!
//! #[handler]
//! impl Hello {
//!     async fn handle(&self, res: &mut Response) {
//!         res.render(Text::Plain("hello world!"));
//!     }
//! }
//! ```
//!
//! ## Handle errors
//!
//! A Salvo handler can return `Result<T, E>` when both `T` and `E` can be written
//! to the response.
//!
//! When the `anyhow` feature is enabled, `anyhow::Error` can be returned from a
//! handler and is rendered as `500 Internal Server Error`.
//!
//! Custom error types can implement [`Writer`](crate::writing::Writer) to control the generated
//! response:
//!
//! ```ignore
//! use anyhow::anyhow;
//! use salvo_core::prelude::*;
//!
//! struct CustomError;
//! #[async_trait]
//! impl Writer for CustomError {
//!     async fn write(self, _req: &mut Request, _depot: &mut Depot, res: &mut Response) {
//!         res.status_code(StatusCode::INTERNAL_SERVER_ERROR);
//!         res.render("custom error");
//!     }
//! }
//!
//! #[handler]
//! async fn handle_anyhow() -> Result<(), anyhow::Error> {
//!     Err(anyhow::anyhow!("anyhow error"))
//! }
//! #[handler]
//! async fn handle_custom() -> Result<(), CustomError> {
//!     Err(CustomError)
//! }
//!
//! #[tokio::main]
//! async fn main() {
//!     let router = Router::new()
//!         .push(Router::new().path("anyhow").get(handle_anyhow))
//!         .push(Router::new().path("custom").get(handle_custom));
//!     let acceptor = TcpListener::new("127.0.0.1:8698").bind().await;
//!     Server::new(acceptor).serve(router).await;
//! }
//! ```
//!
//! ## Implement Handler trait directly
//!
//! Implement [`Handler`] directly when a type needs to own configuration or when
//! the handler logic cannot be expressed cleanly as a function.
//!
//! ```
//! use salvo_core::hyper::body::Body;
//! use salvo_core::prelude::*;
//!
//! pub struct MaxSizeHandler(u64);
//!
//! #[async_trait]
//! impl Handler for MaxSizeHandler {
//!     async fn handle(
//!         &self,
//!         req: &mut Request,
//!         _depot: &mut Depot,
//!         res: &mut Response,
//!         ctrl: &mut FlowCtrl,
//!     ) {
//!         if let Some(upper) = req.body().size_hint().upper() {
//!             if upper > self.0 {
//!                 res.render(StatusError::payload_too_large());
//!                 ctrl.skip_rest();
//!             }
//!         }
//!     }
//! }
//! ```
use std::fmt::{self, Debug, Formatter};
use std::sync::Arc;

use crate::http::StatusCode;
use crate::{Depot, FlowCtrl, Request, Response, async_trait};

/// Processes a request and writes to a response.
///
/// View [module level documentation](index.html) for more details.
#[async_trait]
pub trait Handler: Send + Sync + 'static {
    #[doc(hidden)]
    fn type_id(&self) -> std::any::TypeId {
        std::any::TypeId::of::<Self>()
    }
    #[doc(hidden)]
    fn type_name(&self) -> &'static str {
        std::any::type_name::<Self>()
    }
    /// Handles one HTTP request.
    #[must_use = "handle future must be used"]
    async fn handle(
        &self,
        req: &mut Request,
        depot: &mut Depot,
        res: &mut Response,
        ctrl: &mut FlowCtrl,
    );

    /// Wrap to `ArcHandler`.
    #[inline]
    fn arc(self) -> ArcHandler
    where
        Self: Sized,
    {
        ArcHandler(Arc::new(self))
    }

    /// Wraps this handler in a [`HoopedHandler`].
    #[inline]
    fn hooped(self) -> HoopedHandler
    where
        Self: Sized,
    {
        HoopedHandler::new(self)
    }

    /// Hoop this handler with middleware.
    #[inline]
    fn hoop<H: Handler>(self, hoop: H) -> HoopedHandler
    where
        Self: Sized,
    {
        HoopedHandler::new(self).hoop(hoop)
    }

    /// Hoop this handler with middleware.
    ///
    /// This middleware is only effective when the filter returns `true`.
    #[inline]
    fn hoop_when<H, F>(self, hoop: H, filter: F) -> HoopedHandler
    where
        Self: Sized,
        H: Handler,
        F: Fn(&Request, &Depot) -> bool + Send + Sync + 'static,
    {
        HoopedHandler::new(self).hoop_when(hoop, filter)
    }
}

/// A handler that wraps another [Handler] to enable it to be cloneable.
#[derive(Clone)]
pub struct ArcHandler(Arc<dyn Handler>);
impl Debug for ArcHandler {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("ArcHandler")
            .field("inner", &self.0.type_name())
            .finish()
    }
}

#[async_trait]
impl Handler for ArcHandler {
    async fn handle(
        &self,
        req: &mut Request,
        depot: &mut Depot,
        res: &mut Response,
        ctrl: &mut FlowCtrl,
    ) {
        self.0.handle(req, depot, res, ctrl).await
    }
}

#[doc(hidden)]
#[derive(Debug)]
pub struct EmptyHandler;
#[async_trait]
impl Handler for EmptyHandler {
    async fn handle(
        &self,
        _req: &mut Request,
        _depot: &mut Depot,
        res: &mut Response,
        _ctrl: &mut FlowCtrl,
    ) {
        res.status_code(StatusCode::OK);
    }
}

/// An empty implementation of `Handler`.
///
/// `EmptyHandler` does nothing except setting the [`Response`] status to [`StatusCode::OK`]; it
/// just marks the end of a handler chain when no handler is set.
#[must_use]
pub fn empty() -> EmptyHandler {
    EmptyHandler
}

#[doc(hidden)]
#[non_exhaustive]
pub struct WhenHoop<H, F> {
    pub inner: H,
    pub filter: F,
}

impl<H: Debug, F: Debug> Debug for WhenHoop<H, F> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("WhenHoop")
            .field("inner", &self.inner)
            .field("filter", &self.filter)
            .finish()
    }
}

impl<H, F> WhenHoop<H, F> {
    pub fn new(inner: H, filter: F) -> Self {
        Self { inner, filter }
    }
}
#[async_trait]
impl<H, F> Handler for WhenHoop<H, F>
where
    H: Handler,
    F: Fn(&Request, &Depot) -> bool + Send + Sync + 'static,
{
    async fn handle(
        &self,
        req: &mut Request,
        depot: &mut Depot,
        res: &mut Response,
        ctrl: &mut FlowCtrl,
    ) {
        if (self.filter)(req, depot) {
            self.inner.handle(req, depot, res, ctrl).await;
        } else {
            ctrl.call_next(req, depot, res).await;
        }
    }
}

/// `Skipper` is used to check if the request should be skipped.
///
/// `Skipper` is used in many middlewares.
pub trait Skipper: Send + Sync + 'static {
    /// Check if the request should be skipped.
    fn skipped(&self, req: &mut Request, depot: &Depot) -> bool;
}
impl<F> Skipper for F
where
    F: Fn(&mut Request, &Depot) -> bool + Send + Sync + 'static,
{
    fn skipped(&self, req: &mut Request, depot: &Depot) -> bool {
        self(req, depot)
    }
}

/// Handler that wrap [`Handler`] to let it use middlewares.
#[non_exhaustive]
pub struct HoopedHandler {
    inner: Arc<dyn Handler>,
    hoops: Vec<Arc<dyn Handler>>,
}

impl Clone for HoopedHandler {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            hoops: self.hoops.clone(),
        }
    }
}

impl Debug for HoopedHandler {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("HoopedHandler")
            .field("inner", &self.inner.type_name())
            .field("hoops.len", &self.hoops.len())
            .finish()
    }
}

impl HoopedHandler {
    /// Creates a new `HoopedHandler`.
    pub fn new<H: Handler>(inner: H) -> Self {
        Self {
            inner: Arc::new(inner),
            hoops: vec![],
        }
    }

    /// Get a reference to the middlewares attached to this handler.
    #[inline]
    #[must_use]
    pub fn hoops(&self) -> &Vec<Arc<dyn Handler>> {
        &self.hoops
    }
    /// Get a mutable reference to the middlewares attached to this handler.
    #[inline]
    pub fn hoops_mut(&mut self) -> &mut Vec<Arc<dyn Handler>> {
        &mut self.hoops
    }

    /// Add a handler as middleware. It will run before this handler.
    #[inline]
    #[must_use]
    pub fn hoop<H: Handler>(mut self, hoop: H) -> Self {
        self.hoops.push(Arc::new(hoop));
        self
    }

    /// Add a handler as middleware. It runs this middleware only when the filter returns `true`.
    #[inline]
    #[must_use]
    pub fn hoop_when<H, F>(mut self, hoop: H, filter: F) -> Self
    where
        H: Handler,
        F: Fn(&Request, &Depot) -> bool + Send + Sync + 'static,
    {
        self.hoops.push(Arc::new(WhenHoop::new(hoop, filter)));
        self
    }
}
#[async_trait]
impl Handler for HoopedHandler {
    async fn handle(
        &self,
        req: &mut Request,
        depot: &mut Depot,
        res: &mut Response,
        ctrl: &mut FlowCtrl,
    ) {
        let inner: Arc<dyn Handler> = self.inner.clone();
        let right = ctrl.handlers.split_off(ctrl.cursor);
        ctrl.handlers.extend(
            self.hoops
                .iter()
                .cloned()
                .chain([inner])
                .map(Some)
                .chain(right),
        );
        ctrl.call_next(req, depot, res).await;
    }
}

/// `none_skipper` skips nothing.
///
/// It can be used as default `Skipper` in middleware.
pub fn none_skipper(_req: &mut Request, _depot: &Depot) -> bool {
    false
}

macro_rules! handler_tuple_impls {
    ($(
        $Tuple:tt {
            $(($idx:tt) -> $T:ident,)+
        }
    )+) => {$(
        #[async_trait::async_trait]
        impl<$($T,)+> Handler for ($($T,)+) where $($T: Handler,)+
        {
            async fn handle(&self, req: &mut Request, depot: &mut Depot, res: &mut Response, ctrl: &mut FlowCtrl) {
                $(
                    if !res.is_stamped() {
                        self.$idx.handle(req, depot, res, ctrl).await;
                    }
                )+
            }
        })+
    }
}
macro_rules! skipper_tuple_impls {
    ($(
        $Tuple:tt {
            $(($idx:tt) -> $T:ident,)+
        }
    )+) => {$(
        impl<$($T,)+> Skipper for ($($T,)+) where $($T: Skipper,)+
        {
            fn skipped(&self, req: &mut Request, depot: &Depot) -> bool {
                $(
                    if self.$idx.skipped(req, depot) {
                        return true;
                    }
                )+
                false
            }
        })+
    }
}

crate::for_each_tuple!(handler_tuple_impls);
crate::for_each_tuple!(skipper_tuple_impls);

#[cfg(test)]
mod tests {
    use salvo_macros::handler;

    use super::*;
    use crate::Response;
    use crate::http::StatusCode;
    use crate::test::{ResponseExt, TestClient};

    #[tokio::test]
    async fn test_empty_handler() {
        let res = TestClient::get("http://127.0.0.1:8698/")
            .send(empty())
            .await;
        assert_eq!(res.status_code, Some(StatusCode::OK));
    }

    #[tokio::test]
    async fn test_arc_handler() {
        #[handler]
        async fn hello(res: &mut Response) {
            res.status_code(StatusCode::OK);
            res.render("hello");
        }
        let mut res = TestClient::get("http://127.0.0.1:8698/")
            .send(hello.arc())
            .await;
        assert_eq!(res.status_code, Some(StatusCode::OK));
        assert_eq!(res.take_string().await.unwrap(), "hello");
    }

    #[test]
    fn test_hooped_handler_without_type_parameter() {
        #[handler]
        async fn hello(res: &mut Response) {
            res.status_code(StatusCode::OK);
            res.render("hello");
        }

        let _handler: HoopedHandler = hello.hooped();
    }
}