1
1
import { IssueDetector , IssueDetectorResult , WebRTCStatsParsed } from '../types' ;
2
2
import { scheduleTask } from '../utils/tasks' ;
3
- import { CLEANUP_PREV_STATS_TTL_MS } from '../utils/constants' ;
3
+ import { CLEANUP_PREV_STATS_TTL_MS , MAX_PARSED_STATS_STORAGE_SIZE } from '../utils/constants' ;
4
4
5
5
export interface PrevStatsCleanupPayload {
6
6
connectionId : string ;
@@ -9,16 +9,19 @@ export interface PrevStatsCleanupPayload {
9
9
10
10
export interface BaseIssueDetectorParams {
11
11
statsCleanupTtlMs ?: number ;
12
+ maxParsedStatsStorageSize ?: number ;
12
13
}
13
14
14
15
abstract class BaseIssueDetector implements IssueDetector {
15
- readonly #lastProcessedStats : Map < string , WebRTCStatsParsed | undefined > ;
16
+ readonly #parsedStatsStorage : Map < string , WebRTCStatsParsed [ ] > = new Map ( ) ;
16
17
17
18
readonly #statsCleanupDelayMs: number ;
18
19
20
+ readonly #maxParsedStatsStorageSize: number ;
21
+
19
22
constructor ( params : BaseIssueDetectorParams = { } ) {
20
- this . #lastProcessedStats = new Map ( ) ;
21
23
this . #statsCleanupDelayMs = params . statsCleanupTtlMs ?? CLEANUP_PREV_STATS_TTL_MS ;
24
+ this . #maxParsedStatsStorageSize = params . maxParsedStatsStorageSize ?? MAX_PARSED_STATS_STORAGE_SIZE ;
22
25
}
23
26
24
27
abstract performDetection ( data : WebRTCStatsParsed ) : IssueDetectorResult ;
@@ -36,7 +39,7 @@ abstract class BaseIssueDetector implements IssueDetector {
36
39
protected performPrevStatsCleanup ( payload : PrevStatsCleanupPayload ) : void {
37
40
const { connectionId, cleanupCallback } = payload ;
38
41
39
- if ( ! this . #lastProcessedStats . has ( connectionId ) ) {
42
+ if ( ! this . #parsedStatsStorage . has ( connectionId ) ) {
40
43
return ;
41
44
}
42
45
@@ -54,15 +57,31 @@ abstract class BaseIssueDetector implements IssueDetector {
54
57
}
55
58
56
59
protected setLastProcessedStats ( connectionId : string , parsedStats : WebRTCStatsParsed ) : void {
57
- this . #lastProcessedStats. set ( connectionId , parsedStats ) ;
60
+ if ( ! connectionId || parsedStats . connection . id !== connectionId ) {
61
+ return ;
62
+ }
63
+
64
+ const connectionStats = this . #parsedStatsStorage. get ( connectionId ) ?? [ ] ;
65
+ connectionStats . push ( parsedStats ) ;
66
+
67
+ if ( connectionStats . length > this . #maxParsedStatsStorageSize) {
68
+ connectionStats . shift ( ) ;
69
+ }
70
+
71
+ this . #parsedStatsStorage. set ( connectionId , connectionStats ) ;
58
72
}
59
73
60
74
protected getLastProcessedStats ( connectionId : string ) : WebRTCStatsParsed | undefined {
61
- return this . #lastProcessedStats. get ( connectionId ) ;
75
+ const connectionStats = this . #parsedStatsStorage. get ( connectionId ) ;
76
+ return connectionStats ?. [ connectionStats . length - 1 ] ;
77
+ }
78
+
79
+ protected getAllLastProcessedStats ( connectionId : string ) : WebRTCStatsParsed [ ] {
80
+ return this . #parsedStatsStorage. get ( connectionId ) ?? [ ] ;
62
81
}
63
82
64
83
private deleteLastProcessedStats ( connectionId : string ) : void {
65
- this . #lastProcessedStats . delete ( connectionId ) ;
84
+ this . #parsedStatsStorage . delete ( connectionId ) ;
66
85
}
67
86
}
68
87
0 commit comments