GM6000 Digital Heater Controller Branch: main
SDX-1330
EntryData_T.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_EntryData_h_
2#define Cpl_Logging_EntryData_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
16#include "Cpl/Logging/TimeApi.h"
18#include <stdint.h>
19#include <string.h>
20
21/** The size, in bytes, reserved to store the text portion of the log entry.
22 The size does NOT include the space reserved for the null terminator
23 */
24#ifndef OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN
25#define OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN 128
26#endif
27
28 /** Maximum number of characters in the application CategoryID's enum symbols
29 */
30#ifndef OPTION_CPL_LOGGING_MAX_LEN_CATEGORY_ID_TEXT
31#define OPTION_CPL_LOGGING_MAX_LEN_CATEGORY_ID_TEXT 16
32#endif
33
34 /** Maximum number of characters in the application MessageID's enum symbols
35 */
36#ifndef OPTION_CPL_LOGGING_MAX_LEN_MESSAGE_ID_TEXT
37#define OPTION_CPL_LOGGING_MAX_LEN_MESSAGE_ID_TEXT 32
38#endif
39
40 /** The size, in bytes, need to 'format' the message text with the 'textified'
41 category and message IDs. The size does NOT include the space reserved
42 for the null terminator
43 */
44#ifndef OPTION_CPL_LOGGING_MAX_FORMATTED_MSG_TEXT_LEN
45#define OPTION_CPL_LOGGING_MAX_FORMATTED_MSG_TEXT_LEN (OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN+OPTION_CPL_LOGGING_MAX_LEN_CATEGORY_ID_TEXT+1+OPTION_CPL_LOGGING_MAX_LEN_MESSAGE_ID_TEXT+2)
46#endif
47
48
49///
50namespace Cpl {
51///
52namespace Logging {
53
54/// Defines the content of the Log entry
56{
57public:
58 CplLoggingTime_T timestamp; //!< Time-stamp for the entry
59 uint32_t category; //!< Category identifier
60 uint16_t msgId; //!< Message type enumeration identifier.
61 char msgText[OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN + 1]; //!< The 'text' associated with log entry.
62
63public:
64 /// Total 'packed' length
65 static constexpr unsigned entryLen = sizeof( timestamp ) + sizeof( category ) + sizeof( msgId ) + sizeof( msgText );
66
67public:
68 /// Constructor
70 : timestamp( 0 )
71 , category( 0 )
72 , msgId( 0 )
73 {
74 memset( msgText, 0, sizeof( msgText ) );
75 }
76
77public:
78 /// See Cpl::Persistent::Payload (manual copy ensure no pad bytes are copied)
79 size_t getData( void* dst, size_t maxDstLen ) noexcept
80 {
81 if ( maxDstLen >= entryLen )
82 {
83 uint8_t* dstPtr = (uint8_t*) dst;
84 memcpy( dstPtr, &timestamp, sizeof( timestamp ) );
85 memcpy( dstPtr + sizeof( timestamp ), &category, sizeof( category ) );
86 memcpy( dstPtr + sizeof( timestamp ) + sizeof( category ), &msgId, sizeof( msgId ) );
87 memcpy( dstPtr + sizeof( timestamp ) + sizeof( category ) + sizeof( msgId ), msgText, sizeof( msgText ) );
88 return entryLen;
89 }
90 return 0;
91 }
92
93 /// See Cpl::Persistent::Payload
94 bool putData( const void* src, size_t srcLen ) noexcept
95 {
96 if ( srcLen >= entryLen )
97 {
98 uint8_t* srcPtr = (uint8_t*) src;
99 memcpy( &timestamp, srcPtr, sizeof( timestamp ) );
100 memcpy( &category, srcPtr + sizeof( timestamp ), sizeof( category ) );
101 memcpy( &msgId, srcPtr + sizeof( timestamp ) + sizeof( category ), sizeof( msgId ) );
102 memcpy( msgText, srcPtr + sizeof( timestamp ) + sizeof( category ) + sizeof( msgId ), sizeof( msgText ) );
103 return true;
104 }
105 return false;
106 }
107};
108
109
110
111}; // end namespaces
112};
113#endif // end header latch
#define OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN
The size, in bytes, reserved to store the text portion of the log entry.
Definition EntryData_T.h:25
#define CplLoggingTime_T
Default data type for storing a time-stamp value.
Definition TimeApi.h:23
Defines the content of the Log entry.
Definition EntryData_T.h:56
EntryData_T()
Constructor.
Definition EntryData_T.h:69
size_t getData(void *dst, size_t maxDstLen) noexcept
See Cpl::Persistent::Payload (manual copy ensure no pad bytes are copied)
Definition EntryData_T.h:79
char msgText[OPTION_CPL_LOGGING_MAX_MSG_TEXT_LEN+1]
The 'text' associated with log entry.
Definition EntryData_T.h:61
uint16_t msgId
Message type enumeration identifier.
Definition EntryData_T.h:60
CplLoggingTime_T timestamp
Time-stamp for the entry.
Definition EntryData_T.h:58
bool putData(const void *src, size_t srcLen) noexcept
See Cpl::Persistent::Payload.
Definition EntryData_T.h:94
static constexpr unsigned entryLen
Total 'packed' length.
Definition EntryData_T.h:65
uint32_t category
Category identifier.
Definition EntryData_T.h:59
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20