]> git.sesse.net Git - nageru/blob - httpd.cpp
Add an HTTP endpoint for enumerating channels and one for getting only their colors...
[nageru] / httpd.cpp
1 #include "httpd.h"
2
3 #include <assert.h>
4 #include <byteswap.h>
5 #include <endian.h>
6 #include <microhttpd.h>
7 #include <netinet/in.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <sys/time.h>
11 #include <time.h>
12 #include <memory>
13
14 #include "defs.h"
15 #include "metacube2.h"
16 #include "metrics.h"
17
18 struct MHD_Connection;
19 struct MHD_Response;
20
21 using namespace std;
22
23 HTTPD::HTTPD()
24 {
25         global_metrics.add("num_connected_clients", &metric_num_connected_clients, Metrics::TYPE_GAUGE);
26 }
27
28 HTTPD::~HTTPD()
29 {
30         if (mhd) {
31                 MHD_quiesce_daemon(mhd);
32                 for (Stream *stream : streams) {
33                         stream->stop();
34                 }
35                 MHD_stop_daemon(mhd);
36         }
37 }
38
39 void HTTPD::start(int port)
40 {
41         mhd = MHD_start_daemon(MHD_USE_THREAD_PER_CONNECTION | MHD_USE_POLL_INTERNALLY | MHD_USE_DUAL_STACK,
42                                port,
43                                nullptr, nullptr,
44                                &answer_to_connection_thunk, this,
45                                MHD_OPTION_NOTIFY_COMPLETED, nullptr, this,
46                                MHD_OPTION_END);
47         if (mhd == nullptr) {
48                 fprintf(stderr, "Warning: Could not open HTTP server. (Port already in use?)\n");
49         }
50 }
51
52 void HTTPD::add_data(const char *buf, size_t size, bool keyframe)
53 {
54         unique_lock<mutex> lock(streams_mutex);
55         for (Stream *stream : streams) {
56                 stream->add_data(buf, size, keyframe ? Stream::DATA_TYPE_KEYFRAME : Stream::DATA_TYPE_OTHER);
57         }
58 }
59
60 int HTTPD::answer_to_connection_thunk(void *cls, MHD_Connection *connection,
61                                       const char *url, const char *method,
62                                       const char *version, const char *upload_data,
63                                       size_t *upload_data_size, void **con_cls)
64 {
65         HTTPD *httpd = (HTTPD *)cls;
66         return httpd->answer_to_connection(connection, url, method, version, upload_data, upload_data_size, con_cls);
67 }
68
69 int HTTPD::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         // See if the URL ends in “.metacube”.
75         HTTPD::Stream::Framing framing;
76         if (strstr(url, ".metacube") == url + strlen(url) - strlen(".metacube")) {
77                 framing = HTTPD::Stream::FRAMING_METACUBE;
78         } else {
79                 framing = HTTPD::Stream::FRAMING_RAW;
80         }
81
82         if (strcmp(url, "/metrics") == 0) {
83                 string contents = global_metrics.serialize();
84                 MHD_Response *response = MHD_create_response_from_buffer(
85                         contents.size(), &contents[0], MHD_RESPMEM_MUST_COPY);
86                 MHD_add_response_header(response, "Content-type", "text/plain");
87                 int ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
88                 MHD_destroy_response(response);  // Only decreases the refcount; actual free is after the request is done.
89                 return ret;
90         }
91         if (endpoints.count(url)) {
92                 pair<string, string> contents_and_type = endpoints[url]();
93                 MHD_Response *response = MHD_create_response_from_buffer(
94                         contents_and_type.first.size(), &contents_and_type.first[0], MHD_RESPMEM_MUST_COPY);
95                 MHD_add_response_header(response, "Content-type", contents_and_type.second.c_str());
96                 int ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
97                 MHD_destroy_response(response);  // Only decreases the refcount; actual free is after the request is done.
98                 return ret;
99         }
100
101         HTTPD::Stream *stream = new HTTPD::Stream(this, framing);
102         stream->add_data(header.data(), header.size(), Stream::DATA_TYPE_HEADER);
103         {
104                 unique_lock<mutex> lock(streams_mutex);
105                 streams.insert(stream);
106         }
107         ++metric_num_connected_clients;
108         *con_cls = stream;
109
110         // Does not strictly have to be equal to MUX_BUFFER_SIZE.
111         MHD_Response *response = MHD_create_response_from_callback(
112                 (size_t)-1, MUX_BUFFER_SIZE, &HTTPD::Stream::reader_callback_thunk, stream, &HTTPD::free_stream);
113         // TODO: Content-type?
114         if (framing == HTTPD::Stream::FRAMING_METACUBE) {
115                 MHD_add_response_header(response, "Content-encoding", "metacube");
116         }
117
118         int ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
119         MHD_destroy_response(response);  // Only decreases the refcount; actual free is after the request is done.
120
121         return ret;
122 }
123
124 void HTTPD::free_stream(void *cls)
125 {
126         HTTPD::Stream *stream = (HTTPD::Stream *)cls;
127         HTTPD *httpd = stream->get_parent();
128         {
129                 unique_lock<mutex> lock(httpd->streams_mutex);
130                 delete stream;
131                 httpd->streams.erase(stream);
132         }
133         --httpd->metric_num_connected_clients;
134 }
135
136 ssize_t HTTPD::Stream::reader_callback_thunk(void *cls, uint64_t pos, char *buf, size_t max)
137 {
138         HTTPD::Stream *stream = (HTTPD::Stream *)cls;
139         return stream->reader_callback(pos, buf, max);
140 }
141
142 ssize_t HTTPD::Stream::reader_callback(uint64_t pos, char *buf, size_t max)
143 {
144         unique_lock<mutex> lock(buffer_mutex);
145         has_buffered_data.wait(lock, [this]{ return should_quit || !buffered_data.empty(); });
146         if (should_quit) {
147                 return 0;
148         }
149
150         ssize_t ret = 0;
151         while (max > 0 && !buffered_data.empty()) {
152                 const string &s = buffered_data.front();
153                 assert(s.size() > used_of_buffered_data);
154                 size_t len = s.size() - used_of_buffered_data;
155                 if (max >= len) {
156                         // Consume the entire (rest of the) string.
157                         memcpy(buf, s.data() + used_of_buffered_data, len);
158                         buf += len;
159                         ret += len;
160                         max -= len;
161                         buffered_data.pop_front();
162                         used_of_buffered_data = 0;
163                 } else {
164                         // We don't need the entire string; just use the first part of it.
165                         memcpy(buf, s.data() + used_of_buffered_data, max);
166                         buf += max;
167                         used_of_buffered_data += max;
168                         ret += max;
169                         max = 0;
170                 }
171         }
172
173         return ret;
174 }
175
176 void HTTPD::Stream::add_data(const char *buf, size_t buf_size, HTTPD::Stream::DataType data_type)
177 {
178         if (buf_size == 0) {
179                 return;
180         }
181         if (data_type == DATA_TYPE_KEYFRAME) {
182                 seen_keyframe = true;
183         } else if (data_type == DATA_TYPE_OTHER && !seen_keyframe) {
184                 // Start sending only once we see a keyframe.
185                 return;
186         }
187
188         unique_lock<mutex> lock(buffer_mutex);
189
190         if (framing == FRAMING_METACUBE) {
191                 metacube2_block_header hdr;
192                 memcpy(hdr.sync, METACUBE2_SYNC, sizeof(hdr.sync));
193                 hdr.size = htonl(buf_size);
194                 int flags = 0;
195                 if (data_type == DATA_TYPE_HEADER) {
196                         flags |= METACUBE_FLAGS_HEADER;
197                 } else if (data_type == DATA_TYPE_OTHER) {
198                         flags |= METACUBE_FLAGS_NOT_SUITABLE_FOR_STREAM_START;
199                 }
200                 hdr.flags = htons(flags);
201                 hdr.csum = htons(metacube2_compute_crc(&hdr));
202                 buffered_data.emplace_back((char *)&hdr, sizeof(hdr));
203         }
204         buffered_data.emplace_back(buf, buf_size);
205
206         // Send a Metacube2 timestamp every keyframe.
207         if (framing == FRAMING_METACUBE && data_type == DATA_TYPE_KEYFRAME) {
208                 timespec now;
209                 clock_gettime(CLOCK_REALTIME, &now);
210
211                 metacube2_timestamp_packet packet;
212                 packet.type = htobe64(METACUBE_METADATA_TYPE_ENCODER_TIMESTAMP);
213                 packet.tv_sec = htobe64(now.tv_sec);
214                 packet.tv_nsec = htobe64(now.tv_nsec);
215
216                 metacube2_block_header hdr;
217                 memcpy(hdr.sync, METACUBE2_SYNC, sizeof(hdr.sync));
218                 hdr.size = htonl(sizeof(packet));
219                 hdr.flags = htons(METACUBE_FLAGS_METADATA);
220                 hdr.csum = htons(metacube2_compute_crc(&hdr));
221                 buffered_data.emplace_back((char *)&hdr, sizeof(hdr));
222                 buffered_data.emplace_back((char *)&packet, sizeof(packet));
223         }
224
225         has_buffered_data.notify_all(); 
226 }
227
228 void HTTPD::Stream::stop()
229 {
230         unique_lock<mutex> lock(buffer_mutex);
231         should_quit = true;
232         has_buffered_data.notify_all();
233 }