2021-03-25 20:00:08 +01:00
|
|
|
#include "wled.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WebSockets server for bidirectional communication
|
|
|
|
*/
|
|
|
|
#ifdef WLED_ENABLE_WEBSOCKETS
|
|
|
|
|
|
|
|
uint16_t wsLiveClientId = 0;
|
|
|
|
unsigned long wsLastLiveTime = 0;
|
|
|
|
//uint8_t* wsFrameBuffer = nullptr;
|
|
|
|
|
|
|
|
#define WS_LIVE_INTERVAL 40
|
|
|
|
|
|
|
|
void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len)
|
|
|
|
{
|
|
|
|
if(type == WS_EVT_CONNECT){
|
|
|
|
//client connected
|
|
|
|
sendDataWs(client);
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("WS client connected."));
|
2021-03-25 20:00:08 +01:00
|
|
|
} else if(type == WS_EVT_DISCONNECT){
|
|
|
|
//client disconnected
|
|
|
|
if (client->id() == wsLiveClientId) wsLiveClientId = 0;
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("WS client disconnected."));
|
2021-03-25 20:00:08 +01:00
|
|
|
} else if(type == WS_EVT_DATA){
|
|
|
|
//data packet
|
|
|
|
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
|
|
|
if(info->final && info->index == 0 && info->len == len){
|
2021-07-08 02:01:17 +02:00
|
|
|
//the whole message is in a single frame and we got all of its data (max. 1450byte)
|
2021-03-25 20:00:08 +01:00
|
|
|
if(info->opcode == WS_TEXT)
|
|
|
|
{
|
2021-08-17 12:47:01 +02:00
|
|
|
if (len > 0 && len < 10 && data[0] == 'p') {
|
|
|
|
//application layer ping/pong heartbeat.
|
|
|
|
//client-side socket layer ping packets are unresponded (investigate)
|
|
|
|
client->text(F("pong"));
|
|
|
|
return;
|
|
|
|
}
|
2022-04-16 16:28:43 +02:00
|
|
|
|
2021-03-25 20:00:08 +01:00
|
|
|
bool verboseResponse = false;
|
2022-04-16 16:28:43 +02:00
|
|
|
if (!requestJSONBufferLock(11)) return;
|
|
|
|
|
|
|
|
DeserializationError error = deserializeJson(doc, data, len);
|
|
|
|
JsonObject root = doc.as<JsonObject>();
|
|
|
|
if (error || root.isNull()) {
|
|
|
|
releaseJSONBufferLock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (root["v"] && root.size() == 1) {
|
|
|
|
//if the received value is just "{"v":true}", send only to this client
|
|
|
|
verboseResponse = true;
|
|
|
|
} else if (root.containsKey("lv")) {
|
|
|
|
wsLiveClientId = root["lv"] ? client->id() : 0;
|
|
|
|
} else {
|
|
|
|
verboseResponse = deserializeState(root);
|
|
|
|
}
|
|
|
|
releaseJSONBufferLock(); // will clean fileDoc
|
|
|
|
|
|
|
|
// force broadcast in 500ms after upadting client
|
|
|
|
if (verboseResponse) {
|
|
|
|
sendDataWs(client);
|
|
|
|
lastInterfaceUpdate = millis() - (INTERFACE_UPDATE_COOLDOWN -500);
|
2021-03-25 20:00:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//message is comprised of multiple frames or the frame is split into multiple packets
|
|
|
|
//if(info->index == 0){
|
|
|
|
//if (!wsFrameBuffer && len < 4096) wsFrameBuffer = new uint8_t[4096];
|
|
|
|
//}
|
|
|
|
|
|
|
|
//if (wsFrameBuffer && len < 4096 && info->index + info->)
|
|
|
|
//{
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
if((info->index + len) == info->len){
|
|
|
|
if(info->final){
|
|
|
|
if(info->message_opcode == WS_TEXT) {
|
|
|
|
client->text(F("{\"error\":9}")); //we do not handle split packets right now
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("WS multipart message."));
|
2021-03-25 20:00:08 +01:00
|
|
|
}
|
|
|
|
} else if(type == WS_EVT_ERROR){
|
|
|
|
//error was received from the other end
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("WS error."));
|
2021-03-25 20:00:08 +01:00
|
|
|
|
|
|
|
} else if(type == WS_EVT_PONG){
|
|
|
|
//pong message was received (in response to a ping request maybe)
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("WS pong."));
|
2021-03-25 20:00:08 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void sendDataWs(AsyncWebSocketClient * client)
|
|
|
|
{
|
|
|
|
if (!ws.count()) return;
|
|
|
|
AsyncWebSocketMessageBuffer * buffer;
|
|
|
|
|
2022-05-20 19:35:22 +02:00
|
|
|
while (strip.isUpdating()) yield();
|
|
|
|
|
2022-04-16 16:28:43 +02:00
|
|
|
if (!requestJSONBufferLock(12)) return;
|
|
|
|
|
|
|
|
JsonObject state = doc.createNestedObject("state");
|
|
|
|
serializeState(state);
|
|
|
|
JsonObject info = doc.createNestedObject("info");
|
|
|
|
serializeInfo(info);
|
|
|
|
|
|
|
|
DEBUG_PRINTF("JSON buffer size: %u for WS request.\n", doc.memoryUsage());
|
|
|
|
size_t len = measureJson(doc);
|
|
|
|
|
|
|
|
size_t heap1 = ESP.getFreeHeap();
|
|
|
|
buffer = ws.makeBuffer(len); // will not allocate correct memory sometimes
|
|
|
|
size_t heap2 = ESP.getFreeHeap();
|
|
|
|
if (!buffer || heap1-heap2<len) {
|
2021-11-12 23:33:10 +01:00
|
|
|
releaseJSONBufferLock();
|
2022-04-16 16:28:43 +02:00
|
|
|
ws.closeAll(1013); //code 1013 = temporary overload, try again later
|
|
|
|
ws.cleanupClients(0); //disconnect all clients to release memory
|
|
|
|
return; //out of memory
|
|
|
|
}
|
|
|
|
|
|
|
|
serializeJson(doc, (char *)buffer->get(), len +1);
|
|
|
|
releaseJSONBufferLock();
|
|
|
|
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINT(F("Sending WS data "));
|
2021-03-25 20:00:08 +01:00
|
|
|
if (client) {
|
|
|
|
client->text(buffer);
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("to a single client."));
|
2021-03-25 20:00:08 +01:00
|
|
|
} else {
|
|
|
|
ws.textAll(buffer);
|
2021-07-25 22:44:26 +02:00
|
|
|
DEBUG_PRINTLN(F("to multiple clients."));
|
2021-03-25 20:00:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-01 12:02:04 +01:00
|
|
|
#define MAX_LIVE_LEDS_WS 256
|
|
|
|
|
|
|
|
bool sendLiveLedsWs(uint32_t wsClient)
|
|
|
|
{
|
|
|
|
AsyncWebSocketClient * wsc = ws.client(wsClient);
|
|
|
|
if (!wsc || wsc->queueLength() > 0) return false; //only send if queue free
|
|
|
|
|
|
|
|
uint16_t used = strip.getLengthTotal();
|
2022-02-03 23:37:30 +01:00
|
|
|
uint16_t n = ((used -1)/MAX_LIVE_LEDS_WS) +1; //only serve every n'th LED if count over MAX_LIVE_LEDS_WS
|
2022-03-18 14:08:37 +01:00
|
|
|
uint16_t bufSize = 2 + (used/n)*3;
|
|
|
|
AsyncWebSocketMessageBuffer * wsBuf = ws.makeBuffer(bufSize);
|
2022-02-01 12:02:04 +01:00
|
|
|
if (!wsBuf) return false; //out of memory
|
|
|
|
uint8_t* buffer = wsBuf->get();
|
|
|
|
buffer[0] = 'L';
|
|
|
|
buffer[1] = 1; //version
|
|
|
|
|
|
|
|
uint16_t pos = 2;
|
2022-03-18 14:24:10 +01:00
|
|
|
for (uint16_t i= 0; pos < bufSize -2; i += n)
|
2022-02-01 12:02:04 +01:00
|
|
|
{
|
|
|
|
uint32_t c = strip.getPixelColor(i);
|
|
|
|
buffer[pos++] = qadd8(W(c), R(c)); //R, add white channel to RGB channels as a simple RGBW -> RGB map
|
|
|
|
buffer[pos++] = qadd8(W(c), G(c)); //G
|
|
|
|
buffer[pos++] = qadd8(W(c), B(c)); //B
|
|
|
|
}
|
|
|
|
|
|
|
|
wsc->binary(wsBuf);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-25 20:00:08 +01:00
|
|
|
void handleWs()
|
|
|
|
{
|
|
|
|
if (millis() - wsLastLiveTime > WS_LIVE_INTERVAL)
|
|
|
|
{
|
2021-12-18 10:25:58 +01:00
|
|
|
#ifdef ESP8266
|
2022-02-20 22:24:11 +01:00
|
|
|
ws.cleanupClients(3);
|
2021-12-18 10:25:58 +01:00
|
|
|
#else
|
2021-03-25 20:00:08 +01:00
|
|
|
ws.cleanupClients();
|
2021-12-18 10:25:58 +01:00
|
|
|
#endif
|
2021-03-25 20:00:08 +01:00
|
|
|
bool success = true;
|
2022-02-03 17:40:44 +01:00
|
|
|
if (wsLiveClientId) success = sendLiveLedsWs(wsLiveClientId);
|
2021-03-25 20:00:08 +01:00
|
|
|
wsLastLiveTime = millis();
|
|
|
|
if (!success) wsLastLiveTime -= 20; //try again in 20ms if failed due to non-empty WS queue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
void handleWs() {}
|
|
|
|
void sendDataWs(AsyncWebSocketClient * client) {}
|
2020-06-26 17:28:35 +02:00
|
|
|
#endif
|