mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-13 16:11:24 +00:00
![Ben Meadors](/assets/img/avatar_default.png)
* Refactor and consolidate windowing logic * Trunk * Fixes * More * Fix braces and remove unused now variables. There was a brace in src/mesh/RadioLibInterface.cpp that was breaking compile on some architectures. Additionally, there were some brace errors in src/modules/Telemetry/AirQualityTelemetry.cpp src/modules/Telemetry/EnvironmentTelemetry.cpp src/mesh/wifi/WiFiAPClient.cpp Move throttle include in WifiAPClient.cpp to top. Add Default.h to sleep.cpp rest of files just remove unused now variables. * Remove a couple more meows --------- Co-authored-by: Tom Fifield <tom@tomfifield.net>
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
#include "PacketHistory.h"
|
|
#include "configuration.h"
|
|
#include "mesh-pb-constants.h"
|
|
|
|
#ifdef ARCH_PORTDUINO
|
|
#include "platform/portduino/PortduinoGlue.h"
|
|
#endif
|
|
#include "Throttle.h"
|
|
|
|
PacketHistory::PacketHistory()
|
|
{
|
|
recentPackets.reserve(MAX_NUM_NODES); // Prealloc the worst case # of records - to prevent heap fragmentation
|
|
// setup our periodic task
|
|
}
|
|
|
|
/**
|
|
* Update recentBroadcasts and return true if we have already seen this packet
|
|
*/
|
|
bool PacketHistory::wasSeenRecently(const meshtastic_MeshPacket *p, bool withUpdate)
|
|
{
|
|
if (p->id == 0) {
|
|
LOG_DEBUG("Ignoring message with zero id\n");
|
|
return false; // Not a floodable message ID, so we don't care
|
|
}
|
|
|
|
PacketRecord r;
|
|
r.id = p->id;
|
|
r.sender = getFrom(p);
|
|
r.rxTimeMsec = millis();
|
|
|
|
auto found = recentPackets.find(r);
|
|
bool seenRecently = (found != recentPackets.end()); // found not equal to .end() means packet was seen recently
|
|
|
|
if (seenRecently &&
|
|
!Throttle::isWithinTimespanMs(found->rxTimeMsec, FLOOD_EXPIRE_TIME)) { // Check whether found packet has already expired
|
|
recentPackets.erase(found); // Erase and pretend packet has not been seen recently
|
|
found = recentPackets.end();
|
|
seenRecently = false;
|
|
}
|
|
|
|
if (seenRecently) {
|
|
LOG_DEBUG("Found existing packet record for fr=0x%x,to=0x%x,id=0x%x\n", p->from, p->to, p->id);
|
|
}
|
|
|
|
if (withUpdate) {
|
|
if (found != recentPackets.end()) { // delete existing to updated timestamp (re-insert)
|
|
recentPackets.erase(found); // as unsorted_set::iterator is const (can't update timestamp - so re-insert..)
|
|
}
|
|
recentPackets.insert(r);
|
|
printPacket("Add packet record", p);
|
|
}
|
|
|
|
// Capacity is reerved, so only purge expired packets if recentPackets fills past 90% capacity
|
|
// Expiry is normally dealt with after having searched/found a packet (above)
|
|
if (recentPackets.size() > (MAX_NUM_NODES * 0.9)) {
|
|
clearExpiredRecentPackets();
|
|
}
|
|
|
|
return seenRecently;
|
|
}
|
|
|
|
/**
|
|
* Iterate through all recent packets, and remove all older than FLOOD_EXPIRE_TIME
|
|
*/
|
|
void PacketHistory::clearExpiredRecentPackets()
|
|
{
|
|
LOG_DEBUG("recentPackets size=%ld\n", recentPackets.size());
|
|
|
|
for (auto it = recentPackets.begin(); it != recentPackets.end();) {
|
|
if (!Throttle::isWithinTimespanMs(it->rxTimeMsec, FLOOD_EXPIRE_TIME)) {
|
|
it = recentPackets.erase(it); // erase returns iterator pointing to element immediately following the one erased
|
|
} else {
|
|
++it;
|
|
}
|
|
}
|
|
|
|
LOG_DEBUG("recentPackets size=%ld (after clearing expired packets)\n", recentPackets.size());
|
|
} |