4
4
** Author Francois Michaut
5
5
**
6
6
** Started on Sat Jan 15 01:27:40 2022 Francois Michaut
7
- ** Last update Sat Jul 22 22:09:20 2023 Francois Michaut
7
+ ** Last update Tue Nov 14 20:03:40 2023 Francois Michaut
8
8
**
9
9
** Socket.cpp : Protable C++ socket class implementation
10
10
*/
@@ -38,29 +38,29 @@ static constexpr int BUFF_SIZE = 4096;
38
38
// TODO throw custom exceptions on invalid status (eg: socket already connected)
39
39
namespace CppSockets {
40
40
Socket::Socket (RawSocketType sockfd, bool connected) :
41
- sockfd (sockfd), is_connected (connected)
41
+ m_sockfd (sockfd), m_is_connected (connected)
42
42
{
43
43
socklen_t len = sizeof (int );
44
44
45
- Socket::getsockopt (sockfd, SOL_SOCKET, SO_DOMAIN, &domain , &len);
46
- Socket::getsockopt (sockfd, SOL_SOCKET, SO_TYPE, &type , &len);
47
- Socket::getsockopt (sockfd, SOL_SOCKET, SO_PROTOCOL, &protocol , &len);
45
+ Socket::getsockopt (sockfd, SOL_SOCKET, SO_DOMAIN, &m_domain , &len);
46
+ Socket::getsockopt (sockfd, SOL_SOCKET, SO_TYPE, &m_type , &len);
47
+ Socket::getsockopt (sockfd, SOL_SOCKET, SO_PROTOCOL, &m_protocol , &len);
48
48
}
49
49
50
50
// TODO: more error handling arround is_connected == false and sockfd == INVALID in IO calls
51
51
Socket::Socket () :
52
- sockfd (INVALID_SOCKET)
52
+ m_sockfd (INVALID_SOCKET)
53
53
{}
54
54
55
55
Socket::Socket (int domain, int type, int protocol) :
56
- domain (domain), type (type), protocol (protocol), sockfd (::socket(domain, type, protocol))
56
+ m_domain (domain), m_type (type), m_protocol (protocol), m_sockfd (::socket(domain, type, protocol))
57
57
{
58
- if (sockfd == INVALID_SOCKET)
58
+ if (m_sockfd == INVALID_SOCKET)
59
59
throw std::runtime_error (std::string (" Failed to create socket : " ) + std::strerror (errno));
60
60
}
61
61
62
62
Socket::Socket (Socket &&other) noexcept :
63
- sockfd (INVALID_SOCKET)
63
+ m_sockfd (INVALID_SOCKET)
64
64
{
65
65
*this = std::move (other);
66
66
}
@@ -70,19 +70,19 @@ namespace CppSockets {
70
70
return *this ;
71
71
this ->close ();
72
72
73
- sockfd = other.sockfd ;
74
- domain = other.domain ;
75
- other.sockfd = INVALID_SOCKET;
76
- is_connected = other.is_connected ;
73
+ m_sockfd = other.m_sockfd ;
74
+ m_domain = other.m_domain ;
75
+ other.m_sockfd = INVALID_SOCKET;
76
+ m_is_connected = other.m_is_connected ;
77
77
return *this ;
78
78
}
79
79
80
80
void Socket::close () {
81
- if (sockfd != INVALID_SOCKET) {
81
+ if (m_sockfd != INVALID_SOCKET) {
82
82
#ifdef OS_WINDOWS
83
83
closesocket (raw_socket);
84
84
#else
85
- ::close (sockfd );
85
+ ::close (m_sockfd );
86
86
#endif
87
87
}
88
88
}
@@ -136,13 +136,13 @@ namespace CppSockets {
136
136
std::size_t Socket::read (char *buff, std::size_t size) {
137
137
std::size_t ret;
138
138
139
- if (!is_connected )
139
+ if (!m_is_connected )
140
140
throw std::runtime_error (" Not connected" );
141
- ret = ::read (sockfd , buff, size);
141
+ ret = ::read (m_sockfd , buff, size);
142
142
if (ret < 0 ) {
143
143
throw std::runtime_error (std::string (" Failed to read from socket: " ) + Socket::strerror ());
144
144
} else if (ret == 0 && size > 0 ) {
145
- is_connected = false ;
145
+ m_is_connected = false ;
146
146
}
147
147
return ret;
148
148
}
@@ -154,9 +154,9 @@ namespace CppSockets {
154
154
std::size_t Socket::write (const char *buff, std::size_t len) {
155
155
std::size_t ret;
156
156
157
- if (!is_connected )
157
+ if (!m_is_connected )
158
158
throw std::runtime_error (" Not connected" );
159
- ret = ::write (sockfd , buff, len);
159
+ ret = ::write (m_sockfd , buff, len);
160
160
if (ret < 0 ) {
161
161
throw std::runtime_error (std::string (" Failed to write to socket: " ) + Socket::strerror ());
162
162
}
@@ -170,11 +170,11 @@ namespace CppSockets {
170
170
}
171
171
172
172
int Socket::getsockopt (int level, int optname, void *optval, socklen_t *optlen) {
173
- return this ->getsockopt (sockfd , level, optname, optval, optlen);
173
+ return this ->getsockopt (m_sockfd , level, optname, optval, optlen);
174
174
}
175
175
176
176
int Socket::setsockopt (int level, int optname, const void *optval, socklen_t optlen) {
177
- int ret = ::setsockopt (sockfd , level, optname, optval, optlen);
177
+ int ret = ::setsockopt (m_sockfd , level, optname, optval, optlen);
178
178
179
179
if (ret < 0 ) {
180
180
throw std::runtime_error (std::string (" Failed to set sock opt: " ) + Socket::strerror ());
@@ -195,10 +195,10 @@ namespace CppSockets {
195
195
struct sockaddr_in addr = {};
196
196
int ret = 0 ;
197
197
198
- addr.sin_family = domain ;
198
+ addr.sin_family = m_domain ;
199
199
addr.sin_addr .s_addr = s_addr;
200
200
addr.sin_port = htons (port);
201
- ret = ::bind (sockfd , (struct sockaddr *)&addr, sizeof (addr));
201
+ ret = ::bind (m_sockfd , (struct sockaddr *)&addr, sizeof (addr));
202
202
if (ret < 0 ) {
203
203
throw std::runtime_error (std::string (" Failed to bind socket: " ) + Socket::strerror ());
204
204
}
@@ -216,20 +216,20 @@ namespace CppSockets {
216
216
addr.sin_addr .s_addr = endpoint.getAddr ().getAddress ();
217
217
addr.sin_port = htons (endpoint.getPort ());
218
218
addr.sin_family = endpoint.getAddr ().getFamily ();
219
- ret = ::connect (sockfd , (const struct sockaddr *)&addr, sizeof (addr));
219
+ ret = ::connect (m_sockfd , (const struct sockaddr *)&addr, sizeof (addr));
220
220
if (ret < 0 ) {
221
221
throw std::runtime_error (std::string (" Failed to connect socket to " ) + endpoint.toString () + " : " + Socket::strerror ());
222
222
}
223
- is_connected = ret == 0 ;
223
+ m_is_connected = ret == 0 ;
224
224
return ret;
225
225
}
226
226
227
227
bool Socket::connected () const {
228
- return is_connected ;
228
+ return m_is_connected ;
229
229
}
230
230
231
231
int Socket::listen (int backlog) {
232
- int ret = ::listen (sockfd , backlog);
232
+ int ret = ::listen (m_sockfd , backlog);
233
233
234
234
if (ret < 0 ) {
235
235
throw std::runtime_error (std::string (" Failed to listen socket: " ) + Socket::strerror ());
@@ -238,7 +238,7 @@ namespace CppSockets {
238
238
}
239
239
240
240
std::shared_ptr<Socket> Socket::accept (void *addr_out) {
241
- int fd = ::accept (sockfd , nullptr , nullptr );
241
+ int fd = ::accept (m_sockfd , nullptr , nullptr );
242
242
int domain = 0 ;
243
243
int type = 0 ;
244
244
int protocol = 0 ;
@@ -253,14 +253,14 @@ namespace CppSockets {
253
253
}
254
254
255
255
void Socket::set_blocking (bool val) {
256
- int flags = fcntl (sockfd , F_GETFL, 0 );
256
+ int flags = fcntl (m_sockfd , F_GETFL, 0 );
257
257
int ret = flags;
258
258
259
259
if (ret >= 0 ) {
260
260
if (val) {
261
- ret = fcntl (sockfd , F_SETFL, flags | O_NONBLOCK); // NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg, hicpp-signed-bitwise)
261
+ ret = fcntl (m_sockfd , F_SETFL, flags | O_NONBLOCK); // NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg, hicpp-signed-bitwise)
262
262
} else {
263
- ret = fcntl (sockfd , F_SETFL, (flags | O_NONBLOCK) ^ O_NONBLOCK); // NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg, hicpp-signed-bitwise)
263
+ ret = fcntl (m_sockfd , F_SETFL, (flags | O_NONBLOCK) ^ O_NONBLOCK); // NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg, hicpp-signed-bitwise)
264
264
}
265
265
}
266
266
if (ret < 0 ) {
@@ -269,18 +269,18 @@ namespace CppSockets {
269
269
}
270
270
271
271
RawSocketType Socket::get_fd () const {
272
- return sockfd ;
272
+ return m_sockfd ;
273
273
}
274
274
275
275
int Socket::get_domain () const {
276
- return domain ;
276
+ return m_domain ;
277
277
}
278
278
279
279
int Socket::get_protocol () const {
280
- return protocol ;
280
+ return m_protocol ;
281
281
}
282
282
283
283
int Socket::get_type () const {
284
- return type ;
284
+ return m_type ;
285
285
}
286
286
}
0 commit comments