]> git.sesse.net Git - cubemap/blob - input.cpp
48465664b56bf7429f1023d44a4ec9d9b7b81f30
[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                 printf("Transfer ended, waiting 0.2 seconds and restarting...\n");
71                 usleep(200000);
72         }
73 }
74
75 size_t Input::curl_callback_thunk(char *ptr, size_t size, size_t nmemb, void *userdata)
76 {
77         Input *input = static_cast<Input *>(userdata);
78         if (input->should_stop) {
79                 return 0;
80         }
81
82         size_t bytes = size * nmemb;
83         input->curl_callback(ptr, bytes);       
84         return bytes;
85 }
86         
87 void Input::curl_callback(char *ptr, size_t bytes)
88 {
89         pending_data.insert(pending_data.end(), ptr, ptr + bytes);
90
91         for ( ;; ) {
92                 // If we don't have enough data (yet) for even the Metacube header, just return.
93                 if (pending_data.size() < sizeof(metacube_block_header)) {
94                         return;
95                 }
96
97                 // Make sure we have the Metacube sync header at the start.
98                 // We may need to skip over junk data (it _should_ not happen, though).
99                 if (!has_metacube_header) {
100                         char *ptr = static_cast<char *>(
101                                 memmem(pending_data.data(), pending_data.size(),
102                                        METACUBE_SYNC, strlen(METACUBE_SYNC)));
103                         if (ptr == NULL) {
104                                 // OK, so we didn't find the sync marker. We know then that
105                                 // we do not have the _full_ marker in the buffer, but we
106                                 // could have N-1 bytes. Drop everything before that,
107                                 // and then give up.
108                                 drop_pending_data(pending_data.size() - (strlen(METACUBE_SYNC) - 1));
109                                 return;
110                         } else {
111                                 // Yay, we found the header. Drop everything (if anything) before it.
112                                 drop_pending_data(ptr - pending_data.data());
113                                 has_metacube_header = true;
114
115                                 // Re-check that we have the entire header; we could have dropped data.
116                                 if (pending_data.size() < sizeof(metacube_block_header)) {
117                                         return;
118                                 }
119                         }
120                 }
121
122                 // Now it's safe to read the header.
123                 metacube_block_header *hdr = reinterpret_cast<metacube_block_header *>(pending_data.data());    
124                 assert(memcmp(hdr->sync, METACUBE_SYNC, sizeof(hdr->sync)) == 0);
125                 uint32_t size = ntohl(hdr->size);
126                 uint32_t flags = ntohl(hdr->flags);
127
128                 // See if we have the entire block. If not, wait for more data.
129                 if (pending_data.size() < sizeof(metacube_block_header) + size) {
130                         return;
131                 }
132
133                 process_block(pending_data.data() + sizeof(metacube_block_header), size, flags);
134
135                 // Consume this block. This isn't the most efficient way of dealing with things
136                 // should we have many blocks, but these routines don't need to be too efficient
137                 // anyway.
138                 pending_data.erase(pending_data.begin(), pending_data.begin() + sizeof(metacube_block_header) + size);
139                 has_metacube_header = false;
140         }
141 }
142                 
143 void Input::process_block(const char *data, uint32_t size, uint32_t flags)
144 {       
145         if (flags & METACUBE_FLAGS_HEADER) {
146                 string header(data, data + size);
147                 for (int i = 0; i < NUM_SERVERS; ++i) {
148                         servers[i].set_header(stream_id, header);
149                 }
150         } else { 
151                 for (int i = 0; i < NUM_SERVERS; ++i) {
152                         servers[i].add_data(stream_id, data, size);
153                 }
154         }
155 }
156
157 void Input::drop_pending_data(size_t num_bytes)
158 {
159         if (num_bytes == 0) {
160                 return;
161         }
162         fprintf(stderr, "Warning: Dropping %lld junk bytes from stream, maybe it is not a Metacube stream?\n",
163                 (long long)num_bytes);
164         pending_data.erase(pending_data.begin(), pending_data.begin() + num_bytes);
165 }
166