-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathBlynkSocket.h
157 lines (130 loc) · 3.68 KB
/
BlynkSocket.h
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
/**
* @file BlynkSocket.h
* @author Volodymyr Shymanskyy
* @license This project is released under the MIT License (MIT)
* @copyright Copyright (c) 2015 Volodymyr Shymanskyy
* @date Mar 2015
* @brief
*/
#ifndef BlynkSocket_h
#define BlynkSocket_h
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netdb.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <arpa/inet.h>
#include <Blynk/BlynkProtocol.h>
class BlynkTransportSocket
{
public:
BlynkTransportSocket()
: sockfd(-1), domain(NULL), port(0)
{}
void begin(const char* h, uint16_t p) {
this->domain = h;
this->port = p;
}
bool connect()
{
BLYNK_LOG4(BLYNK_F("Connecting to "), domain, ':', port);
struct addrinfo hints;
struct addrinfo *res = NULL; // will point to the results
memset(&hints, 0, sizeof hints); // make sure the struct is empty
hints.ai_family = AF_UNSPEC; // don't care IPv4 or IPv6
hints.ai_socktype = SOCK_STREAM; // TCP stream sockets
// get ready to connect
char port_str[8];
snprintf(port_str, sizeof(port_str), "%u", port);
getaddrinfo(domain, port_str, &hints, &res);
if (res == NULL) {
BLYNK_LOG1(BLYNK_F("Cannot get addr info"));
return false;
}
if ((sockfd = ::socket(res->ai_family, res->ai_socktype, res->ai_protocol)) < 0)
{
BLYNK_LOG1(BLYNK_F("Can't create socket"));
return false;
}
if (::connect(sockfd, res->ai_addr, res->ai_addrlen) < 0)
{
BLYNK_LOG2(BLYNK_F("Can't connect to "), domain);
return false;
}
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 1000;
setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct timeval));
int one = 1;
setsockopt(sockfd, SOL_TCP, TCP_NODELAY, &one, sizeof(one));
freeaddrinfo(res); // TODO: Leak here
return true;
}
void disconnect()
{
if (sockfd != -1) {
while (::close(sockfd) < 0) {
usleep(10000);
}
sockfd = -1;
}
}
size_t read(void* buf, size_t len) {
ssize_t rlen = ::read(sockfd, buf, len);
if (rlen == -1) {
//BLYNK_LOG4("Read error ", errno, ": ", strerror(errno));
if (errno == ETIMEDOUT || errno == EWOULDBLOCK || errno == EAGAIN) {
return 0;
}
disconnect();
return -1;
}
return rlen;
}
size_t write(const void* buf, size_t len) {
return ::write(sockfd, buf, len);
}
bool connected() {
return sockfd >= 0;
}
int available() {
if (!connected()) {
return 0;
}
int count = 0;
if (0 == ioctl(sockfd, FIONREAD, &count)) {
if (!count) {
usleep(10000); // not to stall CPU with 100% load
}
return count;
}
return 0;
}
protected:
int sockfd;
const char* domain;
uint16_t port;
};
class BlynkSocket
: public BlynkProtocol<BlynkTransportSocket>
{
typedef BlynkProtocol<BlynkTransportSocket> Base;
public:
BlynkSocket(BlynkTransportSocket& transp)
: Base(transp)
{}
void begin(const char* auth,
const char* domain = BLYNK_DEFAULT_DOMAIN,
uint16_t port = BLYNK_DEFAULT_PORT)
{
Base::begin(auth);
this->conn.begin(domain, port);
}
};
#endif