maw 0.26.3

A simple and efficient web framework for Rust.
Documentation
use std::sync::Arc;

use crate::{app::App, handler::DynHandlerRun, request::Request, response::Response};

pub struct Ctx {
    pub req: Request,
    pub res: Response,
    pub(crate) handlers: Arc<[DynHandlerRun]>,
    pub(crate) index_handler: usize,
    closed: bool,
    #[cfg(feature = "middleware-cookie")]
    pub cookies: crate::middlewares::cookie::CookieStore,
    #[cfg(feature = "middleware-session")]
    pub session: crate::middlewares::session::SessionStore,
}

impl Ctx {
    pub(crate) fn new(req: Request, res: Response, handlers: Arc<[DynHandlerRun]>) -> Self {
        Self {
            req,
            res,
            handlers,
            index_handler: 0,
            closed: false,
            #[cfg(feature = "middleware-cookie")]
            cookies: Default::default(),
            #[cfg(feature = "middleware-session")]
            session: Default::default(),
        }
    }

    #[inline]
    pub fn handlers(&self) -> &[DynHandlerRun] {
        &self.handlers
    }

    #[inline]
    pub fn current_handler_index(&self) -> usize {
        self.index_handler
    }

    #[inline]
    pub fn app(&self) -> &App {
        self.req.app()
    }

    #[inline]
    pub fn is_closed(&self) -> bool {
        self.closed
    }

    /// Closes the connection without sending a response and stops all remaining handlers from executing.
    #[inline]
    pub fn close(&mut self) {
        self.closed = true;
    }

    pub async fn next(&mut self) {
        if let Some(handler) = self.handlers.get(self.index_handler) {
            self.index_handler += 1;
            if !self.is_closed() {
                return handler.clone().run(self).await;
            }
        }
    }
}