firmware/src/modules/esp32/StoreForwardModule.h

106 lines
3.0 KiB
C
Raw Normal View History

#pragma once
#include "ProtobufModule.h"
#include "concurrency/OSThread.h"
2023-01-18 14:56:47 +00:00
#include "mesh/generated/meshtastic/storeforward.pb.h"
2021-11-29 03:34:35 +00:00
#include "configuration.h"
#include <Arduino.h>
#include <functional>
2021-02-22 04:15:31 +00:00
struct PacketHistoryStruct {
uint32_t time;
uint32_t to;
2021-11-21 05:21:11 +00:00
uint32_t from;
uint8_t channel;
2021-02-25 04:27:21 +00:00
bool ack;
uint8_t payload[meshtastic_Constants_DATA_PAYLOAD_LEN];
2021-11-21 05:21:11 +00:00
pb_size_t payload_size;
2021-02-22 04:15:31 +00:00
};
class StoreForwardModule : private concurrency::OSThread, public ProtobufModule<meshtastic_StoreAndForward>
{
bool busy = 0;
uint32_t busyTo = 0;
char routerMessage[meshtastic_Constants_DATA_PAYLOAD_LEN] = {0};
PacketHistoryStruct *packetHistory = 0;
2021-02-25 04:27:21 +00:00
uint32_t packetHistoryCurrent = 0;
2022-12-28 14:31:04 +00:00
uint32_t packetHistoryMax = 0;
2021-02-23 04:07:19 +00:00
PacketHistoryStruct *packetHistoryTXQueue = 0;
uint32_t packetHistoryTXQueue_size = 0;
uint32_t packetHistoryTXQueue_index = 0;
2021-11-21 22:43:47 +00:00
uint32_t packetTimeMax = 5000;
bool is_client = false;
bool is_server = false;
2021-11-21 22:43:47 +00:00
public:
2022-02-27 10:21:02 +00:00
StoreForwardModule();
2022-12-28 14:31:04 +00:00
unsigned long lastHeartbeat = 0;
uint32_t heartbeatInterval = 300;
2021-02-17 01:42:46 +00:00
/**
Update our local reference of when we last saw that node.
@return 0 if we have never seen that node before otherwise return the last time we saw the node.
*/
void historyAdd(const meshtastic_MeshPacket &mp);
2022-12-28 14:31:04 +00:00
void statsSend(uint32_t to);
2021-02-25 04:27:21 +00:00
void historySend(uint32_t msAgo, uint32_t to);
2021-02-17 01:42:46 +00:00
uint32_t historyQueueCreate(uint32_t msAgo, uint32_t to);
2021-03-18 04:03:11 +00:00
/**
* Send our payload into the mesh
*/
2021-11-21 05:21:11 +00:00
void sendPayload(NodeNum dest = NODENUM_BROADCAST, uint32_t packetHistory_index = 0);
void sendMessage(NodeNum dest, meshtastic_StoreAndForward &payload);
void sendMessage(NodeNum dest, meshtastic_StoreAndForward_RequestResponse rr);
2022-12-28 14:31:04 +00:00
virtual meshtastic_MeshPacket *allocReply() override;
2021-11-29 03:34:35 +00:00
/*
2022-12-28 14:31:04 +00:00
-Override the wantPacket method.
*/
virtual bool wantPacket(const meshtastic_MeshPacket *p) override
2022-12-28 14:31:04 +00:00
{
switch (p->decoded.portnum) {
case meshtastic_PortNum_TEXT_MESSAGE_APP:
case meshtastic_PortNum_STORE_FORWARD_APP:
return true;
default:
return false;
2022-12-28 14:31:04 +00:00
}
}
2021-03-18 04:03:11 +00:00
2021-02-17 01:42:46 +00:00
private:
2021-11-21 22:43:47 +00:00
void populatePSRAM();
2021-02-17 01:42:46 +00:00
// S&F Defaults
uint32_t historyReturnMax = 250; // 250 records
uint32_t historyReturnWindow = 240; // 4 hours
uint32_t records = 0; // Calculated
bool heartbeat = false; // No heartbeat.
2022-12-28 14:31:04 +00:00
// stats
uint32_t requests = 0;
uint32_t requests_history = 0;
uint32_t retry_delay = 0;
protected:
2022-01-24 17:24:40 +00:00
virtual int32_t runOnce() override;
2021-03-18 04:03:11 +00:00
/** Called to handle a particular incoming message
2021-11-18 17:36:39 +00:00
@return ProcessMessage::STOP if you've guaranteed you've handled this message and no other handlers should be considered for
it
2021-03-18 04:03:11 +00:00
*/
virtual ProcessMessage handleReceived(const meshtastic_MeshPacket &mp) override;
virtual bool handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshtastic_StoreAndForward *p);
};
2022-02-27 10:21:02 +00:00
extern StoreForwardModule *storeForwardModule;