-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.cpp
More file actions
425 lines (350 loc) · 12.8 KB
/
Copy pathClient.cpp
File metadata and controls
425 lines (350 loc) · 12.8 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
* Client.cpp
* Created on: Jun 9, 2016
* Author: nicole
*/
#include "Client.h"
/*************** Private Functions **************************************/
/*************** Public Functions **************************************/
/**
* @brief: Constructor - default ctor.
*/
Client::Client( const std::string clientName): eventIdSent(0),
eventIdRequest(0), clientName( clientName), _registered(false),
_commandType(0)
{
time_t current_time;
struct tm * time_info;
char timeString[9]; // space for "HH:MM:SS\0"
time(¤t_time);
time_info = localtime( ¤t_time);
strftime( timeString, sizeof(timeString), "%H%M%S", time_info);
std::string logName = clientName + "_" + std::string(timeString) + ".log";
_logger = new Logger( logName);
}
/**
* destructor
*/
Client::~Client()
{
/* close server log and delete instance */
delete _logger;
}
/**
* @brief: log response to client log file.
*/
void Client::logToClient( const std::string response)
{
_logger->logCommand( response);
}
/**
* @brief: Every error message in the client log(except system call error)
* should be in the following format:
* HH:MM:SS \tERROR\t<function name>\t<error description>.\n
*/
void Client::logClientError( std::string func, std::string desc)
{
std::string errStr;
errStr = "ERROR\t" + func + '\t' + desc;
logToClient( errStr);
}
/**
* @brief: validate that the client command is valid: meaning that the
* command exist in the server API and the arguments number is valid
* and the arguments chars length is valid.
* @return: true is client request command from server is valid.
*/
bool Client::validateCommand( char* buffer)
{
std::vector<std::string> tokens;
std::string commLine( buffer);
std::string errMsg;
CommandParser::tokenize( commLine, " ", tokens);
std::string command = tokens[0];
size_t hasNewLine = 0;
size_t found = command.find("\n");
if (found != std::string::npos) {
command = command.substr( 0, found);
}
/* transform first command word to upper case */
std::transform( command.begin(), command.end(),command.begin(), ::toupper);
_commandType = CommandParser::getCommandType( command);
bool valid = true;
switch( _commandType)
{
case REGISTER:
/* REGISTER has no arguments */
if (tokens.size() > 1) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
}
if ( _registered) { // if it's true then client already registered
errMsg = CommandParser::logCommandError( clientName,
ALREADY_REGISTER);
valid = false;
}
break;
case CREATE:
if ( !_registered) { // if false then client didn't register yet
errMsg =CommandParser::logCommandError(clientName,NO_REGISTER);
valid = false;
}
if (tokens.size() < 4) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
} else {
if (tokens[1].length() > MAX_TITLE) {
errMsg = CommandParser::logCommandError( clientName,
INVALID_ARG_COMMAND, command, tokens[1]);
valid = false;
}
if ( tokens[2].length() > MAX_DATE) {
errMsg = CommandParser::logCommandError( clientName,
INVALID_ARG_COMMAND, command, tokens[2]);
valid = false;
}
if ( tokens.size() > 4) {
CommandParser::joinTokens( tokens, " ", 3);
}
if ( tokens[3].length() > MAX_DESC) {
errMsg = CommandParser::logCommandError( clientName,
INVALID_ARG_COMMAND, command, tokens[3]);
valid = false;
}
}
break;
case UNREGISTER:
if ( !_registered) { // if false then client didn't register yet
errMsg =CommandParser::logCommandError(clientName,NO_REGISTER);
valid = false;
}
if (tokens.size() > 1) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
}
break;
case SEND_RSVP:
if ( !_registered) { // if false then client didn't register yet
errMsg =CommandParser::logCommandError(clientName,NO_REGISTER);
valid = false;
}
/* should have an evendId numeric string */
if (tokens.size() < 2) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
} else {
hasNewLine = tokens[1].find("\n");
if (hasNewLine != std::string::npos){
tokens[1] = tokens[1].substr( 0, hasNewLine);
}
if ( CommandParser::isStrNumber( tokens[1])) {
eventIdSent = stoi( tokens[1]);
} else {
errMsg = CommandParser::logCommandError( clientName,
INVALID_ARG_COMMAND, command, tokens[1]);
valid = false;
}
}
break;
case GET_RSVPS_LIST:
if ( !_registered) { // if false then client didn't register yet
errMsg =CommandParser::logCommandError(clientName,NO_REGISTER);
valid = false;
}
/* should have an evendId numeric string */
if (tokens.size() < 2) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
} else {
hasNewLine = tokens[1].find("\n");
if (hasNewLine != std::string::npos){
tokens[1] = tokens[1].substr( 0, hasNewLine);
}
if ( CommandParser::isStrNumber( tokens[1])) {
eventIdRequest = stoi( tokens[1]);
} else {
errMsg = CommandParser::logCommandError( clientName,
INVALID_ARG_COMMAND, command, tokens[1]);
valid = false;
}
}
break;
case GET_TOP_5:
if ( !_registered) { // if false then client didn't register yet
errMsg =CommandParser::logCommandError(clientName,NO_REGISTER);
valid = false;
}
if (tokens.size() > 1) {
errMsg = CommandParser::logCommandError( clientName, MISS_ARGS,
command);
valid = false;
}
break;
case ILLEGAL:
errMsg = CommandParser::logCommandError( clientName,
COMMAND_NOTEXIST);
valid = false;
break;
default:
errMsg = CommandParser::logCommandError( clientName,
COMMAND_NOTEXIST);
valid = false;
break;
}
logToClient( errMsg);
return valid;
}
/**
* @brief: get server response for client request - then identify it's
* command type and pass it to the relevant log response method for final
* logging in the client log file.
*/
void Client::log_response( const std::string response)
{
/* log server response according to the last command type user requested*/
switch( _commandType)
{
case REGISTER:
logRegister_response( response);
break;
case CREATE:
logCreate_response( response);
break;
case UNREGISTER:
logUnregister_response( response);
break;
case SEND_RSVP:
logRSVP_response( response);
break;
case GET_RSVPS_LIST:
logEventList_response( response);
break;
case GET_TOP_5:
logGetTop5_response( response);
break;
}
}
/**
* @brief: log in client log the server response about REGISTER.
*/
void Client::logRegister_response( const std::string response)
{
std::string logClient;
if ( response.find( "ERROR: ") != std::string::npos) {
logClient = "ERROR: the client " + clientName + CLIENT_REGISTERED;
_registered = false;
delete _logger; /* first close and delete logger instance */
/*Tal said in the forum if client tries to register with taken
* client name, it's program should exit */
exit(0);
} else if ( response.find( "SUCCESS") != std::string::npos) {
_registered = true;
logClient = "Client " + clientName + REGISTER_SUCCESS;
}
logToClient( logClient);
}
/**
* @brief: log in client log the server response about UNREGISTER.
*/
void Client::logUnregister_response( const std::string response)
{
std::string logClient;
if (response.find( "ERROR: ") != std::string::npos) {
logClient = "ERROR: failed to unregister client " + clientName + ".";
logToClient( logClient);
} else if (response.find( "SUCCESS") != std::string::npos) {
logClient = "Client " + clientName + " was unregistered successfully.";
logToClient( logClient);
_registered = false;
delete _logger;
exit(0);
}
}
/**
* @brief: log in client log the server response about CREATE.
*/
void Client::logCreate_response( const std::string response)
{
std::string eventId = response;
std::string logClient, errMsg;
std::size_t foundError;
foundError = response.find( "ERROR: ");
if (foundError != std::string::npos) {
errMsg = response.substr( foundError);
logClient = "ERROR: failed to create the event:" + errMsg;
} else if ( response.find("REGISTER") != std::string::npos) {
logClient = NOT_REGISTERED;
} else {
logClient = response;
}
logToClient( logClient);
}
/**
* @brief: log in client log the server response about SEND_RSVP.
*/
void Client::logRSVP_response( const std::string response)
{
std::string eventID = std::to_string( eventIdSent);
std::string eventId = response;
std::string logClient, errMsg;
std::size_t foundError;
foundError = response.find( "ERROR: ");
if (foundError != std::string::npos) {
errMsg = response.substr( foundError);
logClient="ERROR: failed to send RSVP to event id "+eventID+": "+errMsg;
} else if ( response.find("REGISTER") != std::string::npos) {
logClient = NOT_REGISTERED;
} else if (response.find("SUCCESS") != std::string::npos) {
logClient = "RSVP to event id "+eventID+" was received successfully.";
} else {
logClient = "RSVP to event id " + eventID + " was already sent.";
}
logToClient( logClient);
}
/**
* @brief: log in client log the server response about GET_RSVPS_LIST.
*/
void Client::logEventList_response( const std::string response)
{
std::string eventID = std::to_string( eventIdSent);
std::string eventId = response;
std::string logClient, errMsg;
std::size_t foundError;
foundError = response.find( "ERROR: ");
if (foundError != std::string::npos) {
errMsg = response.substr( foundError);
logClientError("GET_RSVPS_LIST", errMsg);
} else if (response.find("REGISTER") != std::string::npos) {
logClient = NOT_REGISTERED;
logToClient( logClient);
} else {
logClient="The RSVP's list for event id "+eventID+" is: "+response+".";
logToClient( logClient);
}
}
/**
* @brief: log in client log the server response about GET_TOP_5.
*/
void Client::logGetTop5_response( const std::string response)
{
std::string eventID = std::to_string( eventIdSent);
std::string eventId = response;
std::string logClient, errMsg;
std::size_t foundError;
logClient = "Top 5 newest events are:\n<list of events>.\n";
foundError = response.find( "ERROR: ");
if (foundError != std::string::npos) {
errMsg = response.substr( foundError);
logClient = "ERROR: failed to receive top 5 newest events: " + errMsg;
} else if (response.find("REGISTER") != std::string::npos) {
logClient = NOT_REGISTERED;
} else {
logClient = "Top 5 newest events are:\n" + response;
}
logToClient( logClient);
}