![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
The 'Logging' namespace provides a framework for Logging events. More...
The 'Logging' namespace provides a framework for Logging events.
The framework provides the following features:
Classes | |
class | EntryData_T |
Defines the content of the Log entry. More... | |
class | LogSink |
This class is responsible for consuming the application's Log buffer and 'dispatching' log entries. More... | |
Functions | |
void | initialize (Cpl::Container::RingBufferMP< EntryData_T > &logEntryFIFO, uint32_t categoryIdForQueueOverflow, const char *categoryQueueOverflowText, uint16_t messageIdForQueueOverflow, const char *messageQueueOverflowText) noexcept |
This method is used to initialize the Logging framework. | |
void | shutdown () noexcept |
This method is used to shutdown/stop the Logging framework. | |
uint32_t | enableCategory (uint32_t categoryMask) noexcept |
This method is used to enable one or more log Categories. | |
uint32_t | disableCategory (uint32_t categoryMask) noexcept |
This method is used to disable one or more log Categories. | |
void | setCategoryMask (uint32_t newMask) noexcept |
This method is used to explicit set the category mask (i.e. | |
uint32_t | getCategoryEnabledMask () noexcept |
This method returns the current enabled/disabled Category mask. | |
template<class CATEGORY_ID , class MESSAGE_ID > | |
void | vlogf (CATEGORY_ID catId, MESSAGE_ID msgId, const char *msgTextFormat, va_list ap) noexcept |
This method is used to create log entry. | |
bool | getIDStrings (uint32_t categoryNumericValue, uint16_t messageIdNumericValue, Cpl::Text::String &dstCategoryString, Cpl::Text::String &dstMessageString) noexcept |
This method is implemented the application - it converts numeric values for the Category and Message IDs into text strings. | |
void | createAndAddLogEntry_ (uint32_t category, const char *catIdText, uint16_t msgId, const char *msgIdText, const char *format, va_list ap) noexcept |
This method is used to create the log entry and insert into the entry queue. | |
CplLoggingTime_T | now () noexcept |
This method returns the application current 'time' value that will be used to time-stamp each individual log entry. | |
|
noexcept |
This method is used to create the log entry and insert into the entry queue.
|
noexcept |
This method is used to disable one or more log Categories.
Returns the previous enabled/disabled mask.
The method is thread safe
|
noexcept |
This method is used to enable one or more log Categories.
Returns the previous enabled/disabled mask.
Note: Upon initialization ALL categories are enabled
The method is thread safe
|
noexcept |
This method returns the current enabled/disabled Category mask.
The method is thread safe
|
noexcept |
This method is implemented the application - it converts numeric values for the Category and Message IDs into text strings.
The method returns true when successful, else false is returned if one or more the input values are not 'valid'
Note: The output is only "as good" as the input, i.e. if the message IDs are not 'from' the category enum - the result will be indeterminate
|
noexcept |
This method is used to initialize the Logging framework.
This method MUST be called BEFORE any 'logf' calls are made (i.e. call this method as early as possible in the application's startup-sequence).
|
noexcept |
This method returns the application current 'time' value that will be used to time-stamp each individual log entry.
The units of the value are application specific.
|
noexcept |
This method is used to explicit set the category mask (i.e.
the enable/ disable methods are OR/AND operations, this is assignment operation)
The method is thread safe
|
noexcept |
This method is used to shutdown/stop the Logging framework.
This method should be called as part of orderly shutdown of the application.
|
noexcept |
This method is used to create log entry.
The method has printf() semantics. The method is thread safe.
This method is NOT intended to be called directly by the Application. The recommended paradigm is for the each Application to define it own set of Logging Categories and Message IDs. This include providing type-safe
NOTES: