mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 04:17:52 +08:00
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
#pragma once
|
|
|
|
class http_service
|
|
{
|
|
public:
|
|
http_service(void);
|
|
~http_service(void);
|
|
|
|
public:
|
|
// Register all Http handlers with the http url path
|
|
|
|
http_service& Get(const char* path, http_handler_t fn);
|
|
http_service& Post(const char* path, http_handler_t fn);
|
|
http_service& Head(const char* path, http_handler_t fn);
|
|
http_service& Put(const char* path, http_handler_t fn);
|
|
http_service& Patch(const char* path, http_handler_t fn);
|
|
http_service& Connect(const char* path, http_handler_t fn);
|
|
http_service& Purge(const char* path, http_handler_t fn);
|
|
http_service& Delete(const char* path, http_handler_t fn);
|
|
http_service& Options(const char* path, http_handler_t fn);
|
|
http_service& Propfind(const char* path, http_handler_t fn);
|
|
http_service& Websocket(const char* path, http_handler_t fn);
|
|
http_service& Unknown(const char* path, http_handler_t fn);
|
|
http_service& Error(const char* path, http_handler_t fn);
|
|
http_service& Default(http_default_handler_t fn);
|
|
|
|
public:
|
|
bool doService(int type, HttpRequest& req, HttpResponse& res);
|
|
|
|
public:
|
|
http_handlers_t* get_handlers(void)
|
|
{
|
|
return handlers_;
|
|
}
|
|
|
|
private:
|
|
http_handlers_t handlers_[http_handler_max];
|
|
http_default_handler_t handler_default_;
|
|
|
|
void Service(int type, const char* path, http_handler_t fn);
|
|
};
|