GM6000 Digital Heater Controller Branch: main
SDX-1330
AsyncConnector.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Tcp_Win32_AsyncConnector_h_
2#define Cpl_Io_Tcp_Win32_AsyncConnector_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 <winsock2.h>
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace Tcp {
25///
26namespace Win32 {
27
28
29/** This class implements the Asynchronous Connector.
30 */
32{
33public:
34 /// Constructor
36
37 /// Destructor
39
40public:
41 /// See Cpl::Io::Tcp::AsyncConnector
42 bool establish( Client& client,
43 const char* remoteHostName,
44 int portNumToConnectTo );
45
46 /// See Cpl::Io::Tcp::AsyncConnector
47 void poll() noexcept;
48
49 /// See Cpl::Io::Tcp::AsyncConnector
50 void terminate() noexcept;
51
52protected:
53 /// Helper method that is used to notify the client that the connection has been established
54 void notifyConnected( SOCKET sock );
55
56 /// Helper method that is used to notify the client that the connection request failed
57 void notifyError( Client::Error_T error, int wsaLastError );
58
59 /// Helper method to try the 'next' address for the remote host
60 void nextAddress( int wsaLastError );
61
62protected:
63 /// socket for the connection
64 SOCKET m_fd;
65
66 /// Client
68
69 /// Current address to try
70 struct addrinfo* m_remoteAddrPtr;
71
72 /// Connecting state
74
75 /// Track the 1st call to connect();
77
78 /// Track if the client is connected
80};
81
82
83}; // end namespaces
84};
85};
86};
87#endif // end header latch
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncConnector.h:47
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection,...
Definition AsyncConnector.h:41
This class implements the Asynchronous Connector.
Definition AsyncConnector.h:32
SOCKET m_fd
socket for the connection
Definition AsyncConnector.h:64
bool m_clientConnected
Track if the client is connected.
Definition AsyncConnector.h:79
void notifyConnected(SOCKET sock)
Helper method that is used to notify the client that the connection has been established.
struct addrinfo * m_remoteAddrPtr
Current address to try.
Definition AsyncConnector.h:70
int m_state
Connecting state.
Definition AsyncConnector.h:73
Client * m_clientPtr
Client.
Definition AsyncConnector.h:67
void terminate() noexcept
See Cpl::Io::Tcp::AsyncConnector.
void nextAddress(int wsaLastError)
Helper method to try the 'next' address for the remote host.
bool establish(Client &client, const char *remoteHostName, int portNumToConnectTo)
See Cpl::Io::Tcp::AsyncConnector.
bool m_connectCalled
Track the 1st call to connect();.
Definition AsyncConnector.h:76
void notifyError(Client::Error_T error, int wsaLastError)
Helper method that is used to notify the client that the connection request failed.
void poll() noexcept
See Cpl::Io::Tcp::AsyncConnector.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20