1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-12-02 17:51:06 +01:00
libtgvoip/controller/protocol/Reliable.cpp

101 lines
3.3 KiB
C++
Raw Normal View History

2020-01-27 17:18:33 +01:00
#include "../PrivateDefines.cpp"
using namespace tgvoip;
using namespace std;
void VoIPController::SendPacketReliably(unsigned char type, unsigned char *data, size_t len, double retryInterval, double timeout, uint8_t tries)
{
ENFORCE_MSG_THREAD;
2020-01-29 19:12:12 +01:00
#ifdef LOG_PACKETS
2020-01-27 17:18:33 +01:00
LOGV("Send reliably, type=%u, len=%u, retry=%.3f, timeout=%.3f, tries=%hhu", type, unsigned(len), retryInterval, timeout, tries);
2020-01-29 19:12:12 +01:00
#endif
2020-01-27 17:18:33 +01:00
ReliableOutgoingPacket pkt;
if (data)
{
Buffer b(len);
b.CopyFrom(data, 0, len);
pkt.data = move(b);
}
pkt.type = type;
pkt.retryInterval = retryInterval;
pkt.timeout = timeout;
pkt.tries = tries;
pkt.firstSentTime = 0;
pkt.lastSentTime = 0;
reliablePackets.push_back(move(pkt));
messageThread.Post(std::bind(&VoIPController::UpdateReliablePackets, this));
if (timeout > 0.0)
{
messageThread.Post(std::bind(&VoIPController::UpdateReliablePackets, this), timeout);
}
}
void VoIPController::UpdateReliablePackets()
{
vector<PendingOutgoingPacket> packetsToSend;
for (std::vector<ReliableOutgoingPacket>::iterator qp = reliablePackets.begin(); qp != reliablePackets.end();)
{
if (qp->timeout > 0 && qp->firstSentTime > 0 && GetCurrentTime() - qp->firstSentTime >= qp->timeout)
{
2020-01-29 19:12:12 +01:00
//#ifdef LOG_PACKETS
2020-01-27 17:18:33 +01:00
LOGD("Removing queued packet because of timeout");
2020-01-29 19:12:12 +01:00
//#endif
2020-01-27 17:18:33 +01:00
qp = reliablePackets.erase(qp);
continue;
}
if (!qp->tries--)
{
2020-01-29 19:12:12 +01:00
//#ifdef LOG_PACKETS
2020-01-27 17:18:33 +01:00
LOGD("Removing queued packet because of no more tries");
2020-01-29 19:12:12 +01:00
//#endif
2020-01-27 17:18:33 +01:00
qp = reliablePackets.erase(qp);
continue;
}
if (GetCurrentTime() - qp->lastSentTime >= qp->retryInterval)
{
messageThread.Post(std::bind(&VoIPController::UpdateReliablePackets, this), qp->retryInterval);
2020-01-28 23:45:47 +01:00
uint32_t seq = packetManager.nextLocalSeq();
2020-01-27 17:18:33 +01:00
qp->seqs.Add(seq);
qp->lastSentTime = GetCurrentTime();
2020-01-29 19:12:12 +01:00
//#ifdef LOG_PACKETS
LOGD("Sending reliable queued packet, seq=%u, type=%u, len=%lu", seq, qp->type, qp->data.Length());
//#endif
2020-01-27 17:18:33 +01:00
Buffer buf(qp->data.Length());
if (qp->firstSentTime == 0)
qp->firstSentTime = qp->lastSentTime;
if (qp->data.Length())
buf.CopyFrom(qp->data, qp->data.Length());
packetsToSend.push_back(PendingOutgoingPacket{
/*.seq=*/seq,
/*.type=*/qp->type,
/*.len=*/qp->data.Length(),
/*.data=*/move(buf),
/*.endpoint=*/0});
}
++qp;
}
for (PendingOutgoingPacket &pkt : packetsToSend)
{
SendOrEnqueuePacket(move(pkt));
}
}
void VoIPController::handleReliablePackets()
{
for (auto it = reliablePackets.begin(); it != reliablePackets.end();)
{
ReliableOutgoingPacket &qp = *it;
bool didAck = false;
for (uint8_t i = 0; i < qp.seqs.Size(); ++i)
{
2020-01-29 19:12:12 +01:00
if (!qp.seqs[i] || (didAck = packetManager.wasLocalAcked(qp.seqs[i])))
2020-01-27 17:18:33 +01:00
break;
}
if (didAck)
{
LOGV("Acked queued packet with %hhu tries left", qp.tries);
it = reliablePackets.erase(it);
continue;
}
++it;
}
}