1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 09:37:52 +01:00
libtgvoip/controller/protocol/PacketManager.h
2020-01-29 15:52:43 +01:00

130 lines
2.8 KiB
C++

#pragma once
#include <atomic>
#include <bitset>
#include "PacketStructs.h"
namespace tgvoip
{
#define SEQ_MAX 0xFFFFFFFF
inline bool seqgt(uint32_t s1, uint32_t s2)
{
return ((s1 > s2) && (s1 - s2 <= SEQ_MAX / 2)) || ((s1 < s2) && (s2 - s1 > SEQ_MAX / 2));
}
inline bool seqgte(uint32_t s1, uint32_t s2)
{
return s1 == s2 || seqgt(s1, s2);
}
// Local and remote packet history management
class PacketManager
{
public:
PacketManager(uint8_t transportId = 0xFF);
virtual ~PacketManager() = default;
// Transport ID for multiplexing
inline uint8_t getTransportId()
{
return transportId;
}
uint8_t transportId = 0xFF; // Default transport ID
public:
/* Local seqno generation */
// Get next local seqno
inline uint32_t nextLocalSeq()
{
return seq++;
}
// Get current local seqno
inline uint32_t getLocalSeq()
{
return seq;
}
inline uint32_t getLastSentSeq()
{
return lastSentSeq;
}
inline void setLastSentSeq(uint32_t lastSentSeq)
{
this->lastSentSeq = lastSentSeq;
}
// Seqno of last sent local packet
uint32_t lastSentSeq = 0;
private:
// Stream-specific local seqno
std::atomic<uint32_t> seq = ATOMIC_VAR_INIT(1);
public:
/* Local seqno acks */
// Ack specified local seq + up to 32 seqs ago, specified by mask
void ackLocal(uint32_t ackId, uint32_t mask);
// Check if local seq was acked
bool wasLocalAcked(uint32_t seq);
inline uint32_t getLastAckedSeq() const
{
return lastAckedSeq;
}
private:
// Seqno of last acked packet
uint32_t lastAckedSeq = 0;
// Status list of acked local seqnos, excluding the seq explicitly present in the packet, up to 32 seqs ago
uint32_t lastAckedSeqsMask = 0;
public:
/* Remote seqno ack */
// Ack specified remote seq, returns false if too old or dupe
bool ackRemoteSeq(uint32_t ackId);
// Ack remote seqs older than the specified seq
inline void ackRemoteSeqsOlderThan(uint32_t seq)
{
lastRemoteSeqsMask |= 0xFFFFFFFF << (lastRemoteSeq - seq);
}
// Get ack mask for remote packets
inline uint32_t getRemoteAckMask()
{
return lastRemoteSeqsMask;
}
inline uint32_t getLastRemoteSeq()
{
return lastRemoteSeq;
}
private:
// Seqno of last received remote packet
uint32_t lastRemoteSeq = 0;
// Recent incoming remote packets
uint32_t lastRemoteSeqsMask;
public: // Recent outgoing packet list
inline std::vector<RecentOutgoingPacket> &getRecentOutgoingPackets()
{
return recentOutgoingPackets;
}
RecentOutgoingPacket *GetRecentOutgoingPacket(uint32_t seq);
private:
// Recent ougoing packets
std::vector<RecentOutgoingPacket> recentOutgoingPackets;
};
} // namespace tgvoip