summaryrefslogtreecommitdiff
path: root/src/Sockets/StreamSocket.cpp
blob: 5c5780e308521baf40b37f0dba0a3ea8b1cec3d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include "StreamSocket.h"
#include "ISocketHandler.h"


#ifdef SOCKETS_NAMESPACE
namespace SOCKETS_NAMESPACE {
#endif


StreamSocket::StreamSocket(ISocketHandler& h) : Socket(h)
,m_bConnecting(false)
,m_connect_timeout(5)
,m_flush_before_close(true)
,m_connection_retry(0)
,m_retries(0)
,m_call_on_connect(false)
,m_b_retry_connect(false)
,m_line_protocol(false)
,m_shutdown(0)
{
}


StreamSocket::~StreamSocket()
{
}


void StreamSocket::SetConnecting(bool x)
{
	if (x != m_bConnecting)
	{
		m_bConnecting = x;
		if (x)
		{
			SetTimeout( GetConnectTimeout() );
		}
		else
		{
			SetTimeout( 0 );
		}
	}
}


bool StreamSocket::Connecting()
{
	return m_bConnecting;
}


bool StreamSocket::Ready()
{
	if (GetSocket() != INVALID_SOCKET && !Connecting() && !CloseAndDelete())
		return true;
	return false;
}


void StreamSocket::SetConnectTimeout(int x)
{
	m_connect_timeout = x;
}


int StreamSocket::GetConnectTimeout()
{
	return m_connect_timeout;
}


void StreamSocket::SetFlushBeforeClose(bool x)
{
	m_flush_before_close = x;
}


bool StreamSocket::GetFlushBeforeClose()
{
	return m_flush_before_close;
}


int StreamSocket::GetConnectionRetry()
{
	return m_connection_retry;
}


void StreamSocket::SetConnectionRetry(int x)
{
	m_connection_retry = x;
}


int StreamSocket::GetConnectionRetries()
{
	return m_retries;
}


void StreamSocket::IncreaseConnectionRetries()
{
	m_retries++;
}


void StreamSocket::ResetConnectionRetries()
{
	m_retries = 0;
}


void StreamSocket::SetCallOnConnect(bool x)
{
	Handler().AddList(GetSocket(), LIST_CALLONCONNECT, x);
	m_call_on_connect = x;
}


bool StreamSocket::CallOnConnect()
{
	return m_call_on_connect;
}


void StreamSocket::SetRetryClientConnect(bool x)
{
	Handler().AddList(GetSocket(), LIST_RETRY, x);
	m_b_retry_connect = x;
}


bool StreamSocket::RetryClientConnect()
{
	return m_b_retry_connect;
}


void StreamSocket::SetLineProtocol(bool x)
{
	m_line_protocol = x;
}


bool StreamSocket::LineProtocol()
{
	return m_line_protocol;
}


void StreamSocket::SetShutdown(int x)
{
	m_shutdown = x;
}


int StreamSocket::GetShutdown()
{
	return m_shutdown;
}




#ifdef SOCKETS_NAMESPACE
} // namespace SOCKETS_NAMESPACE {
#endif