2016-06-15 23:48:41 +02:00
|
|
|
#ifndef MESSAGEQUEUEMESSAGE_H_
|
|
|
|
#define MESSAGEQUEUEMESSAGE_H_
|
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
#include <framework/ipc/MessageQueueSenderIF.h>
|
|
|
|
#include <stddef.h>
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This class is the representation and data organizer
|
|
|
|
* for interprocess messages.
|
2016-06-15 23:48:41 +02:00
|
|
|
*
|
2020-05-16 20:58:48 +02:00
|
|
|
* @details
|
|
|
|
* To facilitate and standardize interprocess communication, this class was
|
|
|
|
* created to handle a lightweight "interprocess message protocol".
|
|
|
|
*
|
|
|
|
* It adds a header with the sender's queue id to every sent message and
|
|
|
|
* defines the maximum total message size. Specialized messages, such as
|
|
|
|
* device commanding messages, can be created by inheriting from this class
|
|
|
|
* and filling the buffer provided by getData with additional content.
|
|
|
|
*
|
|
|
|
* If larger amounts of data must be sent between processes, the data shall
|
|
|
|
* be stored in the IPC Store object and only the storage id is passed in a
|
|
|
|
* queue message.The class is used both to generate and send messages and to
|
|
|
|
* receive messages from other tasks.
|
|
|
|
* @ingroup message_queue
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
class MessageQueueMessage {
|
|
|
|
public:
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief The class is initialized empty with this constructor.
|
|
|
|
* @details The messageSize attribute is set to the header's size and the
|
|
|
|
* whole content is set to zero.
|
|
|
|
*/
|
|
|
|
MessageQueueMessage();
|
|
|
|
/**
|
|
|
|
* @brief With this constructor the class is initialized with the given content.
|
|
|
|
* @details
|
|
|
|
* If the passed message size fits into the buffer, the passed data is
|
|
|
|
* copied to the internal buffer and the messageSize information is set.
|
|
|
|
* Otherwise, messageSize is set to the header's size and the whole
|
|
|
|
* content is set to zero.
|
|
|
|
* @param data The data to be put in the message.
|
|
|
|
* @param size Size of the data to be copied. Must be smaller than
|
|
|
|
* MAX_MESSAGE_SIZE and larger than MIN_MESSAGE_SIZE.
|
|
|
|
*/
|
|
|
|
MessageQueueMessage(uint8_t* data, size_t size);
|
|
|
|
/**
|
|
|
|
* @brief The size information of each message is stored in this attribute.
|
|
|
|
* @details
|
|
|
|
* It is public to simplify usage and to allow for passing the size
|
|
|
|
* address as a pointer. Care must be taken when inheriting from this class,
|
|
|
|
* as every child class is responsible for managing the size information by
|
|
|
|
* itself. When using the class to receive a message, the size information
|
|
|
|
* is updated automatically.
|
|
|
|
*
|
|
|
|
* Please note that the minimum size is limited by the size of the header
|
|
|
|
* while the maximum size is limited by the maximum allowed message size.
|
|
|
|
*/
|
|
|
|
size_t messageSize;
|
|
|
|
/**
|
|
|
|
* @brief This constant defines the maximum size of the data content, excluding the header.
|
|
|
|
* @details It may be changed if necessary, but in general should be kept as small as possible.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
static const size_t MAX_DATA_SIZE = 24;
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This constants defines the size of the header, which is added to every message.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
static const size_t HEADER_SIZE = sizeof(MessageQueueId_t);
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This constant defines the maximum total size in bytes of a sent message.
|
|
|
|
* @details It is the sum of the maximum data and the header size. Be aware that this constant
|
2016-06-15 23:48:41 +02:00
|
|
|
* is used to define the buffer sizes for every message queue in the system. So, a change
|
|
|
|
* here may have significant impact on the required resources.
|
|
|
|
*/
|
|
|
|
static const size_t MAX_MESSAGE_SIZE = MAX_DATA_SIZE + HEADER_SIZE;
|
2020-05-16 20:58:48 +02:00
|
|
|
/**
|
|
|
|
* @brief Defines the minimum size of a message where only the
|
|
|
|
* header is included
|
|
|
|
*/
|
|
|
|
static const size_t MIN_MESSAGE_SIZE = HEADER_SIZE;
|
2016-06-15 23:48:41 +02:00
|
|
|
private:
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This is the internal buffer that contains the actual message data.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
uint8_t internalBuffer[MAX_MESSAGE_SIZE];
|
|
|
|
public:
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief As no memory is allocated in this class, the destructor is empty.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
virtual ~MessageQueueMessage();
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to get the complete data of the message.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
const uint8_t* getBuffer() const;
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to get the complete data of the message.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
uint8_t* getBuffer();
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to fetch the data content of the message.
|
|
|
|
* @details It shall be used by child classes to add data at the right position.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
const uint8_t* getData() const;
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to fetch the data content of the message.
|
|
|
|
* @details It shall be used by child classes to add data at the right position.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
uint8_t* getData();
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to extract the sender's message queue id information from a
|
2016-06-15 23:48:41 +02:00
|
|
|
* received message.
|
|
|
|
*/
|
|
|
|
MessageQueueId_t getSender() const;
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief With this method, the whole content and the message size is set to zero.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
void clear();
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This is a debug method that prints the content (till messageSize) to the debug output.
|
2016-06-15 23:48:41 +02:00
|
|
|
*/
|
|
|
|
void print();
|
2018-07-12 16:29:32 +02:00
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This method is used to set the sender's message queue id information prior to
|
2018-07-12 16:29:32 +02:00
|
|
|
* sending the message.
|
2020-05-16 20:58:48 +02:00
|
|
|
* @param setId The message queue id that identifies the sending message queue.
|
2018-07-12 16:29:32 +02:00
|
|
|
*/
|
|
|
|
void setSender(MessageQueueId_t setId);
|
|
|
|
/**
|
2020-05-16 20:58:48 +02:00
|
|
|
* @brief This helper function is used by the MessageQueue class to check the size of an
|
2018-07-12 16:29:32 +02:00
|
|
|
* incoming message.
|
2020-05-16 20:58:48 +02:00
|
|
|
* @details The method must be overwritten by child classes if size checks shall be more strict.
|
2018-07-12 16:29:32 +02:00
|
|
|
* @return The default implementation returns HEADER_SIZE.
|
|
|
|
*/
|
|
|
|
virtual size_t getMinimumMessageSize();
|
2016-06-15 23:48:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MESSAGEQUEUEMESSAGE_H_ */
|