| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/test/embedded_test_server/http_connection.h" | 5 #include "net/test/embedded_test_server/http_connection.h" |
| 6 | 6 |
| 7 #include "net/socket/stream_listen_socket.h" | 7 #include "net/socket/stream_listen_socket.h" |
| 8 #include "net/test/embedded_test_server/http_response.h" | 8 #include "net/test/embedded_test_server/http_response.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| 11 namespace test_server { | 11 namespace test_server { |
| 12 | 12 |
| 13 HttpConnection::HttpConnection(scoped_ptr<StreamListenSocket> socket, | 13 HttpConnection::HttpConnection(scoped_ptr<StreamListenSocket> socket, |
| 14 const HandleRequestCallback& callback) | 14 const HandleRequestCallback& callback) |
| 15 : socket_(socket.Pass()), | 15 : socket_(socket.Pass()), callback_(callback) { |
| 16 callback_(callback) { | |
| 17 } | 16 } |
| 18 | 17 |
| 19 HttpConnection::~HttpConnection() { | 18 HttpConnection::~HttpConnection() { |
| 20 } | 19 } |
| 21 | 20 |
| 22 void HttpConnection::SendResponse(scoped_ptr<HttpResponse> response) const { | 21 void HttpConnection::SendResponse(scoped_ptr<HttpResponse> response) const { |
| 23 const std::string response_string = response->ToResponseString(); | 22 const std::string response_string = response->ToResponseString(); |
| 24 socket_->Send(response_string.c_str(), response_string.length()); | 23 socket_->Send(response_string.c_str(), response_string.length()); |
| 25 } | 24 } |
| 26 | 25 |
| 27 void HttpConnection::ReceiveData(const base::StringPiece& data) { | 26 void HttpConnection::ReceiveData(const base::StringPiece& data) { |
| 28 request_parser_.ProcessChunk(data); | 27 request_parser_.ProcessChunk(data); |
| 29 if (request_parser_.ParseRequest() == HttpRequestParser::ACCEPTED) { | 28 if (request_parser_.ParseRequest() == HttpRequestParser::ACCEPTED) { |
| 30 callback_.Run(this, request_parser_.GetRequest()); | 29 callback_.Run(this, request_parser_.GetRequest()); |
| 31 } | 30 } |
| 32 } | 31 } |
| 33 | 32 |
| 34 } // namespace test_server | 33 } // namespace test_server |
| 35 } // namespace net | 34 } // namespace net |
| OLD | NEW |