ESPHome 2026.10.0-dev
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
21
31
54};
55
68bool version_is_older(const char *candidate, const char *reference);
69
70// 64 KiB flash block; the erase granularity the ESP-IDF backend erases ahead with.
71static constexpr size_t OTA_BLOCK_ERASE_SIZE = 64 * 1024;
72
78constexpr size_t next_erase_end(size_t write_end, size_t partition_size) {
79 const size_t rounded = (write_end + OTA_BLOCK_ERASE_SIZE - 1) & ~(OTA_BLOCK_ERASE_SIZE - 1);
80 return rounded < partition_size ? rounded : partition_size;
81}
82
90
96
97// The OTA backend method surface. Exactly one backend exists per build,
98// selected in ota_backend_factory.h where this concept is asserted on
99// make_ota_backend()'s return type. Semantics beyond the signatures:
100// - begin: prepare for an image of the given size; ota_type defaults to an
101// app update, so both call forms must be accepted.
102// - set_update_md5: expected digest of the incoming image, hex string.
103// - write: consume the next chunk; end: finalize and mark bootable.
104// - abort: safe to call in any state, including after end().
105template<typename T>
106concept OTABackendContract = requires(T backend, size_t image_size, uint8_t *data, size_t len, const char *md5) {
107 { backend.begin(image_size, OTA_TYPE_UPDATE_APP) } -> std::same_as<OTAResponseTypes>;
108 { backend.begin(image_size) } -> std::same_as<OTAResponseTypes>;
109 backend.set_update_md5(md5);
110 { backend.write(data, len) } -> std::same_as<OTAResponseTypes>;
111 { backend.end() } -> std::same_as<OTAResponseTypes>;
112 backend.abort();
113 { backend.supports_compression() } -> std::same_as<bool>;
114};
115
122 public:
123 virtual ~OTAStateListener() = default;
124 virtual void on_ota_state(OTAState state, float progress, uint8_t error) = 0;
125};
126
127class OTAComponent : public Component {
128#ifdef USE_OTA_STATE_LISTENER
129 public:
130 void add_state_listener(OTAStateListener *listener) { this->state_listeners_.push_back(listener); }
131
132 protected:
133 void notify_state_(OTAState state, float progress, uint8_t error);
134
140 void notify_state_deferred_(OTAState state, float progress, uint8_t error);
141
142 std::vector<OTAStateListener *> state_listeners_;
143#endif
144};
145
146#ifdef USE_OTA_STATE_LISTENER
147
153 public:
154 virtual ~OTAGlobalStateListener() = default;
155 virtual void on_ota_global_state(OTAState state, float progress, uint8_t error, OTAComponent *component) = 0;
156};
157
164 public:
165 void add_global_state_listener(OTAGlobalStateListener *listener) { this->global_listeners_.push_back(listener); }
166
167 void notify_ota_state(OTAState state, float progress, uint8_t error, OTAComponent *component) {
168 for (auto *listener : this->global_listeners_) {
169 listener->on_ota_global_state(state, progress, error, component);
170 }
171 }
172
173 protected:
174 std::vector<OTAGlobalStateListener *> global_listeners_;
175};
176
178
179// OTA implementations should use:
180// - notify_state_() when already in main loop (e.g., esphome OTA)
181// - notify_state_deferred_() when in separate task (e.g., web_server OTA)
182// This ensures proper listener execution in all contexts.
183#endif
184} // 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:94
@ OTA_TYPE_UPDATE_PARTITION_TABLE
Definition ota_backend.h:93
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()
constexpr size_t next_erase_end(size_t write_end, size_t partition_size)
Target erased watermark for lazy block erase-ahead.
Definition ota_backend.h:78
@ 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_ENCRYPTION_REQUIRED
Definition ota_backend.h:52
@ 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:53
@ 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