Aggressive debug mode cByteBuffer validity checking.
Hopefully fixed the "BytesToEndOfBuffer" assert. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1057 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
parent
47fbda1446
commit
c96447007e
@ -39,6 +39,7 @@ cByteBuffer::cByteBuffer(int a_BufferSize) :
|
|||||||
|
|
||||||
cByteBuffer::~cByteBuffer()
|
cByteBuffer::~cByteBuffer()
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
delete[] m_Buffer;
|
delete[] m_Buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,7 +49,9 @@ cByteBuffer::~cByteBuffer()
|
|||||||
|
|
||||||
bool cByteBuffer::Write(const char * a_Bytes, int a_Count)
|
bool cByteBuffer::Write(const char * a_Bytes, int a_Count)
|
||||||
{
|
{
|
||||||
// DEBUG: Store the current free space for a check after writing
|
CheckValid();
|
||||||
|
|
||||||
|
// Store the current free space for a check after writing:
|
||||||
int CurFreeSpace = GetFreeSpace();
|
int CurFreeSpace = GetFreeSpace();
|
||||||
int CurReadableSpace = GetReadableSpace();
|
int CurReadableSpace = GetReadableSpace();
|
||||||
int WrittenBytes = 0;
|
int WrittenBytes = 0;
|
||||||
@ -58,20 +61,26 @@ bool cByteBuffer::Write(const char * a_Bytes, int a_Count)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
int TillEnd = m_BufferSize - m_WritePos;
|
int TillEnd = m_BufferSize - m_WritePos;
|
||||||
if (TillEnd < a_Count)
|
if (TillEnd <= a_Count)
|
||||||
{
|
{
|
||||||
// Need to wrap around the ringbuffer end
|
// Need to wrap around the ringbuffer end
|
||||||
|
if (TillEnd > 0)
|
||||||
|
{
|
||||||
memcpy(m_Buffer + m_WritePos, a_Bytes, TillEnd);
|
memcpy(m_Buffer + m_WritePos, a_Bytes, TillEnd);
|
||||||
m_WritePos = 0;
|
|
||||||
a_Bytes += TillEnd;
|
a_Bytes += TillEnd;
|
||||||
a_Count -= TillEnd;
|
a_Count -= TillEnd;
|
||||||
WrittenBytes = TillEnd;
|
WrittenBytes = TillEnd;
|
||||||
}
|
}
|
||||||
|
m_WritePos = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// We're guaranteed that we'll fit in a single write op
|
// We're guaranteed that we'll fit in a single write op
|
||||||
|
if (a_Count > 0)
|
||||||
|
{
|
||||||
memcpy(m_Buffer + m_WritePos, a_Bytes, a_Count);
|
memcpy(m_Buffer + m_WritePos, a_Bytes, a_Count);
|
||||||
m_WritePos += a_Count;
|
m_WritePos += a_Count;
|
||||||
WrittenBytes += a_Count;
|
WrittenBytes += a_Count;
|
||||||
|
}
|
||||||
|
|
||||||
ASSERT(GetFreeSpace() == CurFreeSpace - WrittenBytes);
|
ASSERT(GetFreeSpace() == CurFreeSpace - WrittenBytes);
|
||||||
ASSERT(GetReadableSpace() == CurReadableSpace + WrittenBytes);
|
ASSERT(GetReadableSpace() == CurReadableSpace + WrittenBytes);
|
||||||
@ -84,6 +93,7 @@ bool cByteBuffer::Write(const char * a_Bytes, int a_Count)
|
|||||||
|
|
||||||
int cByteBuffer::GetFreeSpace(void) const
|
int cByteBuffer::GetFreeSpace(void) const
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
if (m_WritePos >= m_DataStart)
|
if (m_WritePos >= m_DataStart)
|
||||||
{
|
{
|
||||||
// Wrap around the buffer end:
|
// Wrap around the buffer end:
|
||||||
@ -100,6 +110,7 @@ int cByteBuffer::GetFreeSpace(void) const
|
|||||||
/// Returns the number of bytes that are currently in the ringbuffer. Note GetReadableBytes()
|
/// Returns the number of bytes that are currently in the ringbuffer. Note GetReadableBytes()
|
||||||
int cByteBuffer::GetUsedSpace(void) const
|
int cByteBuffer::GetUsedSpace(void) const
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
return m_BufferSize - GetFreeSpace();
|
return m_BufferSize - GetFreeSpace();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,6 +121,7 @@ int cByteBuffer::GetUsedSpace(void) const
|
|||||||
/// Returns the number of bytes that are currently available for reading (may be less than UsedSpace due to some data having been read already)
|
/// Returns the number of bytes that are currently available for reading (may be less than UsedSpace due to some data having been read already)
|
||||||
int cByteBuffer::GetReadableSpace(void) const
|
int cByteBuffer::GetReadableSpace(void) const
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
if (m_ReadPos > m_WritePos)
|
if (m_ReadPos > m_WritePos)
|
||||||
{
|
{
|
||||||
// Wrap around the buffer end:
|
// Wrap around the buffer end:
|
||||||
@ -125,6 +137,7 @@ int cByteBuffer::GetReadableSpace(void) const
|
|||||||
|
|
||||||
bool cByteBuffer::CanReadBytes(int a_Count) const
|
bool cByteBuffer::CanReadBytes(int a_Count) const
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
return (a_Count <= GetReadableSpace());
|
return (a_Count <= GetReadableSpace());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,6 +147,7 @@ bool cByteBuffer::CanReadBytes(int a_Count) const
|
|||||||
|
|
||||||
bool cByteBuffer::CanWriteBytes(int a_Count) const
|
bool cByteBuffer::CanWriteBytes(int a_Count) const
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
return (a_Count <= GetFreeSpace());
|
return (a_Count <= GetFreeSpace());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,6 +157,7 @@ bool cByteBuffer::CanWriteBytes(int a_Count) const
|
|||||||
|
|
||||||
bool cByteBuffer::ReadChar(char & a_Value)
|
bool cByteBuffer::ReadChar(char & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(1);
|
NEEDBYTES(1);
|
||||||
ReadBuf(&a_Value, 1);
|
ReadBuf(&a_Value, 1);
|
||||||
return true;
|
return true;
|
||||||
@ -154,6 +169,7 @@ bool cByteBuffer::ReadChar(char & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadByte(unsigned char & a_Value)
|
bool cByteBuffer::ReadByte(unsigned char & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(1);
|
NEEDBYTES(1);
|
||||||
ReadBuf(&a_Value, 1);
|
ReadBuf(&a_Value, 1);
|
||||||
return true;
|
return true;
|
||||||
@ -165,6 +181,7 @@ bool cByteBuffer::ReadByte(unsigned char & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEShort(short & a_Value)
|
bool cByteBuffer::ReadBEShort(short & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(2);
|
NEEDBYTES(2);
|
||||||
ReadBuf(&a_Value, 2);
|
ReadBuf(&a_Value, 2);
|
||||||
a_Value = ntohs(a_Value);
|
a_Value = ntohs(a_Value);
|
||||||
@ -177,6 +194,7 @@ bool cByteBuffer::ReadBEShort(short & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEInt(int & a_Value)
|
bool cByteBuffer::ReadBEInt(int & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(4);
|
NEEDBYTES(4);
|
||||||
ReadBuf(&a_Value, 4);
|
ReadBuf(&a_Value, 4);
|
||||||
a_Value = ntohl(a_Value);
|
a_Value = ntohl(a_Value);
|
||||||
@ -189,6 +207,7 @@ bool cByteBuffer::ReadBEInt(int & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEInt64(Int64 & a_Value)
|
bool cByteBuffer::ReadBEInt64(Int64 & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(8);
|
NEEDBYTES(8);
|
||||||
ReadBuf(&a_Value, 8);
|
ReadBuf(&a_Value, 8);
|
||||||
a_Value = NetworkToHostLong8(&a_Value);
|
a_Value = NetworkToHostLong8(&a_Value);
|
||||||
@ -201,6 +220,7 @@ bool cByteBuffer::ReadBEInt64(Int64 & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEFloat(float & a_Value)
|
bool cByteBuffer::ReadBEFloat(float & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(4);
|
NEEDBYTES(4);
|
||||||
ReadBuf(&a_Value, 4);
|
ReadBuf(&a_Value, 4);
|
||||||
a_Value = NetworkToHostFloat4(&a_Value);
|
a_Value = NetworkToHostFloat4(&a_Value);
|
||||||
@ -213,6 +233,7 @@ bool cByteBuffer::ReadBEFloat(float & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEDouble(double & a_Value)
|
bool cByteBuffer::ReadBEDouble(double & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(8);
|
NEEDBYTES(8);
|
||||||
ReadBuf(&a_Value, 8);
|
ReadBuf(&a_Value, 8);
|
||||||
a_Value = NetworkToHostDouble8(&a_Value);
|
a_Value = NetworkToHostDouble8(&a_Value);
|
||||||
@ -225,6 +246,7 @@ bool cByteBuffer::ReadBEDouble(double & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBool(bool & a_Value)
|
bool cByteBuffer::ReadBool(bool & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
NEEDBYTES(1);
|
NEEDBYTES(1);
|
||||||
a_Value = (m_Buffer[m_ReadPos++] != 0);
|
a_Value = (m_Buffer[m_ReadPos++] != 0);
|
||||||
return true;
|
return true;
|
||||||
@ -236,6 +258,7 @@ bool cByteBuffer::ReadBool(bool & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBEUTF16String16(AString & a_Value)
|
bool cByteBuffer::ReadBEUTF16String16(AString & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
short Length;
|
short Length;
|
||||||
if (!ReadBEShort(Length))
|
if (!ReadBEShort(Length))
|
||||||
{
|
{
|
||||||
@ -250,6 +273,7 @@ bool cByteBuffer::ReadBEUTF16String16(AString & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteChar(char a_Value)
|
bool cByteBuffer::WriteChar(char a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(1);
|
PUTBYTES(1);
|
||||||
return WriteBuf(&a_Value, 1);
|
return WriteBuf(&a_Value, 1);
|
||||||
}
|
}
|
||||||
@ -260,6 +284,7 @@ bool cByteBuffer::WriteChar(char a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteByte(unsigned char a_Value)
|
bool cByteBuffer::WriteByte(unsigned char a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(1);
|
PUTBYTES(1);
|
||||||
return WriteBuf(&a_Value, 1);
|
return WriteBuf(&a_Value, 1);
|
||||||
}
|
}
|
||||||
@ -270,6 +295,7 @@ bool cByteBuffer::WriteByte(unsigned char a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEShort(short a_Value)
|
bool cByteBuffer::WriteBEShort(short a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(2);
|
PUTBYTES(2);
|
||||||
short Converted = htons(a_Value);
|
short Converted = htons(a_Value);
|
||||||
return WriteBuf(&Converted, 2);
|
return WriteBuf(&Converted, 2);
|
||||||
@ -281,6 +307,7 @@ bool cByteBuffer::WriteBEShort(short a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEInt(int a_Value)
|
bool cByteBuffer::WriteBEInt(int a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(4);
|
PUTBYTES(4);
|
||||||
int Converted = HostToNetwork4(&a_Value);
|
int Converted = HostToNetwork4(&a_Value);
|
||||||
return WriteBuf(&Converted, 4);
|
return WriteBuf(&Converted, 4);
|
||||||
@ -292,6 +319,7 @@ bool cByteBuffer::WriteBEInt(int a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEInt64(Int64 a_Value)
|
bool cByteBuffer::WriteBEInt64(Int64 a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(8);
|
PUTBYTES(8);
|
||||||
Int64 Converted = HostToNetwork8(&a_Value);
|
Int64 Converted = HostToNetwork8(&a_Value);
|
||||||
return WriteBuf(&Converted, 8);
|
return WriteBuf(&Converted, 8);
|
||||||
@ -303,6 +331,7 @@ bool cByteBuffer::WriteBEInt64(Int64 a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEFloat(float a_Value)
|
bool cByteBuffer::WriteBEFloat(float a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(4);
|
PUTBYTES(4);
|
||||||
int Converted = HostToNetwork4(&a_Value);
|
int Converted = HostToNetwork4(&a_Value);
|
||||||
return WriteBuf(&Converted, 4);
|
return WriteBuf(&Converted, 4);
|
||||||
@ -314,6 +343,7 @@ bool cByteBuffer::WriteBEFloat(float a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEDouble(double a_Value)
|
bool cByteBuffer::WriteBEDouble(double a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(8);
|
PUTBYTES(8);
|
||||||
Int64 Converted = HostToNetwork8(&a_Value);
|
Int64 Converted = HostToNetwork8(&a_Value);
|
||||||
return WriteBuf(&Converted, 8);
|
return WriteBuf(&Converted, 8);
|
||||||
@ -326,6 +356,7 @@ bool cByteBuffer::WriteBEDouble(double a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBool(bool a_Value)
|
bool cByteBuffer::WriteBool(bool a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
return WriteChar(a_Value ? 1 : 0);
|
return WriteChar(a_Value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -335,6 +366,7 @@ bool cByteBuffer::WriteBool(bool a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBEUTF16String16(const AString & a_Value)
|
bool cByteBuffer::WriteBEUTF16String16(const AString & a_Value)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
PUTBYTES(2);
|
PUTBYTES(2);
|
||||||
AString UTF16BE;
|
AString UTF16BE;
|
||||||
UTF8ToRawBEUTF16(a_Value.data(), a_Value.size(), UTF16BE);
|
UTF8ToRawBEUTF16(a_Value.data(), a_Value.size(), UTF16BE);
|
||||||
@ -350,12 +382,13 @@ bool cByteBuffer::WriteBEUTF16String16(const AString & a_Value)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadBuf(void * a_Buffer, int a_Count)
|
bool cByteBuffer::ReadBuf(void * a_Buffer, int a_Count)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
ASSERT(a_Count >= 0);
|
ASSERT(a_Count >= 0);
|
||||||
NEEDBYTES(a_Count);
|
NEEDBYTES(a_Count);
|
||||||
char * Dst = (char *)a_Buffer; // So that we can do byte math
|
char * Dst = (char *)a_Buffer; // So that we can do byte math
|
||||||
int BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
int BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
||||||
ASSERT(BytesToEndOfBuffer >= 0); // Sanity check
|
ASSERT(BytesToEndOfBuffer >= 0); // Sanity check
|
||||||
if (BytesToEndOfBuffer < a_Count)
|
if (BytesToEndOfBuffer <= a_Count)
|
||||||
{
|
{
|
||||||
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
||||||
if (BytesToEndOfBuffer > 0)
|
if (BytesToEndOfBuffer > 0)
|
||||||
@ -368,8 +401,11 @@ bool cByteBuffer::ReadBuf(void * a_Buffer, int a_Count)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Read the rest of the bytes in a single read (guaranteed to fit):
|
// 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);
|
memcpy(Dst, m_Buffer + m_ReadPos, a_Count);
|
||||||
m_ReadPos += a_Count;
|
m_ReadPos += a_Count;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -379,11 +415,12 @@ bool cByteBuffer::ReadBuf(void * a_Buffer, int a_Count)
|
|||||||
|
|
||||||
bool cByteBuffer::WriteBuf(const void * a_Buffer, int a_Count)
|
bool cByteBuffer::WriteBuf(const void * a_Buffer, int a_Count)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
ASSERT(a_Count >= 0);
|
ASSERT(a_Count >= 0);
|
||||||
PUTBYTES(a_Count);
|
PUTBYTES(a_Count);
|
||||||
char * Src = (char *)a_Buffer; // So that we can do byte math
|
char * Src = (char *)a_Buffer; // So that we can do byte math
|
||||||
int BytesToEndOfBuffer = m_BufferSize - m_WritePos;
|
int BytesToEndOfBuffer = m_BufferSize - m_WritePos;
|
||||||
if (BytesToEndOfBuffer < a_Count)
|
if (BytesToEndOfBuffer <= a_Count)
|
||||||
{
|
{
|
||||||
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
||||||
memcpy(m_Buffer + m_WritePos, Src, BytesToEndOfBuffer);
|
memcpy(m_Buffer + m_WritePos, Src, BytesToEndOfBuffer);
|
||||||
@ -393,8 +430,11 @@ bool cByteBuffer::WriteBuf(const void * a_Buffer, int a_Count)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Read the rest of the bytes in a single read (guaranteed to fit):
|
// 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);
|
memcpy(m_Buffer + m_WritePos, Src, a_Count);
|
||||||
m_WritePos += a_Count;
|
m_WritePos += a_Count;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -404,22 +444,30 @@ bool cByteBuffer::WriteBuf(const void * a_Buffer, int a_Count)
|
|||||||
|
|
||||||
bool cByteBuffer::ReadString(AString & a_String, int a_Count)
|
bool cByteBuffer::ReadString(AString & a_String, int a_Count)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
ASSERT(a_Count >= 0);
|
ASSERT(a_Count >= 0);
|
||||||
NEEDBYTES(a_Count);
|
NEEDBYTES(a_Count);
|
||||||
a_String.clear();
|
a_String.clear();
|
||||||
a_String.reserve(a_Count);
|
a_String.reserve(a_Count);
|
||||||
int BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
int BytesToEndOfBuffer = m_BufferSize - m_ReadPos;
|
||||||
if (BytesToEndOfBuffer < a_Count)
|
ASSERT(BytesToEndOfBuffer >= 0); // Sanity check
|
||||||
|
if (BytesToEndOfBuffer <= a_Count)
|
||||||
{
|
{
|
||||||
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
// Reading across the ringbuffer end, read the first part and adjust parameters:
|
||||||
|
if (BytesToEndOfBuffer > 0)
|
||||||
|
{
|
||||||
a_String.assign(m_Buffer + m_ReadPos, BytesToEndOfBuffer);
|
a_String.assign(m_Buffer + m_ReadPos, BytesToEndOfBuffer);
|
||||||
a_Count -= BytesToEndOfBuffer;
|
a_Count -= BytesToEndOfBuffer;
|
||||||
|
}
|
||||||
m_ReadPos = 0;
|
m_ReadPos = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read the rest of the bytes in a single read (guaranteed to fit):
|
// 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);
|
a_String.append(m_Buffer + m_ReadPos, a_Count);
|
||||||
m_ReadPos += a_Count;
|
m_ReadPos += a_Count;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -430,6 +478,7 @@ bool cByteBuffer::ReadString(AString & a_String, int a_Count)
|
|||||||
bool cByteBuffer::ReadUTF16String(AString & a_String, int a_NumChars)
|
bool cByteBuffer::ReadUTF16String(AString & a_String, int a_NumChars)
|
||||||
{
|
{
|
||||||
// Reads 2 * a_NumChars bytes and interprets it as a UTF16 string, converting it into UTF8 string a_String
|
// Reads 2 * a_NumChars bytes and interprets it as a UTF16 string, converting it into UTF8 string a_String
|
||||||
|
CheckValid();
|
||||||
ASSERT(a_NumChars >= 0);
|
ASSERT(a_NumChars >= 0);
|
||||||
AString RawData;
|
AString RawData;
|
||||||
if (!ReadString(RawData, a_NumChars * 2))
|
if (!ReadString(RawData, a_NumChars * 2))
|
||||||
@ -446,6 +495,7 @@ bool cByteBuffer::ReadUTF16String(AString & a_String, int a_NumChars)
|
|||||||
|
|
||||||
bool cByteBuffer::SkipRead(int a_Count)
|
bool cByteBuffer::SkipRead(int a_Count)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
ASSERT(a_Count >= 0);
|
ASSERT(a_Count >= 0);
|
||||||
if (!CanReadBytes(a_Count))
|
if (!CanReadBytes(a_Count))
|
||||||
{
|
{
|
||||||
@ -461,6 +511,7 @@ bool cByteBuffer::SkipRead(int a_Count)
|
|||||||
|
|
||||||
void cByteBuffer::ReadAll(AString & a_Data)
|
void cByteBuffer::ReadAll(AString & a_Data)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
ReadString(a_Data, GetReadableSpace());
|
ReadString(a_Data, GetReadableSpace());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -470,6 +521,7 @@ void cByteBuffer::ReadAll(AString & a_Data)
|
|||||||
|
|
||||||
void cByteBuffer::CommitRead(void)
|
void cByteBuffer::CommitRead(void)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
m_DataStart = m_ReadPos;
|
m_DataStart = m_ReadPos;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -479,6 +531,7 @@ void cByteBuffer::CommitRead(void)
|
|||||||
|
|
||||||
void cByteBuffer::ResetRead(void)
|
void cByteBuffer::ResetRead(void)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
m_ReadPos = m_DataStart;
|
m_ReadPos = m_DataStart;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -490,6 +543,7 @@ void cByteBuffer::ReadAgain(AString & a_Out)
|
|||||||
{
|
{
|
||||||
// Return the data between m_DataStart and m_ReadPos (the data that has been read but not committed)
|
// 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
|
// Used by ProtoProxy to repeat communication twice, once for parsing and the other time for the remote party
|
||||||
|
CheckValid();
|
||||||
int DataStart = m_DataStart;
|
int DataStart = m_DataStart;
|
||||||
if (m_ReadPos < m_DataStart)
|
if (m_ReadPos < m_DataStart)
|
||||||
{
|
{
|
||||||
@ -506,6 +560,7 @@ void cByteBuffer::ReadAgain(AString & a_Out)
|
|||||||
|
|
||||||
void cByteBuffer::AdvanceReadPos(int a_Count)
|
void cByteBuffer::AdvanceReadPos(int a_Count)
|
||||||
{
|
{
|
||||||
|
CheckValid();
|
||||||
m_ReadPos += a_Count;
|
m_ReadPos += a_Count;
|
||||||
if (m_ReadPos > m_BufferSize)
|
if (m_ReadPos > m_BufferSize)
|
||||||
{
|
{
|
||||||
@ -516,3 +571,15 @@ void cByteBuffer::AdvanceReadPos(int a_Count)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void cByteBuffer::CheckValid(void) const
|
||||||
|
{
|
||||||
|
ASSERT(m_ReadPos >= 0);
|
||||||
|
ASSERT(m_ReadPos < m_BufferSize);
|
||||||
|
ASSERT(m_WritePos >= 0);
|
||||||
|
ASSERT(m_WritePos < m_BufferSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,6 +97,9 @@ public:
|
|||||||
/// Re-reads the data that has been read since the last commit to the current readpos. Used by ProtoProxy to duplicate communication
|
/// Re-reads the data that has been read since the last commit to the current readpos. Used by ProtoProxy to duplicate communication
|
||||||
void ReadAgain(AString & a_Out);
|
void ReadAgain(AString & a_Out);
|
||||||
|
|
||||||
|
/// Checks if the internal state is valid (read and write positions in the correct bounds) using ASSERTs
|
||||||
|
void CheckValid(void) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
char * m_Buffer;
|
char * m_Buffer;
|
||||||
int m_BufferSize; // Total size of the ringbuffer
|
int m_BufferSize; // Total size of the ringbuffer
|
||||||
|
@ -96,8 +96,10 @@ enum
|
|||||||
{ \
|
{ \
|
||||||
if (!m_ReceivedData.Proc(Var)) \
|
if (!m_ReceivedData.Proc(Var)) \
|
||||||
{ \
|
{ \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
return PARSE_INCOMPLETE; \
|
return PARSE_INCOMPLETE; \
|
||||||
} \
|
} \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -111,7 +113,7 @@ typedef unsigned char Byte;
|
|||||||
|
|
||||||
cProtocol125::cProtocol125(cClientHandle * a_Client) :
|
cProtocol125::cProtocol125(cClientHandle * a_Client) :
|
||||||
super(a_Client),
|
super(a_Client),
|
||||||
m_ReceivedData(64 KiB)
|
m_ReceivedData(32 KiB)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,8 +25,10 @@
|
|||||||
{ \
|
{ \
|
||||||
if (!m_ReceivedData.Proc(Var)) \
|
if (!m_ReceivedData.Proc(Var)) \
|
||||||
{ \
|
{ \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
return PARSE_INCOMPLETE; \
|
return PARSE_INCOMPLETE; \
|
||||||
} \
|
} \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,8 +25,10 @@
|
|||||||
{ \
|
{ \
|
||||||
if (!m_ReceivedData.Proc(Var)) \
|
if (!m_ReceivedData.Proc(Var)) \
|
||||||
{ \
|
{ \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
return PARSE_INCOMPLETE; \
|
return PARSE_INCOMPLETE; \
|
||||||
} \
|
} \
|
||||||
|
m_ReceivedData.CheckValid(); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user