2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// ByteBuffer.cpp
|
|
|
|
|
|
|
|
// Implements the cByteBuffer class representing a ringbuffer of bytes
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
|
|
|
|
#include "ByteBuffer.h"
|
|
|
|
#include "Endianness.h"
|
|
|
|
#include "OSSupport/IsThread.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-24 08:35:35 -05:00
|
|
|
// Try to determine endianness:
|
|
|
|
#if ( \
|
|
|
|
defined(__i386__) || defined(__alpha__) || \
|
|
|
|
defined(__ia64) || defined(__ia64__) || \
|
|
|
|
defined(_M_IX86) || defined(_M_IA64) || \
|
|
|
|
defined(_M_ALPHA) || defined(__amd64) || \
|
|
|
|
defined(__amd64__) || defined(_M_AMD64) || \
|
|
|
|
defined(__x86_64) || defined(__x86_64__) || \
|
|
|
|
defined(_M_X64) || defined(__bfin__) || \
|
|
|
|
defined(__ARMEL__) || \
|
|
|
|
(defined(_WIN32) && defined(__ARM__) && defined(_MSC_VER)) \
|
|
|
|
)
|
|
|
|
#define IS_LITTLE_ENDIAN
|
2013-12-04 13:57:23 -05:00
|
|
|
#elif ( \
|
2014-08-23 11:06:34 -04:00
|
|
|
defined (__ARMEB__) || defined(__sparc) || defined(__powerpc__) || defined(__POWERPC__) \
|
2013-12-04 13:57:23 -05:00
|
|
|
)
|
2013-11-24 08:35:35 -05:00
|
|
|
#define IS_BIG_ENDIAN
|
|
|
|
#else
|
|
|
|
#error Cannot determine endianness of this platform
|
|
|
|
#endif
|
|
|
|
|
2013-10-28 15:40:42 -04:00
|
|
|
// If a string sent over the protocol is larger than this, a warning is emitted to the console
|
|
|
|
#define MAX_STRING_SIZE (512 KiB)
|
|
|
|
|
|
|
|
#define NEEDBYTES(Num) if (!CanReadBytes(Num)) return false; // Check if at least Num bytes can be read from the buffer, return false if not
|
|
|
|
#define PUTBYTES(Num) if (!CanWriteBytes(Num)) return false; // Check if at least Num bytes can be written to the buffer, return false if not
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 14:05:37 -05:00
|
|
|
#ifdef SELF_TEST
|
2013-10-28 15:40:42 -04:00
|
|
|
|
|
|
|
/// Self-test of the VarInt-reading and writing code
|
2014-03-08 14:53:37 -05:00
|
|
|
static class cByteBufferSelfTest
|
2013-10-28 15:40:42 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cByteBufferSelfTest(void)
|
|
|
|
{
|
|
|
|
TestRead();
|
|
|
|
TestWrite();
|
2014-01-26 11:48:09 -05:00
|
|
|
TestWrap();
|
2013-10-28 15:40:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestRead(void)
|
|
|
|
{
|
|
|
|
cByteBuffer buf(50);
|
|
|
|
buf.Write("\x05\xac\x02\x00", 4);
|
2013-10-28 15:57:03 -04:00
|
|
|
UInt32 v1;
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.ReadVarInt(v1) && (v1 == 5));
|
2013-10-28 15:57:03 -04:00
|
|
|
UInt32 v2;
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.ReadVarInt(v2) && (v2 == 300));
|
2013-10-28 15:57:03 -04:00
|
|
|
UInt32 v3;
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.ReadVarInt(v3) && (v3 == 0));
|
2013-10-28 15:40:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestWrite(void)
|
|
|
|
{
|
|
|
|
cByteBuffer buf(50);
|
|
|
|
buf.WriteVarInt(5);
|
|
|
|
buf.WriteVarInt(300);
|
|
|
|
buf.WriteVarInt(0);
|
|
|
|
AString All;
|
|
|
|
buf.ReadAll(All);
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(All.size() == 4);
|
|
|
|
assert_test(memcmp(All.data(), "\x05\xac\x02\x00", All.size()) == 0);
|
2013-10-28 15:40:42 -04:00
|
|
|
}
|
2014-01-26 11:48:09 -05:00
|
|
|
|
|
|
|
void TestWrap(void)
|
|
|
|
{
|
|
|
|
cByteBuffer buf(3);
|
|
|
|
for (int i = 0; i < 1000; i++)
|
|
|
|
{
|
2014-03-09 07:43:22 -04:00
|
|
|
size_t FreeSpace = buf.GetFreeSpace();
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.GetReadableSpace() == 0);
|
|
|
|
assert_test(FreeSpace > 0);
|
|
|
|
assert_test(buf.Write("a", 1));
|
|
|
|
assert_test(buf.CanReadBytes(1));
|
|
|
|
assert_test(buf.GetReadableSpace() == 1);
|
2014-01-26 11:48:09 -05:00
|
|
|
unsigned char v = 0;
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.ReadByte(v));
|
|
|
|
assert_test(v == 'a');
|
|
|
|
assert_test(buf.GetReadableSpace() == 0);
|
2014-01-26 11:48:09 -05:00
|
|
|
buf.CommitRead();
|
2014-03-10 15:36:01 -04:00
|
|
|
assert_test(buf.GetFreeSpace() == FreeSpace); // We're back to normal
|
2014-01-26 11:48:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-28 15:40:42 -04:00
|
|
|
} g_ByteBufferTest;
|
|
|
|
|
|
|
|
#endif
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
|
|
|
/// Simple RAII class that uses one internal unsigned long for checking if two threads are using an object simultanously
|
|
|
|
class cSingleThreadAccessChecker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cSingleThreadAccessChecker(unsigned long * a_ThreadID) :
|
|
|
|
m_ThreadID(a_ThreadID)
|
|
|
|
{
|
|
|
|
ASSERT((*a_ThreadID == 0) || (*a_ThreadID == cIsThread::GetCurrentID()));
|
|
|
|
}
|
|
|
|
|
|
|
|
~cSingleThreadAccessChecker()
|
|
|
|
{
|
|
|
|
*m_ThreadID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
unsigned long * m_ThreadID;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
#define CHECK_THREAD cSingleThreadAccessChecker Checker(const_cast<unsigned long *>(&m_ThreadID))
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define CHECK_THREAD
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2013-07-29 07:13:03 -04:00
|
|
|
// cByteBuffer:
|
|
|
|
|
2014-04-24 15:29:59 -04:00
|
|
|
cByteBuffer::cByteBuffer(size_t a_BufferSize) :
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Buffer(new char[a_BufferSize + 1]),
|
|
|
|
m_BufferSize(a_BufferSize + 1),
|
|
|
|
#ifdef _DEBUG
|
|
|
|
m_ThreadID(0),
|
|
|
|
#endif // _DEBUG
|
|
|
|
m_DataStart(0),
|
|
|
|
m_WritePos(0),
|
|
|
|
m_ReadPos(0)
|
|
|
|
{
|
|
|
|
// Allocating one byte more than the buffer size requested, so that we can distinguish between
|
|
|
|
// completely-full and completely-empty states
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cByteBuffer::~cByteBuffer()
|
|
|
|
{
|
|
|
|
CheckValid();
|
|
|
|
delete[] m_Buffer;
|
2014-06-19 04:49:56 -04:00
|
|
|
m_Buffer = NULL;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-24 16:42:33 -04:00
|
|
|
bool cByteBuffer::Write(const void * a_Bytes, size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
|
|
|
|
// Store the current free space for a check after writing:
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t CurFreeSpace = GetFreeSpace();
|
|
|
|
size_t CurReadableSpace = GetReadableSpace();
|
|
|
|
size_t WrittenBytes = 0;
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-01-26 11:48:09 -05:00
|
|
|
if (CurFreeSpace < a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_WritePos);
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t TillEnd = m_BufferSize - m_WritePos;
|
2014-04-24 16:42:33 -04:00
|
|
|
const char * Bytes = (const char *)a_Bytes;
|
2013-07-29 07:13:03 -04:00
|
|
|
if (TillEnd <= a_Count)
|
|
|
|
{
|
|
|
|
// Need to wrap around the ringbuffer end
|
|
|
|
if (TillEnd > 0)
|
|
|
|
{
|
2014-04-24 16:42:33 -04:00
|
|
|
memcpy(m_Buffer + m_WritePos, Bytes, TillEnd);
|
|
|
|
Bytes += TillEnd;
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Count -= TillEnd;
|
|
|
|
WrittenBytes = TillEnd;
|
|
|
|
}
|
|
|
|
m_WritePos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're guaranteed that we'll fit in a single write op
|
|
|
|
if (a_Count > 0)
|
|
|
|
{
|
2014-04-24 16:42:33 -04:00
|
|
|
memcpy(m_Buffer + m_WritePos, Bytes, a_Count);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_WritePos += a_Count;
|
|
|
|
WrittenBytes += a_Count;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(GetFreeSpace() == CurFreeSpace - WrittenBytes);
|
|
|
|
ASSERT(GetReadableSpace() == CurReadableSpace + WrittenBytes);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t cByteBuffer::GetFreeSpace(void) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
if (m_WritePos >= m_DataStart)
|
|
|
|
{
|
|
|
|
// Wrap around the buffer end:
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_WritePos);
|
|
|
|
ASSERT((m_BufferSize - m_WritePos + m_DataStart) >= 1);
|
2013-07-29 07:13:03 -04:00
|
|
|
return m_BufferSize - m_WritePos + m_DataStart - 1;
|
|
|
|
}
|
|
|
|
// Single free space partition:
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_WritePos);
|
|
|
|
ASSERT(m_BufferSize - m_WritePos >= 1);
|
2013-07-29 07:13:03 -04:00
|
|
|
return m_DataStart - m_WritePos - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns the number of bytes that are currently in the ringbuffer. Note GetReadableBytes()
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t cByteBuffer::GetUsedSpace(void) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= GetFreeSpace());
|
|
|
|
ASSERT((m_BufferSize - GetFreeSpace()) >= 1);
|
2013-11-03 05:58:11 -05:00
|
|
|
return m_BufferSize - GetFreeSpace() - 1;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns the number of bytes that are currently available for reading (may be less than UsedSpace due to some data having been read already)
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t cByteBuffer::GetReadableSpace(void) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
if (m_ReadPos > m_WritePos)
|
|
|
|
{
|
|
|
|
// Wrap around the buffer end:
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_ReadPos);
|
2013-07-29 07:13:03 -04:00
|
|
|
return m_BufferSize - m_ReadPos + m_WritePos;
|
|
|
|
}
|
|
|
|
// Single readable space partition:
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_WritePos >= m_ReadPos);
|
2014-09-11 20:42:04 -04:00
|
|
|
return m_WritePos - m_ReadPos;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 14:04:25 -05:00
|
|
|
bool cByteBuffer::CanReadBytes(size_t a_Count) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
return (a_Count <= GetReadableSpace());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 14:04:25 -05:00
|
|
|
bool cByteBuffer::CanWriteBytes(size_t a_Count) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
return (a_Count <= GetFreeSpace());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadChar(char & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(1);
|
|
|
|
ReadBuf(&a_Value, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadByte(unsigned char & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(1);
|
|
|
|
ReadBuf(&a_Value, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEShort(short & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(2);
|
|
|
|
ReadBuf(&a_Value, 2);
|
2014-05-01 16:54:22 -04:00
|
|
|
a_Value = (short)ntohs((u_short)a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEInt(int & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(4);
|
|
|
|
ReadBuf(&a_Value, 4);
|
2014-05-01 16:54:22 -04:00
|
|
|
a_Value = (int)ntohl((u_long)a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEInt64(Int64 & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(8);
|
|
|
|
ReadBuf(&a_Value, 8);
|
|
|
|
a_Value = NetworkToHostLong8(&a_Value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEFloat(float & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(4);
|
|
|
|
ReadBuf(&a_Value, 4);
|
|
|
|
a_Value = NetworkToHostFloat4(&a_Value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEDouble(double & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(8);
|
|
|
|
ReadBuf(&a_Value, 8);
|
|
|
|
a_Value = NetworkToHostDouble8(&a_Value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBool(bool & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(1);
|
|
|
|
char Value = 0;
|
|
|
|
ReadBuf(&Value, 1);
|
|
|
|
a_Value = (Value != 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadBEUTF16String16(AString & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
short Length;
|
|
|
|
if (!ReadBEShort(Length))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Length < 0)
|
|
|
|
{
|
|
|
|
ASSERT(!"Negative string length? Are you sure?");
|
|
|
|
return true;
|
|
|
|
}
|
2014-05-01 16:54:22 -04:00
|
|
|
return ReadUTF16String(a_Value, (size_t)Length);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-28 15:57:03 -04:00
|
|
|
bool cByteBuffer::ReadVarInt(UInt32 & a_Value)
|
2013-10-28 15:40:42 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
2013-10-28 15:57:03 -04:00
|
|
|
UInt32 Value = 0;
|
2013-10-28 15:40:42 -04:00
|
|
|
int Shift = 0;
|
|
|
|
unsigned char b = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
NEEDBYTES(1);
|
|
|
|
ReadBuf(&b, 1);
|
2014-05-01 16:54:22 -04:00
|
|
|
Value = Value | (((UInt32)(b & 0x7f)) << Shift);
|
2013-10-28 15:40:42 -04:00
|
|
|
Shift += 7;
|
|
|
|
} while ((b & 0x80) != 0);
|
|
|
|
a_Value = Value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::ReadVarUTF8String(AString & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
2013-10-28 15:57:03 -04:00
|
|
|
UInt32 Size = 0;
|
2013-10-28 15:40:42 -04:00
|
|
|
if (!ReadVarInt(Size))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Size > MAX_STRING_SIZE)
|
|
|
|
{
|
2014-03-11 17:43:14 -04:00
|
|
|
LOGWARNING("%s: String too large: %u (%u KiB)", __FUNCTION__, Size, Size / 1024);
|
2013-10-28 15:40:42 -04:00
|
|
|
}
|
2014-05-01 16:54:22 -04:00
|
|
|
return ReadString(a_Value, (size_t)Size);
|
2013-10-28 15:40:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-24 08:35:35 -05:00
|
|
|
bool cByteBuffer::ReadLEInt(int & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(4);
|
|
|
|
ReadBuf(&a_Value, 4);
|
|
|
|
|
|
|
|
#ifdef IS_BIG_ENDIAN
|
|
|
|
// Convert:
|
|
|
|
a_Value = ((a_Value >> 24) & 0xff) | ((a_Value >> 16) & 0xff00) | ((a_Value >> 8) & 0xff0000) | (a_Value & 0xff000000);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-08 11:02:54 -04:00
|
|
|
bool cByteBuffer::ReadPosition(int & a_BlockX, int & a_BlockY, int & a_BlockZ)
|
|
|
|
{
|
|
|
|
Int64 Value;
|
|
|
|
if (!ReadBEInt64(Value))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-17 11:53:42 -04:00
|
|
|
UInt32 BlockXRaw = (Value >> 38) & 0x3ffffff;
|
|
|
|
UInt32 BlockYRaw = (Value >> 26) & 0xfff;
|
|
|
|
UInt32 BlockZRaw = (Value & 0x3ffffff);
|
2014-09-25 15:23:05 -04:00
|
|
|
a_BlockX = ((BlockXRaw & 0x2000000) == 0) ? BlockXRaw : -(0x03ffffff - (int)BlockXRaw + 1);
|
|
|
|
a_BlockY = ((BlockYRaw & 0x800) == 0) ? BlockYRaw : -(0x07ff - (int)BlockYRaw + 1);
|
|
|
|
a_BlockZ = ((BlockZRaw & 0x2000000) == 0) ? BlockZRaw : -(0x03ffffff - (int)BlockZRaw + 1);
|
2014-09-08 11:02:54 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
bool cByteBuffer::WriteChar(char a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(1);
|
|
|
|
return WriteBuf(&a_Value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteByte(unsigned char a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(1);
|
|
|
|
return WriteBuf(&a_Value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBEShort(short a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(2);
|
2014-05-01 16:54:22 -04:00
|
|
|
u_short Converted = htons((u_short)a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return WriteBuf(&Converted, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-25 14:46:50 -04:00
|
|
|
bool cByteBuffer::WriteBEUShort(unsigned short a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(2);
|
|
|
|
u_short Converted = htons((u_short)a_Value);
|
|
|
|
return WriteBuf(&Converted, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
bool cByteBuffer::WriteBEInt(int a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(4);
|
2014-05-01 16:54:22 -04:00
|
|
|
UInt32 Converted = HostToNetwork4(&a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return WriteBuf(&Converted, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBEInt64(Int64 a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(8);
|
2014-05-01 16:54:22 -04:00
|
|
|
UInt64 Converted = HostToNetwork8(&a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return WriteBuf(&Converted, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBEFloat(float a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(4);
|
2014-05-01 16:54:22 -04:00
|
|
|
UInt32 Converted = HostToNetwork4(&a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return WriteBuf(&Converted, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBEDouble(double a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(8);
|
2014-05-01 16:54:22 -04:00
|
|
|
UInt64 Converted = HostToNetwork8(&a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
return WriteBuf(&Converted, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBool(bool a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
return WriteChar(a_Value ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cByteBuffer::WriteBEUTF16String16(const AString & a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(2);
|
|
|
|
AString UTF16BE;
|
|
|
|
UTF8ToRawBEUTF16(a_Value.data(), a_Value.size(), UTF16BE);
|
|
|
|
WriteBEShort((short)(UTF16BE.size() / 2));
|
|
|
|
PUTBYTES(UTF16BE.size());
|
|
|
|
WriteBuf(UTF16BE.data(), UTF16BE.size());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-28 15:57:03 -04:00
|
|
|
bool cByteBuffer::WriteVarInt(UInt32 a_Value)
|
2013-10-28 15:40:42 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
|
2013-10-28 15:57:03 -04:00
|
|
|
// A 32-bit integer can be encoded by at most 5 bytes:
|
|
|
|
unsigned char b[5];
|
2014-05-01 16:54:22 -04:00
|
|
|
size_t idx = 0;
|
2013-10-28 15:40:42 -04:00
|
|
|
do
|
|
|
|
{
|
|
|
|
b[idx] = (a_Value & 0x7f) | ((a_Value > 0x7f) ? 0x80 : 0x00);
|
|
|
|
a_Value = a_Value >> 7;
|
|
|
|
idx++;
|
|
|
|
} while (a_Value > 0);
|
|
|
|
|
|
|
|
return WriteBuf(b, idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-31 18:47:22 -04:00
|
|
|
bool cByteBuffer::WriteVarUTF8String(const AString & a_Value)
|
2013-10-28 15:40:42 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(a_Value.size() + 1); // This is a lower-bound on the bytes that will be actually written. Fail early.
|
2014-05-01 16:54:22 -04:00
|
|
|
bool res = WriteVarInt((UInt32)(a_Value.size()));
|
2013-10-28 15:40:42 -04:00
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return WriteBuf(a_Value.data(), a_Value.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-24 08:35:35 -05:00
|
|
|
bool cByteBuffer::WriteLEInt(int a_Value)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
#ifdef IS_LITTLE_ENDIAN
|
|
|
|
return WriteBuf((const char *)&a_Value, 4);
|
|
|
|
#else
|
|
|
|
int Value = ((a_Value >> 24) & 0xff) | ((a_Value >> 16) & 0xff00) | ((a_Value >> 8) & 0xff0000) | (a_Value & 0xff000000);
|
|
|
|
return WriteBuf((const char *)&Value, 4);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-08 11:02:54 -04:00
|
|
|
bool cByteBuffer::WritePosition(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
|
|
|
return WriteBEInt64(((Int64)a_BlockX & 0x3FFFFFF) << 38 | ((Int64)a_BlockY & 0xFFF) << 26 | ((Int64)a_BlockZ & 0x3FFFFFF));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 10:36:52 -05:00
|
|
|
bool cByteBuffer::ReadBuf(void * a_Buffer, size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(a_Count);
|
|
|
|
char * Dst = (char *)a_Buffer; // So that we can do byte math
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_ReadPos);
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
2013-07-29 07:13:03 -04:00
|
|
|
if (BytesToEndOfBuffer <= a_Count)
|
|
|
|
{
|
|
|
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
|
|
|
if (BytesToEndOfBuffer > 0)
|
|
|
|
{
|
|
|
|
memcpy(Dst, m_Buffer + m_ReadPos, BytesToEndOfBuffer);
|
|
|
|
Dst += BytesToEndOfBuffer;
|
|
|
|
a_Count -= BytesToEndOfBuffer;
|
|
|
|
}
|
|
|
|
m_ReadPos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the rest of the bytes in a single read (guaranteed to fit):
|
|
|
|
if (a_Count > 0)
|
|
|
|
{
|
|
|
|
memcpy(Dst, m_Buffer + m_ReadPos, a_Count);
|
|
|
|
m_ReadPos += a_Count;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 10:36:52 -05:00
|
|
|
bool cByteBuffer::WriteBuf(const void * a_Buffer, size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
PUTBYTES(a_Count);
|
|
|
|
char * Src = (char *)a_Buffer; // So that we can do byte math
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_ReadPos);
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t BytesToEndOfBuffer = m_BufferSize - m_WritePos;
|
2013-07-29 07:13:03 -04:00
|
|
|
if (BytesToEndOfBuffer <= a_Count)
|
|
|
|
{
|
|
|
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
|
|
|
memcpy(m_Buffer + m_WritePos, Src, BytesToEndOfBuffer);
|
|
|
|
Src += BytesToEndOfBuffer;
|
|
|
|
a_Count -= BytesToEndOfBuffer;
|
|
|
|
m_WritePos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the rest of the bytes in a single read (guaranteed to fit):
|
|
|
|
if (a_Count > 0)
|
|
|
|
{
|
|
|
|
memcpy(m_Buffer + m_WritePos, Src, a_Count);
|
|
|
|
m_WritePos += a_Count;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 10:36:52 -05:00
|
|
|
bool cByteBuffer::ReadString(AString & a_String, size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
NEEDBYTES(a_Count);
|
|
|
|
a_String.clear();
|
|
|
|
a_String.reserve(a_Count);
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_ReadPos);
|
2014-03-08 11:33:38 -05:00
|
|
|
size_t BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
2013-07-29 07:13:03 -04:00
|
|
|
if (BytesToEndOfBuffer <= a_Count)
|
|
|
|
{
|
|
|
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
|
|
|
if (BytesToEndOfBuffer > 0)
|
|
|
|
{
|
|
|
|
a_String.assign(m_Buffer + m_ReadPos, BytesToEndOfBuffer);
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(a_Count >= BytesToEndOfBuffer);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Count -= BytesToEndOfBuffer;
|
|
|
|
}
|
|
|
|
m_ReadPos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the rest of the bytes in a single read (guaranteed to fit):
|
|
|
|
if (a_Count > 0)
|
|
|
|
{
|
|
|
|
a_String.append(m_Buffer + m_ReadPos, a_Count);
|
|
|
|
m_ReadPos += a_Count;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-01 16:54:22 -04:00
|
|
|
bool cByteBuffer::ReadUTF16String(AString & a_String, size_t a_NumChars)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Reads 2 * a_NumChars bytes and interprets it as a UTF16 string, converting it into UTF8 string a_String
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
AString RawData;
|
|
|
|
if (!ReadString(RawData, a_NumChars * 2))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-14 09:11:49 -04:00
|
|
|
RawBEToUTF8(RawData.data(), a_NumChars, a_String);
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 14:04:25 -05:00
|
|
|
bool cByteBuffer::SkipRead(size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
if (!CanReadBytes(a_Count))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
AdvanceReadPos(a_Count);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cByteBuffer::ReadAll(AString & a_Data)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
ReadString(a_Data, GetReadableSpace());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-22 09:19:29 -05:00
|
|
|
bool cByteBuffer::ReadToByteBuffer(cByteBuffer & a_Dst, size_t a_NumBytes)
|
2013-12-13 11:53:00 -05:00
|
|
|
{
|
|
|
|
if (!a_Dst.CanWriteBytes(a_NumBytes) || !CanReadBytes(a_NumBytes))
|
|
|
|
{
|
|
|
|
// There's not enough source bytes or space in the dest BB
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
char buf[1024];
|
2013-12-22 12:02:36 -05:00
|
|
|
// > 0 without generating warnings about unsigned comparisons where size_t is unsigned
|
|
|
|
while (a_NumBytes != 0)
|
2013-12-13 11:53:00 -05:00
|
|
|
{
|
2013-12-22 09:19:29 -05:00
|
|
|
size_t num = (a_NumBytes > sizeof(buf)) ? sizeof(buf) : a_NumBytes;
|
2013-12-13 11:53:00 -05:00
|
|
|
VERIFY(ReadBuf(buf, num));
|
|
|
|
VERIFY(a_Dst.Write(buf, num));
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(a_NumBytes >= num);
|
2013-12-13 11:53:00 -05:00
|
|
|
a_NumBytes -= num;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cByteBuffer::CommitRead(void)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
m_DataStart = m_ReadPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cByteBuffer::ResetRead(void)
|
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
m_ReadPos = m_DataStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cByteBuffer::ReadAgain(AString & a_Out)
|
|
|
|
{
|
|
|
|
// Return the data between m_DataStart and m_ReadPos (the data that has been read but not committed)
|
|
|
|
// Used by ProtoProxy to repeat communication twice, once for parsing and the other time for the remote party
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
2014-03-08 14:18:51 -05:00
|
|
|
size_t DataStart = m_DataStart;
|
2013-07-29 07:13:03 -04:00
|
|
|
if (m_ReadPos < m_DataStart)
|
|
|
|
{
|
|
|
|
// Across the ringbuffer end, read the first part and adjust next part's start:
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_BufferSize >= m_DataStart);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Out.append(m_Buffer + m_DataStart, m_BufferSize - m_DataStart);
|
|
|
|
DataStart = 0;
|
|
|
|
}
|
2014-03-08 14:18:51 -05:00
|
|
|
ASSERT(m_ReadPos >= DataStart);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Out.append(m_Buffer + DataStart, m_ReadPos - DataStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 14:04:25 -05:00
|
|
|
void cByteBuffer::AdvanceReadPos(size_t a_Count)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
CHECK_THREAD;
|
|
|
|
CheckValid();
|
|
|
|
m_ReadPos += a_Count;
|
2013-11-29 12:39:40 -05:00
|
|
|
if (m_ReadPos >= m_BufferSize)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
m_ReadPos -= m_BufferSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cByteBuffer::CheckValid(void) const
|
|
|
|
{
|
|
|
|
ASSERT(m_ReadPos < m_BufferSize);
|
|
|
|
ASSERT(m_WritePos < m_BufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-26 11:48:09 -05:00
|
|
|
|