2020-12-05 02:00:46 +00:00
|
|
|
#pragma once
|
|
|
|
#include "ProtobufPlugin.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NodeInfo plugin for sending/receiving NodeInfos into the mesh
|
|
|
|
*/
|
2021-02-14 04:27:10 +00:00
|
|
|
class NodeInfoPlugin : public ProtobufPlugin<User>, private concurrency::OSThread
|
2020-12-05 02:00:46 +00:00
|
|
|
{
|
2021-02-11 09:39:53 +00:00
|
|
|
/// The id of the last packet we sent, to allow us to cancel it if we make something fresher
|
|
|
|
PacketId prevPacketId = 0;
|
2021-02-14 04:27:10 +00:00
|
|
|
|
|
|
|
uint32_t currentGeneration = 0;
|
2020-12-05 02:00:46 +00:00
|
|
|
public:
|
|
|
|
/** Constructor
|
|
|
|
* name is for debugging output
|
|
|
|
*/
|
2021-02-14 04:27:10 +00:00
|
|
|
NodeInfoPlugin();
|
|
|
|
|
2020-12-05 02:00:46 +00:00
|
|
|
/**
|
|
|
|
* Send our NodeInfo into the mesh
|
|
|
|
*/
|
|
|
|
void sendOurNodeInfo(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/** Called to handle a particular incoming message
|
|
|
|
|
|
|
|
@return true if you've guaranteed you've handled this message and no other handlers should be considered for it
|
|
|
|
*/
|
2021-02-17 11:04:41 +00:00
|
|
|
virtual bool handleReceivedProtobuf(const MeshPacket &mp, const User *p);
|
2020-12-05 03:15:06 +00:00
|
|
|
|
|
|
|
/** Messages can be received that have the want_response bit set. If set, this callback will be invoked
|
2020-12-07 02:18:11 +00:00
|
|
|
* so that subclasses can (optionally) send a response back to the original sender. */
|
|
|
|
virtual MeshPacket *allocReply();
|
2021-02-14 04:27:10 +00:00
|
|
|
|
|
|
|
/** Does our periodic broadcast */
|
|
|
|
virtual int32_t runOnce();
|
2020-12-05 02:00:46 +00:00
|
|
|
};
|
|
|
|
|
2021-01-08 05:15:49 +00:00
|
|
|
extern NodeInfoPlugin *nodeInfoPlugin;
|