1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// 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.
#include "net/quic/quic_data_writer.h"
#include <algorithm>
#include <limits>
#include <string>
#include "base/basictypes.h"
#include "base/logging.h"
using base::StringPiece;
using std::numeric_limits;
namespace net {
QuicDataWriter::QuicDataWriter(size_t size)
: buffer_(new char[size]),
capacity_(size),
length_(0) {
}
QuicDataWriter::~QuicDataWriter() {
delete[] buffer_;
}
char* QuicDataWriter::take() {
char* rv = buffer_;
buffer_ = NULL;
capacity_ = 0;
length_ = 0;
return rv;
}
bool QuicDataWriter::WriteUInt8(uint8 value) {
return WriteBytes(&value, sizeof(value));
}
bool QuicDataWriter::WriteUInt16(uint16 value) {
return WriteBytes(&value, sizeof(value));
}
bool QuicDataWriter::WriteUInt32(uint32 value) {
return WriteBytes(&value, sizeof(value));
}
bool QuicDataWriter::WriteUInt48(uint64 value) {
uint32 hi = value >> 32;
uint32 lo = value & GG_UINT64_C(0x00000000FFFFFFFF);
return WriteUInt32(lo) && WriteUInt16(hi);
}
bool QuicDataWriter::WriteUInt64(uint64 value) {
return WriteBytes(&value, sizeof(value));
}
bool QuicDataWriter::WriteUInt128(uint128 value) {
return WriteUInt64(Uint128Low64(value)) && WriteUInt64(Uint128High64(value));
}
bool QuicDataWriter::WriteStringPiece16(StringPiece val) {
if (val.length() > numeric_limits<uint16>::max()) {
return false;
}
if (!WriteUInt16(val.size())) {
return false;
}
return WriteBytes(val.data(), val.size());
}
char* QuicDataWriter::BeginWrite(size_t length) {
if (length_ > capacity_) {
return NULL;
}
if (capacity_ - length_ < length) {
return NULL;
}
#ifdef ARCH_CPU_64_BITS
DCHECK_LE(length, numeric_limits<uint32>::max());
#endif
return buffer_ + length_;
}
bool QuicDataWriter::WriteBytes(const void* data, size_t data_len) {
char* dest = BeginWrite(data_len);
if (!dest) {
return false;
}
memcpy(dest, data, data_len);
length_ += data_len;
return true;
}
void QuicDataWriter::WritePadding() {
memset(buffer_ + length_, 0x00, capacity_ - length_);
length_ = capacity_;
}
bool QuicDataWriter::WriteUInt8ToOffset(uint8 value, size_t offset) {
DCHECK_LT(offset, capacity_);
int latched_length = length_;
length_ = offset;
bool success = WriteUInt8(value);
length_ = latched_length;
return success;
}
bool QuicDataWriter::WriteUInt48ToOffset(uint64 value, size_t offset) {
DCHECK_LT(offset, capacity_);
int latched_length = length_;
length_ = offset;
bool success = WriteUInt48(value);
length_ = latched_length;
return success;
}
} // namespace net
|