From 2da0bcadc70093b9fc234baad5ee88ef104596b3 Mon Sep 17 00:00:00 2001 From: Keith Burzinski Date: Tue, 30 Apr 2024 01:31:59 -0500 Subject: [PATCH] Refactor `global_ota_component` usage --- .../components/esp32_ble_tracker/__init__.py | 6 ---- .../esp32_ble_tracker/esp32_ble_tracker.cpp | 17 ++++++----- .../esp32_ble_tracker/esp32_ble_tracker.h | 13 --------- .../components/esphome/ota/ota_esphome.cpp | 8 +++--- esphome/components/esphome/ota/ota_esphome.h | 3 -- esphome/components/ota/ota_backend.cpp | 12 ++++++++ esphome/components/ota/ota_backend.h | 28 ++++++++++++++++--- 7 files changed, 50 insertions(+), 37 deletions(-) create mode 100644 esphome/components/ota/ota_backend.cpp diff --git a/esphome/components/esp32_ble_tracker/__init__.py b/esphome/components/esp32_ble_tracker/__init__.py index 62efb4a278..1edeaadbfd 100644 --- a/esphome/components/esp32_ble_tracker/__init__.py +++ b/esphome/components/esp32_ble_tracker/__init__.py @@ -15,7 +15,6 @@ from esphome.const import ( CONF_ON_BLE_ADVERTISE, CONF_ON_BLE_MANUFACTURER_DATA_ADVERTISE, CONF_ON_BLE_SERVICE_DATA_ADVERTISE, - CONF_OTA, CONF_SERVICE_UUID, CONF_TRIGGER_ID, KEY_CORE, @@ -273,11 +272,6 @@ async def to_code(config): add_idf_sdkconfig_option("CONFIG_BTU_TASK_STACK_SIZE", 8192) add_idf_sdkconfig_option("CONFIG_BT_ACL_CONNECTIONS", 9) - if CONF_OTA in CORE.config: - for ota_config in CORE.config.get(CONF_OTA): - ota_platform = await cg.get_variable(ota_config[CONF_ID]) - cg.add(var.add_ota_component(ota_platform)) - cg.add_define("USE_OTA_STATE_CALLBACK") # To be notified when an OTA update starts cg.add_define("USE_ESP32_BLE_CLIENT") diff --git a/esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp b/esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp index a26ff0c7b5..6b2a1caa13 100644 --- a/esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp +++ b/esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp @@ -17,6 +17,10 @@ #include #include +#ifdef USE_OTA +#include "esphome/components/ota/ota_backend.h" +#endif + #ifdef USE_ARDUINO #include #endif @@ -54,13 +58,12 @@ void ESP32BLETracker::setup() { this->scanner_idle_ = true; #ifdef USE_OTA - for (auto &ota_comp : this->ota_components_) { - ota_comp->add_on_state_callback([this](ota::OTAState state, float progress, uint8_t error) { - if (state == ota::OTA_STARTED) { - this->stop_scan(); - } - }); - } + ota::global_ota_component->add_on_state_callback( + [this](ota::OTAState state, float progress, uint8_t error, ota::OTAComponent *comp) { + if (state == ota::OTA_STARTED) { + this->stop_scan(); + } + }); #endif } diff --git a/esphome/components/esp32_ble_tracker/esp32_ble_tracker.h b/esphome/components/esp32_ble_tracker/esp32_ble_tracker.h index c8dae96a97..76dee875c5 100644 --- a/esphome/components/esp32_ble_tracker/esp32_ble_tracker.h +++ b/esphome/components/esp32_ble_tracker/esp32_ble_tracker.h @@ -11,10 +11,6 @@ #ifdef USE_ESP32 -#ifdef USE_OTA -#include "esphome/components/ota/ota_backend.h" -#endif - #include #include #include @@ -201,10 +197,6 @@ class ESP32BLETracker : public Component, void loop() override; -#ifdef USE_OTA - void add_ota_component(ota::OTAComponent *ota_component) { this->ota_components_.push_back(ota_component); } -#endif - void register_listener(ESPBTDeviceListener *listener); void register_client(ESPBTClient *client); void recalculate_advertisement_parser_types(); @@ -236,11 +228,6 @@ class ESP32BLETracker : public Component, int app_id_; -#ifdef USE_OTA - /// Vector of OTA components we'll hook into so we can stop scanning when an OTA update begins - std::vector ota_components_{}; -#endif - /// Vector of addresses that have already been printed in print_bt_device_info std::vector already_discovered_; std::vector listeners_; diff --git a/esphome/components/esphome/ota/ota_esphome.cpp b/esphome/components/esphome/ota/ota_esphome.cpp index 7b76380fb4..26bc6b82f9 100644 --- a/esphome/components/esphome/ota/ota_esphome.cpp +++ b/esphome/components/esphome/ota/ota_esphome.cpp @@ -21,11 +21,11 @@ namespace esphome { static const char *const TAG = "esphome.ota"; static constexpr u_int16_t OTA_BLOCK_SIZE = 8192; -ESPHomeOTAComponent *global_ota_component = nullptr; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) - -ESPHomeOTAComponent::ESPHomeOTAComponent() { global_ota_component = this; } - void ESPHomeOTAComponent::setup() { +#ifdef USE_OTA_STATE_CALLBACK + ota::global_ota_component->register_ota(this); +#endif + server_ = socket::socket_ip(SOCK_STREAM, 0); if (server_ == nullptr) { ESP_LOGW(TAG, "Could not create socket"); diff --git a/esphome/components/esphome/ota/ota_esphome.h b/esphome/components/esphome/ota/ota_esphome.h index f230f2b465..e8f36f05ca 100644 --- a/esphome/components/esphome/ota/ota_esphome.h +++ b/esphome/components/esphome/ota/ota_esphome.h @@ -11,7 +11,6 @@ namespace esphome { /// ESPHomeOTAComponent provides a simple way to integrate Over-the-Air updates into your app using ArduinoOTA. class ESPHomeOTAComponent : public ota::OTAComponent { public: - ESPHomeOTAComponent(); #ifdef USE_OTA_PASSWORD void set_auth_password(const std::string &password) { password_ = password; } #endif // USE_OTA_PASSWORD @@ -66,6 +65,4 @@ class ESPHomeOTAComponent : public ota::OTAComponent { 0x5afe5afe; ///< a magic number to indicate that safe mode should be entered on next boot }; -extern ESPHomeOTAComponent *global_ota_component; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) - } // namespace esphome diff --git a/esphome/components/ota/ota_backend.cpp b/esphome/components/ota/ota_backend.cpp new file mode 100644 index 0000000000..bc7755fa83 --- /dev/null +++ b/esphome/components/ota/ota_backend.cpp @@ -0,0 +1,12 @@ +#include "ota_backend.h" + +namespace esphome { +namespace ota { + +#ifdef USE_OTA_STATE_CALLBACK +OTAGlobalCallback *global_ota_component = + new OTAGlobalCallback; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) +#endif + +} // namespace ota +} // namespace esphome \ No newline at end of file diff --git a/esphome/components/ota/ota_backend.h b/esphome/components/ota/ota_backend.h index 9899d62fab..f72a63d0e4 100644 --- a/esphome/components/ota/ota_backend.h +++ b/esphome/components/ota/ota_backend.h @@ -1,12 +1,13 @@ #pragma once -#ifdef USE_OTA_STATE_CALLBACK -#include "esphome/core/automation.h" -#include "esphome/core/defines.h" -#endif #include "esphome/core/component.h" +#include "esphome/core/defines.h" #include "esphome/core/helpers.h" +#ifdef USE_OTA_STATE_CALLBACK +#include "esphome/core/automation.h" +#endif + namespace esphome { namespace ota { @@ -64,6 +65,25 @@ class OTAComponent : public Component { #endif }; +#ifdef USE_OTA_STATE_CALLBACK +class OTAGlobalCallback { + public: + void register_ota(OTAComponent *ota_caller) { + ota_caller->add_on_state_callback([this, ota_caller](OTAState state, float progress, uint8_t error) { + this->state_callback_.call(state, progress, error, ota_caller); + }); + } + void add_on_state_callback(std::function &&callback) { + this->state_callback_.add(std::move(callback)); + } + + protected: + CallbackManager state_callback_{}; +}; + +extern OTAGlobalCallback *global_ota_component; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) +#endif std::unique_ptr make_ota_backend(); + } // namespace ota } // namespace esphome