rcpp_framework/core/request.h

78 lines
1.7 KiB
C
Raw Normal View History

2020-11-25 00:20:41 +01:00
#ifndef REQUEST_H
#define REQUEST_H
#include <mutex>
#include <vector>
2020-11-25 00:20:41 +01:00
#include <brynet/net/http/HttpFormat.hpp>
#include <brynet/net/http/HttpService.hpp>
2020-11-25 00:20:41 +01:00
#include "handler_instance.h"
//using namespace brynet;
//using namespace brynet::net;
//using namespace brynet::net::http;
2020-11-25 00:20:41 +01:00
class Request {
public:
const brynet::net::http::HTTPParser *http_parser;
const brynet::net::http::HttpSession::Ptr *session;
brynet::net::http::HttpResponse *response;
2020-11-25 00:20:41 +01:00
uint32_t current_middleware_index;
HandlerInstance handler_instance;
std::vector<HandlerInstance> *middleware_stack;
std::string head;
std::string body;
2020-12-26 00:17:36 +01:00
std::string footer;
std::string compiled_body;
std::string file_path;
long file_size;
long current_file_progress;
long file_chunk_size;
bool file_next;
void compile_body();
void compile_and_send_body();
void next_stage();
void send();
void send_file(const std::string &p_file_path);
void reset();
2020-11-25 00:20:41 +01:00
void setup_url_stack();
std::string get_path() const;
const std::string &get_path_full() const;
const std::string &get_path_segment(const uint32_t i) const;
const std::string &get_current_path_segment() const;
uint32_t get_path_segment_count() const;
uint32_t get_current_segment_index() const;
uint32_t get_remaining_segment_count() const;
void pop_path();
void push_path();
Request();
~Request();
protected:
void _progress_send_file();
std::vector<std::string> _path_stack;
uint32_t _path_stack_pointer;
2020-11-25 00:20:41 +01:00
};
class RequestPool {
public:
static Request *get_request();
static void return_request(Request *request);
2020-11-25 00:20:41 +01:00
RequestPool();
~RequestPool();
2020-11-25 00:20:41 +01:00
protected:
static std::mutex _mutex;
static std::vector<Request *> _requests;
2020-11-25 00:20:41 +01:00
};
#endif