Home IO Control
ESPHome add-on for IO-Homecontrol devices
Loading...
Searching...
No Matches
device_registry.cpp
Go to the documentation of this file.
1/// @file device_registry.cpp
2/// @brief DeviceRegistry implementation.
3/// @ingroup hioc_hub
4
5#include "device_registry.h"
6
7#include "proto_frame.h"
8#include "proto_sizes.h"
9
10#include "esphome/core/log.h"
11
12namespace esphome {
13namespace home_io_control {
14
15static constexpr const char *TAG = "home_io_control";
16
17void DeviceRegistry::add(const std::string &device_id) { add(device_id, DeviceConfig{}); }
18
19void DeviceRegistry::add(const std::string &device_id, const DeviceConfig &cfg) {
20 if (devices_.count(device_id) != 0)
21 return;
22 IoDevice dev{};
23 if (!hex_to_bytes(device_id, dev.node_id, NODE_ID_SIZE)) {
24 ESP_LOGW(TAG, "Ignoring invalid device ID %s", device_id.c_str());
25 return;
26 }
27 dev.type = cfg.type;
28 dev.subtype = cfg.subtype;
29 if (cfg.inverted)
30 dev.inverted = true;
32 dev.silent = cfg.silent;
33 dev.low_power = cfg.low_power;
34 devices_[device_id] = dev;
35}
36
37void DeviceRegistry::put(const std::string &device_id, IoDevice device) { devices_[device_id] = device; }
38
39IoDevice *DeviceRegistry::get(const std::string &device_id) {
40 auto it = devices_.find(device_id);
41 return (it != devices_.end()) ? &it->second : nullptr;
42}
43
44void DeviceRegistry::set_dimmable(const std::string &device_id, bool dimmable) {
45 if (IoDevice *dev = this->get(device_id))
46 dev->dimmable = dimmable;
47}
48
49void DeviceRegistry::set_silent(const std::string &device_id, bool silent) {
50 if (IoDevice *dev = this->get(device_id))
51 dev->silent = silent;
52}
53
54void DeviceRegistry::subscribe(DeviceUpdateCallback cb) { callbacks_.push_back(std::move(cb)); }
55
56void DeviceRegistry::notify(const std::string &device_id) {
57 auto it = devices_.find(device_id);
58 if (it == devices_.end())
59 return;
60 for (auto &cb : callbacks_)
61 cb(device_id, it->second);
62}
63
64void DeviceRegistry::add_linked_remote(const std::string &remote_id, const std::string &device_id) {
65 linked_remotes_[remote_id].push_back(device_id);
66}
67
68const std::vector<std::string> *DeviceRegistry::linked_devices(const std::string &remote_id) const {
69 auto it = linked_remotes_.find(remote_id);
70 return (it != linked_remotes_.end()) ? &it->second : nullptr;
71}
72
73void DeviceRegistry::add_linked_remote_class(DeviceType type, const std::string &device_id) {
74 linked_remote_classes_[type].push_back(device_id);
75}
76
77const std::vector<std::string> *DeviceRegistry::linked_devices_for_class(DeviceType type) const {
78 auto it = linked_remote_classes_.find(type);
79 return (it != linked_remote_classes_.end()) ? &it->second : nullptr;
80}
81
82bool DeviceRegistry::apply_optimistic_target(const std::string &device_id, float target_io_position) {
83 auto it = devices_.find(device_id);
84 if (it == devices_.end() || !it->second.optimistic_state)
85 return false;
86 // Logs the raw (non-inverted) IO-protocol values the entity layer will compare against —
87 // cross-check against platform_cover.cpp::on_device_update_()'s invert-aware direction math
88 // when verifying a specific device's optimistic behavior.
89 if (it->second.position == UNKNOWN_POSITION) {
90 ESP_LOGD(TAG, "Device %s: optimistic target=%.0f (inverted=%s, last reported position=unknown)", device_id.c_str(),
91 target_io_position, YESNO(it->second.inverted));
92 } else {
93 ESP_LOGD(TAG, "Device %s: optimistic target=%.0f (inverted=%s, last reported position=%.0f)", device_id.c_str(),
94 target_io_position, YESNO(it->second.inverted), it->second.position);
95 }
96 it->second.optimistic.target = target_io_position;
97 it->second.optimistic.motion = OptimisticState::Motion::MOVING;
98 notify(device_id);
99 return true;
100}
101
102bool DeviceRegistry::apply_optimistic_stop(const std::string &device_id) {
103 auto it = devices_.find(device_id);
104 if (it == devices_.end() || !it->second.optimistic_state)
105 return false;
106 ESP_LOGD(TAG, "Device %s: optimistic stop", device_id.c_str());
107 it->second.optimistic.target = UNKNOWN_POSITION;
108 it->second.optimistic.motion = OptimisticState::Motion::STOPPED;
109 notify(device_id);
110 return true;
111}
112
113bool DeviceRegistry::apply_optimistic_tilt(const std::string &device_id, float tilt_percent) {
114 auto it = devices_.find(device_id);
115 if (it == devices_.end() || !it->second.optimistic_state)
116 return false;
117 // Type-gated here rather than at the call sites so every present and future caller is safe:
118 // showing an angle the device will never report back would be a lie the next poll cannot
119 // correct. This admits exactly the devices whose tilt command is accepted — the command gate
120 // known_device_accepts_execute_tilt() is this same predicate plus an UNKNOWN-type check that
121 // device_supports_tilt() already fails — so the two cannot disagree about a given device.
122 if (!device_supports_tilt(it->second.type))
123 return false;
124 if (it->second.tilt == UNKNOWN_POSITION) {
125 ESP_LOGD(TAG, "Device %s: optimistic tilt=%.0f (last reported tilt=unknown)", device_id.c_str(), tilt_percent);
126 } else {
127 ESP_LOGD(TAG, "Device %s: optimistic tilt=%.0f (last reported tilt=%.0f)", device_id.c_str(), tilt_percent,
128 it->second.tilt);
129 }
130 it->second.optimistic.tilt = tilt_percent;
131 notify(device_id);
132 return true;
133}
134
135bool DeviceRegistry::rollback_optimistic(const std::string &device_id) {
136 auto it = devices_.find(device_id);
137 if (it == devices_.end() || it->second.optimistic.empty())
138 return false;
139 ESP_LOGD(TAG, "Device %s: optimistic rollback (command failed)", device_id.c_str());
140 it->second.optimistic.clear();
141 notify(device_id);
142 return true;
143}
144
146 const std::function<void(const std::string &, const std::vector<std::string> &)> &fn) const {
147 for (const auto &pair : linked_remotes_)
148 fn(pair.first, pair.second);
149}
150
151} // namespace home_io_control
152} // namespace esphome
const std::vector< std::string > * linked_devices(const std::string &remote_id) const
Retrieve the list of device IDs linked to a remote.
void set_dimmable(const std::string &device_id, bool dimmable)
Set a device's dimmable flag (see IoDevice::dimmable).
bool apply_optimistic_stop(const std::string &device_id)
Predict that a device has stopped (e.g.
bool apply_optimistic_tilt(const std::string &device_id, float tilt_percent)
Set an optimistic slat angle ahead of a confirming poll, and notify.
const std::vector< std::string > * linked_devices_for_class(DeviceType type) const
Retrieve the list of device IDs linked to a device class.
void add_linked_remote_class(DeviceType type, const std::string &device_id)
Record that a remote's typed-broadcast presses (e.g.
void put(const std::string &device_id, IoDevice device)
Insert or overwrite a device entry without deduplication or hex-validation checks.
bool apply_optimistic_target(const std::string &device_id, float target_io_position)
Set an optimistic target position ahead of a confirming poll/response, and notify.
void set_silent(const std::string &device_id, bool silent)
Select a device's travel profile.
void notify(const std::string &device_id)
Invoke all registered callbacks for device_id.
void add_linked_remote(const std::string &remote_id, const std::string &device_id)
Record that a remote node controls a registered device.
void subscribe(DeviceUpdateCallback cb)
Register a callback that fires whenever a device's state changes.
IoDevice * get(const std::string &device_id)
Retrieve a registered device by ID.
bool rollback_optimistic(const std::string &device_id)
Withdraw every prediction for a device after the command that produced them failed,...
void for_each_linked_remote(const std::function< void(const std::string &, const std::vector< std::string > &)> &fn) const
Invoke fn(remote_id, device_id_list) for every linked-remote entry.
void add(const std::string &device_id)
Register a device by ID with default metadata (UNKNOWN type, subtype 0, not inverted).
Per-hub device table, update-callback fan-out, and linked-remote map.
static constexpr float UNKNOWN_POSITION
Sentinel value meaning "position is not known yet".
static constexpr uint8_t NODE_ID_SIZE
Device/node addresses are 3 bytes (e.g., "123ABC").
Definition proto_sizes.h:20
DeviceType
Device type identifiers reported by IO‑Homecontrol products.
static constexpr const char * TAG
std::function< void(const std::string &device_id, const IoDevice &device)> DeviceUpdateCallback
Callback type invoked when a device's state changes.
bool device_supports_tilt(DeviceType type)
Does this device type support tilt (slat angle) control?
bool hex_to_bytes(const std::string &hex, uint8_t *out, uint8_t len)
Convert a hex string (e.g., "123ABC") to a byte array.
IO-Homecontrol 2W frame container: control bytes, IoFrame and (de)serialization.
Fundamental IO-Homecontrol frame and crypto size constants.
YAML-declared device metadata for registration; defaults match an undeclared device.
bool optimistic_state
Whether apply_optimistic_target/apply_optimistic_stop may fire.
bool inverted
Position-inversion flag.
bool low_power
Target is a low-power / duty-cycled receiver: directed frames set CTRL1_LOW_POWER and use the long wa...
uint8_t subtype
Device subtype byte.
bool silent
Send position moves in "silent operation" (slower) mode.
DeviceType type
Device type from YAML declaration.
Runtime state of a paired IO‑Homecontrol device.
bool inverted
True if open/close positions are swapped (e.g., horizontal awning).
bool silent
True to send position moves with the reference hub's "silent operation" extended block,...
bool low_power
YAML-declared: this target is a low-power / duty-cycled receiver, so directed frames set CTRL1_LOW_PO...
uint8_t subtype
Device subtype (manufacturer‑specific).
uint8_t node_id[NODE_ID_SIZE]
Device's 3‑byte radio address.
bool dimmable
True for a LIGHT-class device configured dimmable: true in YAML.
bool optimistic_state
True if target may be set ahead of a confirming poll/response.
DeviceType type
Device type (shutter, awning, etc.).
@ STOPPED
Predicted to be at rest (a STOP was issued).
@ MOVING
Predicted to be travelling (a position command was issued).