-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathMessageBufferCPP.h
executable file
·160 lines (137 loc) · 5.57 KB
/
MessageBufferCPP.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
* @file MessageBufferCPP.h
* @brief FreeRTOS MessageBuffer wrapper
*
* Wrapper for FreeRTOS MessageBuffers
*
* @copyright (c) 2024 Richard Damon
* @author Richard Damon <[email protected]>
* @parblock
* MIT License:
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* It is requested (but not required by license) that any bugs found or
* improvements made be shared, preferably to the author.
* @endparblock
*
* @ingroup FreeRTOSCpp
*/
#ifndef MESSAGEBUFFER_CPP_H
#define MESSAGEBUFFER_CPP_H
#include "FreeRTOScpp.h"
#include "message_buffer.h"
#if FREERTOSCPP_USE_NAMESPACE
namespace FreeRTOScpp {
#endif
/**
* Base Wrapper Class for MessageBuffer
*
* Base Class does all the operations, there is then a derived class to build the buffer,
* or the base class can be a wrapper around an elsewhere created handle.
*/
class MessageBufferBase {
public:
MessageBufferBase(MessageBufferHandle_t mbHandle) : msgHandle(mbHandle) {}
virtual ~MessageBufferBase() { }
size_t send(const void* data, size_t len, TickType_t delay = portMAX_DELAY)
{return xMessageBufferSend(msgHandle, data, len, delay);}
#if FREERTOSCPP_USE_CHRONO
size_t send(const void* data, size_t len, Time_ms delay)
{return xMessageBufferSend(msgHandle, data, len, ms2ticks(delay));}
#endif
size_t send_ISR(const void* data, size_t len, BaseType_t &wasWoken)
{return xMessageBufferSendFromISR(msgHandle, data, len, &wasWoken);}
size_t read(void* data, size_t len, TickType_t delay = portMAX_DELAY)
{return xMessageBufferReceive(msgHandle, data, len, delay);}
#if FREERTOSCPP_USE_CHRONO
size_t read(void* data, size_t len, Time_ms delay)
{return xMessageBufferReceive(msgHandle, data, len, ms2ticks(delay));}
#endif
size_t read_ISR(void* data, size_t len, BaseType_t &wasWoken)
{return xMessageBufferReceiveFromISR(msgHandle, data, len, &wasWoken);}
// Message Buffers do not provide "Bytes Available"
/// @brief Get the amount of available space open in the MessageBuffer
/// @return The number of bytes that can be sent before the buffer is full
size_t available() const { return xMessageBufferSpacesAvailable(msgHandle);}
bool isEmpty() const { return xMessageBufferIsEmpty(msgHandle);}
bool isFull() const { return xMessageBufferIsFull(msgHandle);}
/// @brief Resets the buffer to empty
/// @return True if done, stream can not be reset if a task is waiting on the MessageBuffer.
bool reset() { return xMessageBufferReset(msgHandle);}
MessageBufferHandle_t msgHandle;
};
/**
* Template to implement a Message Buffer of a given size.
*
* MessageBuffer will be created statically if possible.
*
* @tparam size The number of bytes to store in the buffer, 0 = dynamically created
*/
template <size_t size
#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
= 0
#endif
>
class MessageBuffer : public MessageBufferBase {
public:
MessageBuffer() :
MessageBufferBase(
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
xMessageBufferCreateStatic(size, storage, msgBuff)
#else
xMessageBufferCreate(size)
#endif
) {}
virtual ~MessageBuffer() { vMessageBufferDelete(msgHandle);}
#if configUSE_SB_COMPLETED_CALLBACK
MessageBuffer(StreamBufferCallbackFunction_t sendCallback, StreamBufferCallbackFunction_t recvCallback) :
MessageBufferBase(
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
xMessageBufferCreateStaticWithCallback(size, storage, msgBuff, sendCallback, recvCallback)
#else
xMessageBufferCreateWithCallback(size, sendCallback. recvCallBack)
#endif
)
{}
#endif //configUSE_SB_COMPLETED_CALLBACK
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
uint8_t storage[size+1];
StaticMessageBuffer_t msgBuff;
#endif
};
#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
template <>
class MessageBuffer<0> : public MessageBufferBase {
public:
MessageBuffer(size_t size) :
MessageBufferBase(xMessageBufferCreate(size))
{}
virtual ~MessageBuffer() { vMessageBufferDelete(msgHandle);}
#if configUSE_SB_COMPLETED_CALLBACK
MessageBuffer(size_t size, StreamBufferCallbackFunction_t sendCallback, StreamBufferCallbackFunction_t recvCallback) :
MessageBufferBase(xMessageBufferCreateWithCallback(size, sendCallback, recvCallback))
{}
#endif // configUSE_SB_COMPLETED_CALLBACK
};
#endif
#if FREERTOSCPP_USE_NAMESPACE
}
#endif
#endif