GM6000 Digital Heater Controller Branch: main
SDX-1330
Socket.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Socket_h_
2#define Cpl_TShell_Socket_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/System/Thread.h"
19
20
21///
22namespace Cpl {
23///
24namespace TShell {
25
26/** This concrete class provides a socket listener/server and 'threading wrapper' for
27 running a TShell Command Processor. Only one socket connection is allowed at any
28 given time to the Shell.
29
30 NOTE: This class dynamically allocates memory and dynamically creates a
31 Thread!
32 */
33
35{
36protected:
37 /// Command Processor to run
39
40 /// Thread that the shell runs in
42
43 /// Thread priority to run the shell
45
46 /// Thread name for the shell
47 const char* m_name;
48
49 /// Socket Listener (is ASSUMED to be a runnable instance)
51
52 /// Socket stream
54
55 /// How I was created
57
58
59public:
60 /** Constructor. The 'thisIsAStaticInstance' argument is to inform the
61 instance being create that it is being created statically (i.e. before
62 main() is entered) - which is the intended typically behavior. This
63 knowledge is used to inhibit delete/destroy-thread actions in the
64 instance's destructor. This is necessary because there is no
65 guaranteed order to when static destructor fire and as such the state
66 of the CPL Libraries static resources (e.g. mutexes) are unknown
67 which your application will crash/behavior poorly on exit.
68 */
69 Socket( ProcessorApi& shell, Cpl::Io::Socket::Listener& listener, const char* threadName = "TShell", int threadPriority = CPL_SYSTEM_THREAD_PRIORITY_NORMAL + CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true ) noexcept;
70
71
72 /// Destructor. Note: the referenced 'listener' is NOT destroyed/clean-up since it was NOT created by me.
74
75
76public:
77 /** This method starts the Processor. It is thread safe in that it
78 runs in the context of the calling thread - and spawns a new
79 thread for Shell/Command Processor to executing in.
80 */
81 void launch( int portNumToListenOn ) noexcept;
82
83
84public:
85 /// See Cpl::Io::Socket::Listener::Client
86 bool newConnection( Cpl::Io::Descriptor newFd, const char* rawConnectionInfo );
87
88};
89
90
91}; // end namespaces
92};
93#endif // end header latch
#define CPL_SYSTEM_THREAD_PRIORITY_LOWER
This value can be 'added' to one of the above Priorities to decrease (i.e.
Definition Thread.h:45
#define CPL_SYSTEM_THREAD_PRIORITY_NORMAL
The recommended/default priority for a thread.
Definition Thread.h:30
This concrete class provides a platform independent 'standard' implementation of an InputOutput strea...
Definition InputOutput.h:31
This class defines the callback mechanism used for accepting incoming socket connections.
Definition Listener.h:56
This abstract class defines the interface for a SIMPLE socket listener.
Definition Listener.h:45
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
This concrete class provides a socket listener/server and 'threading wrapper' for running a TShell Co...
Definition Socket.h:35
void launch(int portNumToListenOn) noexcept
This method starts the Processor.
Cpl::Io::Socket::InputOutput m_stream
Socket stream.
Definition Socket.h:53
Socket(ProcessorApi &shell, Cpl::Io::Socket::Listener &listener, const char *threadName="TShell", int threadPriority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL+CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true) noexcept
Constructor.
Cpl::Io::Socket::Listener & m_listener
Socket Listener (is ASSUMED to be a runnable instance)
Definition Socket.h:50
const char * m_name
Thread name for the shell.
Definition Socket.h:47
int m_priority
Thread priority to run the shell.
Definition Socket.h:44
Cpl::System::Thread * m_threadPtr
Thread that the shell runs in.
Definition Socket.h:41
bool m_staticInstance
How I was created.
Definition Socket.h:56
ProcessorApi & m_shell
Command Processor to run.
Definition Socket.h:38
bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo)
See Cpl::Io::Socket::Listener::Client.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20