WebSerial.cpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. #include "WebSerial.h"
  2. #include "wslp.h"
  3. // DO NOT change magic bytes
  4. #define WSL_MAGIC_BYTE_1 0xAB
  5. #define WSL_MAGIC_BYTE_2 0xCD
  6. #define WSL_LOG_PACKET_HEADER_SIZE 14
  7. #define WSL_CALC_LOG_PACKET_SIZE(len) (WSL_LOG_PACKET_HEADER_SIZE + len)
  8. typedef enum {
  9. WSL_WRITE_ROW = 0x01,
  10. WSL_MESSAGE = 0x02,
  11. WSL_PING = 0x03,
  12. WSL_PONG = 0x04,
  13. } WSLPacketType;
  14. static const uint8_t WSL_PONG_MSG[] = {WSL_MAGIC_BYTE_1, WSL_MAGIC_BYTE_2, WSLPacketType::WSL_PONG};
  15. static const size_t WSL_PONG_MSG_LEN = sizeof(WSL_PONG_MSG) / sizeof(WSL_PONG_MSG[0]);
  16. static const uint8_t WSL_HEAD[] = {
  17. WSL_MAGIC_BYTE_1, // Magic Bytes
  18. WSL_MAGIC_BYTE_2, // Magic Bytes
  19. WSLPacketType::WSL_WRITE_ROW, // Packet Type (1 byte)
  20. 0x00, // Reserved
  21. 0x00, // Reserved
  22. 0x00, // Reserved
  23. 0x00, // Reserved
  24. 0x00, // Padding
  25. 0x00, // Padding
  26. 0x00, // Padding
  27. 0x00, // Padding
  28. 0x00 // Reserved
  29. };
  30. static const size_t WSL_HEAD_LEN = sizeof(WSL_HEAD) / sizeof(WSL_HEAD[0]);
  31. static const size_t WSL_MSG_SIZE_LEN = sizeof(uint16_t);
  32. void WebSerialClass::setAuthentication(const String& username, const String& password){
  33. _username = username;
  34. _password = password;
  35. _authenticate = !_username.isEmpty() && !_password.isEmpty();
  36. if (_ws != nullptr) {
  37. _ws->setAuthentication(_username.c_str(), _password.c_str());
  38. }
  39. }
  40. void WebSerialClass::begin(AsyncWebServer *server, const char* url) {
  41. _server = server;
  42. _ws = new AsyncWebSocket("/wserial");
  43. if (_authenticate) {
  44. _ws->setAuthentication(_username.c_str(), _password.c_str());
  45. }
  46. // Webpage Handler
  47. _server->on(url, HTTP_GET, [&](AsyncWebServerRequest *request){
  48. if(_authenticate){
  49. if(!request->authenticate(_username.c_str(), _password.c_str()))
  50. return request->requestAuthentication();
  51. }
  52. AsyncWebServerResponse *response = request->beginResponse(200, "text/html", WEBSERIAL_HTML, sizeof(WEBSERIAL_HTML));
  53. response->addHeader("Content-Encoding", "gzip");
  54. request->send(response);
  55. });
  56. // WS Handler
  57. _ws->onEvent([&](__unused AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventType type, __unused void * arg, uint8_t *data, __unused size_t len) -> void {
  58. // if(type == WS_EVT_CONNECT){
  59. // } else if(type == WS_EVT_DISCONNECT){
  60. // } else if(type == WS_EVT_DATA){
  61. if (type == WS_EVT_CONNECT) {
  62. client->setCloseClientOnQueueFull(false);
  63. return;
  64. }
  65. if(type == WS_EVT_DATA){
  66. // Detect magic bytes
  67. if (data[0] == WSL_MAGIC_BYTE_1 && data[1] == WSL_MAGIC_BYTE_2) {
  68. if (data[2] == WSLPacketType::WSL_MESSAGE) {
  69. // Parse message size (uint16_t)
  70. size_t message_size = (data[4] << 8) | data[3];
  71. // Issue callback
  72. if(_recv != nullptr){
  73. _recv(data + 5, message_size);
  74. }
  75. } else if (data[2] == WSLPacketType::WSL_PING) {
  76. // Send pong
  77. client->binary(WSL_PONG_MSG, WSL_PONG_MSG_LEN);
  78. }
  79. }
  80. }
  81. });
  82. // Attach AsyncWebServer with Websockets
  83. _server->addHandler(_ws);
  84. }
  85. // onMessage Callback Handler
  86. void WebSerialClass::onMessage(WSLMessageHandler recv) {
  87. _recv = recv;
  88. }
  89. void WebSerialClass::onMessage(WSLStringMessageHandler callback) {
  90. _recvString = callback;
  91. _recv = [&](uint8_t *data, size_t len) {
  92. if(data && len) {
  93. String msg;
  94. msg.reserve(len);
  95. msg.concat((char*)data, len);
  96. _recvString(msg);
  97. }
  98. };
  99. }
  100. // Print func
  101. size_t WebSerialClass::write(uint8_t m) {
  102. if (!_ws)
  103. return 0;
  104. #ifdef WSL_HIGH_PERF
  105. // We do not support non-buffered write on webserial for the HIGH_PERF version
  106. // we fail with a stack trace allowing the user to change the code to use write(const uint8_t* buffer, size_t size) instead
  107. if(!_initialBufferCapacity) {
  108. #ifdef ESP8266
  109. ets_printf("Non-buffered write is not supported. Please use write(const uint8_t* buffer, size_t size) instead.");
  110. #else
  111. log_e("Non-buffered write is not supported. Please use write(const uint8_t* buffer, size_t size) instead.");
  112. #endif
  113. assert(false);
  114. return 0;
  115. }
  116. #endif // WSL_HIGH_PERF
  117. write(&m, 1);
  118. return(1);
  119. }
  120. // Println / Printf / Write func
  121. size_t WebSerialClass::write(const uint8_t* buffer, size_t size) {
  122. if (!_ws || size == 0)
  123. return 0;
  124. #ifdef WSL_HIGH_PERF
  125. // No buffer, send directly (i.e. use case for log streaming)
  126. if (!_initialBufferCapacity) {
  127. size = buffer[size - 1] == '\n' ? size - 1 : size;
  128. _send(buffer, size);
  129. return size;
  130. }
  131. // fill the buffer while sending data for each EOL
  132. size_t start = 0, end = 0;
  133. while (end < size) {
  134. if (buffer[end] == '\n') {
  135. if (end > start) {
  136. _buffer.concat(reinterpret_cast<const char*>(buffer + start), end - start);
  137. }
  138. _send(reinterpret_cast<const uint8_t*>(_buffer.c_str()), _buffer.length());
  139. start = end + 1;
  140. }
  141. end++;
  142. }
  143. if (end > start) {
  144. _buffer.concat(reinterpret_cast<const char*>(buffer + start), end - start);
  145. }
  146. return size;
  147. #else
  148. loop();
  149. if (_print_buffer_offset + size > WSL_PRINT_BUFFER_SIZE) {
  150. // Flush print buffer if full
  151. _flush_print_buffer();
  152. }
  153. memcpy(_print_buffer + _print_buffer_offset, buffer, size);
  154. _print_buffer_offset += size;
  155. _last_print_buffer_write_time = micros();
  156. return(size);
  157. #endif
  158. }
  159. #ifdef WSL_HIGH_PERF
  160. void WebSerialClass::_send(const uint8_t* buffer, size_t size) {
  161. if (_ws && size > 0) {
  162. _ws->cleanupClients(WSL_MAX_WS_CLIENTS);
  163. if (_ws->count()) {
  164. if (size > UINT16_MAX)
  165. size = UINT16_MAX;
  166. AsyncWebSocketMessageBuffer* wsbuffer = _ws->makeBuffer(WSL_HEAD_LEN + WSL_MSG_SIZE_LEN + size);
  167. _write_row_packet(wsbuffer->get(), buffer, size);
  168. _ws->binaryAll(wsbuffer);
  169. }
  170. }
  171. // if buffer grew too much, free it, otherwise clear it
  172. if (_initialBufferCapacity) {
  173. if (_buffer.length() > _initialBufferCapacity) {
  174. setBuffer(_initialBufferCapacity);
  175. } else {
  176. _buffer.clear();
  177. }
  178. }
  179. }
  180. #else // WSL_HIGH_PERF
  181. bool WebSerialClass::_has_enough_space(size_t size) {
  182. // Check if total packet size exceeds buffer limit
  183. return (_buffer_offset + WSL_CALC_LOG_PACKET_SIZE(size) > WSL_BUFFER_SIZE);
  184. }
  185. size_t WebSerialClass::_write_row(uint8_t *data, size_t len) {
  186. // Split the logData into multiple packets
  187. size_t remaining_size = len;
  188. uint8_t* current_ptr = data;
  189. while (remaining_size > 0) {
  190. size_t packet_size = (remaining_size > WSL_MAX_ROW_PACKET_PAYLOAD_SIZE) ? WSL_MAX_ROW_PACKET_PAYLOAD_SIZE : remaining_size;
  191. // Clear if buffer is full
  192. if (!_has_enough_space(packet_size)) {
  193. _flush_global_buffer();
  194. }
  195. // Write Packet to Buffer
  196. _buffer_offset += _write_row_packet(_buffer, current_ptr, packet_size);
  197. // Set remaining size
  198. remaining_size -= packet_size;
  199. current_ptr += packet_size;
  200. }
  201. return len;
  202. }
  203. void WebSerialClass::_flush_print_buffer() {
  204. if (_print_buffer_offset > 0) {
  205. if (_buffer_offset + _print_buffer_offset > WSL_BUFFER_SIZE) {
  206. // Flush global buffer to websocket
  207. _flush_global_buffer();
  208. }
  209. // Flush print to global buffer and create a packet
  210. _write_row(_print_buffer, _print_buffer_offset);
  211. _print_buffer_offset = 0;
  212. _last_print_buffer_flush_time = millis();
  213. }
  214. }
  215. void WebSerialClass::_flush_global_buffer() {
  216. if (_buffer_offset > 0) {
  217. // Flush buffer to websocket
  218. _ws->binaryAll(_buffer, _buffer_offset);
  219. // Reset buffer offset
  220. _buffer_offset = 0;
  221. }
  222. }
  223. #endif // WSL_HIGH_PERF
  224. void WebSerialClass::loop() {
  225. #ifndef WSL_HIGH_PERF
  226. if ((unsigned long)(millis() - _last_cleanup_time) > WSL_CLEANUP_TIME_MS) {
  227. _last_cleanup_time = millis();
  228. _ws->cleanupClients(WSL_MAX_WS_CLIENTS);
  229. }
  230. // If FLUSH_TIME ms has been passed since last packet time, flush logs
  231. if (_last_print_buffer_write_time != 0) {
  232. if ((unsigned long)(micros() - _last_print_buffer_write_time) > WSL_PRINT_FLUSH_TIME_US) {
  233. _flush_print_buffer();
  234. }
  235. }
  236. // If FLUSH_TIME ms has been passed since last flush time, flush logs
  237. if (_last_print_buffer_flush_time != 0) {
  238. if ((unsigned long)(millis() - _last_print_buffer_flush_time) > WSL_GLOBAL_FLUSH_TIME_MS) {
  239. _flush_global_buffer();
  240. }
  241. }
  242. #endif // WSL_HIGH_PERF
  243. }
  244. void WebSerialClass::setBuffer(size_t initialCapacity) {
  245. #ifdef WSL_HIGH_PERF
  246. assert(initialCapacity <= UINT16_MAX);
  247. _initialBufferCapacity = initialCapacity;
  248. _buffer = String();
  249. _buffer.reserve(initialCapacity);
  250. #endif
  251. }
  252. size_t WebSerialClass::_write_row_packet(uint8_t* dest, const uint8_t *payload, size_t payload_size) {
  253. // sanity check to ensure the payload size is within the hard limit
  254. if(payload_size > UINT16_MAX)
  255. payload_size = UINT16_MAX;
  256. // Write header
  257. memmove(dest, WSL_HEAD, WSL_HEAD_LEN);
  258. // Message Length (2 bytes)
  259. memset(dest + WSL_HEAD_LEN, static_cast<uint16_t>(payload_size), WSL_MSG_SIZE_LEN);
  260. // Set Message
  261. memmove(dest + WSL_HEAD_LEN + WSL_MSG_SIZE_LEN, payload, payload_size);
  262. // Return total packet size
  263. return WSL_HEAD_LEN + WSL_MSG_SIZE_LEN + payload_size;
  264. }
  265. WebSerialClass WebSerial;