summaryrefslogtreecommitdiff
path: root/http_connection.cpp
blob: 041cd058ffb891e29704555d1a2ac8814cbbb1d3 (plain)
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
#include "http_connection.h"

#include <iostream>

#include <boost/bind.hpp>
#include <boost/format.hpp>

namespace response_map_init {
	typedef std::pair<int, std::string> P;
	const P m[] = {
		P(200, "OK"),
		P(400, "Bad Request"),
		P(403, "Forbidden"),
		P(404, "Not Found"),
		P(500, "Internal Server Error"),
		P(501, "Not Implemented")
	};
	const P* begin = m;
	const P* end = m + sizeof(m) / sizeof(P);
}

const std::map<int, std::string> response_map(response_map_init::begin, response_map_init::end);

void HTTP::Connection::send_error(int code) {
	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 % response_map.find(code)->second)));
}

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) {
	try {
		if(!parse_request(buf)) {
			// Request parse error.
			std::cout << "Request parse error." << std::endl;
			send_error(400);
			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());
	
	// Catch unhandled exceptions.
	} catch(std::exception& e) {
		std::cerr << "Unhandled exception while handling request: " << e.what() << std::endl;
		
		try {
			send_error(500);
		
		} catch(...) {
			// Ignored.
		}
	}
}

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")));
}