Skip to content

Commit

Permalink
Drop m_list_size from ReliablePacketBuffer
Browse files Browse the repository at this point in the history
It's not required and, worse, can lead to bugs.
  • Loading branch information
sfan5 committed Aug 16, 2019
1 parent d7c10b6 commit fc2f55d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
38 changes: 20 additions & 18 deletions src/network/connection.cpp
Expand Up @@ -169,6 +169,7 @@ void ReliablePacketBuffer::print()
index++;
}
}

bool ReliablePacketBuffer::empty()
{
MutexAutoLock listlock(m_list_mutex);
Expand All @@ -177,7 +178,8 @@ bool ReliablePacketBuffer::empty()

u32 ReliablePacketBuffer::size()
{
return m_list_size;
MutexAutoLock listlock(m_list_mutex);
return m_list.size();
}

bool ReliablePacketBuffer::containsPacket(u16 seqnum)
Expand All @@ -198,17 +200,19 @@ RPBSearchResult ReliablePacketBuffer::findPacket(u16 seqnum)
}
return i;
}

RPBSearchResult ReliablePacketBuffer::notFound()
{
return m_list.end();
}

bool ReliablePacketBuffer::getFirstSeqnum(u16& result)
{
MutexAutoLock listlock(m_list_mutex);
if (m_list.empty())
return false;
BufferedPacket p = *m_list.begin();
result = readU16(&p.data[BASE_HEADER_SIZE+1]);
const BufferedPacket &p = *m_list.begin();
result = readU16(&p.data[BASE_HEADER_SIZE + 1]);
return true;
}

Expand All @@ -219,16 +223,16 @@ BufferedPacket ReliablePacketBuffer::popFirst()
throw NotFoundException("Buffer is empty");
BufferedPacket p = *m_list.begin();
m_list.erase(m_list.begin());
--m_list_size;

if (m_list_size == 0) {
if (m_list.empty()) {
m_oldest_non_answered_ack = 0;
} else {
m_oldest_non_answered_ack =
readU16(&(*m_list.begin()).data[BASE_HEADER_SIZE+1]);
readU16(&m_list.begin()->data[BASE_HEADER_SIZE + 1]);
}
return p;
}

BufferedPacket ReliablePacketBuffer::popSeqnum(u16 seqnum)
{
MutexAutoLock listlock(m_list_mutex);
Expand All @@ -249,15 +253,17 @@ BufferedPacket ReliablePacketBuffer::popSeqnum(u16 seqnum)
}

m_list.erase(r);
--m_list_size;

if (m_list_size == 0)
{ m_oldest_non_answered_ack = 0; }
else
{ m_oldest_non_answered_ack = readU16(&(*m_list.begin()).data[BASE_HEADER_SIZE+1]); }
if (m_list.empty()) {
m_oldest_non_answered_ack = 0;
} else {
m_oldest_non_answered_ack =
readU16(&m_list.begin()->data[BASE_HEADER_SIZE + 1]);
}
return p;
}
void ReliablePacketBuffer::insert(BufferedPacket &p,u16 next_expected)

void ReliablePacketBuffer::insert(BufferedPacket &p, u16 next_expected)
{
MutexAutoLock listlock(m_list_mutex);
if (p.data.getSize() < BASE_HEADER_SIZE + 3) {
Expand All @@ -284,8 +290,7 @@ void ReliablePacketBuffer::insert(BufferedPacket &p,u16 next_expected)
return;
}

++m_list_size;
sanity_check(m_list_size <= SEQNUM_MAX+1); // FIXME: Handle the error?
sanity_check(m_list.size() <= SEQNUM_MAX); // FIXME: Handle the error?

// Find the right place for the packet and insert it there
// If list is empty, just add it
Expand Down Expand Up @@ -324,8 +329,6 @@ void ReliablePacketBuffer::insert(BufferedPacket &p,u16 next_expected)
if (s == seqnum) {
/* nothing to do this seems to be a resent packet */
/* for paranoia reason data should be compared */
--m_list_size;

if (
(readU16(&(i->data[BASE_HEADER_SIZE+1])) != seqnum) ||
(i->data.getSize() != p.data.getSize()) ||
Expand All @@ -348,8 +351,7 @@ void ReliablePacketBuffer::insert(BufferedPacket &p,u16 next_expected)
/* insert or push back */
else if (i != m_list.end()) {
m_list.insert(i, p);
}
else {
} else {
m_list.push_back(p);
}

Expand Down
3 changes: 1 addition & 2 deletions src/network/connection.h
Expand Up @@ -240,7 +240,7 @@ class ReliablePacketBuffer

BufferedPacket popFirst();
BufferedPacket popSeqnum(u16 seqnum);
void insert(BufferedPacket &p,u16 next_expected);
void insert(BufferedPacket &p, u16 next_expected);

void incrementTimeouts(float dtime);
std::list<BufferedPacket> getTimedOuts(float timeout,
Expand All @@ -257,7 +257,6 @@ class ReliablePacketBuffer
RPBSearchResult findPacket(u16 seqnum);

std::list<BufferedPacket> m_list;
u32 m_list_size = 0;

u16 m_oldest_non_answered_ack;

Expand Down

0 comments on commit fc2f55d

Please sign in to comment.