-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathBaseIssueDetector.ts
102 lines (80 loc) · 3.1 KB
/
BaseIssueDetector.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import {
IssueDetector,
IssueDetectorResult,
NetworkScores,
WebRTCStatsParsed,
WebRTCStatsParsedWithNetworkScores,
} from '../types';
import { scheduleTask } from '../utils/tasks';
import { CLEANUP_PREV_STATS_TTL_MS, MAX_PARSED_STATS_STORAGE_SIZE } from '../utils/constants';
export interface PrevStatsCleanupPayload {
connectionId: string;
cleanupCallback?: () => void;
}
export interface BaseIssueDetectorParams {
statsCleanupTtlMs?: number;
maxParsedStatsStorageSize?: number;
}
abstract class BaseIssueDetector implements IssueDetector {
readonly #parsedStatsStorage: Map<string, WebRTCStatsParsedWithNetworkScores[]> = new Map();
readonly #statsCleanupDelayMs: number;
readonly #maxParsedStatsStorageSize: number;
constructor(params: BaseIssueDetectorParams = {}) {
this.#statsCleanupDelayMs = params.statsCleanupTtlMs ?? CLEANUP_PREV_STATS_TTL_MS;
this.#maxParsedStatsStorageSize = params.maxParsedStatsStorageSize ?? MAX_PARSED_STATS_STORAGE_SIZE;
}
abstract performDetection(data: WebRTCStatsParsedWithNetworkScores): IssueDetectorResult;
detect(data: WebRTCStatsParsed, networkScores?: NetworkScores): IssueDetectorResult {
const parsedStatsWithNetworkScores = {
...data,
networkScores: {
...networkScores,
statsSamples: networkScores?.statsSamples || {},
},
};
const result = this.performDetection(parsedStatsWithNetworkScores);
this.setLastProcessedStats(data.connection.id, parsedStatsWithNetworkScores);
this.performPrevStatsCleanup({
connectionId: data.connection.id,
});
return result;
}
protected performPrevStatsCleanup(payload: PrevStatsCleanupPayload): void {
const { connectionId, cleanupCallback } = payload;
if (!this.#parsedStatsStorage.has(connectionId)) {
return;
}
scheduleTask({
taskId: connectionId,
delayMs: this.#statsCleanupDelayMs,
callback: () => {
this.deleteLastProcessedStats(connectionId);
if (typeof cleanupCallback === 'function') {
cleanupCallback();
}
},
});
}
protected setLastProcessedStats(connectionId: string, parsedStats: WebRTCStatsParsedWithNetworkScores): void {
if (!connectionId || parsedStats.connection.id !== connectionId) {
return;
}
const connectionStats = this.#parsedStatsStorage.get(connectionId) ?? [];
connectionStats.push(parsedStats);
if (connectionStats.length > this.#maxParsedStatsStorageSize) {
connectionStats.shift();
}
this.#parsedStatsStorage.set(connectionId, connectionStats);
}
protected getLastProcessedStats(connectionId: string): WebRTCStatsParsedWithNetworkScores | undefined {
const connectionStats = this.#parsedStatsStorage.get(connectionId);
return connectionStats?.[connectionStats.length - 1];
}
protected getAllLastProcessedStats(connectionId: string): WebRTCStatsParsedWithNetworkScores[] {
return this.#parsedStatsStorage.get(connectionId) ?? [];
}
protected deleteLastProcessedStats(connectionId: string): void {
this.#parsedStatsStorage.delete(connectionId);
}
}
export default BaseIssueDetector;