GM6000 Digital Heater Controller Branch: main
SDX-1330
AsyncListener.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Tcp_AsyncListener_h_
2#define Cpl_Io_Tcp_AsyncListener_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
17
18///
19namespace Cpl {
20///
21namespace Io {
22///
23namespace Tcp {
24
25
26/** This abstract class defines the interface for a SIMPLE socket listener. A
27 socket listener 'listens' for potential TCP/IP socket connections. When a
28 request for a connection comes in, the listener notifies the client.
29
30 In keeping with the non-blocking semantics a poll() function has been
31 defined that must be periodically called.
32
33 The listener accepts only one connection at a time. After a connection has
34 been established, the listener will accept a new connection once the existing/
35 previous connection is closed.
36
37 The interface is NOT thread safe. This includes the client callback function,
38 i.e. no guarantees on what thread the callback function executes in.
39 */
41
42{
43public:
44 /** This class defines the callback mechanism used for accepting incoming
45 TCP connections.
46 */
48 {
49 public:
50 /** This method is a callback method that is called when the listener
51 has accepted in incoming socket request. It is up the client to
52 determine if the application will accept or reject the TCP
53 connection. If the client rejects the connection, it needs to
54 return false, else returns true.
55
56 When the client accepts the connection, it is required to call
57 its Cpl::Io::Tcp::InputOutput.activate() method with 'newFd'
58
59 Note: Caution: This method can be called from an ISR context, it
60 all depends on the platform implementation
61 */
62 virtual bool newConnection( Cpl::Io::Descriptor newFd, const char* rawConnectionInfo ) noexcept = 0;
63
64
65 public:
66 /// Virtual destructor
67 virtual ~Client() {}
68 };
69
70
71
72public:
73 /** Starts the Listener listening. If an error occurred then false is
74 is returned; else true is returned.
75 */
76 virtual bool startListening( Client& client,
77 int portNumToListenOn ) noexcept = 0;
78
79 /** This method must be called periodically to service the listen/connection
80 status
81 */
82 virtual void poll() noexcept = 0;
83
84 /** Shuts down the Listener and/or will CLOSE the active connection. The
85 listener can be restarted by calling startListening()
86 */
87 virtual void terminate() noexcept = 0;
88
89
90public:
91 /// Virtual destructor
92 virtual ~AsyncListener() {}
93};
94
95
96}; // end namespaces
97};
98};
99#endif // end header latch
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncListener.h:48
virtual ~Client()
Virtual destructor.
Definition AsyncListener.h:67
virtual bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo) noexcept=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 AsyncListener.h:42
virtual bool startListening(Client &client, int portNumToListenOn) noexcept=0
Starts the Listener listening.
virtual void terminate() noexcept=0
Shuts down the Listener and/or will CLOSE the active connection.
virtual void poll() noexcept=0
This method must be called periodically to service the listen/connection status.
This concrete class defines a platform independent implementation of an InputOutput stream used by th...
Definition InputOutput.h:35
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