[email protected] | 39c48fc | 2012-03-12 18:42:12 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | 1407b6e | 2010-08-27 21:39:48 | [diff] [blame] | 5 | #ifndef NET_SPDY_SPDY_FRAME_BUILDER_H_ |
| 6 | #define NET_SPDY_SPDY_FRAME_BUILDER_H_ |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 7 | |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 8 | #include <string> |
| 9 | |
[email protected] | 1407b6e | 2010-08-27 21:39:48 | [diff] [blame] | 10 | #include "base/basictypes.h" |
[email protected] | f707c34 | 2013-01-09 04:40:25 | [diff] [blame] | 11 | #include "base/memory/scoped_ptr.h" |
[email protected] | d069c11a | 2013-04-13 00:01:55 | [diff] [blame] | 12 | #include "base/strings/string_piece.h" |
[email protected] | 0e6f619 | 2011-12-28 23:18:21 | [diff] [blame] | 13 | #include "base/sys_byteorder.h" |
[email protected] | 172da1b | 2011-08-12 15:52:26 | [diff] [blame] | 14 | #include "net/base/net_export.h" |
[email protected] | dab9c7d | 2010-02-06 21:44:32 | [diff] [blame] | 15 | #include "net/spdy/spdy_protocol.h" |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 16 | |
[email protected] | ff98d7f0 | 2012-03-22 21:44:19 | [diff] [blame] | 17 | namespace net { |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 18 | |
[email protected] | 4e97435 | 2013-02-15 17:56:57 | [diff] [blame] | 19 | class SpdyFramer; |
| 20 | |
[email protected] | f707c34 | 2013-01-09 04:40:25 | [diff] [blame] | 21 | // This class provides facilities for basic binary value packing |
[email protected] | 955fc2e7 | 2010-02-08 20:37:30 | [diff] [blame] | 22 | // into Spdy frames. |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 23 | // |
[email protected] | 955fc2e7 | 2010-02-08 20:37:30 | [diff] [blame] | 24 | // The SpdyFrameBuilder supports appending primitive values (int, string, etc) |
| 25 | // to a frame instance. The SpdyFrameBuilder grows its internal memory buffer |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 26 | // dynamically to hold the sequence of primitive values. The internal memory |
[email protected] | 955fc2e7 | 2010-02-08 20:37:30 | [diff] [blame] | 27 | // buffer is exposed as the "data" of the SpdyFrameBuilder. |
[email protected] | 172da1b | 2011-08-12 15:52:26 | [diff] [blame] | 28 | class NET_EXPORT_PRIVATE SpdyFrameBuilder { |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 29 | public: |
[email protected] | a944f74e | 2012-12-19 23:10:28 | [diff] [blame] | 30 | // Initializes a SpdyFrameBuilder with a buffer of given size |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 31 | SpdyFrameBuilder(size_t size, SpdyMajorVersion version); |
[email protected] | a944f74e | 2012-12-19 23:10:28 | [diff] [blame] | 32 | |
[email protected] | f707c34 | 2013-01-09 04:40:25 | [diff] [blame] | 33 | ~SpdyFrameBuilder(); |
| 34 | |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 35 | // Returns the total size of the SpdyFrameBuilder's data, which may include |
| 36 | // multiple frames. |
| 37 | size_t length() const { return offset_ + length_; } |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 38 | |
[email protected] | 4e97435 | 2013-02-15 17:56:57 | [diff] [blame] | 39 | // Returns a writeable buffer of given size in bytes, to be appended to the |
| 40 | // currently written frame. Does bounds checking on length but does not |
| 41 | // increment the underlying iterator. To do so, consumers should subsequently |
| 42 | // call Seek(). |
| 43 | // In general, consumers should use Write*() calls instead of this. |
| 44 | // Returns NULL on failure. |
| 45 | char* GetWritableBuffer(size_t length); |
| 46 | |
| 47 | // Seeks forward by the given number of bytes. Useful in conjunction with |
| 48 | // GetWriteableBuffer() above. |
| 49 | bool Seek(size_t length); |
| 50 | |
[email protected] | eb566e51 | 2013-02-26 23:42:18 | [diff] [blame] | 51 | // Populates this frame with a SPDY control frame header using |
| 52 | // version-specific information from the |framer| and length information from |
[email protected] | 7b3fee16 | 2013-04-09 18:05:03 | [diff] [blame] | 53 | // capacity_. The given type must be a control frame type. |
[email protected] | d5b42bdd | 2013-05-15 20:42:36 | [diff] [blame] | 54 | // Used only for SPDY versions <4. |
[email protected] | eb566e51 | 2013-02-26 23:42:18 | [diff] [blame] | 55 | bool WriteControlFrameHeader(const SpdyFramer& framer, |
[email protected] | 7b3fee16 | 2013-04-09 18:05:03 | [diff] [blame] | 56 | SpdyFrameType type, |
[email protected] | eb566e51 | 2013-02-26 23:42:18 | [diff] [blame] | 57 | uint8 flags); |
| 58 | |
| 59 | // Populates this frame with a SPDY data frame header using version-specific |
| 60 | // information from the |framer| and length information from capacity_. |
| 61 | bool WriteDataFrameHeader(const SpdyFramer& framer, |
| 62 | SpdyStreamId stream_id, |
[email protected] | c143f274 | 2014-03-31 00:48:54 | [diff] [blame] | 63 | uint8 flags); |
[email protected] | eb566e51 | 2013-02-26 23:42:18 | [diff] [blame] | 64 | |
[email protected] | d5b42bdd | 2013-05-15 20:42:36 | [diff] [blame] | 65 | // Populates this frame with a SPDY4/HTTP2 frame prefix using |
| 66 | // version-specific information from the |framer| and length information from |
| 67 | // capacity_. The given type must be a control frame type. |
| 68 | // Used only for SPDY versions >=4. |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 69 | bool BeginNewFrame(const SpdyFramer& framer, |
| 70 | SpdyFrameType type, |
| 71 | uint8 flags, |
| 72 | SpdyStreamId stream_id); |
[email protected] | d5b42bdd | 2013-05-15 20:42:36 | [diff] [blame] | 73 | |
[email protected] | 955fc2e7 | 2010-02-08 20:37:30 | [diff] [blame] | 74 | // Takes the buffer from the SpdyFrameBuilder. |
| 75 | SpdyFrame* take() { |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 76 | if (version_ > SPDY3) { |
| 77 | DLOG_IF(DFATAL, SpdyConstants::GetFrameMaximumSize(version_) < length_) |
| 78 | << "Frame length " << length_ |
| 79 | << " is longer than the maximum allowed length."; |
| 80 | } |
| 81 | SpdyFrame* rv = new SpdyFrame(buffer_.release(), length(), true); |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 82 | capacity_ = 0; |
| 83 | length_ = 0; |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 84 | offset_ = 0; |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 85 | return rv; |
| 86 | } |
| 87 | |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 88 | // Methods for adding to the payload. These values are appended to the end |
[email protected] | 39c48fc | 2012-03-12 18:42:12 | [diff] [blame] | 89 | // of the SpdyFrameBuilder payload. Note - binary integers are converted from |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 90 | // host to network form. |
[email protected] | ca33c88 | 2012-03-23 01:39:30 | [diff] [blame] | 91 | bool WriteUInt8(uint8 value) { |
| 92 | return WriteBytes(&value, sizeof(value)); |
| 93 | } |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 94 | bool WriteUInt16(uint16 value) { |
| 95 | value = htons(value); |
| 96 | return WriteBytes(&value, sizeof(value)); |
| 97 | } |
[email protected] | 66961b2 | 2014-08-21 20:17:38 | [diff] [blame] | 98 | bool WriteUInt24(uint32 value) { |
| 99 | value = htonl(value); |
| 100 | return WriteBytes(reinterpret_cast<char*>(&value) + 1, |
| 101 | sizeof(value) - 1); |
| 102 | } |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 103 | bool WriteUInt32(uint32 value) { |
| 104 | value = htonl(value); |
| 105 | return WriteBytes(&value, sizeof(value)); |
| 106 | } |
[email protected] | bd254d5 | 2014-02-12 19:03:55 | [diff] [blame] | 107 | bool WriteUInt64(uint64 value) { |
| 108 | uint32 upper = htonl(value >> 32); |
pkasting | 1662810 | 2014-12-05 22:49:40 | [diff] [blame] | 109 | uint32 lower = htonl(static_cast<uint32>(value)); |
[email protected] | bd254d5 | 2014-02-12 19:03:55 | [diff] [blame] | 110 | return (WriteBytes(&upper, sizeof(upper)) && |
| 111 | WriteBytes(&lower, sizeof(lower))); |
| 112 | } |
zhuoyu.qian | 848a3392 | 2015-03-18 01:58:00 | [diff] [blame^] | 113 | bool WriteStringPiece16(const base::StringPiece& value); |
[email protected] | 39c48fc | 2012-03-12 18:42:12 | [diff] [blame] | 114 | bool WriteStringPiece32(const base::StringPiece& value); |
[email protected] | fb2323d7 | 2011-11-29 03:13:03 | [diff] [blame] | 115 | bool WriteBytes(const void* data, uint32 data_len); |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 116 | |
[email protected] | 4e97435 | 2013-02-15 17:56:57 | [diff] [blame] | 117 | // Update (in-place) the length field in the frame being built to reflect the |
| 118 | // current actual length of bytes written to said frame through this builder. |
| 119 | // The framer parameter is used to determine version-specific location and |
| 120 | // size information of the length field to be written, and must be initialized |
| 121 | // with the correct version for the frame being written. |
| 122 | bool RewriteLength(const SpdyFramer& framer); |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 123 | |
[email protected] | 3b6c899 | 2013-02-19 22:10:02 | [diff] [blame] | 124 | // Update (in-place) the length field in the frame being built to reflect the |
| 125 | // given length. |
| 126 | // The framer parameter is used to determine version-specific location and |
| 127 | // size information of the length field to be written, and must be initialized |
| 128 | // with the correct version for the frame being written. |
| 129 | bool OverwriteLength(const SpdyFramer& framer, size_t length); |
| 130 | |
[email protected] | c143f274 | 2014-03-31 00:48:54 | [diff] [blame] | 131 | // Update (in-place) the flags field in the frame being built to reflect the |
| 132 | // given flags value. |
| 133 | // Used only for SPDY versions >=4. |
| 134 | bool OverwriteFlags(const SpdyFramer& framer, uint8 flags); |
| 135 | |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 136 | private: |
[email protected] | 4e97435 | 2013-02-15 17:56:57 | [diff] [blame] | 137 | // Checks to make sure that there is an appropriate amount of space for a |
| 138 | // write of given size, in bytes. |
| 139 | bool CanWrite(size_t length) const; |
[email protected] | 5e8bf9c | 2012-04-13 00:47:53 | [diff] [blame] | 140 | |
[email protected] | f707c34 | 2013-01-09 04:40:25 | [diff] [blame] | 141 | scoped_ptr<char[]> buffer_; |
[email protected] | eb566e51 | 2013-02-26 23:42:18 | [diff] [blame] | 142 | size_t capacity_; // Allocation size of payload, set by constructor. |
[email protected] | 144a8c7 | 2014-04-29 17:02:06 | [diff] [blame] | 143 | size_t length_; // Length of the latest frame in the buffer. |
| 144 | size_t offset_; // Position at which the latest frame begins. |
| 145 | |
| 146 | const SpdyMajorVersion version_; |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 147 | }; |
| 148 | |
[email protected] | ff98d7f0 | 2012-03-22 21:44:19 | [diff] [blame] | 149 | } // namespace net |
[email protected] | aea8060 | 2009-09-18 00:55:08 | [diff] [blame] | 150 | |
[email protected] | 1407b6e | 2010-08-27 21:39:48 | [diff] [blame] | 151 | #endif // NET_SPDY_SPDY_FRAME_BUILDER_H_ |