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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
/*
Facebook plugin for Miranda NG
Copyright © 2019 Miranda NG team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/////////////////////////////////////////////////////////////////////////////////////////
// FbThrift class members
#include "stdafx.h"
static uint8_t encodeType(int type)
{
switch (type) {
case FB_THRIFT_TYPE_BOOL:
return 2;
case FB_THRIFT_TYPE_BYTE:
return 3;
case FB_THRIFT_TYPE_I16:
return 4;
case FB_THRIFT_TYPE_I32:
return 5;
case FB_THRIFT_TYPE_I64:
return 6;
case FB_THRIFT_TYPE_DOUBLE:
return 7;
case FB_THRIFT_TYPE_STRING:
return 8;
case FB_THRIFT_TYPE_LIST:
return 9;
case FB_THRIFT_TYPE_SET:
return 10;
case FB_THRIFT_TYPE_MAP:
return 11;
case FB_THRIFT_TYPE_STRUCT:
return 12;
default:
return 0;
}
}
FbThrift& FbThrift::operator<<(uint8_t value)
{
m_buf.append(&value, 1);
return *this;
}
FbThrift& FbThrift::operator<<(const char *str)
{
size_t len = mir_strlen(str);
writeIntV(len);
m_buf.append((void*)str, len);
return *this;
}
void FbThrift::writeBool(bool bValue)
{
uint8_t b = (bValue) ? 0x11 : 0x12;
m_buf.append(&b, 1);
}
void FbThrift::writeBuf(const void *pData, size_t cbLen)
{
m_buf.append((void*)pData, cbLen);
}
void FbThrift::writeField(int iType)
{
uint8_t type = encodeType(iType) + 0x10;
m_buf.append(&type, 1);
}
void FbThrift::writeField(int iType, int id, int lastid)
{
uint8_t type = encodeType(iType);
uint8_t diff = uint8_t(id - lastid);
if (diff > 0x0F) {
m_buf.append(&type, 1);
writeInt64(id);
}
else {
type += (diff << 4);
m_buf.append(&type, 1);
}
}
void FbThrift::writeList(int iType, int size)
{
uint8_t type = encodeType(iType);
if (size > 14) {
writeIntV(size);
*this << (type | 0xF0);
}
else *this << (type | (size << 4));
}
void FbThrift::writeInt16(uint16_t value)
{
value = htons(value);
m_buf.append(&value, sizeof(value));
}
void FbThrift::writeInt32(int32_t value)
{
writeIntV((value << 1) ^ (value >> 31));
}
void FbThrift::writeInt64(int64_t value)
{
writeIntV((value << 1) ^ (value >> 63));
}
void FbThrift::writeIntV(uint64_t value)
{
bool bLast;
do {
bLast = (value & ~0x7F) == 0;
uint8_t b = value & 0x7F;
if (!bLast) {
b |= 0x80;
value >>= 7;
}
m_buf.append(&b, 1);
} while (!bLast);
}
/////////////////////////////////////////////////////////////////////////////////////////
// FbThriftReader class members
uint8_t FbThriftReader::decodeType(int type)
{
switch (type) {
case 0:
return FB_THRIFT_TYPE_STOP;
case 1:
m_lastBval = m_lastBool = true;
return FB_THRIFT_TYPE_BOOL;
case 2:
m_lastBool = true;
m_lastBval = false;
return FB_THRIFT_TYPE_BOOL;
case 3:
return FB_THRIFT_TYPE_BYTE;
case 4:
return FB_THRIFT_TYPE_I16;
case 5:
return FB_THRIFT_TYPE_I32;
case 6:
return FB_THRIFT_TYPE_I64;
case 7:
return FB_THRIFT_TYPE_DOUBLE;
case 8:
return FB_THRIFT_TYPE_STRING;
case 9:
return FB_THRIFT_TYPE_LIST;
case 10:
return FB_THRIFT_TYPE_SET;
case 11:
return FB_THRIFT_TYPE_MAP;
case 12:
return FB_THRIFT_TYPE_STRUCT;
default:
return 0;
}
}
bool FbThriftReader::isStop()
{
byte b;
if (!readByte(b))
return false;
offset--;
return b == FB_THRIFT_TYPE_STOP;
}
bool FbThriftReader::readBool(bool &bVal)
{
if (m_lastBool) {
bVal = m_lastBval;
m_lastBool = false;
return true;
}
byte b;
if (!readByte(b))
return false;
bVal = b == 0x11;
return true;
}
bool FbThriftReader::readByte(uint8_t &b)
{
if (offset >= size())
return false;
b = *((uint8_t *)data() + offset);
offset++;
return true;
}
bool FbThriftReader::readField(uint8_t &type, uint16_t &id)
{
byte b;
if (!readByte(b))
return false;
type = decodeType(b & 0x0F);
id = (b >> 4);
return (id == 0) ? readInt16(id) : true;
}
bool FbThriftReader::readIntV(uint64_t &val)
{
uint8_t b;
unsigned i = 0;
val = 0;
do {
if (!readByte(b))
return false;
val |= ((b & 0x7F) << i);
i += 7;
} while ((b & 0x80) != 0);
return true;
}
bool FbThriftReader::readList(uint8_t &type, uint32_t &size)
{
byte b;
if (!readByte(b))
return false;
type = decodeType(b & 0x0F);
size = b >> 4;
if (size == 0x0F) {
uint64_t tmp;
if (!readIntV(tmp))
return false;
size = (uint32_t)tmp;
}
return true;
}
bool FbThriftReader::readStr(char *&val)
{
uint64_t tmp;
if (!readIntV(tmp))
return false;
uint32_t cbLen = (uint32_t)tmp;
if (offset + cbLen >= size())
return false;
if (cbLen > 0) {
val = mir_strndup((char *)data() + offset, cbLen);
offset += cbLen;
}
else val = nullptr;
return true;
}
bool FbThriftReader::readInt16(uint16_t &val)
{
if (offset + 2 >= size())
return false;
val = ntohs(*(u_short *)((char *)data() + offset));
offset += 2;
return true;
}
bool FbThriftReader::readInt32(uint32_t &val)
{
uint64_t tmp;
if (!readIntV(tmp))
return false;
val = (uint32_t )tmp;
return true;
}
bool FbThriftReader::readInt64(uint64_t &val)
{
uint64_t tmp;
if (!readIntV(tmp))
return false;
val = (tmp >> 0x01) ^ -(tmp & 0x01);
return true;
}
|