]> git.sesse.net Git - nageru/blob - shared/httpd.h
8c3c8105c5b959155abbd19d95b10a1fcfc0ffa6
[nageru] / shared / httpd.h
1 #ifndef _HTTPD_H
2 #define _HTTPD_H
3
4 // A class dealing with stream output to HTTP.
5
6 #include <atomic>
7 #include <condition_variable>
8 #include <deque>
9 #include <functional>
10 #include <mutex>
11 #include <set>
12 #include <stddef.h>
13 #include <stdint.h>
14 #include <string>
15 #include <sys/types.h>
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         {
52                 endpoints[url] = Endpoint{ callback, cors_policy };
53         }
54
55         void start(int port);
56         void stop();
57         void add_data(StreamType stream_type, const char *buf, size_t size, bool keyframe, int64_t time, AVRational timebase);
58         int64_t get_num_connected_clients() const
59         {
60                 return metric_num_connected_clients.load();
61         }
62
63 private:
64         static int answer_to_connection_thunk(void *cls, MHD_Connection *connection,
65                                               const char *url, const char *method,
66                                               const char *version, const char *upload_data,
67                                               size_t *upload_data_size, void **con_cls);
68
69         int answer_to_connection(MHD_Connection *connection,
70                                  const char *url, const char *method,
71                                  const char *version, const char *upload_data,
72                                  size_t *upload_data_size, void **con_cls);
73
74         static void free_stream(void *cls);
75
76         class Stream {
77         public:
78                 enum Framing {
79                         FRAMING_RAW,
80                         FRAMING_METACUBE
81                 };
82                 Stream(HTTPD *parent, Framing framing, StreamType stream_type)
83                         : parent(parent), framing(framing), stream_type(stream_type) {}
84
85                 static ssize_t reader_callback_thunk(void *cls, uint64_t pos, char *buf, size_t max);
86                 ssize_t reader_callback(uint64_t pos, char *buf, size_t max);
87
88                 enum DataType {
89                         DATA_TYPE_HEADER,
90                         DATA_TYPE_KEYFRAME,
91                         DATA_TYPE_OTHER
92                 };
93                 void add_data(const char *buf, size_t size, DataType data_type, int64_t time, AVRational timebase);
94                 void stop();
95                 HTTPD *get_parent() const { return parent; }
96                 StreamType get_stream_type() const { return stream_type; }
97
98         private:
99                 HTTPD *parent;
100                 Framing framing;
101
102                 std::mutex buffer_mutex;
103                 bool should_quit = false;  // Under <buffer_mutex>.
104                 std::condition_variable has_buffered_data;
105                 std::deque<std::string> buffered_data;  // Protected by <buffer_mutex>.
106                 size_t used_of_buffered_data = 0;  // How many bytes of the first element of <buffered_data> that is already used. Protected by <mutex>.
107                 size_t seen_keyframe = false;
108                 StreamType stream_type;
109         };
110
111         MHD_Daemon *mhd = nullptr;
112         std::mutex streams_mutex;
113         std::set<Stream *> streams;  // Not owned.
114         struct Endpoint {
115                 EndpointCallback callback;
116                 CORSPolicy cors_policy;
117         };
118         std::unordered_map<std::string, Endpoint> endpoints;
119         std::string header[NUM_STREAM_TYPES];
120
121         // Metrics.
122         std::atomic<int64_t> metric_num_connected_clients{ 0 };
123 };
124
125 #endif  // !defined(_HTTPD_H)