Refactor, fix ESP32 WebSocketSerial (#13689)
This commit is contained in:
parent
db373f130c
commit
20dc45bca7
|
@ -21,213 +21,132 @@
|
||||||
*/
|
*/
|
||||||
#ifdef ARDUINO_ARCH_ESP32
|
#ifdef ARDUINO_ARCH_ESP32
|
||||||
|
|
||||||
#include "../../inc/MarlinConfig.h"
|
#include "../../inc/MarlinConfigPre.h"
|
||||||
|
|
||||||
#if ENABLED(WIFISUPPORT)
|
#if ENABLED(WIFISUPPORT)
|
||||||
|
|
||||||
#include "WebSocketSerial.h"
|
#include "WebSocketSerial.h"
|
||||||
|
|
||||||
extern WebSocketSerial webSocketSerial;
|
|
||||||
|
|
||||||
#include "wifi.h"
|
#include "wifi.h"
|
||||||
#include <AsyncTCP.h>
|
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
|
|
||||||
struct ring_buffer_r {
|
WebSocketSerial webSocketSerial;
|
||||||
unsigned char buffer[RX_BUFFER_SIZE];
|
AsyncWebSocket ws("/ws"); // TODO Move inside the class.
|
||||||
volatile ring_buffer_pos_t head, tail;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ring_buffer_t {
|
// RingBuffer impl
|
||||||
unsigned char buffer[256];
|
|
||||||
volatile uint8_t head, tail;
|
|
||||||
};
|
|
||||||
|
|
||||||
ring_buffer_r rx_buffer = { { 0 }, 0, 0 };
|
#define NEXT_INDEX(I, SIZE) ((I + 1) & (ring_buffer_pos_t)(SIZE - 1))
|
||||||
ring_buffer_t tx_buffer = { { 0 }, 0, 0 };
|
|
||||||
|
|
||||||
static bool _written;
|
RingBuffer::RingBuffer(ring_buffer_pos_t size)
|
||||||
|
: data(new uint8_t[size]),
|
||||||
|
read_index(0),
|
||||||
|
write_index(0),
|
||||||
|
size(size)
|
||||||
|
{}
|
||||||
|
|
||||||
#if ENABLED(EMERGENCY_PARSER)
|
RingBuffer::~RingBuffer() { delete[] data; }
|
||||||
static EmergencyParser::State emergency_state; // = EP_RESET
|
|
||||||
#endif
|
|
||||||
|
|
||||||
AsyncWebSocket ws("/ws"); // access at ws://[esp ip]/ws
|
ring_buffer_pos_t RingBuffer::write(const uint8_t c) {
|
||||||
|
const ring_buffer_pos_t n = NEXT_INDEX(write_index, size);
|
||||||
|
|
||||||
FORCE_INLINE int next_rx_index(const int i) { return (ring_buffer_pos_t)(i + 1) & (ring_buffer_pos_t)(RX_BUFFER_SIZE - 1); }
|
if (n != read_index) {
|
||||||
FORCE_INLINE int next_tx_index(const int i) { return (ring_buffer_pos_t)(i + 1) & (ring_buffer_pos_t)(TX_BUFFER_SIZE - 1); }
|
this->data[write_index] = c;
|
||||||
|
write_index = n;
|
||||||
static void addToBuffer(uint8_t * const data, const size_t len) {
|
return 1;
|
||||||
for (size_t i = 0; i < len; i++) {
|
|
||||||
ring_buffer_pos_t h = rx_buffer.head;
|
|
||||||
const ring_buffer_pos_t t = rx_buffer.tail, n = next_rx_index(h);
|
|
||||||
|
|
||||||
if (n != t) { rx_buffer.buffer[h] = data[i]; h = n; }
|
|
||||||
|
|
||||||
// TODO: buffer is full, handle?
|
|
||||||
|
|
||||||
rx_buffer.head = h;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: buffer is full, handle?
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle WebSocket event
|
ring_buffer_pos_t RingBuffer::write(const uint8_t *buffer, ring_buffer_pos_t size) {
|
||||||
static void onEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, void * arg, uint8_t *data, size_t len) {
|
ring_buffer_pos_t written = 0;
|
||||||
switch (type) {
|
for (ring_buffer_pos_t i = 0; i < size; i++) {
|
||||||
case WS_EVT_CONNECT: client->ping(); break; // client connected
|
written += write(buffer[i]);
|
||||||
case WS_EVT_DISCONNECT: // client disconnected
|
|
||||||
case WS_EVT_ERROR: // error was received from the other end
|
|
||||||
case WS_EVT_PONG: break; // pong message was received (in response to a ping request maybe)
|
|
||||||
case WS_EVT_DATA: { // data packet
|
|
||||||
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
|
||||||
if (info->opcode == WS_TEXT || info->message_opcode == WS_TEXT)
|
|
||||||
addToBuffer(data, len);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
return written;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public Methods
|
int RingBuffer::available(void) {
|
||||||
|
return (size - read_index + write_index) & (size - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
int RingBuffer::peek(void) {
|
||||||
|
return available() ? data[read_index] : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int RingBuffer::read(void) {
|
||||||
|
if (available()) {
|
||||||
|
const int ret = data[read_index];
|
||||||
|
read_index = NEXT_INDEX(read_index, size);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
ring_buffer_pos_t RingBuffer::read(uint8_t *buffer) {
|
||||||
|
ring_buffer_pos_t len = available();
|
||||||
|
|
||||||
|
for(ring_buffer_pos_t i = 0; read_index != write_index; i++) {
|
||||||
|
buffer[i] = data[read_index];
|
||||||
|
read_index = NEXT_INDEX(read_index, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RingBuffer::flush(void) { read_index = write_index; }
|
||||||
|
|
||||||
|
// WebSocketSerial impl
|
||||||
|
WebSocketSerial::WebSocketSerial()
|
||||||
|
: rx_buffer(RingBuffer(RX_BUFFER_SIZE)),
|
||||||
|
tx_buffer(RingBuffer(TX_BUFFER_SIZE))
|
||||||
|
{}
|
||||||
|
|
||||||
void WebSocketSerial::begin(const long baud_setting) {
|
void WebSocketSerial::begin(const long baud_setting) {
|
||||||
ws.onEvent(onEvent);
|
ws.onEvent([this](AsyncWebSocket *server, AsyncWebSocketClient *client, AwsEventType type, void *arg, uint8_t *data, size_t len) {
|
||||||
server.addHandler(&ws); // attach AsyncWebSocket
|
switch (type) {
|
||||||
|
case WS_EVT_CONNECT: client->ping(); break; // client connected
|
||||||
|
case WS_EVT_DISCONNECT: // client disconnected
|
||||||
|
case WS_EVT_ERROR: // error was received from the other end
|
||||||
|
case WS_EVT_PONG: break; // pong message was received (in response to a ping request maybe)
|
||||||
|
case WS_EVT_DATA: { // data packet
|
||||||
|
AwsFrameInfo * info = (AwsFrameInfo*)arg;
|
||||||
|
if (info->opcode == WS_TEXT || info->message_opcode == WS_TEXT)
|
||||||
|
this->rx_buffer.write(data, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
server.addHandler(&ws);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebSocketSerial::end() { }
|
void WebSocketSerial::end() { }
|
||||||
|
int WebSocketSerial::peek(void) { return rx_buffer.peek(); }
|
||||||
|
int WebSocketSerial::read(void) { return rx_buffer.read(); }
|
||||||
|
int WebSocketSerial::available(void) { return rx_buffer.available(); }
|
||||||
|
void WebSocketSerial::flush(void) { rx_buffer.flush(); }
|
||||||
|
|
||||||
int WebSocketSerial::peek(void) {
|
size_t WebSocketSerial::write(const uint8_t c) {
|
||||||
const int v = rx_buffer.head == rx_buffer.tail ? -1 : rx_buffer.buffer[rx_buffer.tail];
|
size_t ret = tx_buffer.write(c);
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
int WebSocketSerial::read(void) {
|
if (ret && c == '\n') {
|
||||||
const ring_buffer_pos_t h = rx_buffer.head, t = rx_buffer.tail;
|
uint8_t tmp[TX_BUFFER_SIZE];
|
||||||
if (h == t) return -1; // Nothing to read? Return now
|
ring_buffer_pos_t size = tx_buffer.read(tmp);
|
||||||
|
ws.textAll(tmp, size);
|
||||||
const int v = rx_buffer.buffer[t];
|
|
||||||
|
|
||||||
rx_buffer.tail = (ring_buffer_pos_t)(t + 1) & (RX_BUFFER_SIZE - 1); // Advance tail
|
|
||||||
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool WebSocketSerial::available(void) {
|
|
||||||
const ring_buffer_pos_t h = rx_buffer.head, t = rx_buffer.tail;
|
|
||||||
return (ring_buffer_pos_t)(RX_BUFFER_SIZE + h - t) & (RX_BUFFER_SIZE - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WebSocketSerial::flush(void) {
|
|
||||||
ws.textAll("flush");
|
|
||||||
rx_buffer.tail = rx_buffer.head;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if TX_BUFFER_SIZE
|
|
||||||
|
|
||||||
void WebSocketSerial::write(const uint8_t c) {
|
|
||||||
_written = true;
|
|
||||||
|
|
||||||
const uint8_t i = (tx_buffer.head + 1) & (TX_BUFFER_SIZE - 1);
|
|
||||||
|
|
||||||
// Store new char. head is always safe to move
|
|
||||||
tx_buffer.buffer[tx_buffer.head] = c;
|
|
||||||
tx_buffer.head = i;
|
|
||||||
|
|
||||||
if (c == '\n') {
|
|
||||||
ws.textAll(tx_buffer.buffer, tx_buffer.head);
|
|
||||||
tx_buffer.head = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebSocketSerial::flushTx(void) {
|
return ret;
|
||||||
ws.textAll("flushTx");
|
|
||||||
if (!_written) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
//void WebSocketSerial::write(const uint8_t c) { _written = true; }
|
|
||||||
//void WebSocketSerial::flushTx(void) { if (!_written) return; }
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Imports from print.h
|
|
||||||
*/
|
|
||||||
|
|
||||||
void WebSocketSerial::print(char c, int base) { print((long)c, base); }
|
|
||||||
void WebSocketSerial::print(unsigned char b, int base) { print((unsigned long)b, base); }
|
|
||||||
void WebSocketSerial::print(int n, int base) { print((long)n, base); }
|
|
||||||
void WebSocketSerial::print(unsigned int n, int base) { print((unsigned long)n, base); }
|
|
||||||
void WebSocketSerial::print(long n, int base) {
|
|
||||||
if (base == 0)
|
|
||||||
write(n);
|
|
||||||
else if (base == 10) {
|
|
||||||
if (n < 0) { print('-'); n = -n; }
|
|
||||||
printNumber(n, 10);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
printNumber(n, base);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebSocketSerial::print(unsigned long n, int base) {
|
size_t WebSocketSerial::write(const uint8_t* buffer, size_t size) {
|
||||||
if (base == 0) write(n); else printNumber(n, base);
|
size_t written = 0;
|
||||||
|
for(size_t i = 0; i < size; i++) {
|
||||||
|
written += write(buffer[i]);
|
||||||
|
}
|
||||||
|
return written;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebSocketSerial::print(double n, int digits) { printFloat(n, digits); }
|
void WebSocketSerial::flushTX(void) {
|
||||||
|
// No need to do anything as there's no benefit to sending partial lines over the websocket connection.
|
||||||
void WebSocketSerial::println(void) { print('\r'); print('\n'); }
|
|
||||||
void WebSocketSerial::println(const String& s) { print(s); println(); }
|
|
||||||
void WebSocketSerial::println(const char c[]) { print(c); println(); }
|
|
||||||
void WebSocketSerial::println(char c, int base) { print(c, base); println(); }
|
|
||||||
void WebSocketSerial::println(unsigned char b, int base) { print(b, base); println(); }
|
|
||||||
void WebSocketSerial::println(int n, int base) { print(n, base); println(); }
|
|
||||||
void WebSocketSerial::println(unsigned int n, int base) { print(n, base); println(); }
|
|
||||||
void WebSocketSerial::println(long n, int base) { print(n, base); println(); }
|
|
||||||
void WebSocketSerial::println(unsigned long n, int base) { print(n, base); println(); }
|
|
||||||
void WebSocketSerial::println(double n, int digits) { print(n, digits); println(); }
|
|
||||||
|
|
||||||
// Private Methods
|
|
||||||
|
|
||||||
void WebSocketSerial::printNumber(unsigned long n, uint8_t base) {
|
|
||||||
if (n) {
|
|
||||||
unsigned char buf[8 * sizeof(long)]; // Enough space for base 2
|
|
||||||
int8_t i = 0;
|
|
||||||
while (n) {
|
|
||||||
buf[i++] = n % base;
|
|
||||||
n /= base;
|
|
||||||
}
|
|
||||||
while (i--)
|
|
||||||
print((char)(buf[i] + (buf[i] < 10 ? '0' : 'A' - 10)));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
print('0');
|
|
||||||
}
|
|
||||||
|
|
||||||
void WebSocketSerial::printFloat(double number, uint8_t digits) {
|
|
||||||
// Handle negative numbers
|
|
||||||
if (number < 0.0) { print('-'); number = -number; }
|
|
||||||
|
|
||||||
// Round correctly so that print(1.999, 2) prints as "2.00"
|
|
||||||
// Use a lookup table for performance
|
|
||||||
constexpr double rounds[] = { 0.5, 0.05, 0.005, 0.0005, 0.00005, 0.000005, 0.0000005, 0.00000005 };
|
|
||||||
number += rounds[digits];
|
|
||||||
|
|
||||||
//number += pow(10, -(digits + 1)); // slower single-line equivalent
|
|
||||||
|
|
||||||
// Extract the integer part of the number and print it
|
|
||||||
unsigned long int_part = (unsigned long)number;
|
|
||||||
print(int_part);
|
|
||||||
|
|
||||||
// Print the decimal point, but only if there are digits beyond
|
|
||||||
double remainder = number - (double)int_part;
|
|
||||||
if (digits) {
|
|
||||||
print('.');
|
|
||||||
// Extract digits from the remainder one at a time
|
|
||||||
while (digits--) {
|
|
||||||
remainder *= 10.0;
|
|
||||||
const int toPrint = int(remainder);
|
|
||||||
print(toPrint);
|
|
||||||
remainder -= toPrint;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // WIFISUPPORT
|
#endif // WIFISUPPORT
|
||||||
|
|
|
@ -23,12 +23,7 @@
|
||||||
|
|
||||||
#include "../../inc/MarlinConfig.h"
|
#include "../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#include <WString.h>
|
#include "Stream.h"
|
||||||
|
|
||||||
#define DEC 10
|
|
||||||
#define HEX 16
|
|
||||||
#define OCT 8
|
|
||||||
#define BIN 2
|
|
||||||
|
|
||||||
#ifndef RX_BUFFER_SIZE
|
#ifndef RX_BUFFER_SIZE
|
||||||
#define RX_BUFFER_SIZE 128
|
#define RX_BUFFER_SIZE 128
|
||||||
|
@ -40,60 +35,50 @@
|
||||||
#error "TX_BUFFER_SIZE is required for the WebSocket."
|
#error "TX_BUFFER_SIZE is required for the WebSocket."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if RX_BUFFER_SIZE > 256
|
typedef uint16_t ring_buffer_pos_t;
|
||||||
typedef uint16_t ring_buffer_pos_t;
|
|
||||||
#else
|
class RingBuffer {
|
||||||
typedef uint8_t ring_buffer_pos_t;
|
uint8_t *data;
|
||||||
#endif
|
ring_buffer_pos_t size, read_index, write_index;
|
||||||
|
|
||||||
class WebSocketSerial {
|
|
||||||
public:
|
public:
|
||||||
WebSocketSerial() {};
|
RingBuffer(ring_buffer_pos_t size);
|
||||||
static void begin(const long);
|
~RingBuffer();
|
||||||
static void end();
|
|
||||||
static int peek(void);
|
int available(void);
|
||||||
static int read(void);
|
int peek(void);
|
||||||
static void flush(void);
|
int read(void);
|
||||||
static void flushTx(void);
|
ring_buffer_pos_t read(uint8_t *buffer);
|
||||||
static bool available(void);
|
void flush(void);
|
||||||
static void write(const uint8_t c);
|
ring_buffer_pos_t write(const uint8_t c);
|
||||||
|
ring_buffer_pos_t write(const uint8_t* buffer, ring_buffer_pos_t size);
|
||||||
|
};
|
||||||
|
|
||||||
|
class WebSocketSerial: public Stream {
|
||||||
|
RingBuffer rx_buffer;
|
||||||
|
RingBuffer tx_buffer;
|
||||||
|
|
||||||
|
public:
|
||||||
|
WebSocketSerial();
|
||||||
|
void begin(const long);
|
||||||
|
void end();
|
||||||
|
int available(void);
|
||||||
|
int peek(void);
|
||||||
|
int read(void);
|
||||||
|
void flush(void);
|
||||||
|
void flushTX(void);
|
||||||
|
size_t write(const uint8_t c);
|
||||||
|
size_t write(const uint8_t* buffer, size_t size);
|
||||||
|
|
||||||
|
operator bool() { return true; }
|
||||||
|
|
||||||
#if ENABLED(SERIAL_STATS_DROPPED_RX)
|
#if ENABLED(SERIAL_STATS_DROPPED_RX)
|
||||||
FORCE_INLINE static uint32_t dropped() { return 0; }
|
FORCE_INLINE uint32_t dropped() { return 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
|
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
|
||||||
FORCE_INLINE static int rxMaxEnqueued() { return 0; }
|
FORCE_INLINE int rxMaxEnqueued() { return 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
FORCE_INLINE static void write(const char* str) { while (*str) write(*str++); }
|
|
||||||
FORCE_INLINE static void write(const uint8_t* buffer, size_t size) { while (size--) write(*buffer++); }
|
|
||||||
FORCE_INLINE static void print(const String& s) { for (int i = 0; i < (int)s.length(); i++) write(s[i]); }
|
|
||||||
FORCE_INLINE static void print(const char* str) { write(str); }
|
|
||||||
|
|
||||||
static void print(char, int = 0);
|
|
||||||
static void print(unsigned char, int = 0);
|
|
||||||
static void print(int, int = DEC);
|
|
||||||
static void print(unsigned int, int = DEC);
|
|
||||||
static void print(long, int = DEC);
|
|
||||||
static void print(unsigned long, int = DEC);
|
|
||||||
static void print(double, int = 2);
|
|
||||||
|
|
||||||
static void println(const String& s);
|
|
||||||
static void println(const char[]);
|
|
||||||
static void println(char, int = 0);
|
|
||||||
static void println(unsigned char, int = 0);
|
|
||||||
static void println(int, int = DEC);
|
|
||||||
static void println(unsigned int, int = DEC);
|
|
||||||
static void println(long, int = DEC);
|
|
||||||
static void println(unsigned long, int = DEC);
|
|
||||||
static void println(double, int = 2);
|
|
||||||
static void println(void);
|
|
||||||
operator bool() { return true; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
static void printNumber(unsigned long, const uint8_t);
|
|
||||||
static void printFloat(double, uint8_t);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extern WebSocketSerial webSocketSerial;
|
extern WebSocketSerial webSocketSerial;
|
||||||
|
|
Loading…
Reference in a new issue