X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=shared%2Fhttpd.h;h=dae5cad627b7e056e41fe3f1901a51201f4fc066;hb=02ea864dc5a6dde7450c497581ff18d784ab832c;hp=5b2b266c36e70788b2daabe018251d50392fcd7a;hpb=539609eb56b496e6eff8a5e0a92fa0325936a5d7;p=nageru diff --git a/shared/httpd.h b/shared/httpd.h index 5b2b266..dae5cad 100644 --- a/shared/httpd.h +++ b/shared/httpd.h @@ -3,6 +3,7 @@ // A class dealing with stream output to HTTP. +#include #include #include #include @@ -13,6 +14,7 @@ #include #include #include +#include #include #include @@ -20,6 +22,8 @@ extern "C" { #include } +#include "shared/shared_defs.h" + struct MHD_Connection; struct MHD_Daemon; @@ -31,11 +35,24 @@ public: HTTPD(); ~HTTPD(); - // Should be called before start(). - void set_header(const std::string &data) - { - header = data; - } + enum StreamType { + MAIN_STREAM, + MULTICAM_STREAM, + SIPHON_STREAM // The only one that can have stream_index != 0. + }; + struct StreamID { + StreamType type; + unsigned index; + + bool operator< (const StreamID &other) const { + if (type != other.type) + return type < other.type; + return index < other.index; + } + bool operator== (const StreamID &other) const { + return (type == other.type && index == other.index); + } + }; // Should be called before start() (due to threading issues). enum CORSPolicy { @@ -49,11 +66,19 @@ public: void start(int port); void stop(); - void add_data(const char *buf, size_t size, bool keyframe, int64_t time, AVRational timebase); + void set_header(StreamID stream_id, const std::string &data); + void add_data(StreamID stream_id, 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(); } + int64_t get_num_connected_multicam_clients() const { + return metric_num_connected_multicam_clients.load(); + } + int64_t get_num_connected_siphon_clients(unsigned stream_idx) const { + assert(stream_idx < MAX_VIDEO_CARDS); + return metric_num_connected_siphon_clients[stream_idx].load(); + } private: static int answer_to_connection_thunk(void *cls, MHD_Connection *connection, @@ -74,8 +99,8 @@ private: FRAMING_RAW, FRAMING_METACUBE }; - Stream(HTTPD *parent, Framing framing) - : parent(parent), framing(framing) {} + Stream(HTTPD *parent, Framing framing, StreamID stream_id) + : parent(parent), framing(framing), stream_id(stream_id) {} static ssize_t reader_callback_thunk(void *cls, uint64_t pos, char *buf, size_t max); ssize_t reader_callback(uint64_t pos, char *buf, size_t max); @@ -88,6 +113,7 @@ private: 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; } + StreamID get_stream_id() const { return stream_id; } private: HTTPD *parent; @@ -97,10 +123,14 @@ private: bool should_quit = false; // Under . std::condition_variable has_buffered_data; std::deque buffered_data; // Protected by . - size_t used_of_buffered_data = 0; // How many bytes of the first element of that is already used. Protected by . + size_t used_of_buffered_data = 0; // How many bytes of the first element of that is already used. Protected by . + size_t buffered_data_bytes = 0; // The sum of all size() in buffered_data. Protected by . size_t seen_keyframe = false; + StreamID stream_id; }; + void add_data_locked(StreamID stream_id, const char *buf, size_t size, Stream::DataType data_type, int64_t time, AVRational timebase); + MHD_Daemon *mhd = nullptr; std::mutex streams_mutex; std::set streams; // Not owned. @@ -109,10 +139,12 @@ private: CORSPolicy cors_policy; }; std::unordered_map endpoints; - std::string header; + std::map header; // Metrics. - std::atomic metric_num_connected_clients{ 0 }; + std::atomic metric_num_connected_clients{0}; + std::atomic metric_num_connected_multicam_clients{0}; + std::atomic metric_num_connected_siphon_clients[MAX_VIDEO_CARDS] {{0}}; }; #endif // !defined(_HTTPD_H)