-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryIOStream.cpp
234 lines (141 loc) · 3.93 KB
/
BinaryIOStream.cpp
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// BinaryIOStream.h
// Implements the BinaryIOStream class representing a QIODevice wrapper for reading and writing binary data in a platform-independent way
#include "Globals.h"
#include "BinaryIOStream.h"
BinaryIOStream::BinaryIOStream(QIODevice & a_Device):
m_IODevice(a_Device)
{
}
void BinaryIOStream::writeBool(bool a_Value)
{
unsigned char v = a_Value ? 1 : 0;
m_IODevice.write(reinterpret_cast<const char *>(&v), 1);
}
void BinaryIOStream::writeInt32(qint32 a_Value)
{
writeUInt32(static_cast<quint32>(a_Value));
}
void BinaryIOStream::writeInt64(qint64 a_Value)
{
writeUInt64(static_cast<quint64>(a_Value));
}
void BinaryIOStream::writeUInt32(quint32 a_Value)
{
unsigned char v[4] =
{
static_cast<unsigned char>((a_Value >> 24) & 0xff),
static_cast<unsigned char>((a_Value >> 16) & 0xff),
static_cast<unsigned char>((a_Value >> 8) & 0xff),
static_cast<unsigned char>(a_Value & 0xff),
};
if (m_IODevice.write(reinterpret_cast<const char *>(v), 4) != 4)
{
throw BinaryIOStreamException("Failed to write UInt32");
}
}
void BinaryIOStream::writeUInt64(quint64 a_Value)
{
unsigned char v[8] =
{
static_cast<unsigned char>((a_Value >> 56) & 0xff),
static_cast<unsigned char>((a_Value >> 48) & 0xff),
static_cast<unsigned char>((a_Value >> 40) & 0xff),
static_cast<unsigned char>((a_Value >> 32) & 0xff),
static_cast<unsigned char>((a_Value >> 24) & 0xff),
static_cast<unsigned char>((a_Value >> 16) & 0xff),
static_cast<unsigned char>((a_Value >> 8) & 0xff),
static_cast<unsigned char>(a_Value & 0xff),
};
if (m_IODevice.write(reinterpret_cast<const char *>(v), 8) != 8)
{
throw BinaryIOStreamException("Failed to write UInt64");
}
}
void BinaryIOStream::writeString(const char * a_Value)
{
writeString(a_Value, strlen(a_Value));
}
void BinaryIOStream::writeString(const char * a_Value, size_t a_Length)
{
writeUInt64(a_Length);
auto bytesWritten = m_IODevice.write(a_Value, a_Length);
if (bytesWritten != static_cast<decltype(bytesWritten)>(a_Length))
{
throw BinaryIOStreamException("Failed to write string payload");
}
}
void BinaryIOStream::writeString(const std::string & a_Value)
{
writeString(a_Value.data(), a_Value.size());
}
void BinaryIOStream::writeString(const QString & a_Value)
{
auto value = a_Value.toUtf8();
writeUInt64(value.size());
if (m_IODevice.write(value) != value.size())
{
throw BinaryIOStreamException("Failed to write QString payload");
}
}
bool BinaryIOStream::readBool()
{
char v;
auto numBytesRead = m_IODevice.read(&v, 1);
if (numBytesRead != 1)
{
throw BinaryIOStreamException("Failed to read bool");
}
return (v != 0);
}
qint32 BinaryIOStream::readInt32()
{
return static_cast<qint32>(readUInt32());
}
qint64 BinaryIOStream::readInt64()
{
return static_cast<qint64>(readUInt64());
}
quint32 BinaryIOStream::readUInt32()
{
unsigned char v[4];
auto numBytesRead = m_IODevice.read(reinterpret_cast<char *>(v), 4);
if (numBytesRead != 4)
{
throw BinaryIOStreamException("Failed to read UInt32");
}
return ((v[0] << 24) | (v[1] << 16) | (v[2] << 8) | v[3]);
}
quint64 BinaryIOStream::readUInt64()
{
quint64 upper = readUInt32();
quint64 lower = readUInt32();
return (upper << 32) | lower;
}
std::string BinaryIOStream::readString()
{
auto len = readUInt64();
if (len > std::numeric_limits<size_t>::max() - 1)
{
throw BinaryIOStreamException("String sanity check failed");
}
std::string res;
res.reserve(len);
static const size_t BUF_SIZE = 4096;
while (len > 0)
{
char buf[BUF_SIZE];
size_t toRead = std::min<size_t>(len, sizeof(buf));
if (m_IODevice.read(buf, toRead) != static_cast<qint64>(toRead))
{
throw BinaryIOStreamException("Failed to read part of string");
}
res.append(buf, toRead);
len -= toRead;
}
return res;
}
QString BinaryIOStream::readQString()
{
auto utf8 = readString();
return QString::fromUtf8(utf8.c_str(), static_cast<int>(utf8.size()));
}