// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_TEST_EMBEDDED_TEST_SERVER_HTTP_CONNECTION_H_ #define NET_TEST_EMBEDDED_TEST_SERVER_HTTP_CONNECTION_H_ #include #include "base/callback.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/memory/weak_ptr.h" #include "base/strings/string_piece.h" #include "net/base/completion_once_callback.h" #include "net/base/io_buffer.h" #include "net/test/embedded_test_server/http_request.h" #include "net/test/embedded_test_server/http_response.h" namespace net { class StreamSocket; namespace test_server { class HttpConnection; // Calblack called when a request is parsed. Response should be sent // using HttpConnection::SendResponse() on the |connection| argument. typedef base::Callback request)> HandleRequestCallback; // Wraps the connection socket. Accepts incoming data and sends responses. // If a valid request is parsed, then |callback_| is invoked. class HttpConnection { public: HttpConnection(std::unique_ptr socket, const HandleRequestCallback& callback); ~HttpConnection(); // Sends the |response_string| to the client and calls |callback| once done. void SendResponseBytes(const std::string& response_string, const SendCompleteCallback& callback); // Accepts raw chunk of data from the client. Internally, passes it to the // HttpRequestParser class. If a request is parsed, then |callback_| is // called. int ReadData(CompletionOnceCallback callback); bool ConsumeData(int size); private: friend class EmbeddedTestServer; void SendInternal(const base::Closure& callback, scoped_refptr buffer); void OnSendInternalDone(const base::Closure& callback, scoped_refptr buffer, int rv); base::WeakPtr GetWeakPtr(); std::unique_ptr socket_; const HandleRequestCallback callback_; HttpRequestParser request_parser_; scoped_refptr read_buf_; base::WeakPtrFactory weak_factory_; DISALLOW_COPY_AND_ASSIGN(HttpConnection); }; } // namespace test_server } // namespace net #endif // NET_TEST_EMBEDDED_TEST_SERVER_HTTP_CONNECTION_H_