![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class provides the implementation of TPipe. More...
This concrete class provides the implementation of TPipe.
The implementation is thread safe with respect to transmitting frames. In addition, all transmitted frames are atomic with respect to each other.
Reception of frames is done a single thread, i.e. the callback to individual Receive Frame Handler occur in the TPipe's thread. It is APPLICATION's responsibility to provide thread safety for its Receive Frame Handlers.
The TPipe dynamically allocates memory for its incoming frame buffer on start-up. The memory is freed when the TPipe is shutdown.
The TPipe also assumes that the runnable object for its thread is a Cpl::System::PeridiocScheduler. The Periodic Scheduler semantics impose the following constraints on the Application (who is responsible for creating the Periodic Scheduler)
- The application MUST call the TPipe's start() method in the 'beginThreadProcessing' function for the thread/PeriodicScheduler. - The application MUST call the TPipe's stop() method in the 'endThreadProcessing' function for the thread/PeriodicScheduler - The application MUST call the TPipe's poll() method in the 'idleProcessing' function for the thread/PeriodicScheduler - The concrete Frame decoder class MUST use non-blocking semantics AND the input stream MUST support the Cpl::Io::Input.available() method. See Cpl::Text::Frame::StreamDecoder for more details.
#include <Pipe.h>
Public Member Functions | |
Pipe (Cpl::Container::Map< RxFrameHandlerApi > &rxFrameHdlrs, Cpl::Text::Frame::StreamDecoder &deframer, Cpl::Text::Frame::StreamEncoder &framer, size_t rxFrameSize, const char *verbDelimiters=" ") | |
Constructor. | |
~Pipe () | |
Destructor. | |
void | start (Cpl::Io::Input &inStream, Cpl::Io::Output &outStream) noexcept |
This method performs the in-thread initialization of the TPipe. | |
void | stop () noexcept |
This method performs the in-thread shutdown of the TPipe. | |
bool | poll () noexcept |
This method provides the TPipe CPU/Execution time. | |
bool | sendCommand (const char *completeCommandText, size_t numBytes) noexcept |
See Driver::TPipe::Tx. | |
bool | sendRawCommand (const char *completeCommandText, size_t numBytes) noexcept |
See Driver::TPipe::Tx. | |
size_t | getUnknownFrameCount () noexcept |
This method returns the number of received frames that there was no registered frame handler to process the incoming frame. | |
![]() | |
bool | sendCommand (Cpl::Text::String &command) noexcept |
Convenience method to send a command that is contain in Text string object. | |
bool | sendCommand (const char *commandString) noexcept |
Convenience method to send a command that is a contained in a null terminated string. | |
virtual | ~Tx () |
Virtual destructor. | |
Protected Attributes | |
Cpl::Container::Map< RxFrameHandlerApi > & | m_rxHandlers |
List of Frame handlers. | |
Cpl::Text::Frame::StreamDecoder & | m_deframer |
Frame Decoder. | |
Cpl::Text::Frame::StreamEncoder & | m_framer |
Frame Encoder. | |
char * | m_frameBuffer |
Frame buffer. | |
Cpl::Io::Output * | m_outfdPtr |
Cache the handle to the output stream (for raw-commands) | |
Cpl::System::Mutex | m_lock |
Lock for thread safety and atomic transmits. | |
size_t | m_frameBufSize |
Frame buffer size (not including the null terminator) | |
const char * | m_verbDelimiters |
Delimiter(s) to find the end of the command verb. | |
size_t | m_unknownFrames |
Track the number of unknown frames (i.e. frame received with no register frame handler) | |
Driver::TPipe::Pipe::Pipe | ( | Cpl::Container::Map< RxFrameHandlerApi > & | rxFrameHdlrs, |
Cpl::Text::Frame::StreamDecoder & | deframer, | ||
Cpl::Text::Frame::StreamEncoder & | framer, | ||
size_t | rxFrameSize, | ||
const char * | verbDelimiters = " " |
||
) |
Constructor.
rxFrameHdlrs | The set of received frame handlers. Note: frame handler's self register |
deframer | Frame decoder used to identify individual command strings within the raw Input stream. NOTE: The decoder instance MUST use non-blocking semantics |
framer | Frame encoder used to encapsulate the output of command in the Output stream. |
rxFrameSize | The size, in bytes, of the buffer used to hold an incoming Frame. The behavior of what happens if the incoming data exceeds the frame size is defined by the 'deframer' (typically this is to discard the in-progress frame and being looking for a new SOF). |
verbDelimiters | The delimiter characters used to separate the command verb from the rest of commands tokens/data. This string must stay in scope for the life of the Pipe instance. |
Driver::TPipe::Pipe::~Pipe | ( | ) |
Destructor.
|
noexcept |
This method returns the number of received frames that there was no registered frame handler to process the incoming frame.
This method is thread safe.
|
noexcept |
|
virtualnoexcept |
See Driver::TPipe::Tx.
Implements Driver::TPipe::Tx.
|
virtualnoexcept |
See Driver::TPipe::Tx.
Implements Driver::TPipe::Tx.
|
noexcept |
|
noexcept |
|
protected |
Frame Decoder.
|
protected |
Frame buffer.
|
protected |
Frame buffer size (not including the null terminator)
|
protected |
Frame Encoder.
|
protected |
Lock for thread safety and atomic transmits.
|
protected |
Cache the handle to the output stream (for raw-commands)
|
protected |
List of Frame handlers.
|
protected |
Track the number of unknown frames (i.e. frame received with no register frame handler)
|
protected |
Delimiter(s) to find the end of the command verb.