-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar_client.cpp
67 lines (57 loc) · 1.68 KB
/
car_client.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
#include "car_client.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <iostream>
#include <ctime>
#include <cstring>
#include <cstdlib>
CarClient::CarClient(CarState* state, int fd_socket):
state(state),
fd_socket(fd_socket){}
CarClient::~CarClient() {
thread_on = 0;
std::cout<< "CLOSING CLIENT!" << std::endl;
}
void CarClient::Start(){
client_thread = std::unique_ptr<std::thread>(new std::thread(&CarClient::SyncronizeState, this));
client_thread->detach(); //lasam sa se crashuiasca singur
}
void CarClient::SyncronizeState(){
/*Initializing variables */
fd_set fd_reading;
int max_size = 1000;
struct timeval timeout;
FD_ZERO(&fd_reading);
FD_SET(fd_socket, &fd_reading);
timeout.tv_sec = 60;
timeout.tv_usec = 0;
/*Reading loop*/
int retval;
while(thread_on) {
char msg[1000];
int recv_size = recv(fd_socket, msg, max_size, 0);
int speed=0;
msg[recv_size] = '\0';
if(msg[0] != 0x01 && msg[0] != 0x02 && msg[0] != 0x03) {
std::string message;
message=std::string(msg);
std::cout<<"Receptionat: "<<message<<std::endl;
std::size_t pos = message.find(" ");
if(pos < message.size()){ // Message of 2 arguments
std::string string_speed = message.substr (pos);
message = message.substr (0,pos);
speed = std::stoi(string_speed);
state->update_motor_direction(message);
state->update_motor_speed(speed);
}
else //Single argument message
state->update_motor_direction(message);
}
else
state->update_continental(msg);
}
return;
}