-
Notifications
You must be signed in to change notification settings - Fork 1
/
Packet.hpp
773 lines (660 loc) · 19.1 KB
/
Packet.hpp
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
#pragma once
//#include <array>
#include <cstdint>
#include <vector>
#include <limits>
#include <memory>
#include <cstring>
#include "../../../HandyCpp/Handy.hpp"
/// ARM microcontrollers, you need to define PACKET_USE_PACKED_KEYWORD
#if !defined PACKET_USE_PACKED_KEYWORD
#define __packed
#endif
// We can optimize calls to the conversion functions. Either nothing has to be done or we
// are using directly the byte-swapping functions which often can be inlined.
#if defined IS_LITTLE_ENDIAN
#define PACKET_ntohl(x) (x)
#define PACKET_ntohll(x) (x)
#define PACKET_ntohs(x) (x)
#define PACKET_htonl(x) (x)
#define PACKET_htonll(x) (x)
#define PACKET_htons(x) (x)
#elif defined IS_BIG_ENDIAN
#define PACKET_ntohll(x) __bswap64 (x)
#define PACKET_ntohl(x) __bswap32 (x)
#define PACKET_ntohs(x) __bswap16 (x)
#define PACKET_htonll(x) __bswap64 (x)
#define PACKET_htonl(x) __bswap32 (x)
#define PACKET_htons(x) __bswap16 (x)
#else
#error "Packet: Couldn't detect endianness."
#endif
/// If you would like the functions/classes in Packet
/// to be in a namespace, just define PACKET_NS
/// as your desired namespace name.
#ifdef PACKET_NS
namespace PACKET_NS {
#endif
class /*alignas(16)*/ Packet final
{
// A bool-like type that cannot be converted to integer or pointer types
typedef bool(Packet::*BoolType)(size_t);
static constexpr bool UnalignedAllowed =
#if defined UNALIGNED_ACCESS_ALLOWED || defined PACKET_USE_PACKED_KEYWORD
true;
#else
false;
#endif
public:
Packet(); // Creates an empty packet.
~Packet() = default;
void Append(const void* data, size_t sizeInBytes); // Append data to the end of the packet
void Clear();
size_t SizeBytes() const;
// Get a pointer to the data contained in the packet.
// Warning: the returned pointer may become invalid after
// you append data to the packet, therefore it should never
// be stored.
// The return pointer is NULL if the packet is empty.
const void * GetData() const;
void RestartRead();
// Tell if the reading position has reached the end of the packet
// This function is useful to know if there is some data
// left to be read, without actually reading it.
// Returns true if all data was read, false otherwise.
bool EndOfPacket() const;
void Reserve(uint32_t size);
public:
// Overloads of operator >> to read data from the packet
Packet & operator >>(bool & data);
Packet & operator >>(int8_t & data);
Packet & operator >>(uint8_t & data);
Packet & operator >>(int16_t & data);
Packet & operator >>(uint16_t & data);
Packet & operator >>(int32_t & data);
Packet & operator >>(uint32_t & data);
Packet & operator >>(int64_t & data);
Packet & operator >>(uint64_t & data);
Packet & operator >>(float & data);
Packet & operator >>(double & data);
Packet & operator >>(char * data);
Packet & operator >>(wchar_t * data);
Packet & operator >>(std::string & data);
Packet & operator >>(std::wstring & data);
template <typename T,
typename = std::enable_if<std::is_enum<T>::value>>
void operator >>(T & data)
{
typename std::underlying_type<T>::type temp;
*this >> temp;
data = static_cast<T>(temp);
}
// Overloads of operator << to write data into the packet
Packet & operator <<(bool data);
Packet & operator <<(int8_t data);
Packet & operator <<(uint8_t data);
Packet & operator <<(int16_t data);
Packet & operator <<(uint16_t data);
Packet & operator <<(int32_t data);
Packet & operator <<(uint32_t data);
Packet & operator <<(int64_t data);
Packet & operator <<(uint64_t data);
Packet & operator <<(float data);
Packet & operator <<(double data);
Packet & operator <<(const char * data);
Packet & operator <<(const wchar_t * data);
Packet & operator <<(const std::string & data);
Packet & operator <<(const std::wstring & data);
template <typename T,
typename = std::enable_if<std::is_enum<T>::value>>
Packet & operator <<(T data)
{
*this << static_cast<typename std::underlying_type<T>::type>(data);
return *this;
}
// Test the validity of the packet, for reading
//
// This operator allows to test the packet as a boolean
// variable, to check if a reading operation was successful.
//
// A packet will be in an invalid state if it has no more
// data to read.
//
// This behavior is the same as standard C++ streams.
//
// Usage example:
// float x;
// packet >> x;
// if (packet)
// {
// // ok, x was extracted successfully
// }
//
// -- or --
//
// float x;
// if (packet >> x)
// {
// // ok, x was extracted successfully
// }
//
// Don't focus on the return type, it's equivalent to bool but
// it disallows unwanted implicit conversions to integer or
// pointer types.
//
// Returns true if last data extraction from packet was successful
operator BoolType() const;
private:
bool operator ==(const Packet & right) const = delete; // Disallow comparisons between packets
bool operator !=(const Packet & right) const = delete;
// Check if the packet can extract a given number of bytes
// This function updates accordingly the state of the packet.
// Returns true if size bytes can be read from the packet
bool checkSize(std::size_t size);
std::vector<char>m_data; // Data stored in the packet
std::size_t m_readPos; // Current reading position in the packet
bool m_isValid; // Reading state of the packet
};
inline
Packet::Packet() :
m_readPos(0),
m_isValid(true)
{}
inline
void Packet::Append(const void * data, std::size_t sizeInBytes)
{
if (data && (sizeInBytes > 0))
{
std::size_t start = m_data.size();
m_data.resize(start + sizeInBytes);
std::memcpy(&m_data[start], data, sizeInBytes);
}
}
inline
void Packet::Clear()
{
m_data.clear();
m_readPos = 0;
m_isValid = true;
}
inline
void Packet::RestartRead()
{
m_readPos = 0;
m_isValid = true;
}
inline
const void * Packet::GetData() const
{
return !m_data.empty() ? &m_data[0] : NULL;
}
inline
std::size_t Packet::SizeBytes() const
{
return m_data.size();
}
inline
bool Packet::EndOfPacket() const
{
return m_readPos >= m_data.size();
}
inline
Packet & Packet::operator >>(bool & data)
{
uint8_t value;
if (*this >> value)
data = (value != 0);
return *this;
}
inline
Packet & Packet::operator >>(int8_t & data)
{
if (checkSize(sizeof(data)))
{
data = *reinterpret_cast<__packed const int8_t *>(&m_data[m_readPos]);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(uint8_t & data)
{
if (checkSize(sizeof(data)))
{
data = *reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(int16_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohs(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(uint16_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohs(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(int32_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohl(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(uint32_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohl(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(int64_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohll(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(uint64_t & data)
{
if (checkSize(sizeof(data)))
{
if constexpr (UnalignedAllowed)
{
data = *reinterpret_cast<__packed const std::remove_reference_t<decltype(data)> *>(&m_data[m_readPos]);
}
else
{
uint8_t const * bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
uint8_t * target = reinterpret_cast<__packed uint8_t *>(&data);
for (int i = 0; i < sizeof(data); i++)
target[i] = bytes[i];
}
data = PACKET_ntohll(data);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(float & data)
{
if (checkSize(sizeof(data)))
{
data = *reinterpret_cast<__packed const float *>(&m_data[m_readPos]);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(double & data)
{
if (checkSize(sizeof(data)))
{
data = *reinterpret_cast<__packed const double *>(&m_data[m_readPos]);
m_readPos += sizeof(data);
}
return *this;
}
inline
Packet & Packet::operator >>(char * data)
{
// First extract string length
uint32_t length = 0;
*this >> length;
if ((length > 0) && checkSize(length))
{
std::memcpy(data, &m_data[m_readPos], length); // Then extract characters
data[length] = '\0';
m_readPos += length; // Update reading position
}
return *this;
}
inline
Packet & Packet::operator >>(std::string & data)
{
uint32_t length = 0;
*this >> length; // First extract string length
data.clear();
if ((length > 0) && checkSize(length))
{
data.assign(&m_data[m_readPos], length); // Then extract characters
m_readPos += length; // Update reading position
}
return *this;
}
inline
Packet & Packet::operator >>(wchar_t * data)
{
// First extract string length
uint32_t length = 0;
*this >> length;
if ((length > 0) && checkSize(length * sizeof(uint32_t)))
{
// Then extract characters
for (uint32_t i = 0; i < length; ++i)
{
uint32_t character = 0;
*this >> character;
data[i] = static_cast<wchar_t>(character);
}
data[length] = L'\0';
}
return *this;
}
inline
Packet & Packet::operator >>(std::wstring & data)
{
// First extract string length
uint32_t length = 0;
*this >> length;
data.clear();
if ((length > 0) && checkSize(length * sizeof(uint32_t)))
{
// Then extract characters
for (uint32_t i = 0; i < length; ++i)
{
uint32_t character = 0;
*this >> character;
data += static_cast<wchar_t>(character);
}
}
return *this;
}
inline
Packet & Packet::operator <<(bool data)
{
*this << static_cast<uint8_t>(data);
return *this;
}
inline
Packet & Packet::operator <<(int8_t data)
{
Append(&data, sizeof(data));
return *this;
}
inline
Packet & Packet::operator <<(uint8_t data)
{
Append(&data, sizeof(data));
return *this;
}
inline
Packet & Packet::operator <<(int16_t data)
{
int16_t toWrite = PACKET_htons(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(uint16_t data)
{
uint16_t toWrite = PACKET_htons(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(int32_t data)
{
int32_t toWrite = PACKET_htonl(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(uint32_t data)
{
uint32_t toWrite = PACKET_htonl(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(int64_t data)
{
int64_t toWrite = PACKET_htonll(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(uint64_t data)
{
uint64_t toWrite = PACKET_htonll(data);
Append(&toWrite, sizeof(toWrite));
return *this;
}
inline
Packet & Packet::operator <<(float data)
{
Append(&data, sizeof(data));
return *this;
}
inline
Packet & Packet::operator <<(double data)
{
Append(&data, sizeof(data));
return *this;
}
inline
Packet & Packet::operator <<(const char* data)
{
// First insert string length
uint32_t length = static_cast<uint32_t>(std::strlen(data));
*this << length;
// Then insert characters
Append(data, length * sizeof(char));
return *this;
}
inline
Packet & Packet::operator <<(const std::string& data)
{
// First insert string length
uint32_t length = static_cast<uint32_t>(data.size());
*this << length;
// Then insert characters
if (length > 0)
Append(data.c_str(), length * sizeof(std::string::value_type));
return *this;
}
inline
Packet & Packet::operator <<(const wchar_t* data)
{
// First insert string length
uint32_t length = static_cast<uint32_t>(std::wcslen(data));
*this << length;
// Then insert characters
for (const wchar_t* c = data; *c != L'\0'; ++c)
*this << static_cast<uint32_t>(*c);
return *this;
}
inline
Packet & Packet::operator <<(const std::wstring& data)
{
// First insert string length
uint32_t length = static_cast<uint32_t>(data.size());
*this << length;
// Then insert characters
if (length > 0)
{
for (std::wstring::const_iterator c = data.begin(); c != data.end(); ++c)
*this << static_cast<uint32_t>(*c);
}
return *this;
}
inline
Packet::operator BoolType() const
{
return m_isValid ? &Packet::checkSize : NULL;
}
inline
bool Packet::checkSize(std::size_t size)
{
m_isValid = m_isValid && (m_readPos + size <= m_data.size());
return m_isValid;
}
inline
void Packet::Reserve(uint32_t size)
{
m_data.reserve(size);
}
#ifdef PACKET_NS
}
#endif
/// I need to use these to make an implementation of the 64-bit bswap() operations, since some microcontrollers have no implementation.
//inline
//Packet & Packet::operator >>(int64_t& data)
//{
// if (checkSize(sizeof(data)))
// {
// // Since PACKET_ntohll is not available everywhere, we have to convert
// // to network byte order (big endian) manually
// const uint8_t* bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
// data = (static_cast<int64_t>(bytes[0]) << 56) |
// (static_cast<int64_t>(bytes[1]) << 48) |
// (static_cast<int64_t>(bytes[2]) << 40) |
// (static_cast<int64_t>(bytes[3]) << 32) |
// (static_cast<int64_t>(bytes[4]) << 24) |
// (static_cast<int64_t>(bytes[5]) << 16) |
// (static_cast<int64_t>(bytes[6]) << 8) |
// (static_cast<int64_t>(bytes[7]));
// m_readPos += sizeof(data);
// }
//
// return *this;
//}
//
//inline
//Packet & Packet::operator >>(uint64_t& data)
//{
// if (checkSize(sizeof(data)))
// {
// // Since PACKET_ntohll is not available everywhere, we have to convert
// // to network byte order (big endian) manually
// const uint8_t* bytes = reinterpret_cast<__packed const uint8_t *>(&m_data[m_readPos]);
// data = (static_cast<uint64_t>(bytes[0]) << 56) |
// (static_cast<uint64_t>(bytes[1]) << 48) |
// (static_cast<uint64_t>(bytes[2]) << 40) |
// (static_cast<uint64_t>(bytes[3]) << 32) |
// (static_cast<uint64_t>(bytes[4]) << 24) |
// (static_cast<uint64_t>(bytes[5]) << 16) |
// (static_cast<uint64_t>(bytes[6]) << 8) |
// (static_cast<uint64_t>(bytes[7]));
// m_readPos += sizeof(data);
// }
//
// return *this;
//}
//
//inline
//Packet & Packet::operator <<(int64_t data)
//{
// // Since PACKET_htonll is not available everywhere, we have to convert
// // to network byte order (big endian) manually
// uint8_t toWrite[] =
// {
// static_cast<uint8_t>((data >> 56) & 0xFF),
// static_cast<uint8_t>((data >> 48) & 0xFF),
// static_cast<uint8_t>((data >> 40) & 0xFF),
// static_cast<uint8_t>((data >> 32) & 0xFF),
// static_cast<uint8_t>((data >> 24) & 0xFF),
// static_cast<uint8_t>((data >> 16) & 0xFF),
// static_cast<uint8_t>((data >> 8) & 0xFF),
// static_cast<uint8_t>((data) & 0xFF)
// };
// append(&toWrite, sizeof(toWrite));
// return *this;
//}
//
//inline
//Packet & Packet::operator <<(uint64_t data)
//{
// // Since PACKET_htonll is not available everywhere, we have to convert
// // to network byte order (big endian) manually
// uint8_t toWrite[] =
// {
// static_cast<uint8_t>((data >> 56) & 0xFF),
// static_cast<uint8_t>((data >> 48) & 0xFF),
// static_cast<uint8_t>((data >> 40) & 0xFF),
// static_cast<uint8_t>((data >> 32) & 0xFF),
// static_cast<uint8_t>((data >> 24) & 0xFF),
// static_cast<uint8_t>((data >> 16) & 0xFF),
// static_cast<uint8_t>((data >> 8) & 0xFF),
// static_cast<uint8_t>((data) & 0xFF)
// };
// append(&toWrite, sizeof(toWrite));
// return *this;
//}