GM6000 Digital Heater Controller Branch: main
SDX-1330
AsyncListener.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Tcp_Win32_AsyncListener_h_
2#define Cpl_Io_Tcp_Win32_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
15#include <winsock2.h>
16#include "colony_config.h"
18
19/** This value is number of retries that is performed when attempting
20 to bind to the listening port.
21 */
22#ifndef OPTION_CPL_IO_TCP_WIN32_BIND_RETRIES
23#define OPTION_CPL_IO_TCP_WIN32_BIND_RETRIES 5
24#endif
25
26 /** This value is time, in milliseconds between retries during the binding
27 process.
28 */
29#ifndef OPTION_CPL_IO_TCP_WIN32_BIND_RETRY_WAIT
30#define OPTION_CPL_IO_TCP_WIN32_BIND_RETRY_WAIT (10*1000)
31#endif
32
33///
34namespace Cpl {
35///
36namespace Io {
37///
38namespace Tcp {
39///
40namespace Win32 {
41
42
43/** This class implements the Asynchronous Listener.
44 */
46
47{
48public:
49 /// Constructor
51
52 /// Destructor
54
55public:
56 /// Cpl::Io::Tcp::AsyncListener
57 bool startListening( Client& client,
58 int portNumToListenOn ) noexcept;
59
60 /// Cpl::Io::Tcp::AsyncListener
61 void terminate() noexcept;
62
63public:
64 /** This method must be called periodically to service the listen/connection
65 status
66 */
67 void poll() noexcept;
68
69protected:
70 /// socket I am listen on
71 SOCKET m_fd;
72
73 /// Client
75
76 /// Time marker
77 unsigned long m_timeMarker;
78
79 /// Port Number to listen on
81
82 /// Listening state
84
85 /// Retry counter
87
88 /// Track if the client is connected
90};
91
92
93}; // end namespaces
94};
95};
96};
97#endif // end header latch
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncListener.h:48
This abstract class defines the interface for a SIMPLE socket listener.
Definition AsyncListener.h:42
This class implements the Asynchronous Listener.
Definition AsyncListener.h:47
void poll() noexcept
This method must be called periodically to service the listen/connection status.
SOCKET m_fd
socket I am listen on
Definition AsyncListener.h:71
unsigned long m_timeMarker
Time marker.
Definition AsyncListener.h:77
Client * m_clientPtr
Client.
Definition AsyncListener.h:74
int m_portNum
Port Number to listen on.
Definition AsyncListener.h:80
void terminate() noexcept
Cpl::Io::Tcp::AsyncListener.
bool startListening(Client &client, int portNumToListenOn) noexcept
Cpl::Io::Tcp::AsyncListener.
bool m_clientConnected
Track if the client is connected.
Definition AsyncListener.h:89
int m_state
Listening state.
Definition AsyncListener.h:83
unsigned m_retryCounter
Retry counter.
Definition AsyncListener.h:86
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20