diff --git a/components/esp_websocket_client/esp_websocket_client.c b/components/esp_websocket_client/esp_websocket_client.c index ef9721125aa..27adc5ce26a 100644 --- a/components/esp_websocket_client/esp_websocket_client.c +++ b/components/esp_websocket_client/esp_websocket_client.c @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -545,6 +545,42 @@ static esp_err_t esp_websocket_client_create_transport(esp_websocket_client_hand return ESP_OK; } +static bool esp_websocket_client_send_with_exact_opcode(esp_websocket_client_handle_t client, ws_transport_opcodes_t opcode, const uint8_t *data, int len, TickType_t timeout) +{ + int ret = -1; + int need_write = len; + int wlen = 0, widx = 0; + + while (widx < len || opcode) { // allow for sending "current_opcode" only message with len==0 + if (need_write > client->buffer_size) { + need_write = client->buffer_size; + } + memcpy(client->tx_buffer, data + widx, need_write); + // send with ws specific way and specific opcode + wlen = esp_transport_ws_send_raw(client->transport, opcode, (char *)client->tx_buffer, need_write, + (timeout == portMAX_DELAY) ? -1 : timeout * portTICK_PERIOD_MS); + if (wlen < 0 || (wlen == 0 && need_write != 0)) { + ret = wlen; + esp_websocket_free_buf(client, true); + esp_tls_error_handle_t error_handle = esp_transport_get_error_handle(client->transport); + if (error_handle) { + esp_websocket_client_error(client, "esp_transport_write() returned %d, transport_error=%s, tls_error_code=%i, tls_flags=%i, errno=%d", + ret, esp_err_to_name(error_handle->last_error), error_handle->esp_tls_error_code, + error_handle->esp_tls_flags, errno); + } else { + esp_websocket_client_error(client, "esp_transport_write() returned %d, errno=%d", ret, errno); + } + esp_websocket_client_abort_connection(client, WEBSOCKET_ERROR_TYPE_TCP_TRANSPORT); + return false; + } + opcode = 0; + widx += wlen; + need_write = len - widx; + } + esp_websocket_free_buf(client, true); + return true; +} + esp_websocket_client_handle_t esp_websocket_client_init(const esp_websocket_client_config_t *config) { esp_websocket_client_handle_t client = calloc(1, sizeof(struct esp_websocket_client)); @@ -1092,17 +1128,33 @@ int esp_websocket_client_send_text(esp_websocket_client_handle_t client, const c return esp_websocket_client_send_with_opcode(client, WS_TRANSPORT_OPCODES_TEXT, (const uint8_t *)data, len, timeout); } +int esp_websocket_client_send_text_partial(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout) +{ + return esp_websocket_client_send_with_exact_opcode(client, WS_TRANSPORT_OPCODES_TEXT, (const uint8_t *)data, len, timeout); +} + +int esp_websocket_client_send_cont_msg(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout) +{ + return esp_websocket_client_send_with_exact_opcode(client, WS_TRANSPORT_OPCODES_CONT, (const uint8_t *)data, len, timeout); +} + int esp_websocket_client_send_bin(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout) { return esp_websocket_client_send_with_opcode(client, WS_TRANSPORT_OPCODES_BINARY, (const uint8_t *)data, len, timeout); } -int esp_websocket_client_send_with_opcode(esp_websocket_client_handle_t client, ws_transport_opcodes_t opcode, const uint8_t *data, int len, TickType_t timeout) +int esp_websocket_client_send_bin_partial(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout) { - int need_write = len; - int wlen = 0, widx = 0; - int ret = ESP_FAIL; + return esp_websocket_client_send_with_exact_opcode(client, WS_TRANSPORT_OPCODES_BINARY, (const uint8_t *)data, len, timeout); +} +int esp_websocket_client_send_fin(esp_websocket_client_handle_t client, TickType_t timeout) +{ + return esp_websocket_client_send_with_exact_opcode(client, WS_TRANSPORT_OPCODES_FIN, NULL, 0, timeout); +} + +int esp_websocket_client_send_with_opcode(esp_websocket_client_handle_t client, ws_transport_opcodes_t opcode, const uint8_t *data, int len, TickType_t timeout) +{ if (client == NULL || len < 0 || (data == NULL && len > 0)) { ESP_LOGE(TAG, "Invalid arguments"); return ESP_FAIL; @@ -1126,41 +1178,13 @@ int esp_websocket_client_send_with_opcode(esp_websocket_client_handle_t client, ESP_LOGE(TAG, "Failed to setup tx buffer"); goto unlock_and_return; } - uint32_t current_opcode = opcode; - while (widx < len || current_opcode) { // allow for sending "current_opcode" only message with len==0 - if (need_write > client->buffer_size) { - need_write = client->buffer_size; - } else { - current_opcode |= WS_TRANSPORT_OPCODES_FIN; - } - memcpy(client->tx_buffer, data + widx, need_write); - // send with ws specific way and specific opcode - wlen = esp_transport_ws_send_raw(client->transport, current_opcode, (char *)client->tx_buffer, need_write, - (timeout == portMAX_DELAY) ? -1 : timeout * portTICK_PERIOD_MS); - if (wlen < 0 || (wlen == 0 && need_write != 0)) { - ret = wlen; - esp_websocket_free_buf(client, true); - esp_tls_error_handle_t error_handle = esp_transport_get_error_handle(client->transport); - if (error_handle) { - esp_websocket_client_error(client, "esp_transport_write() returned %d, transport_error=%s, tls_error_code=%i, tls_flags=%i, errno=%d", - ret, esp_err_to_name(error_handle->last_error), error_handle->esp_tls_error_code, - error_handle->esp_tls_flags, errno); - } else { - esp_websocket_client_error(client, "esp_transport_write() returned %d, errno=%d", ret, errno); - } - esp_websocket_client_abort_connection(client, WEBSOCKET_ERROR_TYPE_TCP_TRANSPORT); - goto unlock_and_return; - } - current_opcode = 0; - widx += wlen; - need_write = len - widx; - + if (esp_websocket_client_send_with_exact_opcode(client, opcode | WS_TRANSPORT_OPCODES_FIN, data, len, timeout) != true) { + ESP_LOGE(TAG, "Failed to send the buffer"); + goto unlock_and_return; } - ret = widx; - esp_websocket_free_buf(client, true); unlock_and_return: xSemaphoreGiveRecursive(client->lock); - return ret; + return ESP_FAIL; } bool esp_websocket_client_is_connected(esp_websocket_client_handle_t client) diff --git a/components/esp_websocket_client/examples/target/main/websocket_example.c b/components/esp_websocket_client/examples/target/main/websocket_example.c index 4e44f46c974..9e1f1b82fe0 100644 --- a/components/esp_websocket_client/examples/target/main/websocket_example.c +++ b/components/esp_websocket_client/examples/target/main/websocket_example.c @@ -161,6 +161,15 @@ static void websocket_app_start(void) vTaskDelay(1000 / portTICK_PERIOD_MS); } + memset(data, 'a', 32); + esp_websocket_client_send_text_partial(client, data, 32, portMAX_DELAY); + memset(data, 'b', 32); + vTaskDelay(1000 / portTICK_PERIOD_MS); + esp_websocket_client_send_cont_msg(client, data, 32, portMAX_DELAY); + vTaskDelay(1000 / portTICK_PERIOD_MS); + esp_websocket_client_send_fin(client, portMAX_DELAY); + vTaskDelay(1000 / portTICK_PERIOD_MS); + xSemaphoreTake(shutdown_sema, portMAX_DELAY); esp_websocket_client_close(client, portMAX_DELAY); ESP_LOGI(TAG, "Websocket Stopped"); diff --git a/components/esp_websocket_client/examples/target/pytest_websocket.py b/components/esp_websocket_client/examples/target/pytest_websocket.py index f01a5664e10..79cb4af5aa0 100644 --- a/components/esp_websocket_client/examples/target/pytest_websocket.py +++ b/components/esp_websocket_client/examples/target/pytest_websocket.py @@ -133,6 +133,10 @@ def test_recv_long_msg(dut, websocket, msg_len, repeats): \nreceived: {}\nwith length {}'.format( send_msg, len(send_msg), recv_msg, len(recv_msg))) + def test_fragmented_msg(dut): + dut.expect(re.compile(b'Received=' + 32 * 'a'.encode('utf-8') + 32 * 'b'.encode('utf-8'))) + print('Fragmented data received') + # Starting of the test try: if dut.app.sdkconfig.get('WEBSOCKET_URI_FROM_STDIN') is True: @@ -157,6 +161,7 @@ def test_recv_long_msg(dut, websocket, msg_len, repeats): test_recv_long_msg(dut, ws, 2000, 3) test_json(dut, ws) test_close(dut) + test_fragmented_msg(dut) else: print('DUT connecting to {}'.format(uri)) test_echo(dut) diff --git a/components/esp_websocket_client/include/esp_websocket_client.h b/components/esp_websocket_client/include/esp_websocket_client.h index 318ae8bc4e7..0f7af07f44d 100644 --- a/components/esp_websocket_client/include/esp_websocket_client.h +++ b/components/esp_websocket_client/include/esp_websocket_client.h @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -231,6 +231,24 @@ esp_err_t esp_websocket_client_destroy_on_exit(esp_websocket_client_handle_t cli */ int esp_websocket_client_send_bin(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout); +/** + * @brief Write binary data to the WebSocket connection and sends it without setting the FIN flag(data send with WS OPCODE=02, i.e. binary) + * + * Notes: + * - To send continuation frame, you should use 'esp_websocket_client_send_cont_msg(...)' API. + * - To mark the end of fragmented data, you should use the 'esp_websocket_client_send_fin(...)' API. This sends a FIN frame. + * + * @param[in] client The client + * @param[in] data The data + * @param[in] len The length + * @param[in] timeout Write data timeout in RTOS ticks + * + * @return + * - Number of data was sent + * - (-1) if any errors + */ +int esp_websocket_client_send_bin_partial(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout); + /** * @brief Write textual data to the WebSocket connection (data send with WS OPCODE=01, i.e. text) * @@ -245,6 +263,55 @@ int esp_websocket_client_send_bin(esp_websocket_client_handle_t client, const ch */ int esp_websocket_client_send_text(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout); +/** + * @brief Write textual data to the WebSocket connection and sends it without setting the FIN flag(data send with WS OPCODE=01, i.e. text) + * + * Notes: + * - To send continuation frame, you should use 'esp_websocket_client_send_cont_mgs(...)' API. + * - To mark the end of fragmented data, you should use the 'esp_websocket_client_send_fin(...)' API. This sends a FIN frame. + * + * @param[in] client The client + * @param[in] data The data + * @param[in] len The length + * @param[in] timeout Write data timeout in RTOS ticks + * + * @return + * - Number of data was sent + * - (-1) if any errors + */ +int esp_websocket_client_send_text_partial(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout); + +/** + * @brief Write textual data to the WebSocket connection and sends it as continuation frame (OPCODE=0x0) + * + * Notes: + * - Continuation frames have an opcode of 0x0 and do not explicitly signify whether they are continuing a text or a binary message. + * - You determine the type of message (text or binary) being continued by looking at the opcode of the initial frame in the sequence of fragmented frames. + * - To mark the end of fragmented data, you should use the 'esp_websocket_client_send_fin(...)' API. This sends a FIN frame. + * + * @param[in] client The client + * @param[in] data The data + * @param[in] len The length + * @param[in] timeout Write data timeout in RTOS ticks + * + * @return + * - Number of data was sent + * - (-1) if any errors + */ +int esp_websocket_client_send_cont_msg(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout); + +/** + * @brief Sends FIN frame + * + * @param[in] client The client + * @param[in] timeout Write data timeout in RTOS ticks + * + * @return + * - Number of data was sent + * - (-1) if any errors + */ +int esp_websocket_client_send_fin(esp_websocket_client_handle_t client, TickType_t timeout); + /** * @brief Write opcode data to the WebSocket connection * @@ -256,6 +323,8 @@ int esp_websocket_client_send_text(esp_websocket_client_handle_t client, const c * * Notes: * - In order to send a zero payload, data and len should be set to NULL/0 + * - This API sets the FIN bit on the last fragment of message + * * * @return * - Number of data was sent