GM6000 Digital Heater Controller Branch: main
SDX-1330
Listener.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Listener_h_
2#define Cpl_Io_Socket_Listener_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#include "Cpl/Io/Descriptor.h"
16#include "Cpl/System/Runnable.h"
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace Socket {
25
26
27/** This abstract class defines the interface for a SIMPLE socket listener. A
28 socket listener 'listens' for potential TCP/IP socket connections. When a
29 request for a connection comes in, the listener notifies the client. It is
30 the client's responsibility to determine if the connection request is
31 accepted as well as provide memory for the accepted connection. The client
32 is also responsible for reclaiming the memory once the socket connection has
33 been terminated.
34
35 The socket listener is designed to run it is own thread. The callback
36 mechanism uses the Cpl::Itc Request mechanism, i.e. the client implementing
37 the callback must be running in a thread that is using/has a
38 Cpl::Itc::MailboxServer.
39
40 NOTE: The application is responsible for creating the thread for the
41 listener to run in.
42 */
44
45{
46public:
47 /** This class defines the callback mechanism used for accepting incoming
48 socket connections.
49
50 NOTE: Typically the client should NOT inherit/implement this class
51 directly because the callbacks are across threads. The client
52 should inherit from the ListenerClienSync class and then implement
53 the request(msg) methods associated with actions below.
54 */
55 class Client
56 {
57 public:
58 /** This method is a callback method that is called when the listener
59 has accepted in incoming socket request. It is up the client to
60 determine if the application will accept or reject the socket. If
61 the client rejects the socket, it needs to return false, else
62 returns true.
63 */
64 virtual bool newConnection( Cpl::Io::Descriptor newFd, const char* rawConnectionInfo ) = 0;
65
66
67 public:
68 /// Virtual destructor
69 virtual ~Client() {}
70 };
71
72
73
74public:
75 /// Starts the Listener listening.
76 virtual void startListening( Client& client, int portNumToListenOn ) = 0;
77
78
79 /** Shuts down the Listener.
80 */
81 virtual void terminate() = 0;
82
83
84public:
85 /// Virtual destructor
86 virtual ~Listener() {}
87};
88
89
90}; // end namespaces
91};
92};
93#endif // end header latch
This class defines the callback mechanism used for accepting incoming socket connections.
Definition Listener.h:56
virtual ~Client()
Virtual destructor.
Definition Listener.h:69
virtual bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo)=0
This method is a callback method that is called when the listener has accepted in incoming socket req...
This abstract class defines the interface for a SIMPLE socket listener.
Definition Listener.h:45
virtual void startListening(Client &client, int portNumToListenOn)=0
Starts the Listener listening.
virtual void terminate()=0
Shuts down the Listener.
virtual ~Listener()
Virtual destructor.
Definition Listener.h:86
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26