perf: Deduplicate concurrent Home Assistant registry list fetches (#2650)

This commit is contained in:
Dermot Duffy
2026-08-02 21:35:48 -07:00
committed by GitHub
parent 5d247d4074
commit 4a7c1b62b0
6 changed files with 265 additions and 26 deletions
+13 -13
View File
@@ -1,4 +1,5 @@
import { errorToConsole } from '../../../utils/basic';
import { OnceRunner } from '../../../utils/concurrency/once-runner';
import type { HomeAssistant } from '../../types';
import { homeAssistantWSRequest } from '../../ws-request';
import {
@@ -10,7 +11,7 @@ import {
export class DeviceRegistryManager {
private _cache: DeviceCache;
private _fetchedDeviceList = false;
private _deviceListFetch = new OnceRunner();
constructor(cache: DeviceCache) {
this._cache = cache;
@@ -35,22 +36,21 @@ export class DeviceRegistryManager {
}
private async _fetchDeviceList(hass: HomeAssistant): Promise<void> {
if (this._fetchedDeviceList) {
return;
}
let deviceList: DeviceList | null = null;
try {
deviceList = await homeAssistantWSRequest<DeviceList>(hass, deviceListSchema, {
type: 'config/device_registry/list',
await this._deviceListFetch.run(async () => {
const deviceList = await homeAssistantWSRequest<DeviceList>(
hass,
deviceListSchema,
{
type: 'config/device_registry/list',
},
);
deviceList.forEach((device) => {
this._cache.set(device.id, device);
});
});
} catch (e) {
errorToConsole(e);
return;
}
deviceList.forEach((device) => {
this._cache.set(device.id, device);
});
this._fetchedDeviceList = true;
}
}
+13 -13
View File
@@ -1,4 +1,5 @@
import { errorToConsole } from '../../../utils/basic.js';
import { OnceRunner } from '../../../utils/concurrency/once-runner.js';
import type { HomeAssistant } from '../../types.js';
import { homeAssistantWSRequest } from '../../ws-request.js';
import {
@@ -16,7 +17,7 @@ import {
export class EntityRegistryManagerLive implements EntityRegistryManager {
private _cache: EntityCache;
private _fetchedEntityList = false;
private _entityListFetch = new OnceRunner();
constructor(cache: EntityCache) {
this._cache = cache;
@@ -69,22 +70,21 @@ export class EntityRegistryManagerLive implements EntityRegistryManager {
}
public async fetchEntityList(hass: HomeAssistant): Promise<void> {
if (this._fetchedEntityList) {
return;
}
let entityList: EntityList | null = null;
try {
entityList = await homeAssistantWSRequest<EntityList>(hass, entityListSchema, {
type: 'config/entity_registry/list',
await this._entityListFetch.run(async () => {
const entityList = await homeAssistantWSRequest<EntityList>(
hass,
entityListSchema,
{
type: 'config/entity_registry/list',
},
);
entityList.forEach((entity) => {
this._cache.set(entity.entity_id, entity);
});
});
} catch (e) {
errorToConsole(e);
return;
}
entityList.forEach((entity) => {
this._cache.set(entity.entity_id, entity);
});
this._fetchedEntityList = true;
}
}