GM6000 Digital Heater Controller Branch: main
SDX-1330
Threads.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Cmd_Threads_h
2#define Cpl_TShell_Cmd_Threads_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/Text/String.h"
18#include "Cpl/System/Thread.h"
19
20
21
22///
23namespace Cpl {
24///
25namespace TShell {
26///
27namespace Cmd {
28
29
30
31/** This class implements a Shell command
32 */
34{
35public:
36 /// The command verb/identifier
37 static constexpr const char* verb = "threads";
38
39 /// The command usage string
40 static constexpr const char* usage = "threads";
41
42 /** The command detailed help string (recommended that lines do not exceed 80 chars)
43 1 2 3 4 5 6 7 8
44 12345678901234567890123456789012345678901234567890123456789012345678901234567890
45 */
46 static constexpr const char* detailedHelp = " Displays the list of threads.";
47
48public:
49 /// See Cpl::TShell::Command
50 const char* getUsage() const noexcept { return usage; }
51
52 /// See Cpl::TShell::Command
53 const char* getHelp() const noexcept { return detailedHelp; }
54
55
56protected:
57 /// Cache my Processor/Shell context when traversing the thread list
59
60 /// Count of threads
61 unsigned m_count;
62
63 /// Cache IO status/errors
64 bool m_io;
65
66
67public:
68 /// Constructor
71
72public:
73 /// See Cpl::TShell::Command
74 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
75
76
77
78public:
79 /// See Cpl::System::Thread::Traverser
81
82protected:
83 /// Hook when generating list header1 (i.e. subclass appends to the String)
84 virtual void hookHeader1( Cpl::Text::String& text );
85
86 /// Hook when generating list header2 (i.e. subclass appends to the String)
87 virtual void hookHeader2( Cpl::Text::String& text );
88
89 /// Hook when generating a thread row entry (i.e. subclass appends to the String)
90 virtual void hookThreadEntry( Cpl::Text::String& text, Cpl::System::Thread& currentThread );
91};
92
93}; // end namespaces
94};
95};
96#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 defines the client interface for walking the list of threads, i....
Definition Thread.h:139
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
This class implements a Shell command.
Definition Threads.h:34
virtual void hookHeader1(Cpl::Text::String &text)
Hook when generating list header1 (i.e. subclass appends to the String)
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
unsigned m_count
Count of threads.
Definition Threads.h:61
static constexpr const char * usage
The command usage string.
Definition Threads.h:40
Cpl::TShell::Context_ * m_contextPtr
Cache my Processor/Shell context when traversing the thread list.
Definition Threads.h:58
Cpl::Type::Traverser::Status_T item(Cpl::System::Thread &nextThread)
See Cpl::System::Thread::Traverser.
const char * getUsage() const noexcept
See Cpl::TShell::Command.
Definition Threads.h:50
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Threads.h:53
virtual void hookHeader2(Cpl::Text::String &text)
Hook when generating list header2 (i.e. subclass appends to the String)
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 Threads.h:46
Threads(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
bool m_io
Cache IO status/errors.
Definition Threads.h:64
static constexpr const char * verb
The command verb/identifier.
Definition Threads.h:37
virtual void hookThreadEntry(Cpl::Text::String &text, Cpl::System::Thread &currentThread)
Hook when generating a thread row entry (i.e. subclass appends to the String)
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
Status_T
Return codes (for the callback method) that determine if the traversal should continue.
Definition Traverser.h:32
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20