]> git.sesse.net Git - nageru/blob - httpd.h
Add functionality for MJPEG export.
[nageru] / httpd.h
1 #ifndef _HTTPD_H
2 #define _HTTPD_H
3
4 // A class dealing with stream output to HTTP.
5
6 #include <stddef.h>
7 #include <stdint.h>
8 #include <sys/types.h>
9 #include <atomic>
10 #include <condition_variable>
11 #include <deque>
12 #include <functional>
13 #include <mutex>
14 #include <set>
15 #include <string>
16 #include <unordered_map>
17 #include <utility>
18
19 extern "C" {
20 #include <libavutil/rational.h>
21 }
22
23 struct MHD_Connection;
24 struct MHD_Daemon;
25
26 class HTTPD {
27 public:
28         // Returns a pair of content and content-type.
29         using EndpointCallback = std::function<std::pair<std::string, std::string>()>;
30
31         HTTPD();
32         ~HTTPD();
33
34         enum StreamType {
35                 MAIN_STREAM,
36                 MULTICAM_STREAM,
37                 NUM_STREAM_TYPES
38         };
39
40         // Should be called before start().
41         void set_header(StreamType stream_type, const std::string &data) {
42                 header[stream_type] = data;
43         }
44
45         // Should be called before start() (due to threading issues).
46         enum CORSPolicy {
47                 NO_CORS_POLICY,
48                 ALLOW_ALL_ORIGINS
49         };
50         void add_endpoint(const std::string &url, const EndpointCallback &callback, CORSPolicy cors_policy) {
51                 endpoints[url] = Endpoint{ callback, cors_policy };
52         }
53
54         void start(int port);
55         void stop();
56         void add_data(StreamType stream_type, const char *buf, size_t size, bool keyframe, int64_t time, AVRational timebase);
57         int64_t get_num_connected_clients() const {
58                 return metric_num_connected_clients.load();
59         }
60
61 private:
62         static int answer_to_connection_thunk(void *cls, MHD_Connection *connection,
63                                               const char *url, const char *method,
64                                               const char *version, const char *upload_data,
65                                               size_t *upload_data_size, void **con_cls);
66
67         int answer_to_connection(MHD_Connection *connection,
68                                  const char *url, const char *method,
69                                  const char *version, const char *upload_data,
70                                  size_t *upload_data_size, void **con_cls);
71
72         static void free_stream(void *cls);
73
74
75         class Stream {
76         public:
77                 enum Framing {
78                         FRAMING_RAW,
79                         FRAMING_METACUBE
80                 };
81                 Stream(HTTPD *parent, Framing framing, StreamType stream_type)
82                         : parent(parent), framing(framing), stream_type(stream_type) {}
83
84                 static ssize_t reader_callback_thunk(void *cls, uint64_t pos, char *buf, size_t max);
85                 ssize_t reader_callback(uint64_t pos, char *buf, size_t max);
86
87                 enum DataType {
88                         DATA_TYPE_HEADER,
89                         DATA_TYPE_KEYFRAME,
90                         DATA_TYPE_OTHER
91                 };
92                 void add_data(const char *buf, size_t size, DataType data_type, int64_t time, AVRational timebase);
93                 void stop();
94                 HTTPD *get_parent() const { return parent; }
95                 StreamType get_stream_type() const { return stream_type; }
96
97         private:
98                 HTTPD *parent;
99                 Framing framing;
100
101                 std::mutex buffer_mutex;
102                 bool should_quit = false;  // Under <buffer_mutex>.
103                 std::condition_variable has_buffered_data;
104                 std::deque<std::string> buffered_data;  // Protected by <buffer_mutex>.
105                 size_t used_of_buffered_data = 0;  // How many bytes of the first element of <buffered_data> that is already used. Protected by <mutex>.
106                 size_t seen_keyframe = false;
107                 StreamType stream_type;
108         };
109
110         MHD_Daemon *mhd = nullptr;
111         std::mutex streams_mutex;
112         std::set<Stream *> streams;  // Not owned.
113         struct Endpoint {
114                 EndpointCallback callback;
115                 CORSPolicy cors_policy;
116         };
117         std::unordered_map<std::string, Endpoint> endpoints;
118         std::string header[NUM_STREAM_TYPES];
119
120         // Metrics.
121         std::atomic<int64_t> metric_num_connected_clients{0};
122 };
123
124 #endif  // !defined(_HTTPD_H)