1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
extern "C" {
#include "server_eh.h"
#include <unistd.h>
#include <signal.h>
#include <ev.h>
#include <string.h>
#include <netinet/in.h>
#include <sys/sendfile.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <magic.h>
}
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
#include <map>
#include <forward_list>
#include <functional>
#include <boost/regex.hpp>
#include "leveldb/db.h"
#include "leveldb/comparator.h"
std::forward_list<std::pair<boost::regex,std::function<void(const boost::cmatch&, struct http_request*, const int)>>> web_handler;
static std::map<std::string,leveldb::DB*> dbs;
static magic_t magic_cookie;
bool sensor_name_is_sane(std::string& name) {
for (auto it = name.begin(); it != name.end(); ++it) {
if (not (*it >= '0' and *it <= '9' or
*it >= 'A' and *it <= 'Z' or
*it >= 'a' and *it <= 'z')) {
return false;
}
}
return true;
}
leveldb::DB *getDB(std::string& name) {
if (not sensor_name_is_sane(name)) {
return nullptr;
}
if (dbs.find(name) == dbs.end()) {
leveldb::DB *db;
leveldb::Options options;
options.create_if_missing = true;
leveldb::Status status = leveldb::DB::Open(options, "/tmp/testdb."+name, &db);
if (not status.ok()) {
return nullptr;
}
dbs[name] = db;
}
return dbs.at(name);
}
// see http_parser.h
// char DELETE = 0;
// char GET = 1;
// char HEAD = 2;
// char POST = 3;
// char PUT = 4;
static inline void http_ok(int fd, const char *content_type, const char *extra_headers) {
#define write_const(fd, text) \
write(fd, text, strlen(text));
write_const(fd, "HTTP/1.1 200 OK\r\nContent-Type: ");
write_const(fd, content_type);
write_const(fd, "\r\n");
if (extra_headers) write_const(fd, extra_headers);
write_const(fd, "\r\n");
#undef write_const
}
static inline void send_file(const char *path, int fd_out) {
int fd_in;
struct stat stat_buf;
const char *mime_type = magic_file(magic_cookie, path);
if (mime_type == NULL) {
mime_type = "application/octet-stream";
}
http_ok(fd_out, mime_type, nullptr);
fd_in = open(path, O_RDONLY);
fstat(fd_in, &stat_buf);
std::cerr << "GET " << path << std::endl;
sendfile(fd_out, fd_in, 0, stat_buf.st_size);
close(fd_in);
}
std::string make_key(uint64_t timestamp) {
std::stringstream key;
key << "ts-";
key << std::setfill('0') << std::setw(20) << timestamp;
return key.str();
}
void web_handle_api_value(const boost::cmatch &match, const struct http_request *request, const int fd) {
const char* reply_OK = "HTTP/1.1 200 Value received\r\n\r\n";
const char* reply_ERR = "HTTP/1.1 500 Internal Error\r\n\r\n";
std::string sensor(match[1].str());
uint64_t timestamp = std::stoul(match[2].str());
std::string value(request->body);
leveldb::DB *db = getDB(sensor);
if (db == nullptr) {
write(fd, reply_ERR, strlen(reply_ERR));
return;
}
std::cout << "sensor=" << sensor << " key=" << make_key(timestamp) << std::endl;
db->Put(leveldb::WriteOptions(), make_key(timestamp), value);
write(fd, reply_OK, strlen(reply_OK));
}
void web_handle_api_range(const boost::cmatch &match, const struct http_request *request, const int fd) {
static const leveldb::Comparator *cmp = leveldb::BytewiseComparator();
const char* reply_OK = "HTTP/1.1 200 Value received\r\n";
const char* reply_ERR = "HTTP/1.1 500 Internal Error\r\n\r\n";
const char* content_type = "Content-Type: application/json; encoding=UTF-8\r\n";
std::string sensor(match[1].str());
uint64_t start = std::stoul(match[2].str());
uint64_t end = std::stoul(match[3].str());
std::string key_start(std::move(make_key(start)));
std::string key_end(std::move(make_key(end)));
leveldb::DB *db = getDB(sensor);
if (db == nullptr) {
write(fd, reply_ERR, strlen(reply_ERR));
return;
}
http_ok(fd, "application/json; encoding=UTF-8", nullptr);
std::cout << "sensor=" << sensor << " start=" << start << " end=" << end << std::endl;
std::ostringstream out;
out << "{'sensor':'" << sensor << "', 'error':null, 'data':[";
write(fd, out.str().c_str(), out.str().size());
usleep(2000000);
leveldb::Iterator* it = db->NewIterator(leveldb::ReadOptions());
bool first = true;
for (it->Seek(key_start);
it->Valid() && cmp->Compare(it->key(), key_end) < 0;
it->Next()) {
if (it->key().size() != 20+3) {
std::cerr << "invalid key" << std::endl;
return;
}
uint64_t timestamp = std::stoul(it->key().data()+3);
std::string s_timestamp = std::to_string(timestamp);
if (first) {
first = false;
write(fd, "[", 1);
} else {
write(fd, ",[", 2);
}
write(fd, s_timestamp.c_str(), s_timestamp.size());
write(fd, ",'", 2);
write(fd, it->value().data(), it->value().size());
write(fd, "']", 2);
}
delete it;
}
void handle_request(struct http_request *request, int fd) {
boost::cmatch match;
const char *error = "HTTP/1.1 404 Not Found\r\n\r\n";
if (request->url == NULL) { // happens only under high load, why?
std::cerr << "url is null" << std::endl;
goto handled;
}
for (auto item = web_handler.begin(); item != web_handler.end(); ++item) {
if (boost::regex_match(request->url, match, (*item).first)) {
(*item).second(match, request, fd);
goto handled;
}
}
write(fd, error, strlen(error));
handled:
close(fd);
}
static struct http_server server;
void sigint_handler(int s) {
struct ev_loop *loop = server.loop;
ev_io_stop(EV_A_ server.ev_accept);
exit(0);
}
int main(int argc, char **argv) {
// configure server structures and desired listen address
struct sockaddr_in listen_addr;
memset(&listen_addr, 0, sizeof(listen_addr));
listen_addr.sin_family = AF_INET;
listen_addr.sin_addr.s_addr = INADDR_ANY;
listen_addr.sin_port = htons(5000);
server.listen_addr = &listen_addr;
server.handle_request = handle_request;
// ignore SIGPIPE
struct sigaction on_sigpipe;
on_sigpipe.sa_handler = SIG_IGN;
sigemptyset(&on_sigpipe.sa_mask);
sigaction(SIGPIPE, &on_sigpipe, NULL);
// handle C-c
struct sigaction on_sigint;
on_sigint.sa_handler = sigint_handler;
sigemptyset(&on_sigint.sa_mask);
on_sigint.sa_flags = 0;
sigaction(SIGINT, &on_sigint, NULL);
// Routing
web_handler.push_front(std::make_pair(
boost::regex("/"),
[](const boost::cmatch &match, const struct http_request *request, const int fd){
send_file("index.html", fd);
}));
web_handler.push_front(std::make_pair(
boost::regex("/public/(.+)"),
[](const boost::cmatch &match, const struct http_request *request, const int fd){
/// XXX possible directory traversion
std::string path("public/" + match[1].str());
send_file(path.c_str(), fd);
}));
web_handler.push_front(std::make_pair(
boost::regex("/api/value/([a-zA-Z0-9]+)/([0-9]+)"),
web_handle_api_value));
web_handler.push_front(std::make_pair(
boost::regex("/api/range/([a-zA-Z0-9]+)/([0-9]+)/([0-9]+)"),
web_handle_api_range));
magic_cookie = magic_open(MAGIC_MIME_TYPE);
magic_load(magic_cookie, NULL);
// start the server
return http_server_loop(&server);
}
|