]> git.sesse.net Git - cubemap/blob - input.cpp
541b5df6273bf7e59b0230acbcb1d936f679b977
[cubemap] / input.cpp
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdint.h>
4 #include <assert.h>
5 #include <arpa/inet.h>
6 #include <curl/curl.h>
7 #include <sys/socket.h>
8 #include <pthread.h>
9 #include <sys/types.h>
10 #include <sys/ioctl.h>
11 #include <sys/epoll.h>
12 #include <errno.h>
13 #include <vector>
14 #include <string>
15 #include <map>
16
17 #include "metacube.h"
18 #include "mutexlock.h"
19 #include "input.h"
20 #include "server.h"
21
22 using namespace std;
23
24 extern Server *servers;
25
26 Input::Input(const string &stream_id, const string &url)
27         : stream_id(stream_id),
28           url(url),
29           has_metacube_header(false)
30 {
31 }
32
33 void Input::run()
34 {
35         should_stop = false;
36         
37         // Joinable is already the default, but it's good to be certain.
38         pthread_attr_t attr;
39         pthread_attr_init(&attr);
40         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
41         pthread_create(&worker_thread, &attr, Input::do_work_thunk, this);
42 }
43
44 void Input::stop()
45 {
46         should_stop = true;
47
48         if (pthread_join(worker_thread, NULL) == -1) {
49                 perror("pthread_join");
50                 exit(1);
51         }
52 }
53
54 void *Input::do_work_thunk(void *arg)
55 {
56         Input *input = static_cast<Input *>(arg);
57         input->do_work();
58         return NULL;
59 }
60
61 void Input::do_work()
62 {
63         CURL *curl = curl_easy_init();
64
65         while (!should_stop) {
66                 curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
67                 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &Input::curl_callback_thunk);
68                 curl_easy_setopt(curl, CURLOPT_WRITEDATA, this);
69                 curl_easy_perform(curl);
70                 if (!should_stop) {
71                         printf("Transfer ended, waiting 0.2 seconds and restarting...\n");
72                         usleep(200000);
73                 }
74         }
75 }
76
77 size_t Input::curl_callback_thunk(char *ptr, size_t size, size_t nmemb, void *userdata)
78 {
79         Input *input = static_cast<Input *>(userdata);
80         if (input->should_stop) {
81                 return 0;
82         }
83
84         size_t bytes = size * nmemb;
85         input->curl_callback(ptr, bytes);       
86         return bytes;
87 }
88         
89 void Input::curl_callback(char *ptr, size_t bytes)
90 {
91         pending_data.insert(pending_data.end(), ptr, ptr + bytes);
92
93         for ( ;; ) {
94                 // If we don't have enough data (yet) for even the Metacube header, just return.
95                 if (pending_data.size() < sizeof(metacube_block_header)) {
96                         return;
97                 }
98
99                 // Make sure we have the Metacube sync header at the start.
100                 // We may need to skip over junk data (it _should_ not happen, though).
101                 if (!has_metacube_header) {
102                         char *ptr = static_cast<char *>(
103                                 memmem(pending_data.data(), pending_data.size(),
104                                        METACUBE_SYNC, strlen(METACUBE_SYNC)));
105                         if (ptr == NULL) {
106                                 // OK, so we didn't find the sync marker. We know then that
107                                 // we do not have the _full_ marker in the buffer, but we
108                                 // could have N-1 bytes. Drop everything before that,
109                                 // and then give up.
110                                 drop_pending_data(pending_data.size() - (strlen(METACUBE_SYNC) - 1));
111                                 return;
112                         } else {
113                                 // Yay, we found the header. Drop everything (if anything) before it.
114                                 drop_pending_data(ptr - pending_data.data());
115                                 has_metacube_header = true;
116
117                                 // Re-check that we have the entire header; we could have dropped data.
118                                 if (pending_data.size() < sizeof(metacube_block_header)) {
119                                         return;
120                                 }
121                         }
122                 }
123
124                 // Now it's safe to read the header.
125                 metacube_block_header *hdr = reinterpret_cast<metacube_block_header *>(pending_data.data());    
126                 assert(memcmp(hdr->sync, METACUBE_SYNC, sizeof(hdr->sync)) == 0);
127                 uint32_t size = ntohl(hdr->size);
128                 uint32_t flags = ntohl(hdr->flags);
129
130                 // See if we have the entire block. If not, wait for more data.
131                 if (pending_data.size() < sizeof(metacube_block_header) + size) {
132                         return;
133                 }
134
135                 process_block(pending_data.data() + sizeof(metacube_block_header), size, flags);
136
137                 // Consume this block. This isn't the most efficient way of dealing with things
138                 // should we have many blocks, but these routines don't need to be too efficient
139                 // anyway.
140                 pending_data.erase(pending_data.begin(), pending_data.begin() + sizeof(metacube_block_header) + size);
141                 has_metacube_header = false;
142         }
143 }
144                 
145 void Input::process_block(const char *data, uint32_t size, uint32_t flags)
146 {       
147         if (flags & METACUBE_FLAGS_HEADER) {
148                 string header(data, data + size);
149                 for (int i = 0; i < NUM_SERVERS; ++i) {
150                         servers[i].set_header(stream_id, header);
151                 }
152         } else { 
153                 for (int i = 0; i < NUM_SERVERS; ++i) {
154                         servers[i].add_data(stream_id, data, size);
155                 }
156         }
157 }
158
159 void Input::drop_pending_data(size_t num_bytes)
160 {
161         if (num_bytes == 0) {
162                 return;
163         }
164         fprintf(stderr, "Warning: Dropping %lld junk bytes from stream, maybe it is not a Metacube stream?\n",
165                 (long long)num_bytes);
166         pending_data.erase(pending_data.begin(), pending_data.begin() + num_bytes);
167 }
168