| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | |
| 6 #define NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 #include "net/base/io_buffer.h" | |
| 12 #include "net/quic/quic_data_stream.h" | |
| 13 #include "net/quic/quic_protocol.h" | |
| 14 #include "url/gurl.h" | |
| 15 | |
| 16 namespace net { | |
| 17 | |
| 18 class HttpResponseHeaders; | |
| 19 class QuicSession; | |
| 20 | |
| 21 namespace test { | |
| 22 class QuicSpdyServerStreamPeer; | |
| 23 } // namespace test | |
| 24 | |
| 25 // All this does right now is aggregate data, and on fin, send an HTTP | |
| 26 // response. | |
| 27 class QuicSpdyServerStream : public QuicDataStream { | |
| 28 public: | |
| 29 QuicSpdyServerStream(QuicStreamId id, QuicSession* session); | |
| 30 ~QuicSpdyServerStream() override; | |
| 31 | |
| 32 // ReliableQuicStream implementation called by the session when there's | |
| 33 // data for us. | |
| 34 uint32 ProcessData(const char* data, uint32 data_len) override; | |
| 35 void OnFinRead() override; | |
| 36 | |
| 37 void ParseRequestHeaders(); | |
| 38 | |
| 39 private: | |
| 40 friend class test::QuicSpdyServerStreamPeer; | |
| 41 | |
| 42 // Sends a basic 200 response using SendHeaders for the headers and WriteData | |
| 43 // for the body. | |
| 44 void SendResponse(); | |
| 45 | |
| 46 // Sends a basic 500 response using SendHeaders for the headers and WriteData | |
| 47 // for the body | |
| 48 void SendErrorResponse(); | |
| 49 | |
| 50 void SendHeadersAndBody(const HttpResponseHeaders& response_headers, | |
| 51 base::StringPiece body); | |
| 52 | |
| 53 SpdyHeaderBlock headers_; | |
| 54 std::string body_; | |
| 55 GURL request_url_; | |
| 56 | |
| 57 // Buffer into which response header data is read. | |
| 58 scoped_refptr<GrowableIOBuffer> read_buf_; | |
| 59 bool request_headers_received_; | |
| 60 | |
| 61 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); | |
| 62 }; | |
| 63 | |
| 64 } // namespace net | |
| 65 | |
| 66 #endif // NET_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | |
| OLD | NEW |