-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGSocket.cpp
executable file
·229 lines (207 loc) · 8.4 KB
/
GSocket.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
* File: GSocket.cpp
* Author: gedas
*
* Created on Sekmadienis, 2016, kovas 27, 04.51
*/
#include "GSocket.h"
#include "GCommandExecution.h"
#include "TCPClientGSocket.h"
#include "exitCodes.h"
// TODO: lookupus perdaryti per objekta
GServer::GSocket::GSocket(GServer::GConfig* conf, GLogger* logger,
GCommandExecution* command) :
MAX_BUFFER_SIZE(conf->getIntSetting("MAX_SOCKET_BUFFER_SIZE")) {
// Nustatau objekto pavadinima
this->className = this->className + ":GSocket";
// Nustatau numatytaja socket_descritptor reiksme
this->socket_descriptor = -1;
// Nustatau logeri
this->logger = logger;
// Nustatau komandu vykdymo objekta
this->commands = command;
// Nustatu buferio dydi
this->buffer.resize(conf->getIntSetting("SOCKET_BUFFER_SIZE"));
// Spausdinu nustatytai buferio dydi
this->logger->logDebug(this->className, "Sukurto buferio dydis: " +
std::to_string(this->buffer.size()));
// Tirkinu ar pavyko sukurti buferi
if (this->buffer.size() < conf->getIntSetting("SOCKET_BUFFER_SIZE")) {
// Buferio dydis per mazas
this->logger->logError(this->className,
"Nepavyko sukurti norimo dydzio buferio");
// Nutraukiamas programos darbas
exit(GServer::EXIT_CODES::SOCKET_BUFFER_TO_SMALL);
}
// Priskiriu remoteAddress strukturos dydi
this->remoteAddressSize = sizeof remoteAddress;
// Atspausdinu derinimo inforamcija
this->logger->logDebug(this->className, "socket_descriptor reiksme: " +
std::to_string(this->socket_descriptor));
// Pranesu apie objekto sukurima
this->logger->logDebug(this->className, "Objektas sukurtas");
}
GServer::GSocket::~GSocket() {
this->close();
this->logger->logDebug(this->className, "Objektas sunaikintas");
}
int GServer::GSocket::resizeBuffer(int newSize) {
// Tikrinu ar nuajas dydis nera didesnis nei leistinas
if (newSize > this->MAX_BUFFER_SIZE) {
this->logger->logInfo(this->className, "Norimas dydis: " +
std::to_string(newSize) +
" per didelis. Nustatomas maksimalus dydis: " +
std::to_string(this->MAX_BUFFER_SIZE));
// Didenis, nustatau maksimalu dydi
return this->setBufferSize(this->MAX_BUFFER_SIZE);
}
// Naujas dydis mazesnis nei nurimas
this->logger->logInfo(this->className, "Nustatau tauja dydi: " + std::to_string(newSize));
// Nustatau nauja dydi
return this->setBufferSize(newSize);
}
int GServer::GSocket::setBufferSize(int newSize) {
// Nustatau nauja buferio dydi
this->buffer.resize(newSize);
// Grazinu nauja dydi
return this->buffer.size();
}
int GServer::GSocket::sendData(char* data, int size) {
this->logger->logError(this->className, "Neigyvendinta sendData funkcija");
return -1;
}
int GServer::GSocket::reciveData(char* buffer, int size) {
this->logger->logError(this->className, "Neigyvendinta reciveData funkcija");
return -1;
}
int GServer::GSocket::createSocket(char* ip, char* port, int socketFamily,
int socketType, int socketProtocol, int socketFlag, addrinfo *& result) {
// Grazinamo socketo numeris
int returnValue = -1;
// Strukturos kuriso saugos visa inforamcija apie norima adresa ir prievada
addrinfo hints;
// Isvalo filtruojancia
memset(&hints, sizeof (hints), sizeof (struct addrinfo));
// Nustatom norimus parametrus
hints.ai_family = socketFamily;
hints.ai_socktype = socketType;
hints.ai_protocol = socketProtocol;
hints.ai_flags = socketFlag;
// Bandau gauti galimus rezultatus
int searchResult = getaddrinfo(ip, port, &hints, (struct addrinfo **) &result);
// TIkrinu ar neivyko klaida
if (searchResult != 0) {
// Ivyko klaida
// Pranesu kas ivyko
this->logger->logError(this->className, gai_strerror(searchResult));
exit(GServer::EXIT_CODES::UNABLE_TO_GET_ADDRESS_INFO);
}
// Begu per visus galimus variantus
for (addrinfo* i = result; i != NULL; i = i->ai_next) {
returnValue = socket(i->ai_family, i->ai_socktype, i->ai_protocol);
// Tikrinu ar pavyko sukurti socketa
if (returnValue == -1) {
// Nepavyko, einu per galimus varaintus toliau
this->logger->logDebug(this->className, "Nepavyko sukurti socketo");
continue;
} else
// Pavyko, baigiu eijima per variantus
break;
}
// Tirkinu ar pavyko kazka gauti
if (returnValue == -1) {
this->logger->logDebug(this->className, "Nepavyko sukurti socketo");
this->logger->logError(this->className, strerror(errno));
exit(GServer::EXIT_CODES::UNABLE_TO_CREATE_SOCKET);
}
// Grazinu socketo numeri
this->logger->logDebug(this->className, "Grazinamo socketo numeris- " +
std::to_string(returnValue));
return returnValue;
}
void GServer::GSocket::close() {
this->logger->logDebug(this->className, "Uzveriamas socket. ID: " +
std::to_string(this->socket_descriptor));
shutdown(this->socket_descriptor, SHUT_RDWR);
}
int GServer::GSocket::createServerScoket(char* ip, char* port,
int socketFamily, int socketType, int socketProtocol, int socketFlag) {
// Kintamasis, kuris saugo gautus duomenis is adreso ir porto kombinacijos
addrinfo* result;
// Kuriu socketa
this->socket_descriptor = createSocket(ip, port, socketFamily, socketType,
socketProtocol, socketFlag, result);
// Ruosiu klausimuisi
bindSocket(result);
// Pradedu klausimasi
listenSocket();
}
void GServer::GSocket::bindSocket(addrinfo* result) {
// Tirkinu ar pavyko prauosti sokceta klausimuisi
if (bind(this->socket_descriptor, result->ai_addr, result->ai_addrlen)
!= 0) {
// Nepavyko paruosti
this->logger->logError(this->className, strerror(errno));
exit(GServer::EXIT_CODES::UNABLE_TO_BIND_SOCKET);
}
this->logger->logDebug(this->className, "SOCKET " +
std::to_string(this->socket_descriptor) + " paruostas klausimuisi");
}
void GServer::GSocket::listenSocket() {
// Tikrinu ar pavyko klausytis
if (listen(this->socket_descriptor, SOMAXCONN) != 0) {
// Nepavyko klausytis
this->logger->logError(this->className, strerror(errno));
exit(GServer::EXIT_CODES::UNABLE_TO_LISTEN_ON_SOCKET);
}
this->logger->logDebug(this->className, "SOCKET " +
std::to_string(this->socket_descriptor) + " pradejo klausimasi");
}
void GServer::GSocket::checkMaxDescriptor(int& maxDescriptor) {
// Tikrinu ar socketo descriptrius yra diednis uz maksimalu
if (this->socket_descriptor > maxDescriptor) {
// Didesnis, nustatau nauja
maxDescriptor = this->socket_descriptor;
this->logger->logDebug(this->className, "Nustatytas naujas didziausias "
"descriptrius: " + std::to_string(maxDescriptor));
}
}
int GServer::GSocket::getSocket() {
return this->socket_descriptor;
}
int GServer::GSocket::acceptConnectionDescriptor() {
// Priimu nauja jungti
int descriptor = accept(this->socket_descriptor, (struct sockaddr *)
& this->remoteAddress, &this->remoteAddressSize);
// Tirkinu ar pavyko priimti
if (descriptor <= 0) {
// Nepavkus priimti
this->logger->logError(this->className, strerror(errno));
return -1;
}
// Pavyko priimti
char clientIP[NI_MAXHOST];
char clientPort[NI_MAXSERV];
// Gaunu prisjungusio kliento duomenis
getnameinfo((struct sockaddr *) &remoteAddress, remoteAddressSize,
clientIP, sizeof (clientIP), clientPort, sizeof (clientPort),
NI_NUMERICHOST | NI_NUMERICSERV);
this->logger->logInfo(this->className, "Prisjunge naujas klientas- " +
std::string(clientIP) + ":" + std::string(clientPort));
return descriptor;
}
GServer::GSocket* GServer::GSocket::acceptConnection(GServer::GConfig* conf,
int &maxDescriptor) {
this->logger->logError(this->className,
"Funkcija acceptConnection neigyvendinta");
return NULL;
}
int GServer::GSocket::reciveData(){
int returnValue = -1;
int headerSize = sizeof (header);
returnValue = this->reciveData(this->buffer.data(), this->buffer.size());
// Perduodu duomenis apdorojimui
this->commands->executeCommand(this->buffer, returnValue, (GSocket *) this);
//returnValue = this->sendData(this->buffer.data(), returnValue);
return returnValue;
}