blob: b72b2c1015022c9fadee8eb40a24a61a45802f14 (
plain) (
blame)
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
|
/*
* Authored by Alex Hultman, 2018-2021.
* Intellectual property of third-party.
* 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 UWS_ASYNCSOCKETDATA_H
#define UWS_ASYNCSOCKETDATA_H
#include <string>
namespace uWS {
struct BackPressure {
std::string buffer;
unsigned int pendingRemoval = 0;
BackPressure(BackPressure &&other) {
buffer = std::move(other.buffer);
pendingRemoval = other.pendingRemoval;
}
BackPressure() = default;
void append(const char *data, size_t length) {
buffer.append(data, length);
}
void erase(unsigned int length) {
pendingRemoval += length;
/* Always erase a minimum of 1/32th the current backpressure */
if (pendingRemoval > (buffer.length() >> 5)) {
buffer.erase(0, pendingRemoval);
pendingRemoval = 0;
}
}
size_t length() {
return buffer.length() - pendingRemoval;
}
void clear() {
pendingRemoval = 0;
buffer.clear();
}
void reserve(size_t length) {
buffer.reserve(length + pendingRemoval);
}
void resize(size_t length) {
buffer.resize(length + pendingRemoval);
}
const char *data() {
return buffer.data() + pendingRemoval;
}
size_t size() {
return length();
}
/* The total length, incuding pending removal */
size_t totalLength() {
return buffer.length();
}
};
/* Depending on how we want AsyncSocket to function, this will need to change */
template <bool SSL>
struct AsyncSocketData {
/* This will do for now */
BackPressure buffer;
/* Allow move constructing us */
AsyncSocketData(BackPressure &&backpressure) : buffer(std::move(backpressure)) {
}
/* Or emppty */
AsyncSocketData() = default;
};
}
#endif // UWS_ASYNCSOCKETDATA_H
|