ESPHome
2024.10.2
|
#include <api_server.h>
Data Structures | |
struct | HomeAssistantStateSubscription |
Public Member Functions | |
APIServer () | |
void | setup () override |
uint16_t | get_port () const |
float | get_setup_priority () const override |
void | loop () override |
void | dump_config () override |
void | on_shutdown () override |
bool | check_password (const std::string &password) const |
bool | uses_password () const |
void | set_port (uint16_t port) |
void | set_password (const std::string &password) |
void | set_reboot_timeout (uint32_t reboot_timeout) |
void | set_noise_psk (psk_t psk) |
std::shared_ptr< APINoiseContext > | get_noise_ctx () |
void | handle_disconnect (APIConnection *conn) |
void | on_binary_sensor_update (binary_sensor::BinarySensor *obj, bool state) override |
void | on_cover_update (cover::Cover *obj) override |
void | on_fan_update (fan::Fan *obj) override |
void | on_light_update (light::LightState *obj) override |
void | on_sensor_update (sensor::Sensor *obj, float state) override |
void | on_switch_update (switch_::Switch *obj, bool state) override |
void | on_text_sensor_update (text_sensor::TextSensor *obj, const std::string &state) override |
void | on_climate_update (climate::Climate *obj) override |
void | on_number_update (number::Number *obj, float state) override |
void | on_date_update (datetime::DateEntity *obj) override |
void | on_time_update (datetime::TimeEntity *obj) override |
void | on_datetime_update (datetime::DateTimeEntity *obj) override |
void | on_text_update (text::Text *obj, const std::string &state) override |
void | on_select_update (select::Select *obj, const std::string &state, size_t index) override |
void | on_lock_update (lock::Lock *obj) override |
void | on_valve_update (valve::Valve *obj) override |
void | on_media_player_update (media_player::MediaPlayer *obj) override |
void | send_homeassistant_service_call (const HomeassistantServiceResponse &call) |
void | register_user_service (UserServiceDescriptor *descriptor) |
void | request_time () |
void | on_alarm_control_panel_update (alarm_control_panel::AlarmControlPanel *obj) override |
void | on_event (event::Event *obj, const std::string &event_type) override |
void | on_update (update::UpdateEntity *obj) override |
bool | is_connected () const |
void | subscribe_home_assistant_state (std::string entity_id, optional< std::string > attribute, std::function< void(std::string)> f) |
void | get_home_assistant_state (std::string entity_id, optional< std::string > attribute, std::function< void(std::string)> f) |
const std::vector< HomeAssistantStateSubscription > & | get_state_subs () const |
const std::vector< UserServiceDescriptor * > & | get_user_services () const |
Trigger< std::string, std::string > * | get_client_connected_trigger () const |
Trigger< std::string, std::string > * | get_client_disconnected_trigger () const |
Public Member Functions inherited from esphome::Component | |
float | get_actual_setup_priority () const |
void | set_setup_priority (float priority) |
virtual float | get_loop_priority () const |
priority of loop(). More... | |
void | call () |
virtual void | on_safe_shutdown () |
uint32_t | get_component_state () const |
virtual void | mark_failed () |
Mark this component as failed. More... | |
bool | is_failed () const |
bool | is_ready () const |
virtual bool | can_proceed () |
bool | status_has_warning () const |
bool | status_has_error () const |
void | status_set_warning (const char *message="unspecified") |
void | status_set_error (const char *message="unspecified") |
void | status_clear_warning () |
void | status_clear_error () |
void | status_momentary_warning (const std::string &name, uint32_t length=5000) |
void | status_momentary_error (const std::string &name, uint32_t length=5000) |
bool | has_overridden_loop () const |
void | set_component_source (const char *source) |
Set where this component was loaded from for some debug messages. More... | |
const char * | get_component_source () const |
Get the integration where this component was declared as a string. More... | |
Public Member Functions inherited from esphome::Controller | |
void | setup_controller (bool include_internal=false) |
Protected Attributes | |
std::unique_ptr< socket::Socket > | socket_ = nullptr |
uint16_t | port_ {6053} |
uint32_t | reboot_timeout_ {300000} |
uint32_t | last_connected_ {0} |
std::vector< std::unique_ptr< APIConnection > > | clients_ |
std::string | password_ |
std::vector< HomeAssistantStateSubscription > | state_subs_ |
std::vector< UserServiceDescriptor * > | user_services_ |
Trigger< std::string, std::string > * | client_connected_trigger_ = new Trigger<std::string, std::string>() |
Trigger< std::string, std::string > * | client_disconnected_trigger_ = new Trigger<std::string, std::string>() |
std::shared_ptr< APINoiseContext > | noise_ctx_ = std::make_shared<APINoiseContext>() |
Protected Attributes inherited from esphome::Component | |
uint32_t | component_state_ {0x0000} |
State of this component. More... | |
float | setup_priority_override_ {NAN} |
const char * | component_source_ {nullptr} |
Additional Inherited Members | |
Protected Member Functions inherited from esphome::Component | |
virtual void | call_loop () |
virtual void | call_setup () |
virtual void | call_dump_config () |
void | set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f) |
Set an interval function with a unique name. More... | |
void | set_interval (uint32_t interval, std::function< void()> &&f) |
bool | cancel_interval (const std::string &name) |
Cancel an interval function. More... | |
void | set_retry (const std::string &name, uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
Set an retry function with a unique name. More... | |
void | set_retry (uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
bool | cancel_retry (const std::string &name) |
Cancel a retry function. More... | |
void | set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f) |
Set a timeout function with a unique name. More... | |
void | set_timeout (uint32_t timeout, std::function< void()> &&f) |
bool | cancel_timeout (const std::string &name) |
Cancel a timeout function. More... | |
void | defer (const std::string &name, std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
void | defer (std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
bool | cancel_defer (const std::string &name) |
Cancel a defer callback using the specified name, name must not be empty. More... | |
Definition at line 22 of file api_server.h.
esphome::api::APIServer::APIServer | ( | ) |
Definition at line 356 of file api_server.cpp.
bool esphome::api::APIServer::check_password | ( | const std::string & | password | ) | const |
Definition at line 149 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 139 of file api_server.cpp.
|
inline |
Definition at line 126 of file api_server.h.
|
inline |
Definition at line 127 of file api_server.h.
void esphome::api::APIServer::get_home_assistant_state | ( | std::string | entity_id, |
optional< std::string > | attribute, | ||
std::function< void(std::string)> | f | ||
) |
Definition at line 366 of file api_server.cpp.
|
inline |
Definition at line 39 of file api_server.h.
uint16_t esphome::api::APIServer::get_port | ( | ) | const |
Definition at line 378 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 345 of file api_server.cpp.
const std::vector< APIServer::HomeAssistantStateSubscription > & esphome::api::APIServer::get_state_subs | ( | ) | const |
Definition at line 375 of file api_server.cpp.
|
inline |
Definition at line 124 of file api_server.h.
void esphome::api::APIServer::handle_disconnect | ( | APIConnection * | conn | ) |
Definition at line 177 of file api_server.cpp.
bool esphome::api::APIServer::is_connected | ( | ) | const |
Definition at line 388 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 95 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 397 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 179 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 242 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 188 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 260 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 278 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 332 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 197 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 206 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 305 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 323 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 251 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 296 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 215 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 389 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 224 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 233 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 287 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 269 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 339 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Controller.
Definition at line 314 of file api_server.cpp.
|
inline |
Definition at line 95 of file api_server.h.
void esphome::api::APIServer::request_time | ( | ) |
Definition at line 381 of file api_server.cpp.
void esphome::api::APIServer::send_homeassistant_service_call | ( | const HomeassistantServiceResponse & | call | ) |
Definition at line 350 of file api_server.cpp.
|
inline |
Definition at line 38 of file api_server.h.
void esphome::api::APIServer::set_password | ( | const std::string & | password | ) |
Definition at line 349 of file api_server.cpp.
void esphome::api::APIServer::set_port | ( | uint16_t | port | ) |
Definition at line 346 of file api_server.cpp.
void esphome::api::APIServer::set_reboot_timeout | ( | uint32_t | reboot_timeout | ) |
Definition at line 379 of file api_server.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 25 of file api_server.cpp.
void esphome::api::APIServer::subscribe_home_assistant_state | ( | std::string | entity_id, |
optional< std::string > | attribute, | ||
std::function< void(std::string)> | f | ||
) |
Definition at line 357 of file api_server.cpp.
bool esphome::api::APIServer::uses_password | ( | ) | const |
Definition at line 148 of file api_server.cpp.
|
protected |
Definition at line 140 of file api_server.h.
|
protected |
Definition at line 141 of file api_server.h.
|
protected |
Definition at line 136 of file api_server.h.
|
protected |
Definition at line 135 of file api_server.h.
|
protected |
Definition at line 144 of file api_server.h.
|
protected |
Definition at line 137 of file api_server.h.
|
protected |
Definition at line 133 of file api_server.h.
|
protected |
Definition at line 134 of file api_server.h.
|
protected |
Definition at line 132 of file api_server.h.
|
protected |
Definition at line 138 of file api_server.h.
|
protected |
Definition at line 139 of file api_server.h.