-
Notifications
You must be signed in to change notification settings - Fork 0
/
ByteBuffer.cpp
88 lines (66 loc) · 1.81 KB
/
ByteBuffer.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
//----------------------------------------------------------------------------//
// *** МНОГОПОТОЧНАЯ КРОССПЛАТФОРМЕННАЯ СИСТЕМА ОБМЕНА ДАННЫМИ *** //
// //
// Файл ByteBuffer.cpp //
// //
// *** TBYTEBUFFER БАЙТОВЫЙ БУФЕР *** //
// //
// //
// Автор ГЛУЩЕНКО Сергей //
// //
// Москва //
//----------------------------------------------------------------------------//
#include "ByteBuffer.h"
TByteBuffer::TByteBuffer()
{
Clear();
Size = 0;
}
TByteBuffer::~TByteBuffer()
{
Clear();
Size = 0;
}
void TByteBuffer::Clear()
{
Buf.clear();
}
void TByteBuffer::SetSize(int Value)
{
if (Value >= Buf.size())
{
Size = Value;
}
else
{
Size = Value;
Buf.resize(Size);
}
}
bool TByteBuffer::IsFull()
{
if (Buf.size() >= Size)
return true;
else
return false;
}
QByteArray TByteBuffer::Data()
{
return Buf;
}
int TByteBuffer::Count()
{
return Buf.size();
}
int TByteBuffer::PushBack(QByteArray Value)
{
int res;
if ((Size - Buf.size()) >= Value.size())
res = Value.size();
else
res = Size - Buf.size();
Buf.push_back(Value);
if (Buf.size() > Size)
Buf.resize(Size);
return res;
}