[core] Inline api_is_connected() for hot-path callers (#15888)

This commit is contained in:
J. Nick Koston
2026-04-21 13:48:33 +02:00
committed by GitHub
parent e4d5886383
commit 947c714f89
2 changed files with 20 additions and 16 deletions
-14
View File
@@ -1,28 +1,14 @@
#include "esphome/core/util.h"
#include "esphome/core/defines.h"
#include "esphome/core/application.h"
#include "esphome/core/version.h"
#include "esphome/core/log.h"
#ifdef USE_API
#include "esphome/components/api/api_server.h"
#endif
#ifdef USE_MQTT
#include "esphome/components/mqtt/mqtt_client.h"
#endif
namespace esphome {
bool api_is_connected() {
#ifdef USE_API
if (api::global_api_server != nullptr) {
return api::global_api_server->is_connected();
}
#endif
return false;
}
bool mqtt_is_connected() {
#ifdef USE_MQTT
if (mqtt::global_mqtt_client != nullptr) {
+20 -2
View File
@@ -1,10 +1,28 @@
#pragma once
#include <string>
#include "esphome/core/defines.h"
#include "esphome/core/helpers.h"
#ifdef USE_API
#include "esphome/components/api/api_server.h"
#endif
namespace esphome {
/// Return whether the node has at least one client connected to the native API
bool api_is_connected();
/// Return whether the node has at least one client connected to the native API.
///
/// Inline so that hot-path callers (e.g. component loop() ticks that check connectivity every
/// iteration) can skip the call8/return pair. With USE_API disabled this trivially returns false
/// and collapses at compile time.
#ifdef USE_API
ESPHOME_ALWAYS_INLINE inline bool api_is_connected() {
return api::global_api_server != nullptr && api::global_api_server->is_connected();
}
#else
ESPHOME_ALWAYS_INLINE inline bool api_is_connected() { return false; }
#endif
/// Return whether the node has an active connection to an MQTT broker
bool mqtt_is_connected();