X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=httpd.h;h=509ae0146a344f101d34d199b36bcab3380c06a6;hb=b9feb66845bf24465b7671ac9ff7a52b88f6032b;hp=902745a5845b85d5e873914189057846c3a90585;hpb=cf7b9ee186d4ef8e5da0531b75854c97b821be44;p=nageru diff --git a/httpd.h b/httpd.h index 902745a..509ae01 100644 --- a/httpd.h +++ b/httpd.h @@ -6,17 +6,24 @@ #include #include #include +#include #include #include +#include #include #include #include +#include +#include struct MHD_Connection; struct MHD_Daemon; class HTTPD { public: + // Returns a pair of content and content-type. + using EndpointCallback = std::function()>; + HTTPD(); ~HTTPD(); @@ -25,8 +32,20 @@ public: header = data; } + // Should be called before start() (due to threading issues). + enum CORSPolicy { + NO_CORS_POLICY, + ALLOW_ALL_ORIGINS + }; + void add_endpoint(const std::string &url, const EndpointCallback &callback, CORSPolicy cors_policy) { + endpoints[url] = Endpoint{ callback, cors_policy }; + } + void start(int port); void add_data(const char *buf, size_t size, bool keyframe); + int64_t get_num_connected_clients() const { + return metric_num_connected_clients.load(); + } private: static int answer_to_connection_thunk(void *cls, MHD_Connection *connection, @@ -77,7 +96,15 @@ private: MHD_Daemon *mhd = nullptr; std::mutex streams_mutex; std::set streams; // Not owned. + struct Endpoint { + EndpointCallback callback; + CORSPolicy cors_policy; + }; + std::unordered_map endpoints; std::string header; + + // Metrics. + std::atomic metric_num_connected_clients{0}; }; #endif // !defined(_HTTPD_H)