36#ifndef IMT_BASE_DFF_RUNTIME_RTOS_MAILBOX_H
37#define IMT_BASE_DFF_RUNTIME_RTOS_MAILBOX_H
52template<
typename MessageType,
size_t const MailboxSize>
102 inline void putMail(MessageType
const message);
122 void serialize(MessageType
const message,
uint8_t*
const pData);
123 MessageType deserialize(
uint8_t const*
const pData);
125 uint8_t m_buffer[MailboxSize *
sizeof(MessageType)];
132template<
typename MessageType,
size_t const MailboxSize>
138template<
typename MessageType,
size_t const MailboxSize>
140 m_impl.initialize(m_buffer,
sizeof(MessageType), MailboxSize);
143template<
typename MessageType,
size_t const MailboxSize>
145 m_impl.deinitialize();
148template<
typename MessageType,
size_t const MailboxSize>
153template<
typename MessageType,
size_t const MailboxSize>
155 uint8_t data[
sizeof(MessageType)];
156 m_impl.getMail(data,
sizeof(MessageType));
157 return deserialize(data);
160template<
typename MessageType,
size_t const MailboxSize>
162 if (pMessage ==
nullptr) {
167 uint8_t data[
sizeof(MessageType)];
168 if (!m_impl.getMailConditional(data,
sizeof(MessageType))) {
172 *pMessage = deserialize(data);
176template<
typename MessageType,
size_t const MailboxSize>
178 uint8_t data[
sizeof(MessageType)];
179 serialize(message, data);
180 m_impl.putMail(data,
sizeof(MessageType));
183template<
typename MessageType,
size_t const MailboxSize>
185 uint8_t data[
sizeof(MessageType)];
186 serialize(message, data);
187 return m_impl.putMailConditional(data,
sizeof(MessageType));
190template<
typename MessageType,
size_t const MailboxSize>
192 if (pData ==
nullptr) {
198 for (
size_t i {0}; i <
sizeof(MessageType); ++i) {
199 pData[i] =
static_cast<uint8_t>(message >> offset);
204template<
typename MessageType,
size_t const MailboxSize>
205MessageType Mailbox<MessageType, MailboxSize>::deserialize(
uint8_t const*
const pData) {
206 if (pData ==
nullptr) {
211 MessageType message {0};
213 for (
size_t i {0}; i <
sizeof(MessageType); ++i) {
214 message |= (pData[i] << offset);
void ASSERT_DEBUG(bool const condition) noexcept
A Mailbox represents an abstract way for runtime to send/receive events with fixed size messages from...
void deinitialize()
Deletes the mailbox.
void putMail(MessageType const message)
Adds a message to the mailbox.
bool getMailConditional(MessageType *const pMail)
Gets the next message from the mailbox.
MessageType getMail()
Gets the next message from the mailbox.
void initialize()
Init the mailbox.
bool putMailConditional(MessageType const message)
Adds a message to the mailbox.
void waitMail()
This method returns imediately when the mailbox contains at least one message.
Mailbox(imt::base::dff::runtime::rtos::MailboxImplIfc &impl)
Constructor.
void clear()
Removes all messages from the mailbox.
This interface represents the actual implementation of the mailbox with a fixed size byte array as me...
This is a application specific file which is used to configure Imt.Base.Core.Math.