GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_Api_h_
2#define Cpl_Logging_Api_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-2022 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"
17#include "Cpl/Logging/TimeApi.h"
19#include "Cpl/Dm/Mp/Uint32.h"
21#include <stdint.h>
22
23
24/** Number of 'empty slots' required after encountering a full entry queue
25 before resuming adding entries to the queue. This value can NOT be less
26 than 2.
27 */
28#ifndef OPTION_CPL_LOGGING_MIN_QUEUE_SPACE
29#define OPTION_CPL_LOGGING_MIN_QUEUE_SPACE 3
30#endif
31
32
33///
34namespace Cpl {
35///
36namespace Logging {
37
38
39/*---------------------------------------------------------------------------*/
40/** This method is used to initialize the Logging framework. This method
41 MUST be called BEFORE any 'logf' calls are made (i.e. call this method
42 as early as possible in the application's startup-sequence).
43 */
45 uint32_t categoryIdForQueueOverflow,
46 const char* categoryQueueOverflowText,
47 uint16_t messageIdForQueueOverflow,
48 const char* messageQueueOverflowText ) noexcept;
49
50/** This method is used to shutdown/stop the Logging framework. This method
51 should be called as part of orderly shutdown of the application.
52 */
53void shutdown() noexcept;
54
55/*---------------------------------------------------------------------------*/
56/** This method is used to enable one or more log Categories. Returns the
57 previous enabled/disabled mask.
58
59 Note: Upon initialization ALL categories are enabled
60
61 The method is thread safe
62 */
63uint32_t enableCategory( uint32_t categoryMask ) noexcept;
64
65/** This method is used to disable one or more log Categories. Returns the
66 previous enabled/disabled mask.
67
68 The method is thread safe
69 */
70uint32_t disableCategory( uint32_t categoryMask ) noexcept;
71
72/** This method is used to explicit set the category mask (i.e. the enable/
73 disable methods are OR/AND operations, this is assignment operation)
74
75 The method is thread safe
76 */
77void setCategoryMask( uint32_t newMask ) noexcept;
78
79/** This method returns the current enabled/disabled Category mask
80
81 The method is thread safe
82 */
83uint32_t getCategoryEnabledMask() noexcept;
84
85
86/*---------------------------------------------------------------------------*/
87/** This method is used to create log entry. The method has printf() semantics.
88 The method is thread safe.
89
90 This method is NOT intended to be called directly by the Application. The
91 recommended paradigm is for the each Application to define it own set
92 of Logging Categories and Message IDs. This include providing type-safe
93
94 NOTES:
95 - The CategoryId Enum must have an underlying integer type of: uint32_t
96 - A maximum of 32 symbols can be defined for the CategoryID
97 - Recommended that each CategoryID symbol must be less than 16 characters
98 - The MessageId Enums must have an underlying integer type of: uint16_t
99 - There is no limited (other than the BETTER_NUM limits) to number of
100 message IDS.
101 - Recommended that each MessageID symbol must be less than 32 characters
102
103
104 \code
105
106 Given:
107 BETTER_ENUM( CategoryId, uint32_t
108 , CRITICAL = 0x00000001
109 , WARNING = 0x00000002
110 , EVENT = 0x00000004
111 , ALARM = 0x00000008
112 , SECURITY = 0x00000010
113 , INFO = 0x00000020
114 , METRICS = 0x00000040
115 , LOGGER = 0x00000080 );
116
117 BETTER_ENUM( CriticalMsg, uint16_t, OUT_OF_MEMORY, BOB_HAPPENED, .... );
118 BETTER_ENUM( WarningMsg, uint16_t, BATTERY_LOW, CONNECTION_DROPPED, .... );
119 ...
120
121 void logf( CriticalMsg msgId, const char* msgTextFormat, ... ) noexcept
122 {
123 va_list ap;
124 va_start( ap, msgTextFormat );
125 vlogf<CategoryId,CriticalMsg>( CategoryId::CRITICAL, msgId, msgTextFormat, ap );
126 va_end( ap );
127 }
128
129 void logf( WarningMsg msgId, const char* msgTextFormat, ... ) noexcept
130 {
131 va_list ap;
132 va_start( ap, msgTextFormat );
133 vlogf<CategoryId,WarningMsg>( CategoryId::WARNING, msgId, msgTextFormat, ap );
134 va_end( ap );
135 }
136
137 ...
138
139 \endcode
140 */
141template <class CATEGORY_ID, class MESSAGE_ID>
142void vlogf( CATEGORY_ID catId, MESSAGE_ID msgId, const char* msgTextFormat, va_list ap ) noexcept
143{
144 // Generate and 'log' the entry
145 createAndAddLogEntry_( catId, catId._to_string(), msgId, msgId._to_string(), msgTextFormat, ap );
146}
147
148/*---------------------------------------------------------------------------*/
149/** This method is implemented the application - it converts numeric values
150 for the Category and Message IDs into text strings. The method returns
151 true when successful, else false is returned if one or more the input
152 values are not 'valid'
153
154 Note: The output is only "as good" as the input, i.e. if the message IDs are
155 not 'from' the category enum - the result will be indeterminate
156 */
157bool getIDStrings( uint32_t categoryNumericValue,
158 uint16_t messageIdNumericValue,
159 Cpl::Text::String& dstCategoryString,
160 Cpl::Text::String& dstMessageString ) noexcept;
161
162}; // end namespaces
163};
164#endif // end header latch
This file contains private (i.e.
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
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 ...
void setCategoryMask(uint32_t newMask) noexcept
This method is used to explicit set the category mask (i.e.
void vlogf(CATEGORY_ID catId, MESSAGE_ID msgId, const char *msgTextFormat, va_list ap) noexcept
This method is used to create log entry.
Definition Api.h:142
uint32_t disableCategory(uint32_t categoryMask) noexcept
This method is used to disable one or more log Categories.
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.
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.
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.
uint32_t getCategoryEnabledMask() noexcept
This method returns the current enabled/disabled Category mask.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20