GM6000 Digital Heater Controller Branch: main
SDX-1330
Context_.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_ContextApi_x_h_
2#define Cpl_TShell_ContextApi_x_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
16#include "Cpl/TShell/Security.h"
17#include "Cpl/TShell/Command.h"
18#include "Cpl/Container/Map.h"
19
20
21///
22namespace Cpl {
23///
24namespace TShell {
25
26/** This Private Namespace class defines a "Context" for a TShell command. The
27 Context provide common infrastructure, information, buffers, etc. that
28 facilitates interaction between the Command Processor and individual
29 commands. The application SHOULD NEVER directly access this interface.
30 */
31class Context_ : public ProcessorApi
32{
33public:
34 /// This method returns the list of implemented commands
36
37public:
38 /// This method encodes and outputs the specified message/text. The method returns false if there was Output Stream error
39 virtual bool writeFrame( const char* text ) noexcept = 0;
40
41 /// Same as writeFrame(), but only outputs (at most) 'N' bytes as the content of the frame
42 virtual bool writeFrame( const char* text, size_t maxBytes ) noexcept = 0;
43
44
45public:
46 /** This method returns a working buffer for a command to format its
47 output prior to 'writing the frame'.
48 */
49 virtual Cpl::Text::String& getOutputBuffer() noexcept = 0;
50
51 /** A shared/common working buffer. The buffer is guaranteed to be large
52 enough hold any valid token from an input frame. The contents of
53 buffer is guaranteed to be empty/cleared.
54 */
55 virtual Cpl::Text::String& getTokenBuffer() noexcept = 0;
56
57 /** Same as getTokenBuffer(), except provides a second/separate token buffer
58 */
59 virtual Cpl::Text::String& getTokenBuffer2() noexcept = 0;
60
61
62public:
63 /** This method allows a command access to the input stream, i.e. consume
64 additional input data that is 'out-of-band' of the nominal newline
65 delineated command syntax.
66
67 Attempts to read the specified number of bytes from the stream into the
68 supplied buffer. The actual number of bytes read is returned via
69 'bytesRead'. Returns true if successful, or false if End-of-Stream
70 was encountered.
71 */
72 virtual bool oobRead( void* buffer, int numBytes, int& bytesRead ) noexcept = 0;
73
74public:
75 /** This method returns the 'logged user' permission level
76 */
77 virtual Security::Permission_T getUserPermissionLevel() const noexcept = 0;
78
79 /** This method is used to updated the 'logged user' permission level. The
80 method returns the previous value for the user's permission level.
81
82 NOTE: The program model is that all command implementations are well
83 behaved in that they do not indiscriminately call this method.
84 In practice only the 'user' command should every call this method!
85 */
86 virtual Security::Permission_T setUserPermissionLevel( Security::Permission_T newPermissionLevel ) noexcept = 0;
87
88
89public:
90 /// Virtual destructor
91 virtual ~Context_() {}
92};
93
94
95}; // end namespaces
96};
97#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
virtual Cpl::Text::String & getTokenBuffer2() noexcept=0
Same as getTokenBuffer(), except provides a second/separate token buffer.
virtual bool oobRead(void *buffer, int numBytes, int &bytesRead) noexcept=0
This method allows a command access to the input stream, i.e.
virtual bool writeFrame(const char *text) noexcept=0
This method encodes and outputs the specified message/text. The method returns false if there was Out...
virtual Security::Permission_T getUserPermissionLevel() const noexcept=0
This method returns the 'logged user' permission level.
virtual Cpl::Text::String & getTokenBuffer() noexcept=0
A shared/common working buffer.
virtual Cpl::Container::Map< Command > & getCommands() noexcept=0
This method returns the list of implemented commands.
virtual Security::Permission_T setUserPermissionLevel(Security::Permission_T newPermissionLevel) noexcept=0
This method is used to updated the 'logged user' permission level.
virtual Cpl::Text::String & getOutputBuffer() noexcept=0
This method returns a working buffer for a command to format its output prior to 'writing the frame'.
This class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20