homebridge 2.0.0-beta.30 → 2.0.0-beta.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +267 -3
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +92 -0
- package/dist/api.js.map +1 -1
- package/dist/bridgeService.d.ts +4 -2
- package/dist/bridgeService.d.ts.map +1 -1
- package/dist/bridgeService.js +1 -3
- package/dist/bridgeService.js.map +1 -1
- package/dist/childBridgeFork.d.ts +29 -2
- package/dist/childBridgeFork.d.ts.map +1 -1
- package/dist/childBridgeFork.js +294 -4
- package/dist/childBridgeFork.js.map +1 -1
- package/dist/childBridgeService.d.ts +19 -0
- package/dist/childBridgeService.d.ts.map +1 -1
- package/dist/childBridgeService.js +38 -3
- package/dist/childBridgeService.js.map +1 -1
- package/dist/externalPortService.d.ts +27 -6
- package/dist/externalPortService.d.ts.map +1 -1
- package/dist/externalPortService.js +73 -7
- package/dist/externalPortService.js.map +1 -1
- package/dist/index.d.ts +47 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/ipcService.d.ts +20 -0
- package/dist/ipcService.d.ts.map +1 -1
- package/dist/ipcService.js.map +1 -1
- package/dist/logger.d.ts +6 -0
- package/dist/logger.d.ts.map +1 -1
- package/dist/logger.js +8 -0
- package/dist/logger.js.map +1 -1
- package/dist/matter/index.d.ts +123 -0
- package/dist/matter/index.d.ts.map +1 -0
- package/dist/matter/index.js +19 -0
- package/dist/matter/index.js.map +1 -0
- package/dist/matter/matterAccessoryCache.d.ts +96 -0
- package/dist/matter/matterAccessoryCache.d.ts.map +1 -0
- package/dist/matter/matterAccessoryCache.js +192 -0
- package/dist/matter/matterAccessoryCache.js.map +1 -0
- package/dist/matter/matterBehaviors.d.ts +194 -0
- package/dist/matter/matterBehaviors.d.ts.map +1 -0
- package/dist/matter/matterBehaviors.js +665 -0
- package/dist/matter/matterBehaviors.js.map +1 -0
- package/dist/matter/matterConfigValidator.d.ts +81 -0
- package/dist/matter/matterConfigValidator.d.ts.map +1 -0
- package/dist/matter/matterConfigValidator.js +240 -0
- package/dist/matter/matterConfigValidator.js.map +1 -0
- package/dist/matter/matterErrorHandler.d.ts +106 -0
- package/dist/matter/matterErrorHandler.d.ts.map +1 -0
- package/dist/matter/matterErrorHandler.js +495 -0
- package/dist/matter/matterErrorHandler.js.map +1 -0
- package/dist/matter/matterLogFormatter.d.ts +19 -0
- package/dist/matter/matterLogFormatter.d.ts.map +1 -0
- package/dist/matter/matterLogFormatter.js +144 -0
- package/dist/matter/matterLogFormatter.js.map +1 -0
- package/dist/matter/matterNetworkMonitor.d.ts +68 -0
- package/dist/matter/matterNetworkMonitor.d.ts.map +1 -0
- package/dist/matter/matterNetworkMonitor.js +249 -0
- package/dist/matter/matterNetworkMonitor.js.map +1 -0
- package/dist/matter/matterServer.d.ts +656 -0
- package/dist/matter/matterServer.d.ts.map +1 -0
- package/dist/matter/matterServer.js +1690 -0
- package/dist/matter/matterServer.js.map +1 -0
- package/dist/matter/matterServerHelpers.d.ts +81 -0
- package/dist/matter/matterServerHelpers.d.ts.map +1 -0
- package/dist/matter/matterServerHelpers.js +323 -0
- package/dist/matter/matterServerHelpers.js.map +1 -0
- package/dist/matter/matterSharedTypes.d.ts +170 -0
- package/dist/matter/matterSharedTypes.d.ts.map +1 -0
- package/dist/matter/matterSharedTypes.js +52 -0
- package/dist/matter/matterSharedTypes.js.map +1 -0
- package/dist/matter/matterStorage.d.ts +128 -0
- package/dist/matter/matterStorage.d.ts.map +1 -0
- package/dist/matter/matterStorage.js +415 -0
- package/dist/matter/matterStorage.js.map +1 -0
- package/dist/matter/matterTypes.d.ts +745 -0
- package/dist/matter/matterTypes.d.ts.map +1 -0
- package/dist/matter/matterTypes.js +174 -0
- package/dist/matter/matterTypes.js.map +1 -0
- package/dist/server.d.ts +23 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +385 -7
- package/dist/server.js.map +1 -1
- package/dist/user.d.ts +1 -0
- package/dist/user.d.ts.map +1 -1
- package/dist/user.js +3 -0
- package/dist/user.js.map +1 -1
- package/package.json +16 -15
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
/* global NodeJS */
|
|
2
|
+
/**
|
|
3
|
+
* Custom Matter.js Storage Implementation for Homebridge
|
|
4
|
+
*
|
|
5
|
+
* Provides persistent storage for Matter fabric data and device configuration.
|
|
6
|
+
* This ensures commissioning data persists across Homebridge restarts.
|
|
7
|
+
*/
|
|
8
|
+
import { Buffer } from 'node:buffer';
|
|
9
|
+
import { readFileSync } from 'node:fs';
|
|
10
|
+
import { mkdir, rename, writeFile } from 'node:fs/promises';
|
|
11
|
+
import { dirname, join } from 'node:path';
|
|
12
|
+
import { Logger } from '../logger.js';
|
|
13
|
+
const log = Logger.withPrefix('Matter/Storage');
|
|
14
|
+
// Storage configuration constants
|
|
15
|
+
const STORAGE_WRITE_DEBOUNCE_MS = 100; // Delay for non-critical writes
|
|
16
|
+
/**
|
|
17
|
+
* Custom Matter.js StorageContext implementation for Homebridge
|
|
18
|
+
* Provides persistent storage for fabric data and device configuration
|
|
19
|
+
*/
|
|
20
|
+
export class HomebridgeMatterStorage {
|
|
21
|
+
namespace;
|
|
22
|
+
storage = new Map();
|
|
23
|
+
filePath;
|
|
24
|
+
isInitialized = false;
|
|
25
|
+
writeTimer = null;
|
|
26
|
+
pendingWrite = false;
|
|
27
|
+
persistLock = null;
|
|
28
|
+
constructor(namespace, storagePath) {
|
|
29
|
+
this.namespace = namespace;
|
|
30
|
+
this.filePath = join(storagePath, `${namespace}.json`);
|
|
31
|
+
// Synchronously load existing data to avoid race conditions with Matter.js
|
|
32
|
+
// Matter.js expects storage to be immediately available
|
|
33
|
+
this.initializeSync();
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Synchronously initialize storage by loading existing data
|
|
37
|
+
* This is called in the constructor to ensure storage is ready immediately
|
|
38
|
+
*/
|
|
39
|
+
initializeSync() {
|
|
40
|
+
try {
|
|
41
|
+
const fileContent = readFileSync(this.filePath, 'utf-8');
|
|
42
|
+
// Parse WITHOUT a reviver - we'll deserialize manually
|
|
43
|
+
const data = JSON.parse(fileContent);
|
|
44
|
+
// Ensure data is valid before loading
|
|
45
|
+
if (data && typeof data === 'object') {
|
|
46
|
+
// Deserialize ALL values as we load them into the Map
|
|
47
|
+
const entries = Object.entries(data).map(([key, value]) => [
|
|
48
|
+
key,
|
|
49
|
+
this.deserializeValue(value),
|
|
50
|
+
]);
|
|
51
|
+
this.storage = new Map(entries);
|
|
52
|
+
log.debug(`Loaded ${this.storage.size} entries for namespace: ${this.namespace}`);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
log.warn(`Invalid storage data for ${this.namespace}, starting fresh`);
|
|
56
|
+
this.storage = new Map();
|
|
57
|
+
}
|
|
58
|
+
this.isInitialized = true;
|
|
59
|
+
}
|
|
60
|
+
catch (error) {
|
|
61
|
+
if (error.code === 'ENOENT') {
|
|
62
|
+
log.debug(`No existing storage for namespace: ${this.namespace}`);
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
log.warn(`Failed to load storage for ${this.namespace} (${error.message}), starting fresh`);
|
|
66
|
+
}
|
|
67
|
+
// Create fresh storage if file doesn't exist or is corrupted
|
|
68
|
+
this.storage = new Map();
|
|
69
|
+
this.isInitialized = true;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Initialize storage and load existing data (async for compatibility)
|
|
74
|
+
* Note: Storage is now initialized synchronously in constructor
|
|
75
|
+
*/
|
|
76
|
+
async initialize() {
|
|
77
|
+
// Storage is already initialized in constructor
|
|
78
|
+
return Promise.resolve();
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Build a context key from an array of contexts
|
|
82
|
+
*/
|
|
83
|
+
buildContextKey(contexts) {
|
|
84
|
+
return contexts.join('.');
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Recursively convert special serialized types back to their original types
|
|
88
|
+
*
|
|
89
|
+
* This is necessary because JSON.parse() doesn't automatically reconstruct:
|
|
90
|
+
* - BigInt values (serialized as {__type: 'bigint', value: string})
|
|
91
|
+
* - Uint8Array values (serialized as {__type: 'Uint8Array', value: number[]})
|
|
92
|
+
* - Buffer values (Node.js format: {type: 'Buffer', data: number[]})
|
|
93
|
+
*
|
|
94
|
+
* Matter.js fabric data contains these types which must be properly restored
|
|
95
|
+
* for commissioning to work across restarts.
|
|
96
|
+
*
|
|
97
|
+
* @param value - The value to deserialize (might be nested object/array)
|
|
98
|
+
* @returns The deserialized value with proper types restored
|
|
99
|
+
*/
|
|
100
|
+
deserializeValue(value) {
|
|
101
|
+
if (value && typeof value === 'object') {
|
|
102
|
+
// Handle special type markers
|
|
103
|
+
const obj = value;
|
|
104
|
+
if (obj.__type === 'bigint' && typeof obj.value === 'string') {
|
|
105
|
+
return BigInt(obj.value);
|
|
106
|
+
}
|
|
107
|
+
if (obj.__type === 'Uint8Array' && Array.isArray(obj.value)) {
|
|
108
|
+
return new Uint8Array(obj.value);
|
|
109
|
+
}
|
|
110
|
+
// Handle Node.js Buffer JSON format: {type: "Buffer", data: [...]}
|
|
111
|
+
if (obj.type === 'Buffer' && Array.isArray(obj.data)) {
|
|
112
|
+
return new Uint8Array(obj.data);
|
|
113
|
+
}
|
|
114
|
+
// Recursively process arrays
|
|
115
|
+
if (Array.isArray(value)) {
|
|
116
|
+
return value.map(item => this.deserializeValue(item));
|
|
117
|
+
}
|
|
118
|
+
// Recursively process plain objects
|
|
119
|
+
if (Object.getPrototypeOf(value) === Object.prototype) {
|
|
120
|
+
const result = {};
|
|
121
|
+
for (const [k, v] of Object.entries(value)) {
|
|
122
|
+
result[k] = this.deserializeValue(v);
|
|
123
|
+
}
|
|
124
|
+
return result;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return value;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Get a value from storage (Matter.js interface)
|
|
131
|
+
* Values are already deserialized during load, so no additional deserialization needed
|
|
132
|
+
*/
|
|
133
|
+
get(contexts, key) {
|
|
134
|
+
// Storage is initialized in constructor, so this should always work
|
|
135
|
+
const fullKey = contexts.length ? `${this.buildContextKey(contexts)}.${key}` : key;
|
|
136
|
+
return this.storage.get(fullKey);
|
|
137
|
+
}
|
|
138
|
+
set(contexts, keyOrValues, value) {
|
|
139
|
+
const contextKey = this.buildContextKey(contexts);
|
|
140
|
+
if (typeof keyOrValues === 'string') {
|
|
141
|
+
const fullKey = contextKey ? `${contextKey}.${keyOrValues}` : keyOrValues;
|
|
142
|
+
this.storage.set(fullKey, value);
|
|
143
|
+
}
|
|
144
|
+
else {
|
|
145
|
+
for (const [k, v] of Object.entries(keyOrValues)) {
|
|
146
|
+
const fullKey = contextKey ? `${contextKey}.${k}` : k;
|
|
147
|
+
this.storage.set(fullKey, v);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
// Debounce writes to avoid excessive disk I/O
|
|
151
|
+
void this.schedulePersist();
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* Delete a key from storage (Matter.js interface)
|
|
155
|
+
*/
|
|
156
|
+
delete(contexts, key) {
|
|
157
|
+
const fullKey = contexts.length ? `${this.buildContextKey(contexts)}.${key}` : key;
|
|
158
|
+
const deleted = this.storage.delete(fullKey);
|
|
159
|
+
if (deleted) {
|
|
160
|
+
void this.schedulePersist();
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* Clear all storage in a context (Matter.js interface)
|
|
165
|
+
*/
|
|
166
|
+
clearAll(contexts) {
|
|
167
|
+
const contextKey = this.buildContextKey(contexts);
|
|
168
|
+
const prefix = contextKey ? `${contextKey}.` : '';
|
|
169
|
+
// Collect keys to delete first to avoid modifying during iteration
|
|
170
|
+
const keysToDelete = [];
|
|
171
|
+
for (const key of this.storage.keys()) {
|
|
172
|
+
if (!prefix || key.startsWith(prefix)) {
|
|
173
|
+
keysToDelete.push(key);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
// Delete collected keys
|
|
177
|
+
for (const key of keysToDelete) {
|
|
178
|
+
this.storage.delete(key);
|
|
179
|
+
}
|
|
180
|
+
if (keysToDelete.length > 0) {
|
|
181
|
+
void this.schedulePersist();
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* Get all keys in a context (Matter.js interface)
|
|
186
|
+
*/
|
|
187
|
+
keys(contexts) {
|
|
188
|
+
if (!this.isInitialized) {
|
|
189
|
+
return [];
|
|
190
|
+
}
|
|
191
|
+
const contextKey = this.buildContextKey(contexts);
|
|
192
|
+
const prefix = contextKey ? `${contextKey}.` : '';
|
|
193
|
+
const contextKeys = [];
|
|
194
|
+
for (const key of this.storage.keys()) {
|
|
195
|
+
if (prefix) {
|
|
196
|
+
// Return keys within this context (strip context prefix)
|
|
197
|
+
if (key.startsWith(prefix)) {
|
|
198
|
+
const subKey = key.substring(prefix.length);
|
|
199
|
+
// Only include direct children (no further nesting)
|
|
200
|
+
if (!subKey.includes('.')) {
|
|
201
|
+
contextKeys.push(subKey);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
else {
|
|
206
|
+
// Root level - return keys with no dots
|
|
207
|
+
if (!key.includes('.')) {
|
|
208
|
+
contextKeys.push(key);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
return contextKeys;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Get all child context names (Matter.js interface)
|
|
216
|
+
*/
|
|
217
|
+
contexts(contexts) {
|
|
218
|
+
if (!this.isInitialized) {
|
|
219
|
+
return [];
|
|
220
|
+
}
|
|
221
|
+
const contextKey = this.buildContextKey(contexts);
|
|
222
|
+
const prefix = contextKey ? `${contextKey}.` : '';
|
|
223
|
+
const childContexts = new Set();
|
|
224
|
+
for (const key of this.storage.keys()) {
|
|
225
|
+
if (prefix) {
|
|
226
|
+
// Find sub-contexts within this context
|
|
227
|
+
if (key.startsWith(prefix)) {
|
|
228
|
+
const subKey = key.substring(prefix.length);
|
|
229
|
+
const nextDot = subKey.indexOf('.');
|
|
230
|
+
if (nextDot > 0) {
|
|
231
|
+
childContexts.add(subKey.substring(0, nextDot));
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
else {
|
|
236
|
+
// Root level - find top-level contexts
|
|
237
|
+
const dotIndex = key.indexOf('.');
|
|
238
|
+
if (dotIndex > 0) {
|
|
239
|
+
childContexts.add(key.substring(0, dotIndex));
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
return Array.from(childContexts);
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* Check if a key exists (Matter.js interface)
|
|
247
|
+
*/
|
|
248
|
+
has(contexts, key) {
|
|
249
|
+
if (!this.isInitialized) {
|
|
250
|
+
return false;
|
|
251
|
+
}
|
|
252
|
+
const fullKey = contexts.length ? `${this.buildContextKey(contexts)}.${key}` : key;
|
|
253
|
+
return this.storage.has(fullKey);
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Get all values in a context
|
|
257
|
+
* Returns direct children only (does not include nested contexts)
|
|
258
|
+
*/
|
|
259
|
+
async values(contexts) {
|
|
260
|
+
await this.initialize();
|
|
261
|
+
const contextKey = this.buildContextKey(contexts);
|
|
262
|
+
const prefix = contextKey ? `${contextKey}.` : '';
|
|
263
|
+
const values = {};
|
|
264
|
+
for (const [key, value] of this.storage.entries()) {
|
|
265
|
+
// Check if key is in the requested context
|
|
266
|
+
if (prefix && !key.startsWith(prefix)) {
|
|
267
|
+
continue;
|
|
268
|
+
}
|
|
269
|
+
const subKey = prefix ? key.substring(prefix.length) : key;
|
|
270
|
+
// Only include direct children (no nested contexts)
|
|
271
|
+
if (!subKey.includes('.')) {
|
|
272
|
+
values[subKey] = value; // values are already deserialized
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
return values;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Schedule a persist operation (debounced)
|
|
279
|
+
*/
|
|
280
|
+
async schedulePersist() {
|
|
281
|
+
if (this.writeTimer) {
|
|
282
|
+
clearTimeout(this.writeTimer);
|
|
283
|
+
}
|
|
284
|
+
this.pendingWrite = true;
|
|
285
|
+
// Immediate persist for critical data (fabric information)
|
|
286
|
+
const hasCriticalData = Array.from(this.storage.keys()).some(key => key.includes('fabric'));
|
|
287
|
+
if (hasCriticalData) {
|
|
288
|
+
await this.persist();
|
|
289
|
+
}
|
|
290
|
+
else {
|
|
291
|
+
// Debounce non-critical writes
|
|
292
|
+
this.writeTimer = setTimeout(() => {
|
|
293
|
+
void this.persist();
|
|
294
|
+
}, STORAGE_WRITE_DEBOUNCE_MS);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Persist storage to disk with atomic write
|
|
299
|
+
*/
|
|
300
|
+
async persist() {
|
|
301
|
+
// Wait for any in-progress persist operation to complete
|
|
302
|
+
if (this.persistLock) {
|
|
303
|
+
await this.persistLock;
|
|
304
|
+
}
|
|
305
|
+
if (!this.pendingWrite) {
|
|
306
|
+
return;
|
|
307
|
+
}
|
|
308
|
+
// Create a new lock for this persist operation
|
|
309
|
+
this.persistLock = (async () => {
|
|
310
|
+
try {
|
|
311
|
+
const data = Object.fromEntries(this.storage.entries());
|
|
312
|
+
const dir = dirname(this.filePath);
|
|
313
|
+
// Ensure directory exists
|
|
314
|
+
await mkdir(dir, { recursive: true });
|
|
315
|
+
// Atomic write: write to temp file then rename
|
|
316
|
+
// Use a unique temp file to avoid conflicts
|
|
317
|
+
const tempFile = `${this.filePath}.tmp.${Date.now()}`;
|
|
318
|
+
// Custom replacer to handle BigInt, Uint8Array, and Buffer serialization
|
|
319
|
+
const jsonString = JSON.stringify(data, (_key, value) => {
|
|
320
|
+
if (typeof value === 'bigint') {
|
|
321
|
+
return { __type: 'bigint', value: value.toString() };
|
|
322
|
+
}
|
|
323
|
+
// Handle Buffer before Uint8Array since Buffer extends Uint8Array
|
|
324
|
+
// Note: Buffer.toJSON() returns {type: 'Buffer', data: [...]}, but we want consistent format
|
|
325
|
+
if (Buffer.isBuffer(value)) {
|
|
326
|
+
return { __type: 'Uint8Array', value: Array.from(value) };
|
|
327
|
+
}
|
|
328
|
+
if (value instanceof Uint8Array) {
|
|
329
|
+
return { __type: 'Uint8Array', value: Array.from(value) };
|
|
330
|
+
}
|
|
331
|
+
return value;
|
|
332
|
+
}, 2);
|
|
333
|
+
await writeFile(tempFile, jsonString, 'utf-8');
|
|
334
|
+
await rename(tempFile, this.filePath);
|
|
335
|
+
this.pendingWrite = false;
|
|
336
|
+
log.debug(`Persisted ${this.storage.size} entries for namespace: ${this.namespace}`);
|
|
337
|
+
}
|
|
338
|
+
catch (error) {
|
|
339
|
+
log.error(`Failed to persist storage for ${this.namespace}:`, error);
|
|
340
|
+
// Don't throw - we don't want to break Matter operations
|
|
341
|
+
}
|
|
342
|
+
finally {
|
|
343
|
+
this.persistLock = null;
|
|
344
|
+
}
|
|
345
|
+
})();
|
|
346
|
+
await this.persistLock;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* Force immediate persist (for shutdown)
|
|
350
|
+
*/
|
|
351
|
+
async forcePersist() {
|
|
352
|
+
if (this.writeTimer) {
|
|
353
|
+
clearTimeout(this.writeTimer);
|
|
354
|
+
this.writeTimer = null;
|
|
355
|
+
}
|
|
356
|
+
if (this.pendingWrite) {
|
|
357
|
+
await this.persist();
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* Close and cleanup storage
|
|
362
|
+
*/
|
|
363
|
+
async close() {
|
|
364
|
+
await this.forcePersist();
|
|
365
|
+
this.storage.clear();
|
|
366
|
+
this.isInitialized = false;
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* Get storage statistics
|
|
370
|
+
*/
|
|
371
|
+
getStats() {
|
|
372
|
+
return {
|
|
373
|
+
entries: this.storage.size,
|
|
374
|
+
namespace: this.namespace,
|
|
375
|
+
path: this.filePath,
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* Storage Manager for Matter.js
|
|
381
|
+
* Manages multiple storage contexts for different namespaces
|
|
382
|
+
*/
|
|
383
|
+
export class MatterStorageManager {
|
|
384
|
+
storagePath;
|
|
385
|
+
storages = new Map();
|
|
386
|
+
constructor(storagePath) {
|
|
387
|
+
this.storagePath = storagePath;
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* Get or create a storage context for a namespace
|
|
391
|
+
*/
|
|
392
|
+
getStorage(namespace) {
|
|
393
|
+
let storage = this.storages.get(namespace);
|
|
394
|
+
if (!storage) {
|
|
395
|
+
storage = new HomebridgeMatterStorage(namespace, this.storagePath);
|
|
396
|
+
this.storages.set(namespace, storage);
|
|
397
|
+
}
|
|
398
|
+
return storage;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Close all storage contexts
|
|
402
|
+
*/
|
|
403
|
+
async closeAll() {
|
|
404
|
+
const promises = Array.from(this.storages.values()).map(storage => storage.close());
|
|
405
|
+
await Promise.all(promises);
|
|
406
|
+
this.storages.clear();
|
|
407
|
+
}
|
|
408
|
+
/**
|
|
409
|
+
* Get statistics for all storage contexts
|
|
410
|
+
*/
|
|
411
|
+
getAllStats() {
|
|
412
|
+
return Array.from(this.storages.values()).map(storage => storage.getStats());
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
//# sourceMappingURL=matterStorage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"matterStorage.js","sourceRoot":"","sources":["../../src/matter/matterStorage.ts"],"names":[],"mappings":"AAAA,mBAAmB;AAEnB;;;;;GAKG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAC3D,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAEzC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAErC,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAA;AAE/C,kCAAkC;AAClC,MAAM,yBAAyB,GAAG,GAAG,CAAA,CAAC,gCAAgC;AAEtE;;;GAGG;AACH,MAAM,OAAO,uBAAuB;IASxB;IARF,OAAO,GAAqB,IAAI,GAAG,EAAE,CAAA;IAC5B,QAAQ,CAAQ;IACzB,aAAa,GAAG,KAAK,CAAA;IACrB,UAAU,GAA0B,IAAI,CAAA;IACxC,YAAY,GAAG,KAAK,CAAA;IACpB,WAAW,GAAyB,IAAI,CAAA;IAEhD,YACU,SAAiB,EACzB,WAAmB;QADX,cAAS,GAAT,SAAS,CAAQ;QAGzB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,WAAW,EAAE,GAAG,SAAS,OAAO,CAAC,CAAA;QAEtD,2EAA2E;QAC3E,wDAAwD;QACxD,IAAI,CAAC,cAAc,EAAE,CAAA;IACvB,CAAC;IAED;;;OAGG;IACK,cAAc;QACpB,IAAI,CAAC;YACH,MAAM,WAAW,GAAG,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;YACxD,uDAAuD;YACvD,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;YAEpC,sCAAsC;YACtC,IAAI,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE,CAAC;gBACrC,sDAAsD;gBACtD,MAAM,OAAO,GAAyB,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC;oBAC/E,GAAG;oBACH,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC;iBAC7B,CAAC,CAAA;gBACF,IAAI,CAAC,OAAO,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,CAAA;gBAC/B,GAAG,CAAC,KAAK,CAAC,UAAU,IAAI,CAAC,OAAO,CAAC,IAAI,2BAA2B,IAAI,CAAC,SAAS,EAAE,CAAC,CAAA;YACnF,CAAC;iBAAM,CAAC;gBACN,GAAG,CAAC,IAAI,CAAC,4BAA4B,IAAI,CAAC,SAAS,kBAAkB,CAAC,CAAA;gBACtE,IAAI,CAAC,OAAO,GAAG,IAAI,GAAG,EAAE,CAAA;YAC1B,CAAC;YACD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAA;QAC3B,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACpB,IAAI,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;gBAC5B,GAAG,CAAC,KAAK,CAAC,sCAAsC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAA;YACnE,CAAC;iBAAM,CAAC;gBACN,GAAG,CAAC,IAAI,CAAC,8BAA8B,IAAI,CAAC,SAAS,KAAK,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;YAC7F,CAAC;YACD,6DAA6D;YAC7D,IAAI,CAAC,OAAO,GAAG,IAAI,GAAG,EAAE,CAAA;YACxB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAA;QAC3B,CAAC;IACH,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,UAAU;QACd,gDAAgD;QAChD,OAAO,OAAO,CAAC,OAAO,EAAE,CAAA;IAC1B,CAAC;IAED;;OAEG;IACK,eAAe,CAAC,QAAkB;QACxC,OAAO,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IAC3B,CAAC;IAED;;;;;;;;;;;;;OAaG;IACK,gBAAgB,CAAC,KAAc;QACrC,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;YACvC,8BAA8B;YAC9B,MAAM,GAAG,GAAG,KAAY,CAAA;YACxB,IAAI,GAAG,CAAC,MAAM,KAAK,QAAQ,IAAI,OAAO,GAAG,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;gBAC7D,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;YAC1B,CAAC;YACD,IAAI,GAAG,CAAC,MAAM,KAAK,YAAY,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC5D,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;YAClC,CAAC;YACD,mEAAmE;YACnE,IAAI,GAAG,CAAC,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;gBACrD,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;YACjC,CAAC;YAED,6BAA6B;YAC7B,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;gBACzB,OAAO,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAA;YACvD,CAAC;YAED,oCAAoC;YACpC,IAAI,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,MAAM,CAAC,SAAS,EAAE,CAAC;gBACtD,MAAM,MAAM,GAA4B,EAAE,CAAA;gBAC1C,KAAK,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;oBAC3C,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAA;gBACtC,CAAC;gBACD,OAAO,MAAM,CAAA;YACf,CAAC;QACH,CAAC;QAED,OAAO,KAAK,CAAA;IACd,CAAC;IAED;;;OAGG;IACH,GAAG,CAAC,QAAkB,EAAE,GAAW;QACjC,oEAAoE;QACpE,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;QAClF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;IAOD,GAAG,CAAC,QAAkB,EAAE,WAA6C,EAAE,KAAe;QACpF,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QAEjD,IAAI,OAAO,WAAW,KAAK,QAAQ,EAAE,CAAC;YACpC,MAAM,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,IAAI,WAAW,EAAE,CAAC,CAAC,CAAC,WAAW,CAAA;YACzE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QAClC,CAAC;aAAM,CAAC;YACN,KAAK,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,CAAC;gBACjD,MAAM,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;gBACrD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,CAAA;YAC9B,CAAC;QACH,CAAC;QAED,8CAA8C;QAC9C,KAAK,IAAI,CAAC,eAAe,EAAE,CAAA;IAC7B,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,QAAkB,EAAE,GAAW;QACpC,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;QAClF,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;QAC5C,IAAI,OAAO,EAAE,CAAC;YACZ,KAAK,IAAI,CAAC,eAAe,EAAE,CAAA;QAC7B,CAAC;IACH,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,QAAkB;QACzB,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QACjD,MAAM,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAEjD,mEAAmE;QACnE,MAAM,YAAY,GAAa,EAAE,CAAA;QACjC,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC;YACtC,IAAI,CAAC,MAAM,IAAI,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC;gBACtC,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;YACxB,CAAC;QACH,CAAC;QAED,wBAAwB;QACxB,KAAK,MAAM,GAAG,IAAI,YAAY,EAAE,CAAC;YAC/B,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAA;QAC1B,CAAC;QAED,IAAI,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC5B,KAAK,IAAI,CAAC,eAAe,EAAE,CAAA;QAC7B,CAAC;IACH,CAAC;IAED;;OAEG;IACH,IAAI,CAAC,QAAkB;QACrB,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC;YACxB,OAAO,EAAE,CAAA;QACX,CAAC;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QACjD,MAAM,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QACjD,MAAM,WAAW,GAAa,EAAE,CAAA;QAEhC,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC;YACtC,IAAI,MAAM,EAAE,CAAC;gBACX,yDAAyD;gBACzD,IAAI,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC;oBAC3B,MAAM,MAAM,GAAG,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;oBAC3C,oDAAoD;oBACpD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;wBAC1B,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;oBAC1B,CAAC;gBACH,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,wCAAwC;gBACxC,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;oBACvB,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBACvB,CAAC;YACH,CAAC;QACH,CAAC;QAED,OAAO,WAAW,CAAA;IACpB,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,QAAkB;QACzB,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC;YACxB,OAAO,EAAE,CAAA;QACX,CAAC;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QACjD,MAAM,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QACjD,MAAM,aAAa,GAAG,IAAI,GAAG,EAAU,CAAA;QAEvC,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC;YACtC,IAAI,MAAM,EAAE,CAAC;gBACX,wCAAwC;gBACxC,IAAI,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC;oBAC3B,MAAM,MAAM,GAAG,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;oBAC3C,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;oBACnC,IAAI,OAAO,GAAG,CAAC,EAAE,CAAC;wBAChB,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAA;oBACjD,CAAC;gBACH,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,uCAAuC;gBACvC,MAAM,QAAQ,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;gBACjC,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;oBACjB,aAAa,CAAC,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAA;gBAC/C,CAAC;YACH,CAAC;QACH,CAAC;QAED,OAAO,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;IAClC,CAAC;IAED;;OAEG;IACH,GAAG,CAAC,QAAkB,EAAE,GAAW;QACjC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC;YACxB,OAAO,KAAK,CAAA;QACd,CAAC;QACD,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;QAClF,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;IAClC,CAAC;IAED;;;OAGG;IACH,KAAK,CAAC,MAAM,CAAC,QAAkB;QAC7B,MAAM,IAAI,CAAC,UAAU,EAAE,CAAA;QACvB,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QACjD,MAAM,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QACjD,MAAM,MAAM,GAA4B,EAAE,CAAA;QAE1C,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC;YAClD,2CAA2C;YAC3C,IAAI,MAAM,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC;gBACtC,SAAQ;YACV,CAAC;YAED,MAAM,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAA;YAE1D,oDAAoD;YACpD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;gBAC1B,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAA,CAAC,kCAAkC;YAC3D,CAAC;QACH,CAAC;QAED,OAAO,MAAM,CAAA;IACf,CAAC;IAED;;OAEG;IACK,KAAK,CAAC,eAAe;QAC3B,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACpB,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QAC/B,CAAC;QAED,IAAI,CAAC,YAAY,GAAG,IAAI,CAAA;QAExB,2DAA2D;QAC3D,MAAM,eAAe,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CACjE,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,CACvB,CAAA;QAED,IAAI,eAAe,EAAE,CAAC;YACpB,MAAM,IAAI,CAAC,OAAO,EAAE,CAAA;QACtB,CAAC;aAAM,CAAC;YACN,+BAA+B;YAC/B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,GAAG,EAAE;gBAChC,KAAK,IAAI,CAAC,OAAO,EAAE,CAAA;YACrB,CAAC,EAAE,yBAAyB,CAAC,CAAA;QAC/B,CAAC;IACH,CAAC;IAED;;OAEG;IACK,KAAK,CAAC,OAAO;QACnB,yDAAyD;QACzD,IAAI,IAAI,CAAC,WAAW,EAAE,CAAC;YACrB,MAAM,IAAI,CAAC,WAAW,CAAA;QACxB,CAAC;QAED,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;YACvB,OAAM;QACR,CAAC;QAED,+CAA+C;QAC/C,IAAI,CAAC,WAAW,GAAG,CAAC,KAAK,IAAI,EAAE;YAC7B,IAAI,CAAC;gBACH,MAAM,IAAI,GAAG,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAA;gBACvD,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAA;gBAElC,0BAA0B;gBAC1B,MAAM,KAAK,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;gBAErC,+CAA+C;gBAC/C,4CAA4C;gBAC5C,MAAM,QAAQ,GAAG,GAAG,IAAI,CAAC,QAAQ,QAAQ,IAAI,CAAC,GAAG,EAAE,EAAE,CAAA;gBACrD,yEAAyE;gBACzE,MAAM,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;oBACtD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;wBAC9B,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAA;oBACtD,CAAC;oBACD,kEAAkE;oBAClE,6FAA6F;oBAC7F,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;wBAC3B,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAA;oBAC3D,CAAC;oBACD,IAAI,KAAK,YAAY,UAAU,EAAE,CAAC;wBAChC,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAA;oBAC3D,CAAC;oBACD,OAAO,KAAK,CAAA;gBACd,CAAC,EAAE,CAAC,CAAC,CAAA;gBACL,MAAM,SAAS,CAAC,QAAQ,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;gBAC9C,MAAM,MAAM,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;gBAErC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAA;gBACzB,GAAG,CAAC,KAAK,CAAC,aAAa,IAAI,CAAC,OAAO,CAAC,IAAI,2BAA2B,IAAI,CAAC,SAAS,EAAE,CAAC,CAAA;YACtF,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,GAAG,CAAC,KAAK,CAAC,iCAAiC,IAAI,CAAC,SAAS,GAAG,EAAE,KAAK,CAAC,CAAA;gBACpE,yDAAyD;YAC3D,CAAC;oBAAS,CAAC;gBACT,IAAI,CAAC,WAAW,GAAG,IAAI,CAAA;YACzB,CAAC;QACH,CAAC,CAAC,EAAE,CAAA;QAEJ,MAAM,IAAI,CAAC,WAAW,CAAA;IACxB,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,YAAY;QAChB,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACpB,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;YAC7B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAA;QACxB,CAAC;QACD,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC;YACtB,MAAM,IAAI,CAAC,OAAO,EAAE,CAAA;QACtB,CAAC;IACH,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,KAAK;QACT,MAAM,IAAI,CAAC,YAAY,EAAE,CAAA;QACzB,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAA;QACpB,IAAI,CAAC,aAAa,GAAG,KAAK,CAAA;IAC5B,CAAC;IAED;;OAEG;IACH,QAAQ;QACN,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI;YAC1B,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,IAAI,EAAE,IAAI,CAAC,QAAQ;SACpB,CAAA;IACH,CAAC;CACF;AAED;;;GAGG;AACH,MAAM,OAAO,oBAAoB;IAGX;IAFZ,QAAQ,GAAyC,IAAI,GAAG,EAAE,CAAA;IAElE,YAAoB,WAAmB;QAAnB,gBAAW,GAAX,WAAW,CAAQ;IAAG,CAAC;IAE3C;;OAEG;IACH,UAAU,CAAC,SAAiB;QAC1B,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;QAC1C,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,OAAO,GAAG,IAAI,uBAAuB,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAA;YAClE,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;QACvC,CAAC;QACD,OAAO,OAAO,CAAA;IAChB,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,QAAQ;QACZ,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAA;QACnF,MAAM,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;QAC3B,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAA;IACvB,CAAC;IAED;;OAEG;IACH,WAAW;QACT,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAA;IAC9E,CAAC;CACF"}
|