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
3 // found in the LICENSE file.
5 #include "net/quic/quic_data_writer.h"
11 #include "base/basictypes.h"
12 #include "base/logging.h"
14 using base::StringPiece
;
15 using std::numeric_limits
;
19 QuicDataWriter::QuicDataWriter(size_t size
)
20 : buffer_(new char[size
]),
25 QuicDataWriter::~QuicDataWriter() {
29 char* QuicDataWriter::take() {
37 bool QuicDataWriter::WriteUInt8(uint8 value
) {
38 return WriteBytes(&value
, sizeof(value
));
41 bool QuicDataWriter::WriteUInt16(uint16 value
) {
42 return WriteBytes(&value
, sizeof(value
));
45 bool QuicDataWriter::WriteUInt32(uint32 value
) {
46 return WriteBytes(&value
, sizeof(value
));
49 bool QuicDataWriter::WriteUInt48(uint64 value
) {
50 uint32 hi
= value
>> 32;
51 uint32 lo
= value
& GG_UINT64_C(0x00000000FFFFFFFF);
52 return WriteUInt32(lo
) && WriteUInt16(hi
);
55 bool QuicDataWriter::WriteUInt64(uint64 value
) {
56 return WriteBytes(&value
, sizeof(value
));
59 bool QuicDataWriter::WriteUFloat16(uint64 value
) {
61 if (value
< (GG_UINT64_C(1) << kUFloat16MantissaEffectiveBits
)) {
62 // Fast path: either the value is denormalized, or has exponent zero.
63 // Both cases are represented by the value itself.
65 } else if (value
>= kUFloat16MaxValue
) {
66 // Value is out of range; clamp it to the maximum representable.
67 result
= numeric_limits
<uint16
>::max();
69 // The highest bit is between position 13 and 42 (zero-based), which
70 // corresponds to exponent 1-30. In the output, mantissa is from 0 to 10,
71 // hidden bit is 11 and exponent is 11 to 15. Shift the highest bit to 11
72 // and count the shifts.
74 for (uint16 offset
= 16; offset
> 0; offset
/= 2) {
75 // Right-shift the value until the highest bit is in position 11.
76 // For offset of 16, 8, 4, 2 and 1 (binary search over 1-30),
77 // shift if the bit is at or above 11 + offset.
78 if (value
>= (GG_UINT64_C(1) << (kUFloat16MantissaBits
+ offset
))) {
84 DCHECK_GE(exponent
, 1);
85 DCHECK_LE(exponent
, kUFloat16MaxExponent
);
86 DCHECK_GE(value
, GG_UINT64_C(1) << kUFloat16MantissaBits
);
87 DCHECK_LT(value
, GG_UINT64_C(1) << kUFloat16MantissaEffectiveBits
);
89 // Hidden bit (position 11) is set. We should remove it and increment the
90 // exponent. Equivalently, we just add it to the exponent.
91 // This hides the bit.
92 result
= value
+ (exponent
<< kUFloat16MantissaBits
);
95 return WriteBytes(&result
, sizeof(result
));
98 bool QuicDataWriter::WriteStringPiece16(StringPiece val
) {
99 if (val
.length() > numeric_limits
<uint16
>::max()) {
102 if (!WriteUInt16(val
.size())) {
105 return WriteBytes(val
.data(), val
.size());
108 bool QuicDataWriter::WriteIOVector(const IOVector
& data
) {
109 char *dest
= BeginWrite(data
.TotalBufferSize());
113 for (size_t i
= 0; i
< data
.Size(); ++i
) {
114 WriteBytes(data
.iovec()[i
].iov_base
, data
.iovec()[i
].iov_len
);
120 char* QuicDataWriter::BeginWrite(size_t length
) {
121 if (length_
> capacity_
) {
125 if (capacity_
- length_
< length
) {
129 #ifdef ARCH_CPU_64_BITS
130 DCHECK_LE(length
, numeric_limits
<uint32
>::max());
133 return buffer_
+ length_
;
136 bool QuicDataWriter::WriteBytes(const void* data
, size_t data_len
) {
137 char* dest
= BeginWrite(data_len
);
142 memcpy(dest
, data
, data_len
);
148 bool QuicDataWriter::WriteRepeatedByte(uint8 byte
, size_t count
) {
149 char* dest
= BeginWrite(count
);
154 memset(dest
, byte
, count
);
160 void QuicDataWriter::WritePadding() {
161 DCHECK_LE(length_
, capacity_
);
162 if (length_
> capacity_
) {
165 memset(buffer_
+ length_
, 0x00, capacity_
- length_
);
169 bool QuicDataWriter::WriteUInt8ToOffset(uint8 value
, size_t offset
) {
170 if (offset
>= capacity_
) {
171 LOG(DFATAL
) << "offset: " << offset
<< " >= capacity: " << capacity_
;
174 size_t latched_length
= length_
;
176 bool success
= WriteUInt8(value
);
177 DCHECK_LE(length_
, latched_length
);
178 length_
= latched_length
;
182 bool QuicDataWriter::WriteUInt32ToOffset(uint32 value
, size_t offset
) {
183 DCHECK_LT(offset
, capacity_
);
184 size_t latched_length
= length_
;
186 bool success
= WriteUInt32(value
);
187 DCHECK_LE(length_
, latched_length
);
188 length_
= latched_length
;
192 bool QuicDataWriter::WriteUInt48ToOffset(uint64 value
, size_t offset
) {
193 DCHECK_LT(offset
, capacity_
);
194 size_t latched_length
= length_
;
196 bool success
= WriteUInt48(value
);
197 DCHECK_LE(length_
, latched_length
);
198 length_
= latched_length
;