1#ifndef Cpl_TShell_Socket_h_
2#define Cpl_TShell_Socket_h_
81 void launch(
int portNumToListenOn ) noexcept;
#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 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