forked from bportaluri/WiFiEsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWiFiEspUdp.cpp
193 lines (148 loc) · 3.79 KB
/
WiFiEspUdp.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
/*--------------------------------------------------------------------
This file is part of the Arduino WiFiEsp library.
The Arduino WiFiEsp library 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.
The Arduino WiFiEsp library 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 The Arduino WiFiEsp library. If not, see
<http://www.gnu.org/licenses/>.
--------------------------------------------------------------------*/
#include "WiFiEsp.h"
#include "WiFiEspUdp.h"
#include "utility/EspDrv.h"
#include "utility/debug.h"
/* Constructor */
WiFiEspUDP::WiFiEspUDP() : _sock(NO_SOCKET_AVAIL) {}
/* Start WiFiUDP socket, listening at local port PORT */
uint8_t WiFiEspUDP::begin(uint16_t port)
{
uint8_t sock = getFirstSocket();
if (sock != NO_SOCKET_AVAIL)
{
EspDrv::startClient("0", port, sock, UDP_MODE);
WiFiEspClass::_server_port[sock] = port;
_sock = sock;
_port = port;
return 1;
}
return 0;
}
/* return number of bytes available in the current packet,
will return zero if parsePacket hasn't been called yet */
int WiFiEspUDP::available()
{
if (_sock != NO_SOCKET_AVAIL)
{
int bytes = EspDrv::availData(_sock);
if (bytes>0)
{
return bytes;
}
}
return 0;
}
/* Release any resources being used by this WiFiUDP instance */
void WiFiEspUDP::stop()
{
if (_sock == NO_SOCKET_AVAIL)
return;
//ServerDrv::stopClient(_sock);
_sock = NO_SOCKET_AVAIL;
}
int WiFiEspUDP::beginPacket(const char *host, uint16_t port)
{
if (_sock == NO_SOCKET_AVAIL)
_sock = getFirstSocket();
if (_sock != NO_SOCKET_AVAIL)
{
//EspDrv::startClient(host, port, _sock, UDP_MODE);
_remotePort = port;
strcpy(_remoteHost, host);
WiFiEspClass::_state[_sock] = _sock;
return 1;
}
return 0;
}
int WiFiEspUDP::beginPacket(IPAddress ip, uint16_t port)
{
char s[18];
sprintf(s, "%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3]);
return beginPacket(s, port);
}
int WiFiEspUDP::endPacket()
{
return 1; //ServerDrv::sendUdpData(_sock);
}
size_t WiFiEspUDP::write(uint8_t byte)
{
return write(&byte, 1);
}
size_t WiFiEspUDP::write(const uint8_t *buffer, size_t size)
{
bool r = EspDrv::sendDataUdp(_sock, _remoteHost, _remotePort, buffer, size);
if (!r)
{
return 0;
}
return size;
}
int WiFiEspUDP::parsePacket()
{
return available();
}
int WiFiEspUDP::read()
{
uint8_t b;
if (!available())
return -1;
bool connClose = false;
EspDrv::getData(_sock, &b, false, &connClose);
return b;
}
int WiFiEspUDP::read(uint8_t* buf, size_t size)
{
if (!available())
return -1;
return EspDrv::getDataBuf(_sock, buf, size);
}
int WiFiEspUDP::peek()
{
uint8_t b;
if (!available())
return -1;
return b;
}
void WiFiEspUDP::flush()
{
// TODO: a real check to ensure transmission has been completed
}
IPAddress WiFiEspUDP::remoteIP()
{
IPAddress ret;
EspDrv::getRemoteIpAddress(ret);
return ret;
}
uint16_t WiFiEspUDP::remotePort()
{
return EspDrv::getRemotePort();
}
////////////////////////////////////////////////////////////////////////////////
// Private Methods
////////////////////////////////////////////////////////////////////////////////
// TODO remove duplication with WiFiEspClient::getFirstSocket()
uint8_t WiFiEspUDP::getFirstSocket()
{
for (int i = 0; i < MAX_SOCK_NUM; i++)
{
if (WiFiEspClass::_state[i] == NA_STATE)
{
return i;
}
}
return SOCK_NOT_AVAIL;
}