![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class is responsible for consuming the application's Log buffer and 'dispatching' log entries. More...
This class is responsible for consuming the application's Log buffer and 'dispatching' log entries.
By default, the class simply drains the log buffer and discards the entries. A child class is required to provide a meaningful implementation of the dispatchLogEntry() method.
FYI: The Cpl::Persistent framework provides an alternate 'log sink' that writes log entries to Non-volatile storage along with an a API to retrieve the log entries.
#include <LogSink.h>
Public Member Functions | |
LogSink (Cpl::Dm::MailboxServer &myMbox, Cpl::Container::RingBufferMP< Cpl::Logging::EntryData_T > &incomingEntriesBuffer) noexcept | |
Constructor. | |
void | request (OpenMsg &msg) |
This method starts the sink (See Cpl::Itc::OpenSync) | |
void | request (CloseMsg &msg) |
This method stops the sink (See Cpl::Itc::CloseSync) | |
![]() | |
CloseSync (PostApi &myMbox) noexcept | |
Constructor. | |
bool | close (void *args=nullptr) |
See CloseSync. | |
![]() | |
OpenSync (PostApi &myMbox) noexcept | |
Constructor. | |
bool | open (void *args=nullptr) |
See OpenApi. | |
![]() | |
virtual | ~OpenApi () |
Virtual destructor. | |
![]() | |
virtual | ~CloseApi () |
Virtual destructor. | |
Protected Member Functions | |
void | elementCountChanged (Cpl::Dm::Mp::Uint32 &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept |
Element Count Change notification. | |
virtual void | dispatchLogEntry (Cpl::Logging::EntryData_T &src) |
Platform specific method to save the entry. | |
Protected Attributes | |
Cpl::Dm::SubscriberComposer< LogSink, Cpl::Dm::Mp::Uint32 > | m_observerElementCount |
Observer for change notification (to the RingBuffer) | |
Cpl::Container::RingBufferMP< Cpl::Logging::EntryData_T > & | m_logBuffer |
The Log Ring Buffer. | |
bool | m_opened |
Track my open state. | |
![]() | |
PostApi & | m_mbox |
Mailbox (of the server implementing the ITC request() method. | |
Additional Inherited Members | |
![]() | |
typedef Cpl::Itc::SAP< OpenRequest > | SAP |
SAP for this API. | |
typedef RequestMessage< OpenRequest, OpenPayload > | OpenMsg |
Message Type: Open. | |
![]() | |
typedef Cpl::Itc::SAP< CloseRequest > | SAP |
SAP for this API. | |
typedef RequestMessage< CloseRequest, ClosePayload > | CloseMsg |
Message Type: Close. | |
|
noexcept |
Constructor.
|
inlineprotectedvirtual |
Platform specific method to save the entry.
|
protectednoexcept |
Element Count Change notification.
|
virtual |
This method stops the sink (See Cpl::Itc::CloseSync)
Implements Cpl::Itc::CloseRequest.
|
virtual |
This method starts the sink (See Cpl::Itc::OpenSync)
Implements Cpl::Itc::OpenRequest.
|
protected |
The Log Ring Buffer.
|
protected |
Observer for change notification (to the RingBuffer)
|
protected |
Track my open state.