X-Git-Url: https://git.sesse.net/?p=nageru;a=blobdiff_plain;f=httpd.h;h=57c649b61158c6f73b498aeca6556b97bc52f179;hp=73410fd427e642cb178f83ba5095318216223ba0;hb=703e00da89118df9be0354dda621bed023e6030e;hpb=b6c6909043028f9776c08adbd6fb0e71c192cc8e diff --git a/httpd.h b/httpd.h index 73410fd..57c649b 100644 --- a/httpd.h +++ b/httpd.h @@ -3,22 +3,31 @@ // A class dealing with stream output to HTTP. -#include #include #include #include +#include #include #include -#include +#include #include #include #include +#include +#include + +extern "C" { +#include +} struct MHD_Connection; struct MHD_Daemon; class HTTPD { public: + // Returns a pair of content and content-type. + using EndpointCallback = std::function()>; + HTTPD(); ~HTTPD(); @@ -27,8 +36,21 @@ 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); + void stop(); + void add_data(const char *buf, size_t size, bool keyframe, int64_t time, AVRational timebase); + 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, @@ -60,7 +82,7 @@ private: DATA_TYPE_KEYFRAME, DATA_TYPE_OTHER }; - void add_data(const char *buf, size_t size, DataType data_type); + void add_data(const char *buf, size_t size, DataType data_type, int64_t time, AVRational timebase); void stop(); HTTPD *get_parent() const { return parent; } @@ -79,7 +101,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)