forked from forkineye/ESPAsyncE131
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESPAsyncE131.cpp
225 lines (190 loc) · 6.32 KB
/
ESPAsyncE131.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
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
/*
* ESPAsyncE131.cpp
*
* Project: ESPAsyncE131 - Asynchronous E.131 (sACN) library for Arduino ESP8266 and ESP32
* Copyright (c) 2019 Shelby Merrick
* http://www.forkineye.com
*
* This program is provided free for you to use in any way that you wish,
* subject to the laws and regulations where you are using it. Due diligence
* is strongly suggested before using this code. Please give credit where due.
*
* The Author makes no warranty of any kind, express or implied, with regard
* to this program or the documentation contained in this document. The
* Author shall not be liable in any event for incidental or consequential
* damages in connection with, or arising out of, the furnishing, performance
* or use of these programs.
*
*/
#include "ESPAsyncE131.h"
#include <string.h>
// E1.17 ACN Packet Identifier
const byte ESPAsyncE131::ACN_ID[12] = { 0x41, 0x53, 0x43, 0x2d, 0x45, 0x31, 0x2e, 0x31, 0x37, 0x00, 0x00, 0x00 };
// Constructor
ESPAsyncE131::ESPAsyncE131(uint8_t buffers) {
pbuff = nullptr;
if (buffers)
{
pbuff = RingBuf_new (sizeof (e131_packet_t), buffers);
}
stats.num_packets = 0;
stats.packet_errors = 0;
}
/////////////////////////////////////////////////////////
//
// Public begin() members
//
/////////////////////////////////////////////////////////
bool ESPAsyncE131::begin(e131_listen_t type, uint16_t universe, uint8_t n)
{
return begin (type, E131_ListenPort, universe, n);
}
bool ESPAsyncE131::begin (e131_listen_t type, ESPAsyncE131PortId UdpPortId, uint16_t universe, uint8_t n)
{
bool success = false;
E131_ListenPort = UdpPortId;
if (type == E131_UNICAST)
success = initUnicast ();
if (type == E131_MULTICAST)
success = initMulticast (universe, n);
return success;
}
/////////////////////////////////////////////////////////
//
// Private init() members
//
/////////////////////////////////////////////////////////
bool ESPAsyncE131::initUnicast() {
bool success = false;
delay(100);
if (udp.listen(E131_ListenPort)) {
udp.onPacket(std::bind(&ESPAsyncE131::parsePacket, this,
std::placeholders::_1));
success = true;
}
return success;
}
bool ESPAsyncE131::initMulticast(uint16_t universe, uint8_t n) {
bool success = false;
delay(100);
IPAddress address = IPAddress(239, 255, ((universe >> 8) & 0xff),
((universe >> 0) & 0xff));
if (udp.listenMulticast(address, E131_ListenPort)) {
ip4_addr_t ifaddr;
ip4_addr_t multicast_addr;
ifaddr.addr = static_cast<uint32_t>(WiFi.localIP());
for (uint8_t i = 1; i < n; i++) {
multicast_addr.addr = static_cast<uint32_t>(IPAddress(239, 255,
(((universe + i) >> 8) & 0xff), (((universe + i) >> 0)
& 0xff)));
igmp_joingroup(&ifaddr, &multicast_addr);
}
udp.onPacket(std::bind(&ESPAsyncE131::parsePacket, this,
std::placeholders::_1));
success = true;
}
return success;
}
/////////////////////////////////////////////////////////
//
// Packet parsing - Private
//
/////////////////////////////////////////////////////////
void ESPAsyncE131::parsePacket(AsyncUDPPacket _packet)
{
e131_error_t error = ERROR_NONE;
sbuff = reinterpret_cast<e131_packet_t *>(_packet.data());
do // once
{
if (memcmp(sbuff->acn_id, ESPAsyncE131::ACN_ID, sizeof(sbuff->acn_id)))
{
error = ERROR_ACN_ID;
break;
}
if (htonl(sbuff->root_vector) != ESPAsyncE131::VECTOR_ROOT)
{
error = ERROR_VECTOR_ROOT;
break;
}
if (htonl(sbuff->frame_vector) != ESPAsyncE131::VECTOR_FRAME)
{
error = ERROR_VECTOR_FRAME;
break;
}
if (sbuff->dmp_vector != ESPAsyncE131::VECTOR_DMP)
{
error = ERROR_VECTOR_DMP;
break;
}
if (sbuff->property_values[0] != 0)
{
error = ERROR_IGNORE;
break;
}
// Are we looknig for a new source?
if((0 != LastAcceptedSource.PdusToIgnore) &&
(sbuff->priority < LastAcceptedSource.priority))
{
// pdu priority is from a lower priority source.
// do not accept until we do not hear from the
// higher priority source for a while.
if(0 != LastAcceptedSource.PdusToIgnore)
{
LastAcceptedSource.PdusToIgnore --;
}
error = ERROR_IGNORE;
break;
}
// remember the priority of the data source and
// set up the delay counter
LastAcceptedSource.PdusToIgnore = NumPdusToIgnoreBeforeSwitchingSources;
LastAcceptedSource.priority = sbuff->priority;
if (PacketCallback) { (*PacketCallback) (sbuff, UserInfo); }
if (pbuff) { pbuff->add (pbuff, sbuff); }
stats.num_packets++;
stats.last_clientIP = _packet.remoteIP();
stats.last_clientPort = _packet.remotePort();
stats.last_seen = millis();
} while(false);
if (error != ERROR_IGNORE)
{
if (Serial)
{
dumpError(error);
}
stats.packet_errors++;
}
}
/////////////////////////////////////////////////////////
//
// Debugging functions - Public
//
/////////////////////////////////////////////////////////
void ESPAsyncE131::dumpError(e131_error_t error) {
switch (error) {
case ERROR_ACN_ID:
Serial.print(F("INVALID PACKET ID: "));
for (uint i = 0; i < sizeof(ACN_ID); i++)
Serial.print(sbuff->acn_id[i], HEX);
Serial.println("");
break;
case ERROR_PACKET_SIZE:
Serial.println(F("INVALID PACKET SIZE: "));
break;
case ERROR_VECTOR_ROOT:
Serial.print(F("INVALID ROOT VECTOR: 0x"));
Serial.println(htonl(sbuff->root_vector), HEX);
break;
case ERROR_VECTOR_FRAME:
Serial.print(F("INVALID FRAME VECTOR: 0x"));
Serial.println(htonl(sbuff->frame_vector), HEX);
break;
case ERROR_VECTOR_DMP:
Serial.print(F("INVALID DMP VECTOR: 0x"));
Serial.println(sbuff->dmp_vector, HEX);
case ERROR_NONE:
break;
case ERROR_IGNORE:
break;
}
}