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
|
//go:build !js
// +build !js
package webrtc
// GetConnectionStats is a helper method to return the associated stats for a given PeerConnection
func (r StatsReport) GetConnectionStats(conn *PeerConnection) (PeerConnectionStats, bool) {
statsID := conn.getStatsID()
stats, ok := r[statsID]
if !ok {
return PeerConnectionStats{}, false
}
pcStats, ok := stats.(PeerConnectionStats)
if !ok {
return PeerConnectionStats{}, false
}
return pcStats, true
}
// GetDataChannelStats is a helper method to return the associated stats for a given DataChannel
func (r StatsReport) GetDataChannelStats(dc *DataChannel) (DataChannelStats, bool) {
statsID := dc.getStatsID()
stats, ok := r[statsID]
if !ok {
return DataChannelStats{}, false
}
dcStats, ok := stats.(DataChannelStats)
if !ok {
return DataChannelStats{}, false
}
return dcStats, true
}
// GetICECandidateStats is a helper method to return the associated stats for a given ICECandidate
func (r StatsReport) GetICECandidateStats(c *ICECandidate) (ICECandidateStats, bool) {
statsID := c.statsID
stats, ok := r[statsID]
if !ok {
return ICECandidateStats{}, false
}
candidateStats, ok := stats.(ICECandidateStats)
if !ok {
return ICECandidateStats{}, false
}
return candidateStats, true
}
// GetICECandidatePairStats is a helper method to return the associated stats for a given ICECandidatePair
func (r StatsReport) GetICECandidatePairStats(c *ICECandidatePair) (ICECandidatePairStats, bool) {
statsID := c.statsID
stats, ok := r[statsID]
if !ok {
return ICECandidatePairStats{}, false
}
candidateStats, ok := stats.(ICECandidatePairStats)
if !ok {
return ICECandidatePairStats{}, false
}
return candidateStats, true
}
// GetCertificateStats is a helper method to return the associated stats for a given Certificate
func (r StatsReport) GetCertificateStats(c *Certificate) (CertificateStats, bool) {
statsID := c.statsID
stats, ok := r[statsID]
if !ok {
return CertificateStats{}, false
}
certificateStats, ok := stats.(CertificateStats)
if !ok {
return CertificateStats{}, false
}
return certificateStats, true
}
// GetCodecStats is a helper method to return the associated stats for a given Codec
func (r StatsReport) GetCodecStats(c *RTPCodecParameters) (CodecStats, bool) {
statsID := c.statsID
stats, ok := r[statsID]
if !ok {
return CodecStats{}, false
}
codecStats, ok := stats.(CodecStats)
if !ok {
return CodecStats{}, false
}
return codecStats, true
}
|