-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathamqpprox_buffer.h
138 lines (109 loc) · 3.04 KB
/
amqpprox_buffer.h
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
** Copyright 2020 Bloomberg Finance L.P.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#ifndef BLOOMBERG_AMQPPROX_BUFFER
#define BLOOMBERG_AMQPPROX_BUFFER
#include <cassert>
#include <cstring>
namespace Bloomberg {
namespace amqpprox {
/**
* \brief Represents IO buffer
*/
class Buffer {
char *d_data;
std::size_t d_length;
std::size_t d_offset;
public:
Buffer()
: d_data(nullptr)
, d_length(0)
, d_offset(0)
{
}
constexpr Buffer(const void *start, std::size_t length)
: d_data(static_cast<char *>(const_cast<void *>(start)))
, d_length(length)
, d_offset(0)
{
}
Buffer(void *start, std::size_t length)
: d_data(static_cast<char *>(start))
, d_length(length)
, d_offset(0)
{
}
Buffer remaining() const { return Buffer(ptr(), available()); }
Buffer currentData() const { return Buffer(originalPtr(), offset()); }
Buffer consume(std::size_t size)
{
Buffer b(ptr(), size);
skip(size);
return b;
}
template <typename T>
T copy()
{
T val;
memcpy(&val, ptr(), sizeof(T));
skip(sizeof(T));
return val;
}
template <typename T>
bool writeIn(const T &value)
{
if (sizeof(T) > available()) {
return false;
}
memcpy(ptr(), &value, sizeof(T));
skip(sizeof(T));
return true;
}
bool writeIn(const Buffer &b)
{
return assign(b) ? (skip(b.available()), true) : false;
}
bool assign(Buffer value)
{
if (value.available() > available()) {
return false;
}
memcpy(ptr(), value.ptr(), value.available());
return true;
}
void skip(const std::size_t size)
{
d_offset += size;
assert(d_offset <= d_length);
}
void seek(std::size_t offset)
{
assert(offset <= d_length);
d_offset = offset;
}
constexpr const void *originalPtr() const { return d_data; }
constexpr const void *ptr() const { return d_data + d_offset; }
void *ptr() { return d_data + d_offset; }
constexpr const void *end() const { return d_data + d_length; }
constexpr std::size_t available() const { return d_length - d_offset; }
constexpr std::size_t size() const { return d_length; }
constexpr std::size_t offset() const { return d_offset; }
bool equalContents(const Buffer &rhs) const;
};
bool operator==(const Buffer &b1, const Buffer &b2);
bool operator!=(const Buffer &b1, const Buffer &b2);
}
}
#endif