ESPHome 2026.8.2
Loading...
Searching...
No Matches
ota_backend.h
Go to the documentation of this file.
1#pragma once
2
6
7#include <concepts>
8#include <cstddef>
9#include <cstdint>
10
11#ifdef USE_OTA_STATE_LISTENER
12#include <vector>
13#endif
14
15namespace esphome::ota {
16
54
67bool version_is_older(const char *candidate, const char *reference);
68
76
82
83// The OTA backend method surface. Exactly one backend exists per build,
84// selected in ota_backend_factory.h where this concept is asserted on
85// make_ota_backend()'s return type. Semantics beyond the signatures:
86// - begin: prepare for an image of the given size; ota_type defaults to an
87// app update, so both call forms must be accepted.
88// - set_update_md5: expected digest of the incoming image, hex string.
89// - write: consume the next chunk; end: finalize and mark bootable.
90// - abort: safe to call in any state, including after end().
91template<typename T>
92concept OTABackendContract = requires(T backend, size_t image_size, uint8_t *data, size_t len, const char *md5) {
93 { backend.begin(image_size, OTA_TYPE_UPDATE_APP) } -> std::same_as<OTAResponseTypes>;
94 { backend.begin(image_size) } -> std::same_as<OTAResponseTypes>;
95 backend.set_update_md5(md5);
96 { backend.write(data, len) } -> std::same_as<OTAResponseTypes>;
97 { backend.end() } -> std::same_as<OTAResponseTypes>;
98 backend.abort();
99 { backend.supports_compression() } -> std::same_as<bool>;
100};
101
108 public:
109 virtual ~OTAStateListener() = default;
110 virtual void on_ota_state(OTAState state, float progress, uint8_t error) = 0;
111};
112
113class OTAComponent : public Component {
114#ifdef USE_OTA_STATE_LISTENER
115 public:
116 void add_state_listener(OTAStateListener *listener) { this->state_listeners_.push_back(listener); }
117
118 protected:
119 void notify_state_(OTAState state, float progress, uint8_t error);
120
126 void notify_state_deferred_(OTAState state, float progress, uint8_t error);
127
128 std::vector<OTAStateListener *> state_listeners_;
129#endif
130};
131
132#ifdef USE_OTA_STATE_LISTENER
133
139 public:
140 virtual ~OTAGlobalStateListener() = default;
141 virtual void on_ota_global_state(OTAState state, float progress, uint8_t error, OTAComponent *component) = 0;
142};
143
150 public:
151 void add_global_state_listener(OTAGlobalStateListener *listener) { this->global_listeners_.push_back(listener); }
152
153 void notify_ota_state(OTAState state, float progress, uint8_t error, OTAComponent *component) {
154 for (auto *listener : this->global_listeners_) {
155 listener->on_ota_global_state(state, progress, error, component);
156 }
157 }
158
159 protected:
160 std::vector<OTAGlobalStateListener *> global_listeners_;
161};
162
164
165// OTA implementations should use:
166// - notify_state_() when already in main loop (e.g., esphome OTA)
167// - notify_state_deferred_() when in separate task (e.g., web_server OTA)
168// This ensures proper listener execution in all contexts.
169#endif
170} // namespace esphome::ota
void notify_state_deferred_(OTAState state, float progress, uint8_t error)
Notify state with deferral to main loop (for thread safety).
void add_state_listener(OTAStateListener *listener)
std::vector< OTAStateListener * > state_listeners_
void notify_state_(OTAState state, float progress, uint8_t error)
Global callback that aggregates OTA state from all OTA components.
std::vector< OTAGlobalStateListener * > global_listeners_
void notify_ota_state(OTAState state, float progress, uint8_t error, OTAComponent *component)
void add_global_state_listener(OTAGlobalStateListener *listener)
Listener interface for global OTA state changes (includes OTA component pointer).
virtual void on_ota_global_state(OTAState state, float progress, uint8_t error, OTAComponent *component)=0
virtual ~OTAGlobalStateListener()=default
Listener interface for OTA state changes.
virtual ~OTAStateListener()=default
virtual void on_ota_state(OTAState state, float progress, uint8_t error)=0
const Component * component
Definition component.cpp:34
bool state
Definition fan.h:2
@ OTA_TYPE_UPDATE_BOOTLOADER
Definition ota_backend.h:80
@ OTA_TYPE_UPDATE_PARTITION_TABLE
Definition ota_backend.h:79
bool version_is_older(const char *candidate, const char *reference)
Compare two dotted-numeric version strings (such as "1.2.3").
OTAGlobalCallback * get_global_ota_callback()
@ OTA_RESPONSE_ERROR_MD5_MISMATCH
Definition ota_backend.h:43
@ OTA_RESPONSE_ERROR_VERSION_DOWNGRADE
Definition ota_backend.h:51
@ OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE
Definition ota_backend.h:41
@ OTA_RESPONSE_UPDATE_PREPARE_OK
Definition ota_backend.h:24
@ OTA_RESPONSE_ERROR_WRONG_NEW_FLASH_CONFIG
Definition ota_backend.h:39
@ OTA_RESPONSE_SUPPORTS_COMPRESSION
Definition ota_backend.h:28
@ OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG
Definition ota_backend.h:38
@ OTA_RESPONSE_BIN_MD5_OK
Definition ota_backend.h:25
@ OTA_RESPONSE_UPDATE_END_OK
Definition ota_backend.h:27
@ OTA_RESPONSE_RECEIVE_OK
Definition ota_backend.h:26
@ OTA_RESPONSE_ERROR_BOOTLOADER_UPDATE
Definition ota_backend.h:50
@ OTA_RESPONSE_CHUNK_OK
Definition ota_backend.h:29
@ OTA_RESPONSE_ERROR_WRITING_FLASH
Definition ota_backend.h:35
@ OTA_RESPONSE_FEATURE_FLAGS
Definition ota_backend.h:30
@ OTA_RESPONSE_ERROR_ESP8266_NOT_ENOUGH_SPACE
Definition ota_backend.h:40
@ OTA_RESPONSE_ERROR_PARTITION_TABLE_UPDATE
Definition ota_backend.h:48
@ OTA_RESPONSE_ERROR_UNSUPPORTED_OTA_TYPE
Definition ota_backend.h:46
@ OTA_RESPONSE_ERROR_UPDATE_END
Definition ota_backend.h:36
@ OTA_RESPONSE_ERROR_SIGNATURE_INVALID
Definition ota_backend.h:45
@ OTA_RESPONSE_ERROR_AUTH_INVALID
Definition ota_backend.h:34
@ OTA_RESPONSE_ERROR_RP2040_NOT_ENOUGH_SPACE
Definition ota_backend.h:44
@ OTA_RESPONSE_ERROR_UNKNOWN
Definition ota_backend.h:52
@ OTA_RESPONSE_REQUEST_SHA256_AUTH
Definition ota_backend.h:20
@ OTA_RESPONSE_ERROR_NO_UPDATE_PARTITION
Definition ota_backend.h:42
@ OTA_RESPONSE_ERROR_MAGIC
Definition ota_backend.h:32
@ OTA_RESPONSE_ERROR_UPDATE_PREPARE
Definition ota_backend.h:33
@ OTA_RESPONSE_HEADER_OK
Definition ota_backend.h:22
@ OTA_RESPONSE_REQUEST_AUTH
Definition ota_backend.h:19
@ OTA_RESPONSE_ERROR_INVALID_BOOTSTRAPPING
Definition ota_backend.h:37
@ OTA_RESPONSE_ERROR_PARTITION_TABLE_VERIFY
Definition ota_backend.h:47
@ OTA_RESPONSE_ERROR_BOOTLOADER_VERIFY
Definition ota_backend.h:49
const void size_t len
Definition hal.h:64