GM6000 Digital Heater Controller Branch: main
SDX-1330
AsyncConnector.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Tcp_Async_Connector_h_
2#define Cpl_Io_Tcp_Async_Connector_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 establishing/requesting
27 a SIMPLE socket connection, i.e. make a "client connection". When the
28 connection is accepted by the remote host, the connector 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 Connector allows only one connection at a time. After a connection has
34 been established, any calls to establish() will be ignore. Once the existing/
35 previous connection is closed, the application can establish() again.
36
37 The interface is NOT thread safe. This includes the client callback functions,
38 i.e. no guarantees on what thread the callback functions executes in.
39 */
41{
42public:
43 /** This class defines the callback mechanism used for accepting incoming
44 TCP connections.
45 */
47 {
48 public:
49 /// Possible error codes when attempting to establish a connection
50 enum Error_T {
51 eERROR, //!< Error occurred
52 eREFUSED, //!< Connection request was refused by the remote Host
53 };
54
55 public:
56 /** This method is a callback method that is called when the remote host
57 has accepted in connection request. It is up the client to
58 determine if the application will accept or reject the TCP
59 connection. If the client rejects the connection, it needs to
60 return false, else returns true.
61
62 When the client accepts the connection, it is required to call
63 its Cpl::Io::Tcp::InputOutput.activate() method with 'newFd'
64
65 Note: Caution: This method can be called from an ISR context, it
66 all depends on the platform implementation
67 */
68 virtual bool newConnection( Cpl::Io::Descriptor newFd ) noexcept = 0;
69
70 /** This method is a callback method that is called when an error occurred
71 when making the connection request.
72
73 Note: Caution: This method can be called from an ISR context, it
74 all depends on the platform implementation
75 */
76 virtual void connectionFailed( Error_T errorCode ) noexcept = 0;
77 };
78
79public:
80 /** Requests a client connection to the specified remote Host. The method
81 returns true if the connection process is started. The method returns
82 false if an error occurred or there is a connection request in progress
83 or there is active connection.
84 */
85 virtual bool establish( Client& client,
86 const char* remoteHostName,
87 int portNumToConnectTo ) = 0;
88
89 /** This method must be called periodically to service the connection
90 status
91 */
92 virtual void poll() noexcept = 0;
93
94 /** Aborts any connection in progress and/or will CLOSE the active
95 connection. A new connection can be requested by calling establish().
96 */
97 virtual void terminate() noexcept = 0;
98
99public:
100 /// Virtual destructor
101 virtual ~AsyncConnector() {}
102};
103
104
105}; // end namespaces
106};
107};
108#endif // end header latch
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncConnector.h:47
virtual void connectionFailed(Error_T errorCode) noexcept=0
This method is a callback method that is called when an error occurred when making the connection req...
virtual bool newConnection(Cpl::Io::Descriptor newFd) noexcept=0
This method is a callback method that is called when the remote host has accepted in connection reque...
Error_T
Possible error codes when attempting to establish a connection.
Definition AsyncConnector.h:50
@ eERROR
Error occurred.
Definition AsyncConnector.h:51
@ eREFUSED
Connection request was refused by the remote Host.
Definition AsyncConnector.h:52
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection,...
Definition AsyncConnector.h:41
virtual void poll() noexcept=0
This method must be called periodically to service the connection status.
virtual void terminate() noexcept=0
Aborts any connection in progress and/or will CLOSE the active connection.
virtual bool establish(Client &client, const char *remoteHostName, int portNumToConnectTo)=0
Requests a client connection to the specified remote Host.
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