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
|
#include "http_connection.h"
#include <iostream>
#include <boost/bind.hpp>
#include <boost/format.hpp>
void HTTP::Connection::send_error(int code, std::string name) {
boost::asio::write(socket, boost::asio::buffer(boost::str(boost::format("HTTP/1.1 %1$d %2$s\r\n\r\n<h1>%1$d %2$s</h1>") % code % name)));
}
void HTTP::Connection::add_header(std::string key, std::string value) {
response_headers.push_back(std::make_pair(key, value));
}
void HTTP::Connection::send_data(const std::string& data) {
write_headers();
boost::asio::write(socket, boost::asio::buffer(data));
}
void HTTP::Connection::send_data(const void* data, std::size_t size) {
write_headers();
boost::asio::write(socket, boost::asio::buffer(data, size));
}
void HTTP::Connection::send_data(std::istream& stream) {
char data[0x1000];
std::streamsize size = 1;
while(size) {
stream.read(data, 0x1000);
size = stream.gcount();
if(size > 0)
send_data(data, size);
}
}
HTTP::Connection::Connection(boost::asio::io_service& io_service) : socket(io_service) {
headers_written = false;
}
void HTTP::Connection::handle_write(const boost::system::error_code& error, size_t bytes_transferred) {
}
void HTTP::Connection::handle_read(const boost::system::error_code& error, size_t bytes_transferred, Handler callback) {
if(!parse_request(buf)) {
// Request parse error.
std::cout << "Request parse error." << std::endl;
send_error(400, "Bad Request");
return;
}
std::cout << "Path: " << std::endl;
for(PathList::iterator it = path.begin(); it != path.end(); it++) {
std::cout << " " << *it << std::endl;
}
std::cout << "Args: " << std::endl;
for(std::map<std::string, std::string>::iterator it = args.begin(); it != args.end(); it++) {
std::cout << " " << it->first << " = " << it->second << std::endl;
}
std::cout << "Headers: " << std::endl;
for(std::map<std::string, std::string>::iterator it = headers.begin(); it != headers.end(); it++) {
std::cout << " " << it->first << " = " << it->second << std::endl;
}
callback(shared_from_this());
}
void HTTP::Connection::read_request(Handler callback) {
boost::asio::async_read_until(socket, buf, "\r\n\r\n", boost::bind(&Connection::handle_read, shared_from_this(),
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred, callback));
}
std::string HTTP::Connection::pop_path_base() {
if(!path.size()) {
return "";
}
base_path.push_back(path.front());
path.pop_front();
return base_path.back();
}
void HTTP::Connection::write_headers() {
if(headers_written) {
return;
}
headers_written = true;
boost::asio::write(socket, boost::asio::buffer(std::string("HTTP/1.1 200 OK\r\n")));
for(HeaderList::iterator it = response_headers.begin(); it != response_headers.end(); it++) {
boost::asio::write(socket, boost::asio::buffer(boost::str(boost::format("%s: %s\r\n") % it->first % it->second)));
}
boost::asio::write(socket, boost::asio::buffer(std::string("\r\n")));
}
|