-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSocket.cpp
137 lines (119 loc) · 3.2 KB
/
Socket.cpp
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
#include "Socket.hpp"
#include <fstream>
#include "Exception.hpp"
SocketClient::SocketClient(int domain, int type, int protocol, std::string IPaddress, std::string hostname, int port, int timeout) :
m_iFamily_domain(domain), m_iSocket_type(type), m_iProtocol(protocol), m_sIPaddress(IPaddress), m_sHostname(hostname), m_iPort(port), m_iTimeout(timeout)
{
if (m_sIPaddress == "" && m_sHostname == "")
{
throw Exception("Not entered IP or hostname");
//TODO: exception not entered IP or hostname
}
hostent *host = NULL;
bGetAddrInfoStatus = false;
#ifdef _WIN32
#define _WINSOCK_DEPRECATED_NO_WARNINGS
WSADATA wsaData;
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) {
throw Exception("WSA startup failed");
system("pause"); //DEBUG
return;
}
#endif
m_socSocket = socket(m_iFamily_domain, m_iSocket_type, m_iProtocol);
if (m_socSocket == INVALID_SOCKET)
{
throw Exception("Cannot create socket"); //TODO: exception cannot create socket
}
FD_ZERO(&m_fdsetSet); /* clear the set */
FD_SET(m_socSocket, &m_fdsetSet);
if (m_iTimeout != -1)
setTimeout(m_iTimeout);
m_SockAddr.sin_family = m_iFamily_domain;
if (m_sHostname != "")
{
host = gethostbyname(m_sHostname.c_str());
if (host == NULL && m_sIPaddress == "")
{
//TODO: cannot resolv hostname //strerror(errno) -- message
throw Exception("Cannot resolve hostname " + m_sHostname);
}
m_SockAddr.sin_addr.s_addr = *((unsigned long*) host->h_addr);
}
if (m_sIPaddress != "" && host == NULL)
{
m_SockAddr.sin_addr.s_addr = inet_addr(m_sIPaddress.c_str());
}
if (m_iPort != 0)
{
m_SockAddr.sin_port = htons(m_iPort);
}
else
{
//TODO: error INVALID PORT
}
}
void SocketClient::Connect()
{
if (connect(m_socSocket, (sockaddr*) (&m_SockAddr), sizeof(m_SockAddr)) != 0) {
//TODO: exception cannot connect
throw Exception("Cannot connect to server");
}
//std::cout << "Connected.\n"; //DEBUG
}
size_t SocketClient::Send(std::string &data)
{
size_t size_to_send = data.size();
const char *ptr = data.c_str();
size_t sended = 0;
int ret;
while ((size_to_send - sended) > 0)
{
ret = send(m_socSocket, &(ptr[sended]), (int) data.size(), 0);
if (ret == -1) throw Exception("Cannot send data to server, ended at byte:"+std::to_string(sended));
sended += ret;
}
return sended;
}
size_t SocketClient::Recv(std::string &data, bool read_to_close)
{
if (read_to_close)
{
int ret;
std::memset(&m_cBuffer, 0, sizeof(m_cBuffer));
while ((ret = recv(m_socSocket, m_cBuffer, sizeof(m_cBuffer)-1, 0)) > 0)
{
data.insert(data.size(), m_cBuffer);
std::memset(&m_cBuffer, 0, sizeof(m_cBuffer));
}
return data.size();
}
else
{
std::memset(&m_cBuffer, 0, sizeof(m_cBuffer));
int ret = recv(m_socSocket, m_cBuffer, sizeof(m_cBuffer)-1, 0);
data.assign(m_cBuffer);
return ret;
}
}
size_t SocketClient::_devNullRecv()
{
return recv(m_socSocket, m_cBuffer, sizeof(m_cBuffer), 0);
}
void SocketClient::setTimeout(int second)
{
struct timeval timeout;
timeout.tv_sec = second;
timeout.tv_usec = 500;
select((SOCKET) m_socSocket, &m_fdsetSet, NULL, NULL, &timeout);
m_iTimeout = second;
}
SocketClient::~SocketClient()
{
#ifdef _WIN32
closesocket(m_socSocket);
WSACleanup();
#elif __linux__
close(m_socSocket);
#endif
}