GM6000 Digital Heater Controller Branch: main
SDX-1330
LogSink.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_LogSink_h_
2#define Cpl_Logging_LogSink_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
18#include "Cpl/Itc/CloseSync.h"
21
22
23/** Maximum number of entries that can be written as the result of single
24 change notification
25 */
26#ifndef OPTION_CPL_LOGGING_LOGSINK_MAX_BATCH_WRITE
27#define OPTION_CPL_LOGGING_LOGSINK_MAX_BATCH_WRITE 4
28#endif
29
30 ///
31namespace Cpl {
32///
33namespace Logging {
34
35/** This class is responsible for consuming the application's Log buffer and
36 'dispatching' log entries. By default, the class simply drains the
37 log buffer and discards the entries. A child class is required to provide
38 a meaningful implementation of the dispatchLogEntry() method.
39
40 FYI: The Cpl::Persistent framework provides an alternate 'log sink' that
41 writes log entries to Non-volatile storage along with an a API to
42 retrieve the log entries.
43 */
45{
46public:
47 /// Constructor
49 Cpl::Container::RingBufferMP<Cpl::Logging::EntryData_T>& incomingEntriesBuffer ) noexcept;
50
51public:
52 /// This method starts the sink (See Cpl::Itc::OpenSync)
53 void request( OpenMsg& msg );
54
55 /// This method stops the sink (See Cpl::Itc::CloseSync)
56 void request( CloseMsg& msg );
57
58protected:
59 /// Element Count Change notification
61
62protected:
63 /// Platform specific method to save the entry
65 {
66 // Default is to do nothing
67 }
68
69protected:
70 /// Observer for change notification (to the RingBuffer)
72
73 /// The Log Ring Buffer
75
76 /// Track my open state
78};
79
80
81} // end namespaces
82}
83#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
Defines the content of the Log entry.
Definition EntryData_T.h:56
This class is responsible for consuming the application's Log buffer and 'dispatching' log entries.
Definition LogSink.h:45
void request(OpenMsg &msg)
This method starts the sink (See Cpl::Itc::OpenSync)
virtual void dispatchLogEntry(Cpl::Logging::EntryData_T &src)
Platform specific method to save the entry.
Definition LogSink.h:64
void request(CloseMsg &msg)
This method stops the sink (See Cpl::Itc::CloseSync)
void elementCountChanged(Cpl::Dm::Mp::Uint32 &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Element Count Change notification.
LogSink(Cpl::Dm::MailboxServer &myMbox, Cpl::Container::RingBufferMP< Cpl::Logging::EntryData_T > &incomingEntriesBuffer) noexcept
Constructor.
Cpl::Container::RingBufferMP< Cpl::Logging::EntryData_T > & m_logBuffer
The Log Ring Buffer.
Definition LogSink.h:74
Cpl::Dm::SubscriberComposer< LogSink, Cpl::Dm::Mp::Uint32 > m_observerElementCount
Observer for change notification (to the RingBuffer)
Definition LogSink.h:71
bool m_opened
Track my open state.
Definition LogSink.h:77
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30