forked from fippo/rtcstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtcstats.js
422 lines (396 loc) · 14.4 KB
/
rtcstats.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
'use strict';
// transforms a maplike to an object. Mostly for getStats +
// JSON.parse(JSON.stringify())
function map2obj(m) {
if (!m.entries) {
return m;
}
var o = {};
m.forEach(function(v, k) {
o[k] = v;
});
return o;
}
// apply a delta compression to the stats report. Reduces size by ~90%.
// To reduce further, report keys could be compressed.
function deltaCompression(oldStats, newStats) {
newStats = JSON.parse(JSON.stringify(newStats));
Object.keys(newStats).forEach(function(id) {
var report = newStats[id];
delete report.id;
if (!oldStats[id]) {
return;
}
Object.keys(report).forEach(function(name) {
if (report[name] === oldStats[id][name]) {
delete newStats[id][name];
}
if (Object.keys(report).length === 0) {
delete newStats[id];
} else if (Object.keys(report).length === 1 && report.timestamp) {
delete newStats[id];
}
});
});
var timestamp = -Infinity;
Object.keys(newStats).forEach(function(id) {
var report = newStats[id];
if (report.timestamp > timestamp) {
timestamp = report.timestamp;
}
});
Object.keys(newStats).forEach(function(id) {
var report = newStats[id];
if (report.timestamp === timestamp) {
report.timestamp = 0;
}
});
newStats.timestamp = timestamp;
return newStats;
}
function mangleChromeStats(pc, response) {
var standardReport = {};
var reports = response.result();
reports.forEach(function(report) {
var standardStats = {
id: report.id,
timestamp: report.timestamp.getTime(),
type: report.type,
};
report.names().forEach(function(name) {
standardStats[name] = report.stat(name);
});
standardReport[standardStats.id] = standardStats;
});
return standardReport;
}
function dumpStream(stream) {
return {
id: stream.id,
tracks: stream.getTracks().map(function(track) {
return {
id: track.id, // unique identifier (GUID) for the track
kind: track.kind, // `audio` or `video`
label: track.label, // identified the track source
enabled: track.enabled, // application can control it
muted: track.muted, // application cannot control it (read-only)
readyState: track.readyState, // `live` or `ended`
};
}),
};
}
/*
function filterBoringStats(results) {
Object.keys(results).forEach(function(id) {
switch (results[id].type) {
case 'certificate':
case 'codec':
delete results[id];
break;
default:
// noop
}
});
return results;
}
function removeTimestamps(results) {
// FIXME: does not work in FF since the timestamp can't be deleted.
Object.keys(results).forEach(function(id) {
delete results[id].timestamp;
});
return results;
}
*/
module.exports = function(trace, getStatsInterval, prefixesToWrap) {
var peerconnectioncounter = 0;
var isFirefox = !!window.mozRTCPeerConnection;
var isEdge = !!window.RTCIceGatherer;
var isSafari = !isFirefox && window.RTCPeerConnection && !window.navigator.webkitGetUserMedia;
prefixesToWrap.forEach(function(prefix) {
if (!window[prefix + 'RTCPeerConnection']) {
return;
}
if (prefix === 'webkit' && isEdge) {
// dont wrap webkitRTCPeerconnection in Edge.
return;
}
var origPeerConnection = window[prefix + 'RTCPeerConnection'];
var peerconnection = function(config, constraints) {
var pc = new origPeerConnection(config, constraints);
var id = 'PC_' + peerconnectioncounter++;
pc.__rtcStatsId = id;
if (!config) {
config = { nullConfig: true };
}
config = JSON.parse(JSON.stringify(config)); // deepcopy
// don't log credentials
((config && config.iceServers) || []).forEach(function(server) {
delete server.credential;
});
if (isFirefox) {
config.browserType = 'moz';
} else if (isEdge) {
config.browserType = 'edge';
} else {
config.browserType = 'webkit';
}
trace('create', id, config);
// TODO: do we want to log constraints here? They are chrome-proprietary.
// http://stackoverflow.com/questions/31003928/what-do-each-of-these-experimental-goog-rtcpeerconnectionconstraints-do
if (constraints) {
trace('constraints', id, constraints);
}
pc.addEventListener('icecandidate', function(e) {
trace('onicecandidate', id, e.candidate);
});
pc.addEventListener('addstream', function(e) {
trace('onaddstream', id, e.stream.id + ' ' + e.stream.getTracks().map(function(t) { return t.kind + ':' + t.id; }));
});
pc.addEventListener('track', function(e) {
trace('ontrack', id, e.track.kind + ':' + e.track.id + ' ' + e.streams.map(function(stream) { return 'stream:' + stream.id; }));
});
pc.addEventListener('removestream', function(e) {
trace('onremovestream', id, e.stream.id + ' ' + e.stream.getTracks().map(function(t) { return t.kind + ':' + t.id; }));
});
pc.addEventListener('signalingstatechange', function() {
trace('onsignalingstatechange', id, pc.signalingState);
});
pc.addEventListener('iceconnectionstatechange', function() {
trace('oniceconnectionstatechange', id, pc.iceConnectionState);
});
pc.addEventListener('icegatheringstatechange', function() {
trace('onicegatheringstatechange', id, pc.iceGatheringState);
});
pc.addEventListener('connectionstatechange', function() {
trace('onconnectionstatechange', id, pc.connectionState);
});
pc.addEventListener('negotiationneeded', function() {
trace('onnegotiationneeded', id, undefined);
});
pc.addEventListener('datachannel', function(event) {
trace('ondatachannel', id, [event.channel.id, event.channel.label]);
});
var prev = {};
var getStats = function() {
if (isFirefox || isSafari) {
pc.getStats(null).then(function(res) {
var now = map2obj(res);
var base = JSON.parse(JSON.stringify(now)); // our new prev
trace('getstats', id, deltaCompression(prev, now));
prev = base;
});
} else {
pc.getStats(function(res) {
var now = mangleChromeStats(pc, res);
var base = JSON.parse(JSON.stringify(now)); // our new prev
trace('getstats', id, deltaCompression(prev, now));
prev = base;
});
}
};
// TODO: do we want one big interval and all peerconnections
// queried in that or one setInterval per PC?
// we have to collect results anyway so...
if (!isEdge && getStatsInterval) {
var interval = window.setInterval(function() {
if (pc.signalingState === 'closed') {
window.clearInterval(interval);
return;
}
getStats();
}, getStatsInterval);
}
if (!isEdge) {
pc.addEventListener('connectionstatechange', function() {
if (pc.connectionState === 'connected' || pc.connectionState === 'failed') {
getStats();
}
});
}
return pc;
};
['createDataChannel', 'close'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
trace(method, this.__rtcStatsId, arguments);
return nativeMethod.apply(this, arguments);
};
}
});
['addStream', 'removeStream'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
var stream = arguments[0];
var streamInfo = stream.getTracks().map(function(t) {
return t.kind + ':' + t.id;
}).join(',');
trace(method, this.__rtcStatsId, stream.id + ' ' + streamInfo);
return nativeMethod.apply(this, arguments);
};
}
});
['addTrack'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
var track = arguments[0];
var streams = [].slice.call(arguments, 1);
trace(method, this.__rtcStatsId, track.kind + ':' + track.id + ' ' + (streams.map(function(s) { return 'stream:' + s.id; }).join(';') || '-'));
return nativeMethod.apply(this, arguments);
};
}
});
['removeTrack'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
var track = arguments[0].track;
trace(method, this.__rtcStatsId, track ? track.kind + ':' + track.id : 'null');
return nativeMethod.apply(this, arguments);
};
}
});
['createOffer', 'createAnswer'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
var rtcStatsId = this.__rtcStatsId;
var args = arguments;
var opts;
if (arguments.length === 1 && typeof arguments[0] === 'object') {
opts = arguments[0];
} else if (arguments.length === 3 && typeof arguments[2] === 'object') {
opts = arguments[2];
}
trace(method, this.__rtcStatsId, opts);
return nativeMethod.apply(this, opts ? [opts] : undefined)
.then(function(description) {
trace(method + 'OnSuccess', rtcStatsId, description);
if (args.length > 0 && typeof args[0] === 'function') {
args[0].apply(null, [description]);
return undefined;
}
return description;
}, function(err) {
trace(method + 'OnFailure', rtcStatsId, err.toString());
if (args.length > 1 && typeof args[1] === 'function') {
args[1].apply(null, [err]);
return;
}
throw err;
});
};
}
});
['setLocalDescription', 'setRemoteDescription', 'addIceCandidate'].forEach(function(method) {
var nativeMethod = origPeerConnection.prototype[method];
if (nativeMethod) {
origPeerConnection.prototype[method] = function() {
var rtcStatsId = this.__rtcStatsId;
var args = arguments;
trace(method, this.__rtcStatsId, args[0]);
return nativeMethod.apply(this, [args[0]])
.then(function() {
trace(method + 'OnSuccess', rtcStatsId, undefined);
if (args.length >= 2 && typeof args[1] === 'function') {
args[1].apply(null, []);
return undefined;
}
return undefined;
}, function(err) {
trace(method + 'OnFailure', rtcStatsId, err.toString());
if (args.length >= 3 && typeof args[2] === 'function') {
args[2].apply(null, [err]);
return undefined;
}
throw err;
});
};
}
});
// wrap static methods. Currently just generateCertificate.
if (origPeerConnection.generateCertificate) {
Object.defineProperty(peerconnection, 'generateCertificate', {
get: function() {
return arguments.length ?
origPeerConnection.generateCertificate.apply(null, arguments)
: origPeerConnection.generateCertificate;
},
});
}
window[prefix + 'RTCPeerConnection'] = peerconnection;
window[prefix + 'RTCPeerConnection'].prototype = origPeerConnection.prototype;
});
// getUserMedia wrappers
prefixesToWrap.forEach(function(prefix) {
var name = prefix + (prefix.length ? 'GetUserMedia' : 'getUserMedia');
if (!navigator[name]) {
return;
}
var origGetUserMedia = navigator[name].bind(navigator);
var gum = function() {
trace('getUserMedia', null, arguments[0]);
var cb = arguments[1];
var eb = arguments[2];
origGetUserMedia(arguments[0],
function(stream) {
// we log the stream id, track ids and tracks readystate since that is ended GUM fails
// to acquire the cam (in chrome)
trace('getUserMediaOnSuccess', null, dumpStream(stream));
if (cb) {
cb(stream);
}
},
function(err) {
trace('getUserMediaOnFailure', null, err.name);
if (eb) {
eb(err);
}
}
);
};
navigator[name] = gum.bind(navigator);
});
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
var origGetUserMedia = navigator.mediaDevices.getUserMedia.bind(navigator.mediaDevices);
var gum = function() {
trace('navigator.mediaDevices.getUserMedia', null, arguments[0]);
return origGetUserMedia.apply(navigator.mediaDevices, arguments)
.then(function(stream) {
trace('navigator.mediaDevices.getUserMediaOnSuccess', null, dumpStream(stream));
return stream;
}, function(err) {
trace('navigator.mediaDevices.getUserMediaOnFailure', null, err.name);
return Promise.reject(err);
});
};
navigator.mediaDevices.getUserMedia = gum.bind(navigator.mediaDevices);
}
// getDisplayMedia
if (navigator.mediaDevices && navigator.mediaDevices.getDisplayMedia) {
var origGetDisplayMedia = navigator.mediaDevices.getDisplayMedia.bind(navigator.mediaDevices);
var gdm = function() {
trace('navigator.mediaDevices.getDisplayMedia', null, arguments[0]);
return origGetDisplayMedia.apply(navigator.mediaDevices, arguments)
.then(function(stream) {
trace('navigator.mediaDevices.getDisplayMediaOnSuccess', null, dumpStream(stream));
return stream;
}, function(err) {
trace('navigator.mediaDevices.getDisplayMediaOnFailure', null, err.name);
return Promise.reject(err);
});
};
navigator.mediaDevices.getDisplayMedia = gdm.bind(navigator.mediaDevices);
}
// TODO: are there events defined on MST that would allow us to listen when enabled was set?
// no :-(
/*
Object.defineProperty(MediaStreamTrack.prototype, 'enabled', {
set: function(value) {
trace('MediaStreamTrackEnable', this, value);
}
});
*/
};