GM6000 Digital Heater Controller Branch: main
SDX-1330
Log.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_TShell_Log_h
2#define Cpl_Logging_TShell_Log_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"
19
20///
21namespace Cpl {
22///
23namespace Logging {
24///
25namespace TShell {
26
27
28
29/** This class implements a TShell command that operates on the persistently
30 store "log file". The implementation ASSUMES that the log entries are
31 stored using the Cpl::Persistent framework.
32
33 Note: The command/TShell is blocked during access to the persistent media.
34 */
36{
37public:
38 /// The command verb/identifier
39 static constexpr const char* verb = "log";
40
41 /// The command usage string
42 static constexpr const char* usage = "log [*|<max>]\n"
43 "log <nth> (*|<max>)\n"
44 "log clear\n";
45
46 /** The command detailed help string (recommended that lines do not exceed 80 chars)
47 1 2 3 4 5 6 7 8
48 12345678901234567890123456789012345678901234567890123456789012345678901234567890
49 */
50 static constexpr const char* detailedHelp = " Displays and clear stored log records entries. Records are always displayed\n"
51 " newest entry first. The output format is:\n"
52 " \"[<entrykey>] (<entryTimestamp>) <CATID>:<MSGID>. <text>\"\n"
53 " - 'log' with no arguments displays the newest entry.\n"
54 " - 'log *' displays all entries.\n"
55 " - 'log <max>' displays at most <max> entries.\n"
56 " - 'log <nth> *' displays all log entries starting with the <nth> record."
57 " - 'log <nth> <max>' displays up to <max> entries starting with <nth> record.";
58
59
60public:
61 /// See Cpl::TShell::Command `
62 const char* getUsage() const noexcept { return usage; }
63
64 /// See Cpl::TShell::Command
65 const char* getHelp() const noexcept { return detailedHelp; }
66
67
68public:
69 /// Constructor
71 Cpl::Itc::PostApi& logEntryServerMailbox,
74
75
76public:
77 /// See Cpl::TShell::Command
78 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
79
80protected:
81 /// Helper method
82 bool getEntries( Cpl::TShell::Context_& context, Cpl::Text::String& outtext, unsigned startIndex=0, unsigned maxEntries=0xFFFF ) noexcept;
83
84 /// Helper method
85 bool getLatestLogEntry( Cpl::Persistent::GetLatestRequest::Payload& payload ) noexcept;
86
87 /// Helper method
88 bool getPreviousLogEntry( Cpl::Persistent::GetPreviousRequest::Payload& payload ) noexcept;
89
90protected:
91 /// Mailbox of the thread that that the Log Server executes in
92 Cpl::Itc::PostApi& m_logServerMailbox;
93
94 /// Log Entry Server
95 Cpl::Persistent::IndexedEntryServer<Cpl::Logging::EntryData_T>& m_logServer;
96};
97
98}; // end namespaces
99};
100};
101#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
Defines the content of the Log entry.
Definition EntryData_T.h:56
This class implements a TShell command that operates on the persistently store "log file".
Definition Log.h:36
bool getEntries(Cpl::TShell::Context_ &context, Cpl::Text::String &outtext, unsigned startIndex=0, unsigned maxEntries=0xFFFF) noexcept
Helper method.
static constexpr const char * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition Log.h:50
static constexpr const char * usage
The command usage string.
Definition Log.h:42
Log(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::Itc::PostApi &logEntryServerMailbox, Cpl::Persistent::IndexedEntryServer< Cpl::Logging::EntryData_T > &logEntryServer, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
bool getLatestLogEntry(Cpl::Persistent::GetLatestRequest::Payload &payload) noexcept
Helper method.
Cpl::Itc::PostApi & m_logServerMailbox
Mailbox of the thread that that the Log Server executes in.
Definition Log.h:92
static constexpr const char * verb
The command verb/identifier.
Definition Log.h:39
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Log.h:65
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
Cpl::Persistent::IndexedEntryServer< Cpl::Logging::EntryData_T > & m_logServer
Log Entry Server.
Definition Log.h:95
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Log.h:62
bool getPreviousLogEntry(Cpl::Persistent::GetPreviousRequest::Payload &payload) noexcept
Helper method.
This concrete template class implements the ITC messaging (and Model Point monitoring) needed to prov...
Definition IndexedEntryServer.h:51
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Result_T
Possible result codes when executing a command.
Definition Command.h:35
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
Permission_T
Permissions levels.
Definition Security.h:34
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20