GM6000 Digital Heater Controller Branch: main
SDX-1330
Listener_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Listener_x_h_
2#define Cpl_Io_Socket_Listener_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/System/Thread.h"
17#include "Cpl/System/Mutex.h"
18
19
20///
21namespace Cpl {
22///
23namespace Io {
24///
25namespace Socket {
26
27
28/** This private, mostly concrete helper class manages the top level threading
29 aspects for a simple listener.
30 */
31class Listener_ : public Listener
32{
33protected:
34 /// Port Number to listen on
36
37 /// Client
39
40 /// Used to synchronize the startListening command
42
43 /// Mutex to guard start up sequence
45
46 /// Indicates if the listener was instructed to start
48
49
50protected:
51 /// Constructor
53
54
55public:
56 /// See Cpl::Io::Socket::Listener
57 void startListening( Listener::Client& client, int portNumToListenOn );
58
59 /// See Cpl::Io::Socket::Listener
60 void terminate();
61
62
63protected:
64 /// See Cpl::System::Runnable
65 void appRun();
66
67 /// See Cpl::System::Runnable
69
70 /// See Cpl::System::Runnable
71 void pleaseStop();
72
73protected:
74 /// Begin listening -->to be implemented by platform specific child class
75 virtual void listen() =0;
76
77 /// Stop the listener -->to be implemented by platform specific child class
78 virtual void stopListener() =0;
79};
80
81
82
83}; // end namespaces
84};
85};
86#endif // end header latch
This class defines the callback mechanism used for accepting incoming socket connections.
Definition Listener.h:56
This private, mostly concrete helper class manages the top level threading aspects for a simple liste...
Definition Listener_.h:32
void setThreadOfExecution_(Cpl::System::Thread *myThreadPtr)
See Cpl::System::Runnable.
void appRun()
See Cpl::System::Runnable.
void startListening(Listener::Client &client, int portNumToListenOn)
See Cpl::Io::Socket::Listener.
Cpl::System::Signable * m_myThreadPtr
Used to synchronize the startListening command.
Definition Listener_.h:41
Cpl::System::Mutex m_lock
Mutex to guard start up sequence.
Definition Listener_.h:44
Listener::Client * m_clientPtr
Client.
Definition Listener_.h:38
virtual void listen()=0
Begin listening -->to be implemented by platform specific child class.
virtual void stopListener()=0
Stop the listener -->to be implemented by platform specific child class.
bool m_startCalled
Indicates if the listener was instructed to start.
Definition Listener_.h:47
void terminate()
See Cpl::Io::Socket::Listener.
void pleaseStop()
See Cpl::System::Runnable.
int m_socket
Port Number to listen on.
Definition Listener_.h:35
This abstract class defines the interface for a SIMPLE socket listener.
Definition Listener.h:45
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20