blob: c8dd82e5279ede707ebb5d3b310a34f42e9b8f41 [file] [log] [blame]
[email protected]39c48fc2012-03-12 18:42:121// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]aea80602009-09-18 00:55:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]1407b6e2010-08-27 21:39:485#ifndef NET_SPDY_SPDY_FRAME_BUILDER_H_
6#define NET_SPDY_SPDY_FRAME_BUILDER_H_
[email protected]aea80602009-09-18 00:55:087
[email protected]aea80602009-09-18 00:55:088#include <string>
9
[email protected]1407b6e2010-08-27 21:39:4810#include "base/basictypes.h"
[email protected]f707c342013-01-09 04:40:2511#include "base/memory/scoped_ptr.h"
[email protected]d069c11a2013-04-13 00:01:5512#include "base/strings/string_piece.h"
[email protected]0e6f6192011-12-28 23:18:2113#include "base/sys_byteorder.h"
[email protected]172da1b2011-08-12 15:52:2614#include "net/base/net_export.h"
[email protected]dab9c7d2010-02-06 21:44:3215#include "net/spdy/spdy_protocol.h"
[email protected]aea80602009-09-18 00:55:0816
[email protected]ff98d7f02012-03-22 21:44:1917namespace net {
[email protected]aea80602009-09-18 00:55:0818
[email protected]4e974352013-02-15 17:56:5719class SpdyFramer;
20
[email protected]f707c342013-01-09 04:40:2521// This class provides facilities for basic binary value packing
[email protected]955fc2e72010-02-08 20:37:3022// into Spdy frames.
[email protected]aea80602009-09-18 00:55:0823//
[email protected]955fc2e72010-02-08 20:37:3024// The SpdyFrameBuilder supports appending primitive values (int, string, etc)
25// to a frame instance. The SpdyFrameBuilder grows its internal memory buffer
[email protected]aea80602009-09-18 00:55:0826// dynamically to hold the sequence of primitive values. The internal memory
[email protected]955fc2e72010-02-08 20:37:3027// buffer is exposed as the "data" of the SpdyFrameBuilder.
[email protected]172da1b2011-08-12 15:52:2628class NET_EXPORT_PRIVATE SpdyFrameBuilder {
[email protected]aea80602009-09-18 00:55:0829 public:
[email protected]a944f74e2012-12-19 23:10:2830 // Initializes a SpdyFrameBuilder with a buffer of given size
31 explicit SpdyFrameBuilder(size_t size);
32
[email protected]f707c342013-01-09 04:40:2533 ~SpdyFrameBuilder();
34
[email protected]955fc2e72010-02-08 20:37:3035 // Returns the size of the SpdyFrameBuilder's data.
[email protected]bbfc65e2012-04-21 01:32:4036 size_t length() const { return length_; }
[email protected]aea80602009-09-18 00:55:0837
[email protected]4e974352013-02-15 17:56:5738 // Returns a writeable buffer of given size in bytes, to be appended to the
39 // currently written frame. Does bounds checking on length but does not
40 // increment the underlying iterator. To do so, consumers should subsequently
41 // call Seek().
42 // In general, consumers should use Write*() calls instead of this.
43 // Returns NULL on failure.
44 char* GetWritableBuffer(size_t length);
45
46 // Seeks forward by the given number of bytes. Useful in conjunction with
47 // GetWriteableBuffer() above.
48 bool Seek(size_t length);
49
[email protected]eb566e512013-02-26 23:42:1850 // Populates this frame with a SPDY control frame header using
51 // version-specific information from the |framer| and length information from
[email protected]7b3fee162013-04-09 18:05:0352 // capacity_. The given type must be a control frame type.
[email protected]d5b42bdd2013-05-15 20:42:3653 // Used only for SPDY versions <4.
[email protected]eb566e512013-02-26 23:42:1854 bool WriteControlFrameHeader(const SpdyFramer& framer,
[email protected]7b3fee162013-04-09 18:05:0355 SpdyFrameType type,
[email protected]eb566e512013-02-26 23:42:1856 uint8 flags);
57
58 // Populates this frame with a SPDY data frame header using version-specific
59 // information from the |framer| and length information from capacity_.
60 bool WriteDataFrameHeader(const SpdyFramer& framer,
61 SpdyStreamId stream_id,
62 SpdyDataFlags flags);
63
[email protected]d5b42bdd2013-05-15 20:42:3664 // Populates this frame with a SPDY4/HTTP2 frame prefix using
65 // version-specific information from the |framer| and length information from
66 // capacity_. The given type must be a control frame type.
67 // Used only for SPDY versions >=4.
68 bool WriteFramePrefix(const SpdyFramer& framer,
69 SpdyFrameType type,
70 uint8 flags,
71 SpdyStreamId stream_id);
72
[email protected]955fc2e72010-02-08 20:37:3073 // Takes the buffer from the SpdyFrameBuilder.
74 SpdyFrame* take() {
[email protected]e251db172013-02-26 01:45:1575 SpdyFrame* rv = new SpdyFrame(buffer_.release(), length_, true);
[email protected]aea80602009-09-18 00:55:0876 capacity_ = 0;
77 length_ = 0;
78 return rv;
79 }
80
[email protected]aea80602009-09-18 00:55:0881 // Methods for adding to the payload. These values are appended to the end
[email protected]39c48fc2012-03-12 18:42:1282 // of the SpdyFrameBuilder payload. Note - binary integers are converted from
[email protected]aea80602009-09-18 00:55:0883 // host to network form.
[email protected]ca33c882012-03-23 01:39:3084 bool WriteUInt8(uint8 value) {
85 return WriteBytes(&value, sizeof(value));
86 }
[email protected]aea80602009-09-18 00:55:0887 bool WriteUInt16(uint16 value) {
88 value = htons(value);
89 return WriteBytes(&value, sizeof(value));
90 }
91 bool WriteUInt32(uint32 value) {
92 value = htonl(value);
93 return WriteBytes(&value, sizeof(value));
94 }
[email protected]bd254d52014-02-12 19:03:5595 bool WriteUInt64(uint64 value) {
96 uint32 upper = htonl(value >> 32);
97 uint32 lower = htonl(value);
98 return (WriteBytes(&upper, sizeof(upper)) &&
99 WriteBytes(&lower, sizeof(lower)));
100 }
[email protected]39c48fc2012-03-12 18:42:12101 // TODO(hkhalil) Rename to WriteStringPiece16().
[email protected]aea80602009-09-18 00:55:08102 bool WriteString(const std::string& value);
[email protected]39c48fc2012-03-12 18:42:12103 bool WriteStringPiece32(const base::StringPiece& value);
[email protected]fb2323d72011-11-29 03:13:03104 bool WriteBytes(const void* data, uint32 data_len);
[email protected]aea80602009-09-18 00:55:08105
[email protected]4e974352013-02-15 17:56:57106 // Update (in-place) the length field in the frame being built to reflect the
107 // current actual length of bytes written to said frame through this builder.
108 // The framer parameter is used to determine version-specific location and
109 // size information of the length field to be written, and must be initialized
110 // with the correct version for the frame being written.
111 bool RewriteLength(const SpdyFramer& framer);
[email protected]aea80602009-09-18 00:55:08112
[email protected]3b6c8992013-02-19 22:10:02113 // Update (in-place) the length field in the frame being built to reflect the
114 // given length.
115 // The framer parameter is used to determine version-specific location and
116 // size information of the length field to be written, and must be initialized
117 // with the correct version for the frame being written.
118 bool OverwriteLength(const SpdyFramer& framer, size_t length);
119
[email protected]aea80602009-09-18 00:55:08120 private:
[email protected]4e974352013-02-15 17:56:57121 // Checks to make sure that there is an appropriate amount of space for a
122 // write of given size, in bytes.
123 bool CanWrite(size_t length) const;
[email protected]5e8bf9c2012-04-13 00:47:53124
[email protected]f707c342013-01-09 04:40:25125 scoped_ptr<char[]> buffer_;
[email protected]eb566e512013-02-26 23:42:18126 size_t capacity_; // Allocation size of payload, set by constructor.
127 size_t length_; // Current length of the buffer.
[email protected]aea80602009-09-18 00:55:08128};
129
[email protected]ff98d7f02012-03-22 21:44:19130} // namespace net
[email protected]aea80602009-09-18 00:55:08131
[email protected]1407b6e2010-08-27 21:39:48132#endif // NET_SPDY_SPDY_FRAME_BUILDER_H_