Fix Promise issue
This commit is contained in:
parent
8e183b9fb7
commit
60be04925e
2 changed files with 62 additions and 33 deletions
|
@ -1,45 +1,73 @@
|
||||||
import type { HapDiscover } from './api'
|
import type {HapDiscover} from './api'
|
||||||
import { HAPNodeJSClient } from 'hap-node-client'
|
import {HAPNodeJSClient} from 'hap-node-client'
|
||||||
|
|
||||||
import { Device, DeviceBoundary } from '../boundaries'
|
import {Device, DeviceBoundary} from '../boundaries'
|
||||||
import { Array, Unknown } from 'runtypes'
|
import {Array, Unknown} from 'runtypes'
|
||||||
|
import {Logger} from "homebridge";
|
||||||
|
|
||||||
const MaybeDevices = Array(Unknown)
|
const MaybeDevices = Array(Unknown)
|
||||||
|
|
||||||
export const discover: HapDiscover = ({ pin, refreshInterval, discoveryTimeout, requestTimeout, logger, debug }) => {
|
type HapConfig = {
|
||||||
|
debug: boolean
|
||||||
|
refresh: number
|
||||||
|
timeout: number
|
||||||
|
reqTimeout: number
|
||||||
|
pin: string
|
||||||
|
}
|
||||||
|
type HapClient = typeof HAPNodeJSClient
|
||||||
|
type ResolveFunc = (devices: Device[]) => void
|
||||||
|
type RejectFunc = (error: unknown) => void
|
||||||
|
|
||||||
|
const clientMap: Record<string,HapClient> = {}
|
||||||
|
const promiseMap: Record<string,[ResolveFunc,RejectFunc]> = {}
|
||||||
|
|
||||||
|
function startDiscovery(logger: Logger, config: HapConfig, resolve: ResolveFunc, reject: RejectFunc) {
|
||||||
|
const key = JSON.stringify(config)
|
||||||
|
|
||||||
|
if (!clientMap[key]) {
|
||||||
|
logger.debug('Creating new HAP client')
|
||||||
|
const client = new HAPNodeJSClient(config)
|
||||||
|
client.on('Ready', (deviceData: unknown) => {
|
||||||
|
try {
|
||||||
|
const devices: Device[] = []
|
||||||
|
|
||||||
|
for (const device of MaybeDevices.check(deviceData)) {
|
||||||
|
try {
|
||||||
|
devices.push(DeviceBoundary.check(device))
|
||||||
|
} catch (e) {
|
||||||
|
logger.error(
|
||||||
|
'Boundary check for device data failed %o %s',
|
||||||
|
e,
|
||||||
|
JSON.stringify(device, null, 4),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (promiseMap[key]) promiseMap[key][0](devices)
|
||||||
|
} catch (e) {
|
||||||
|
if (promiseMap[key]) promiseMap[key][1](e)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
clientMap[key] = client
|
||||||
|
} else {
|
||||||
|
logger.debug('Reusing existing HAP client')
|
||||||
|
}
|
||||||
|
promiseMap[key] = [resolve, reject]
|
||||||
|
}
|
||||||
|
|
||||||
|
export const discover: HapDiscover = ({pin, refreshInterval, discoveryTimeout, requestTimeout, logger, debug}) => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
try {
|
startDiscovery(
|
||||||
const client = new HAPNodeJSClient({
|
logger,
|
||||||
|
{
|
||||||
debug: debug,
|
debug: debug,
|
||||||
refresh: refreshInterval,
|
refresh: refreshInterval,
|
||||||
timeout: discoveryTimeout,
|
timeout: discoveryTimeout,
|
||||||
reqTimeout: requestTimeout,
|
reqTimeout: requestTimeout,
|
||||||
pin,
|
pin,
|
||||||
})
|
},
|
||||||
|
resolve,
|
||||||
client.on('Ready', (deviceData: unknown) => {
|
reject
|
||||||
try {
|
)
|
||||||
const devices: Device[] = []
|
|
||||||
|
|
||||||
for (const device of MaybeDevices.check(deviceData)) {
|
|
||||||
try {
|
|
||||||
devices.push(DeviceBoundary.check(device))
|
|
||||||
} catch (e) {
|
|
||||||
logger.error(
|
|
||||||
'Boundary check for device data failed %o %s',
|
|
||||||
e,
|
|
||||||
JSON.stringify(device, null, 4),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve(devices)
|
|
||||||
} catch (e) {
|
|
||||||
reject(e)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} catch (e) {
|
|
||||||
reject(e)
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,6 +112,7 @@ export class PrometheusExporterPlatform implements IndependentPlatformPlugin {
|
||||||
this.metrics = aggregate(devices)
|
this.metrics = aggregate(devices)
|
||||||
this.metricsDiscovered = true
|
this.metricsDiscovered = true
|
||||||
this.log.debug('HAP discovery completed, %d metrics discovered', this.metrics.length)
|
this.log.debug('HAP discovery completed, %d metrics discovered', this.metrics.length)
|
||||||
|
this.startHapDiscovery()
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
this.log.error('HAP discovery error', e)
|
this.log.error('HAP discovery error', e)
|
||||||
|
|
Loading…
Reference in a new issue