2020-12-05 02:00:46 +00:00
|
|
|
#pragma once
|
2020-12-05 02:14:15 +00:00
|
|
|
#include "SinglePortPlugin.h"
|
2020-12-03 08:48:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A base class for mesh plugins that assume that they are sending/receiving one particular protobuf based
|
|
|
|
* payload. Using one particular app ID.
|
|
|
|
*
|
|
|
|
* If you are using protobufs to encode your packets (recommended) you can use this as a baseclass for your plugin
|
|
|
|
* and avoid a bunch of boilerplate code.
|
|
|
|
*/
|
2020-12-05 02:14:15 +00:00
|
|
|
template <class T> class ProtobufPlugin : private SinglePortPlugin
|
2020-12-03 08:48:44 +00:00
|
|
|
{
|
|
|
|
const pb_msgdesc_t *fields;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Constructor
|
|
|
|
* name is for debugging output
|
|
|
|
*/
|
|
|
|
ProtobufPlugin(const char *_name, PortNum _ourPortNum, const pb_msgdesc_t *_fields)
|
2020-12-05 02:14:15 +00:00
|
|
|
: SinglePortPlugin(_name, _ourPortNum), fields(_fields)
|
2020-12-03 08:48:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a received message, the data field in the message is already decoded and is provided
|
|
|
|
*/
|
|
|
|
virtual bool handleReceivedProtobuf(const MeshPacket &mp, const T &decoded) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a mesh packet which has been preinited with a particular protobuf data payload and port number.
|
|
|
|
* You can then send this packet (after customizing any of the payload fields you might need) with
|
|
|
|
* service.sendToMesh()
|
|
|
|
*/
|
2020-12-07 02:18:11 +00:00
|
|
|
MeshPacket *allocDataProtobuf(const T &payload)
|
2020-12-03 08:48:44 +00:00
|
|
|
{
|
|
|
|
// Update our local node info with our position (even if we don't decide to update anyone else)
|
2020-12-07 02:18:11 +00:00
|
|
|
MeshPacket *p = allocDataPacket();
|
2020-12-03 08:48:44 +00:00
|
|
|
|
|
|
|
p->decoded.data.payload.size =
|
|
|
|
pb_encode_to_bytes(p->decoded.data.payload.bytes, sizeof(p->decoded.data.payload.bytes), fields, &payload);
|
2020-12-05 02:00:46 +00:00
|
|
|
// DEBUG_MSG("did encode\n");
|
2020-12-03 08:48:44 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/** 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
|
|
|
|
*/
|
|
|
|
virtual bool handleReceived(const MeshPacket &mp)
|
|
|
|
{
|
|
|
|
// FIXME - we currently update position data in the DB only if the message was a broadcast or destined to us
|
|
|
|
// it would be better to update even if the message was destined to others.
|
|
|
|
|
|
|
|
auto &p = mp.decoded.data;
|
2020-12-13 07:59:26 +00:00
|
|
|
DEBUG_MSG("Received %s from=0x%0x, id=0x%x, payloadlen=%d\n", name, mp.from, mp.id, p.payload.size);
|
2020-12-03 08:48:44 +00:00
|
|
|
|
|
|
|
T scratch;
|
|
|
|
if (pb_decode_from_bytes(p.payload.bytes, p.payload.size, fields, &scratch))
|
2020-12-13 07:59:26 +00:00
|
|
|
return handleReceivedProtobuf(mp, scratch);
|
2020-12-03 08:48:44 +00:00
|
|
|
|
|
|
|
return false; // Let others look at this message also if they want
|
|
|
|
}
|
|
|
|
};
|