GM6000 Digital Heater Controller Branch: main
SDX-1330
Shell.h
Go to the documentation of this file.
1#ifndef Cpl_System_Shell_h_
2#define Cpl_System_Shell_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 "colony_map.h"
17
18///
19namespace Cpl {
20///
21namespace System {
22
23
24/** This class defines methods for interfacing with the Platform native OS to
25 execute a native OS system/shell command. Support for this interface is
26 target/platform specific, i.e. support for this interface is OPTIONAL. If
27 the target does not support this interface, then the 'execute' method
28 does NOTHING (and returns -1); and the method isAvailable() return false.
29
30 */
31class Shell
32{
33public:
34 /** Executes the System Shell command as specified by 'cmdstring'. If
35 noEchoStdOut is set to true then the standard output of the shell command
36 is set to the system's NUL device. If noEchoStdErr is set to true then
37 the standard error output of the shell command is set to the system's
38 NUL device. The method returns -1 if unable to execute the command,
39 else returns the result code of the command executed.
40 */
41 static int execute( const char* cmdstring, bool noEchoStdOut = true, bool noEchoStdErr = true );
42
43 /** Returns true if the system command shell is available.
44 */
45 static bool isAvailable();
46
47};
48
49
50/*
51** COMPONENT SCOPED SYMBOLS. The application should NEVER directly use/references these symbols.
52*/
53/// Defer the definition of the target specific 'null device' to the application's 'platform'
54#define CPL_SYSTEM_SHELL_NULL_DEVICE_ CPL_SYSTEM_SHELL_NULL_DEVICE_x_MAP
55
56/// Defer the decision to support/not-support this interface to the application's 'platform'
57#define CPL_SYSTEM_SHELL_SUPPORTED_ CPL_SYSTEM_SHELL_SUPPORTED_x_MAP
58
59
60}; // end namespaces
61};
62#endif // end header latch
63
This class defines methods for interfacing with the Platform native OS to execute a native OS system/...
Definition Shell.h:32
static bool isAvailable()
Returns true if the system command shell is available.
static int execute(const char *cmdstring, bool noEchoStdOut=true, bool noEchoStdErr=true)
Executes the System Shell command as specified by 'cmdstring'.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20