-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtcpclient.cpp
More file actions
141 lines (126 loc) · 3.43 KB
/
Copy pathtcpclient.cpp
File metadata and controls
141 lines (126 loc) · 3.43 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
/*
* This file is part of btcontrol
*
* Copyright (C) Christian Ferbar
*
* btcontrol is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* btcontrol is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with btcontrol. If not, see <http://www.gnu.org/licenses/>.
*
*
* client - thread - part (für jeden client ein thread)
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <assert.h>
#include <stdexcept>
// für setsockopt
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <unistd.h>
// für getpeername
#include <arpa/inet.h>
#include <errno.h>
#include "utils.h"
#include "server.h"
#include "tcpclient.h"
#include "BTUtils.h"
#define TAG "TCPClient"
TCPClient::TCPClient(int so) : so(so) {
NOTICEF("TCPClient::TCPClient remote addr: %s", this->getRemoteAddr().c_str());
}
void TCPClient::prepareMessage()
{
int flag = 1;
setsockopt(this->so, IPPROTO_TCP, TCP_CORK, (char *)&flag, sizeof(flag) ); // prepare message, stopsel rein
}
void TCPClient::flushMessage()
{
int flag=0;
setsockopt(this->so, IPPROTO_TCP, TCP_CORK, (char *)&flag, sizeof(flag) ); // message fertig, senden
}
/**
* wartet bis daten daherkommen, macht exception wenn keine innerhalb von timeout gekommen sind
*/
void TCPClient::readSelect(int timeout)
{
struct timeval t;
fd_set set;
t.tv_sec=timeout; t.tv_usec=0;
FD_ZERO(&set); FD_SET(this->so,&set);
int rc;
if((rc=select(this->so+1, &set, NULL, NULL, &t)) <= 0) {
if(rc != 0) {
ERRORF("ClientThread::readSelect error in select(%d)=%d %s", this->so, rc, strerror(errno));
throw std::runtime_error("error select");
}
ERRORF("ClientThread::readSelect timeout in select(%d)=%d timeout=%ds", this->so, rc, timeout);
throw std::runtime_error("timeout reading cmd");
}
}
/**
* destruktor
*/
TCPClient::~TCPClient()
{
this->close();
}
void TCPClient::close() {
::close(this->so);
this->so=-1;
}
std::string TCPClient::getRemoteAddr() {
struct sockaddr_in addr;
socklen_t addrlen=sizeof(addr);
if(getsockname(this->so, (sockaddr*) &addr, &addrlen) == 0) {
if(addr.sin_family == AF_INET) {
struct sockaddr_in peeraddr;
socklen_t peeraddrlen = sizeof(peeraddr);
getpeername(this->so, (sockaddr*) &peeraddr, &peeraddrlen);
std::string ret;
ret.resize(INET_ADDRSTRLEN+1);
inet_ntop(AF_INET, &(peeraddr.sin_addr), (char *) ret.c_str(), INET_ADDRSTRLEN);
return ret;
#ifdef INCL_BT
} else if(addr.sin_family == AF_BLUETOOTH) {
return BTUtils::getRemoteAddr(this->so);
#endif
} else {
ERRORF("TCPClient::getRemoteAddr unknown family:%d", addr.sin_family);
return "unknown";
}
}
ERRORF("getsockname failed");
return "";
}
ssize_t TCPClient::read(void *buf, size_t count) {
try {
return ::myRead(this->so, buf, count);
} catch(...) {
this->close();
throw;
}
}
ssize_t TCPClient::write(const void *buf, size_t count) {
try {
return ::write(this->so, buf, count);
} catch(...) {
this->close();
throw;
}
}