From 5d94fe647e59aaec7775f1e1bd4a4982b677af01 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Wed, 29 Dec 2010 22:08:06 +0100 Subject: HTTPServer/HTTPConnection cleanup. --- http_connection.cpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http_connection.cpp (limited to 'http_connection.cpp') diff --git a/http_connection.cpp b/http_connection.cpp new file mode 100644 index 0000000..36c0f00 --- /dev/null +++ b/http_connection.cpp @@ -0,0 +1,38 @@ +#include "http_connection.h" + +#include "http.h" +#include "music.h" + +#include +#include +#include +#include + +HTTP::Connection::Connection(boost::asio::io_service& io_service) : socket(io_service) { +} + +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) { + std::istream is(&buf); + HTTPRequest req(is); + + HTTPResponse res(socket); + + MusicListing::p ml = music::get(req.path); + if(ml) { + res.code = 200; + res.status = "OK"; + + ml->render(req, res); + } else { + res.code = 404; + res.status = "Not Found"; + } +} + +void HTTP::Connection::start() { + 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)); +} -- cgit v1.2.3