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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
|
'use strict';
// Test is based on the following editor draft:
// webrtc-pc 20171130
// webrtc-stats 20171122
// This file depends on dictionary-helper.js which should
// be loaded from the main HTML file.
/*
[webrtc-stats]
6.1. RTCStatsType enum
enum RTCStatsType {
"codec",
"inbound-rtp",
"outbound-rtp",
"remote-inbound-rtp",
"remote-outbound-rtp",
"csrc",
"peer-connection",
"data-channel",
"transport",
"candidate-pair",
"local-candidate",
"remote-candidate",
"certificate",
"ice-server"
};
*/
const statsValidatorTable = {
'codec': validateCodecStats,
'inbound-rtp': validateInboundRtpStreamStats,
'outbound-rtp': validateOutboundRtpStreamStats,
'remote-inbound-rtp': validateRemoteInboundRtpStreamStats,
'remote-outbound-rtp': validateRemoteOutboundRtpStreamStats,
'media-source': validateMediaSourceStats,
'csrc': validateContributingSourceStats,
'peer-connection': validatePeerConnectionStats,
'data-channel': validateDataChannelStats,
'transport': validateTransportStats,
'candidate-pair': validateIceCandidatePairStats,
'local-candidate': validateIceCandidateStats,
'remote-candidate': validateIceCandidateStats,
'certificate': validateCertificateStats,
'ice-server': validateIceServerStats
};
// Validate that the stats objects in a stats report
// follows the respective definitions.
// Stats objects with unknown type are ignored and
// only basic validation is done.
function validateStatsReport(statsReport) {
for(const [id, stats] of statsReport.entries()) {
assert_equals(stats.id, id,
'expect stats.id to be the same as the key in statsReport');
const validator = statsValidatorTable[stats.type];
if(validator) {
validator(statsReport, stats);
} else {
validateRtcStats(statsReport, stats);
}
}
}
// Assert that the stats report have stats objects of
// given types
function assert_stats_report_has_stats(statsReport, statsTypes) {
const hasTypes = new Set([...statsReport.values()]
.map(stats => stats.type));
for(const type of statsTypes) {
assert_true(hasTypes.has(type),
`Expect statsReport to contain stats object of type ${type}`);
}
}
function findStatsFromReport(statsReport, predicate, message) {
for (const stats of statsReport.values()) {
if (predicate(stats)) {
return stats;
}
}
assert_unreached(message || 'none of stats in statsReport satisfy given condition')
}
// Get stats object of type that is expected to be
// found in the statsReport
function getRequiredStats(statsReport, type) {
for(const stats of statsReport.values()) {
if(stats.type === type) {
return stats;
}
}
assert_unreached(`required stats of type ${type} is not found in stats report`);
}
// Get stats object by the stats ID.
// This is used to retreive other stats objects
// linked to a stats object
function getStatsById(statsReport, statsId) {
assert_true(statsReport.has(statsId),
`Expect stats report to have stats object with id ${statsId}`);
return statsReport.get(statsId);
}
// Validate an ID field in a stats object by making sure
// that the linked stats object is found in the stats report
// and have the type field value same as expected type
// It doesn't validate the other fields of the linked stats
// as validateStatsReport already does all validations
function validateIdField(statsReport, stats, field, type) {
assert_string_field(stats, field);
const linkedStats = getStatsById(statsReport, stats[field]);
assert_equals(linkedStats.type, type,
`Expect linked stats object to have type ${type}`);
}
function validateOptionalIdField(statsReport, stats, field, type) {
if(stats[field] !== undefined) {
validateIdField(statsReport, stats, field, type);
}
}
/*
[webrtc-pc]
8.4. RTCStats Dictionary
dictionary RTCStats {
required DOMHighResTimeStamp timestamp;
required RTCStatsType type;
required DOMString id;
};
*/
function validateRtcStats(statsReport, stats) {
assert_number_field(stats, 'timestamp');
assert_string_field(stats, 'type');
assert_string_field(stats, 'id');
}
/*
[webrtc-stats]
7.1. RTCRtpStreamStats dictionary
dictionary RTCRtpStreamStats : RTCStats {
unsigned long ssrc;
DOMString kind;
DOMString transportId;
DOMString codecId;
};
kind of type DOMString
Either "audio" or "video".
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCRtpStreamStats, with attributes ssrc, kind, transportId, codecId
*/
function validateRtpStreamStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_unsigned_int_field(stats, 'ssrc');
assert_string_field(stats, 'kind');
assert_enum_field(stats, 'kind', ['audio', 'video'])
validateIdField(statsReport, stats, 'transportId', 'transport');
validateIdField(statsReport, stats, 'codecId', 'codec');
}
/*
[webrtc-stats]
7.2. RTCCodecStats dictionary
dictionary RTCCodecStats : RTCStats {
required unsigned long payloadType;
RTCCodecType codecType;
required DOMString transportId;
required DOMString mimeType;
unsigned long clockRate;
unsigned long channels;
DOMString sdpFmtpLine;
};
enum RTCCodecType {
"encode",
"decode",
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCCodecStats, with attributes payloadType, codecType, mimeType, clockRate, channels, sdpFmtpLine
*/
function validateCodecStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_unsigned_int_field(stats, 'payloadType');
assert_optional_enum_field(stats, 'codecType', ['encode', 'decode']);
validateOptionalIdField(statsReport, stats, 'transportId', 'transport');
assert_string_field(stats, 'mimeType');
assert_unsigned_int_field(stats, 'clockRate');
if (stats.kind === 'audio') {
assert_unsigned_int_field(stats, 'channels');
}
assert_string_field(stats, 'sdpFmtpLine');
}
/*
[webrtc-stats]
7.3. RTCReceivedRtpStreamStats dictionary
dictionary RTCReceivedRtpStreamStats : RTCRtpStreamStats {
unsigned long long packetsReceived;
long long packetsLost;
double jitter;
unsigned long long packetsDiscarded;
unsigned long long packetsRepaired;
unsigned long long burstPacketsLost;
unsigned long long burstPacketsDiscarded;
unsigned long burstLossCount;
unsigned long burstDiscardCount;
double burstLossRate;
double burstDiscardRate;
double gapLossRate;
double gapDiscardRate;
unsigned long framesDropped;
unsigned long partialFramesLost;
unsigned long fullFramesLost;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCReceivedRtpStreamStats, with all required attributes from its
inherited dictionaries, and also attributes packetsReceived,
packetsLost, jitter, packetsDiscarded, framesDropped
*/
function validateReceivedRtpStreamStats(statsReport, stats) {
validateRtpStreamStats(statsReport, stats);
assert_unsigned_int_field(stats, 'packetsReceived');
assert_unsigned_int_field(stats, 'packetsLost');
assert_number_field(stats, 'jitter');
assert_unsigned_int_field(stats, 'packetsDiscarded');
assert_unsigned_int_field(stats, 'framesDropped');
assert_optional_unsigned_int_field(stats, 'packetsRepaired');
assert_optional_unsigned_int_field(stats, 'burstPacketsLost');
assert_optional_unsigned_int_field(stats, 'burstPacketsDiscarded');
assert_optional_unsigned_int_field(stats, 'burstLossCount');
assert_optional_unsigned_int_field(stats, 'burstDiscardCount');
assert_optional_number_field(stats, 'burstLossRate');
assert_optional_number_field(stats, 'burstDiscardRate');
assert_optional_number_field(stats, 'gapLossRate');
assert_optional_number_field(stats, 'gapDiscardRate');
assert_optional_unsigned_int_field(stats, 'partialFramesLost');
assert_optional_unsigned_int_field(stats, 'fullFramesLost');
}
/*
[webrtc-stats]
7.4. RTCInboundRtpStreamStats dictionary
dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
DOMString trackIdentifier;
DOMString remoteId;
unsigned long framesDecoded;
unsigned long keyFramesDecoded;
unsigned long frameWidth;
unsigned long frameHeight;
unsigned long frameBitDepth;
double framesPerSecond;
unsigned long long qpSum;
double totalDecodeTime;
double totalInterFrameDelay;
double totalSquaredInterFrameDelay;
boolean voiceActivityFlag;
DOMHighResTimeStamp lastPacketReceivedTimestamp;
double averageRtcpInterval;
unsigned long long headerBytesReceived;
unsigned long long fecPacketsReceived;
unsigned long long fecPacketsDiscarded;
unsigned long long bytesReceived;
unsigned long long packetsFailedDecryption;
unsigned long long packetsDuplicated;
record<USVString, unsigned long long> perDscpPacketsReceived;
unsigned long nackCount;
unsigned long firCount;
unsigned long pliCount;
unsigned long sliCount;
DOMHighResTimeStamp estimatedPlayoutTimestamp;
double jitterBufferDelay;
unsigned long long jitterBufferEmittedCount;
unsigned long long totalSamplesReceived;
unsigned long long samplesDecodedWithSilk;
unsigned long long samplesDecodedWithCelt;
unsigned long long concealedSamples;
unsigned long long silentConcealedSamples;
unsigned long long concealmentEvents;
unsigned long long insertedSamplesForDeceleration;
unsigned long long removedSamplesForAcceleration;
double audioLevel;
double totalAudioEnergy;
double totalSamplesDuration;
unsigned long framesReceived;
DOMString decoderImplementation;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCInboundRtpStreamStats, with all required attributes from its inherited
dictionaries, and also attributes remoteId, framesDecoded, nackCount, framesReceived, bytesReceived, totalAudioEnergy, totalSampleDuration
*/
function validateInboundRtpStreamStats(statsReport, stats) {
validateReceivedRtpStreamStats(statsReport, stats);
assert_string_field(stats, 'trackIdentifier');
validateOptionalIdField(statsReport, stats, 'remoteId', 'remote-outbound-rtp');
assert_unsigned_int_field(stats, 'framesDecoded');
assert_optional_unsigned_int_field(stats, 'keyFramesDecoded');
assert_optional_unsigned_int_field(stats, 'frameWidth');
assert_optional_unsigned_int_field(stats, 'frameHeight');
assert_optional_unsigned_int_field(stats, 'frameBitDepth');
assert_optional_number_field(stats, 'framesPerSecond');
assert_optional_unsigned_int_field(stats, 'qpSum');
assert_optional_number_field(stats, 'totalDecodeTime');
assert_optional_number_field(stats, 'totalInterFrameDelay');
assert_optional_number_field(stats, 'totalSquaredInterFrameDelay');
assert_optional_boolean_field(stats, 'voiceActivityFlag');
assert_optional_number_field(stats, 'lastPacketReceivedTimeStamp');
assert_optional_number_field(stats, 'averageRtcpInterval');
assert_optional_unsigned_int_field(stats, 'fecPacketsReceived');
assert_optional_unsigned_int_field(stats, 'fecPacketsDiscarded');
assert_unsigned_int_field(stats, 'bytesReceived');
assert_optional_unsigned_int_field(stats, 'packetsFailedDecryption');
assert_optional_unsigned_int_field(stats, 'packetsDuplicated');
assert_optional_dict_field(stats, 'perDscpPacketsReceived');
if (stats['perDscpPacketsReceived']) {
Object.keys(stats['perDscpPacketsReceived'])
.forEach(k =>
assert_equals(typeof k, 'string', 'Expect keys of perDscpPacketsReceived to be strings')
);
Object.values(stats['perDscpPacketsReceived'])
.forEach(v =>
assert_true(Number.isInteger(v) && (v >= 0), 'Expect values of perDscpPacketsReceived to be strings')
);
}
assert_unsigned_int_field(stats, 'nackCount');
assert_optional_unsigned_int_field(stats, 'firCount');
assert_optional_unsigned_int_field(stats, 'pliCount');
assert_optional_unsigned_int_field(stats, 'sliCount');
assert_optional_number_field(stats, 'estimatedPlayoutTimestamp');
assert_optional_number_field(stats, 'jitterBufferDelay');
assert_optional_unsigned_int_field(stats, 'jitterBufferEmittedCount');
assert_optional_unsigned_int_field(stats, 'totalSamplesReceived');
assert_optional_unsigned_int_field(stats, 'samplesDecodedWithSilk');
assert_optional_unsigned_int_field(stats, 'samplesDecodedWithCelt');
assert_optional_unsigned_int_field(stats, 'concealedSamples');
assert_optional_unsigned_int_field(stats, 'silentConcealedSamples');
assert_optional_unsigned_int_field(stats, 'concealmentEvents');
assert_optional_unsigned_int_field(stats, 'insertedSamplesForDeceleration');
assert_optional_unsigned_int_field(stats, 'removedSamplesForAcceleration');
assert_optional_number_field(stats, 'audioLevel');
assert_optional_number_field(stats, 'totalAudioEnergy');
assert_optional_number_field(stats, 'totalSamplesDuration');
assert_unsigned_int_field(stats, 'framesReceived');
assert_optional_string_field(stats, 'decoderImplementation');
assert_optional_boolean_field(stats, 'powerEfficientDecoder');
}
/*
[webrtc-stats]
7.5. RTCRemoteInboundRtpStreamStats dictionary
dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {
DOMString localId;
double roundTripTime;
double totalRoundTripTime;
double fractionLost;
unsigned long long reportsReceived;
unsigned long long roundTripTimeMeasurements;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCRemoteInboundRtpStreamStats, with all required attributes from its
inherited dictionaries, and also attributes localId, roundTripTime
*/
function validateRemoteInboundRtpStreamStats(statsReport, stats) {
validateReceivedRtpStreamStats(statsReport, stats);
validateIdField(statsReport, stats, 'localId', 'outbound-rtp');
assert_number_field(stats, 'roundTripTime');
assert_optional_number_field(stats, 'totalRoundTripTime');
assert_optional_number_field(stats, 'fractionLost');
assert_optional_unsigned_int_field(stats, 'reportsReceived');
assert_optional_unsigned_int_field(stats, 'roundTripTimeMeasurements');
}
/*
[webrtc-stats]
7.6. RTCSentRtpStreamStats dictionary
dictionary RTCSentRtpStreamStats : RTCRtpStreamStats {
unsigned long packetsSent;
unsigned long long bytesSent;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCSentRtpStreamStats, with all required attributes from its inherited
dictionaries, and also attributes packetsSent, bytesSent
*/
function validateSentRtpStreamStats(statsReport, stats) {
validateRtpStreamStats(statsReport, stats);
assert_unsigned_int_field(stats, 'packetsSent');
assert_unsigned_int_field(stats, 'bytesSent');
}
/*
[webrtc-stats]
7.7. RTCOutboundRtpStreamStats dictionary
dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
DOMString mediaSourceId;
DOMString remoteId;
DOMString rid;
DOMHighResTimeStamp lastPacketSentTimestamp;
unsigned long long headerBytesSent;
unsigned long packetsDiscardedOnSend;
unsigned long long bytesDiscardedOnSend;
unsigned long fecPacketsSent;
unsigned long long retransmittedPacketsSent;
unsigned long long retransmittedBytesSent;
double targetBitrate;
unsigned long long totalEncodedBytesTarget;
unsigned long frameWidth;
unsigned long frameHeight;
unsigned long frameBitDepth;
double framesPerSecond;
unsigned long framesSent;
unsigned long hugeFramesSent;
unsigned long framesEncoded;
unsigned long keyFramesEncoded;
unsigned long framesDiscardedOnSend;
unsigned long long qpSum;
unsigned long long totalSamplesSent;
unsigned long long samplesEncodedWithSilk;
unsigned long long samplesEncodedWithCelt;
boolean voiceActivityFlag;
double totalEncodeTime;
double totalPacketSendDelay;
double averageRtcpInterval;
RTCQualityLimitationReason qualityLimitationReason;
record<DOMString, double> qualityLimitationDurations;
unsigned long qualityLimitationResolutionChanges;
record<USVString, unsigned long long> perDscpPacketsSent;
unsigned long nackCount;
unsigned long firCount;
unsigned long pliCount;
unsigned long sliCount;
DOMString encoderImplementation;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCOutboundRtpStreamStats, with all required attributes from its
inherited dictionaries, and also attributes remoteId, framesEncoded, nackCount, framesSent
*/
function validateOutboundRtpStreamStats(statsReport, stats) {
validateSentRtpStreamStats(statsReport, stats)
validateOptionalIdField(statsReport, stats, 'mediaSourceId', 'media-source');
validateOptionalIdField(statsReport, stats, 'remoteId', 'remote-inbound-rtp');
assert_optional_string_field(stats, 'rid');
assert_optional_number_field(stats, 'lastPacketSentTimestamp');
assert_optional_unsigned_int_field(stats, 'headerBytesSent');
assert_optional_unsigned_int_field(stats, 'packetsDiscardedOnSend');
assert_optional_unsigned_int_field(stats, 'bytesDiscardedOnSend');
assert_optional_unsigned_int_field(stats, 'fecPacketsSent');
assert_optional_unsigned_int_field(stats, 'retransmittedPacketsSent');
assert_optional_unsigned_int_field(stats, 'retransmittedBytesSent');
assert_optional_number_field(stats, 'targetBitrate');
assert_optional_unsigned_int_field(stats, 'totalEncodedBytesTarget');
if (stats['kind'] === 'video') {
assert_optional_unsigned_int_field(stats, 'frameWidth');
assert_optional_unsigned_int_field(stats, 'frameHeight');
assert_optional_unsigned_int_field(stats, 'frameBitDepth');
assert_optional_number_field(stats, 'framesPerSecond');
assert_unsigned_int_field(stats, 'framesSent');
assert_optional_unsigned_int_field(stats, 'hugeFramesSent');
assert_unsigned_int_field(stats, 'framesEncoded');
assert_optional_unsigned_int_field(stats, 'keyFramesEncoded');
assert_optional_unsigned_int_field(stats, 'framesDiscardedOnSend');
assert_optional_unsigned_int_field(stats, 'qpSum');
} else if (stats['kind'] === 'audio') {
assert_optional_unsigned_int_field(stats, 'totalSamplesSent');
assert_optional_unsigned_int_field(stats, 'samplesEncodedWithSilk');
assert_optional_unsigned_int_field(stats, 'samplesEncodedWithCelt');
assert_optional_boolean_field(stats, 'voiceActivityFlag');
}
assert_optional_number_field(stats, 'totalEncodeTime');
assert_optional_number_field(stats, 'totalPacketSendDelay');
assert_optional_number_field(stats, 'averageRTCPInterval');
if (stats['kind'] === 'video') {
assert_optional_enum_field(stats, 'qualityLimitationReason', ['none', 'cpu', 'bandwidth', 'other']);
assert_optional_dict_field(stats, 'qualityLimitationDurations');
if (stats['qualityLimitationDurations']) {
Object.keys(stats['qualityLimitationDurations'])
.forEach(k =>
assert_equals(typeof k, 'string', 'Expect keys of qualityLimitationDurations to be strings')
);
Object.values(stats['qualityLimitationDurations'])
.forEach(v =>
assert_equals(typeof num, 'number', 'Expect values of qualityLimitationDurations to be numbers')
);
}
assert_optional_unsigned_int_field(stats, 'qualityLimitationResolutionChanges');
}
assert_unsigned_int_field(stats, 'nackCount');
assert_optional_dict_field(stats, 'perDscpPacketsSent');
if (stats['perDscpPacketsSent']) {
Object.keys(stats['perDscpPacketsSent'])
.forEach(k =>
assert_equals(typeof k, 'string', 'Expect keys of perDscpPacketsSent to be strings')
);
Object.values(stats['perDscpPacketsSent'])
.forEach(v =>
assert_true(Number.isInteger(v) && (v >= 0), 'Expect values of perDscpPacketsSent to be strings')
);
}
assert_optional_unsigned_int_field(stats, 'firCount');
assert_optional_unsigned_int_field(stats, 'pliCount');
assert_optional_unsigned_int_field(stats, 'sliCount');
assert_optional_string_field(stats, 'encoderImplementation');
assert_optional_boolean_field(stats, 'powerEfficientEncoder');
assert_optional_string_field(stats, 'scalabilityMode');
}
/*
[webrtc-stats]
7.8. RTCRemoteOutboundRtpStreamStats dictionary
dictionary RTCRemoteOutboundRtpStreamStats : RTCSentRtpStreamStats {
DOMString localId;
DOMHighResTimeStamp remoteTimestamp;
unsigned long long reportsSent;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCRemoteOutboundRtpStreamStats, with all required attributes from its
inherited dictionaries, and also attributes localId, remoteTimestamp
*/
function validateRemoteOutboundRtpStreamStats(statsReport, stats) {
validateSentRtpStreamStats(statsReport, stats);
validateIdField(statsReport, stats, 'localId', 'inbound-rtp');
assert_number_field(stats, 'remoteTimeStamp');
assert_optional_unsigned_int_field(stats, 'reportsSent');
}
/*
[webrtc-stats]
7.11 RTCMediaSourceStats dictionary
dictionary RTCMediaSourceStats : RTCStats {
DOMString trackIdentifier;
DOMString kind;
};
dictionary RTCAudioSourceStats : RTCMediaSourceStats {
double audioLevel;
double totalAudioEnergy;
double totalSamplesDuration;
double echoReturnLoss;
double echoReturnLossEnhancement;
};
dictionary RTCVideoSourceStats : RTCMediaSourceStats {
unsigned long width;
unsigned long height;
unsigned long bitDepth;
unsigned long frames;
// see https://github.com/w3c/webrtc-stats/issues/540
double framesPerSecond;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
RTCMediaSourceStats with attributes trackIdentifier, kind
RTCAudioSourceStats, with all required attributes from its inherited dictionaries and totalAudioEnergy, totalSamplesDuration
RTCVideoSourceStats, with all required attributes from its inherited dictionaries and width, height, framesPerSecond
*/
function validateMediaSourceStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_string_field(stats, 'trackIdentifier');
assert_enum_field(stats, 'kind', ['audio', 'video']);
if (stats.kind === 'audio') {
assert_optional_number_field(stats, 'audioLevel');
assert_number_field(stats, 'totalAudioEnergy');
assert_number_field(stats, 'totalSamplesDuration');
assert_optional_number_field(stats, 'echoReturnLoss');
assert_optional_number_field(stats, 'echoReturnLossEnhancement');
} else if (stats.kind === 'video') {
assert_unsigned_int_field(stats, 'width');
assert_unsigned_int_field(stats, 'height');
assert_optional_unsigned_int_field(stats, 'bitDpeth');
assert_optional_unsigned_int_field(stats, 'frames');
assert_number_field(stats, 'framesPerSecond');
}
}
/*
[webrtc-stats]
7.9. RTCRTPContributingSourceStats
dictionary RTCRTPContributingSourceStats : RTCStats {
unsigned long contributorSsrc;
DOMString inboundRtpStreamId;
unsigned long packetsContributedTo;
double audioLevel;
};
*/
function validateContributingSourceStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_optional_unsigned_int_field(stats, 'contributorSsrc');
validateOptionalIdField(statsReport, stats, 'inboundRtpStreamId', 'inbound-rtp');
assert_optional_unsigned_int_field(stats, 'packetsContributedTo');
assert_optional_number_field(stats, 'audioLevel');
}
/*
[webrtc-stats]
7.10. RTCPeerConnectionStats dictionary
dictionary RTCPeerConnectionStats : RTCStats {
unsigned long dataChannelsOpened;
unsigned long dataChannelsClosed;
unsigned long dataChannelsRequested;
unsigned long dataChannelsAccepted;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCPeerConnectionStats, with attributes dataChannelsOpened, dataChannelsClosed
*/
function validatePeerConnectionStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_unsigned_int_field(stats, 'dataChannelsOpened');
assert_unsigned_int_field(stats, 'dataChannelsClosed');
assert_optional_unsigned_int_field(stats, 'dataChannelsRequested');
assert_optional_unsigned_int_field(stats, 'dataChannelsAccepted');
}
/*
[webrtc-stats]
7.13. RTCDataChannelStats dictionary
dictionary RTCDataChannelStats : RTCStats {
DOMString label;
DOMString protocol;
// see https://github.com/w3c/webrtc-stats/issues/541
unsigned short dataChannelIdentifier;
DOMString transportId;
RTCDataChannelState state;
unsigned long messagesSent;
unsigned long long bytesSent;
unsigned long messagesReceived;
unsigned long long bytesReceived;
};
[webrtc-pc]
6.2. RTCDataChannel
enum RTCDataChannelState {
"connecting",
"open",
"closing",
"closed"
};
8.6. Mandatory To Implement Stats
- RTCDataChannelStats, with attributes label, protocol, datachannelIdentifier, state,
messagesSent, bytesSent, messagesReceived, bytesReceived
*/
function validateDataChannelStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_string_field(stats, 'label');
assert_string_field(stats, 'protocol');
assert_unsigned_int_field(stats, 'dataChannelIdentifier');
validateOptionalIdField(statsReport, stats, 'transportId', 'transport');
assert_enum_field(stats, 'state',
['connecting', 'open', 'closing', 'closed']);
assert_unsigned_int_field(stats, 'messagesSent');
assert_unsigned_int_field(stats, 'bytesSent');
assert_unsigned_int_field(stats, 'messagesReceived');
assert_unsigned_int_field(stats, 'bytesReceived');
}
/*
[webrtc-stats]
7.14. RTCTransportStats dictionary
dictionary RTCTransportStats : RTCStats {
unsigned long long packetsSent;
unsigned long long packetsReceived;
unsigned long long bytesSent;
unsigned long long bytesReceived;
DOMString rtcpTransportStatsId;
RTCIceRole iceRole;
RTCDtlsTransportState dtlsState;
DOMString selectedCandidatePairId;
DOMString localCertificateId;
DOMString remoteCertificateId;
DOMString tlsVersion;
DOMString dtlsCipher;
DOMString srtpCipher;
DOMString tlsGroup;
unsigned long selectedCandidatePairChanges;
};
[webrtc-pc]
5.5. RTCDtlsTransportState Enum
enum RTCDtlsTransportState {
"new",
"connecting",
"connected",
"closed",
"failed"
};
5.6. RTCIceRole Enum
enum RTCIceRole {
"unknown",
"controlling",
"controlled"
};
8.6. Mandatory To Implement Stats
- RTCTransportStats, with attributes bytesSent, bytesReceived,
selectedCandidatePairId, localCertificateId,
remoteCertificateId
*/
function validateTransportStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_optional_unsigned_int_field(stats, 'packetsSent');
assert_optional_unsigned_int_field(stats, 'packetsReceived');
assert_unsigned_int_field(stats, 'bytesSent');
assert_unsigned_int_field(stats, 'bytesReceived');
validateOptionalIdField(statsReport, stats, 'rtcpTransportStatsId',
'transport');
assert_optional_enum_field(stats, 'iceRole',
['unknown', 'controlling', 'controlled']);
assert_optional_enum_field(stats, 'dtlsState',
['new', 'connecting', 'connected', 'closed', 'failed']);
validateIdField(statsReport, stats, 'selectedCandidatePairId', 'candidate-pair');
validateIdField(statsReport, stats, 'localCertificateId', 'certificate');
validateIdField(statsReport, stats, 'remoteCertificateId', 'certificate');
assert_optional_string_field(stats, 'tlsVersion');
assert_optional_string_field(stats, 'dtlsCipher');
assert_optional_string_field(stats, 'srtpCipher');
assert_optional_string_field(stats, 'tlsGroup');
assert_optional_unsigned_int_field(stats, 'selectedCandidatePairChanges');
}
/*
[webrtc-stats]
7.15. RTCIceCandidateStats dictionary
dictionary RTCIceCandidateStats : RTCStats {
required DOMString transportId;
DOMString? address;
long port;
DOMString protocol;
RTCIceCandidateType candidateType;
long priority;
DOMString url;
DOMString relayProtocol;
};
[webrtc-pc]
4.8.1.3. RTCIceCandidateType Enum
enum RTCIceCandidateType {
"host",
"srflx",
"prflx",
"relay"
};
8.6. Mandatory To Implement Stats
- RTCIceCandidateStats, with attributes address, port, protocol, candidateType, url
*/
function validateIceCandidateStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
validateIdField(statsReport, stats, 'transportId', 'transport');
// The address is mandatory to implement, but is allowed to be null
// when hidden for privacy reasons.
if (stats.address != null) {
// Departure from strict spec reading:
// This field is populated in a racy manner in Chrome.
// We allow it to be present or not present for the time being.
// TODO(https://bugs.chromium.org/1092721): Become consistent.
assert_optional_string_field(stats, 'address');
}
assert_unsigned_int_field(stats, 'port');
assert_string_field(stats, 'protocol');
assert_enum_field(stats, 'candidateType',
['host', 'srflx', 'prflx', 'relay']);
assert_optional_int_field(stats, 'priority');
// The url field is mandatory for local candidates gathered from
// a STUN or TURN server, and MUST NOT be present otherwise.
// TODO(hta): Improve checking.
assert_optional_string_field(stats, 'url');
assert_optional_string_field(stats, 'relayProtocol');
}
/*
[webrtc-stats]
7.16. RTCIceCandidatePairStats dictionary
dictionary RTCIceCandidatePairStats : RTCStats {
DOMString transportId;
DOMString localCandidateId;
DOMString remoteCandidateId;
RTCStatsIceCandidatePairState state;
boolean nominated;
unsigned long packetsSent;
unsigned long packetsReceived;
unsigned long long bytesSent;
unsigned long long bytesReceived;
DOMHighResTimeStamp lastPacketSentTimestamp;
DOMHighResTimeStamp lastPacketReceivedTimestamp;
DOMHighResTimeStamp firstRequestTimestamp;
DOMHighResTimeStamp lastRequestTimestamp;
DOMHighResTimeStamp lastResponseTimestamp;
double totalRoundTripTime;
double currentRoundTripTime;
double availableOutgoingBitrate;
double availableIncomingBitrate;
unsigned long circuitBreakerTriggerCount;
unsigned long long requestsReceived;
unsigned long long requestsSent;
unsigned long long responsesReceived;
unsigned long long responsesSent;
unsigned long long retransmissionsReceived;
unsigned long long retransmissionsSent;
unsigned long long consentRequestsSent;
DOMHighResTimeStamp consentExpiredTimestamp;
unsigned long packetsDiscardedOnSend;
unsigned long long bytesDiscardedOnSend; };
enum RTCStatsIceCandidatePairState {
"frozen",
"waiting",
"in-progress",
"failed",
"succeeded"
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCIceCandidatePairStats, with attributes transportId, localCandidateId,
remoteCandidateId, state, nominated, bytesSent, bytesReceived, totalRoundTripTime, currentRoundTripTime
// not including priority per https://github.com/w3c/webrtc-pc/issues/2457
*/
function validateIceCandidatePairStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
validateIdField(statsReport, stats, 'transportId', 'transport');
validateIdField(statsReport, stats, 'localCandidateId', 'local-candidate');
validateIdField(statsReport, stats, 'remoteCandidateId', 'remote-candidate');
assert_enum_field(stats, 'state',
['frozen', 'waiting', 'in-progress', 'failed', 'succeeded']);
assert_boolean_field(stats, 'nominated');
assert_optional_unsigned_int_field(stats, 'packetsSent');
assert_optional_unsigned_int_field(stats, 'packetsReceived');
assert_unsigned_int_field(stats, 'bytesSent');
assert_unsigned_int_field(stats, 'bytesReceived');
assert_optional_number_field(stats, 'lastPacketSentTimestamp');
assert_optional_number_field(stats, 'lastPacketReceivedTimestamp');
assert_optional_number_field(stats, 'firstRequestTimestamp');
assert_optional_number_field(stats, 'lastRequestTimestamp');
assert_optional_number_field(stats, 'lastResponseTimestamp');
assert_number_field(stats, 'totalRoundTripTime');
assert_number_field(stats, 'currentRoundTripTime');
assert_optional_number_field(stats, 'availableOutgoingBitrate');
assert_optional_number_field(stats, 'availableIncomingBitrate');
assert_optional_unsigned_int_field(stats, 'circuitBreakerTriggerCount');
assert_optional_unsigned_int_field(stats, 'requestsReceived');
assert_optional_unsigned_int_field(stats, 'requestsSent');
assert_optional_unsigned_int_field(stats, 'responsesReceived');
assert_optional_unsigned_int_field(stats, 'responsesSent');
assert_optional_unsigned_int_field(stats, 'retransmissionsReceived');
assert_optional_unsigned_int_field(stats, 'retransmissionsSent');
assert_optional_unsigned_int_field(stats, 'consentRequestsSent');
assert_optional_number_field(stats, 'consentExpiredTimestamp');
assert_optional_unsigned_int_field(stats, 'packetsDiscardedOnSend');
assert_optional_unsigned_int_field(stats, 'bytesDiscardedOnSend');
}
/*
[webrtc-stats]
7.17. RTCCertificateStats dictionary
dictionary RTCCertificateStats : RTCStats {
DOMString fingerprint;
DOMString fingerprintAlgorithm;
DOMString base64Certificate;
DOMString issuerCertificateId;
};
[webrtc-pc]
8.6. Mandatory To Implement Stats
- RTCCertificateStats, with attributes fingerprint, fingerprintAlgorithm,
base64Certificate, issuerCertificateId
*/
function validateCertificateStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_string_field(stats, 'fingerprint');
assert_string_field(stats, 'fingerprintAlgorithm');
assert_string_field(stats, 'base64Certificate');
assert_optional_string_field(stats, 'issuerCertificateId');
}
/*
[webrtc-stats]
7.30. RTCIceServerStats dictionary
dictionary RTCIceServerStats : RTCStats {
DOMString url;
long port;
DOMString protocol;
unsigned long totalRequestsSent;
unsigned long totalResponsesReceived;
double totalRoundTripTime;
};
*/
function validateIceServerStats(statsReport, stats) {
validateRtcStats(statsReport, stats);
assert_optional_string_field(stats, 'url');
assert_optional_int_field(stats, 'port');
assert_optional_string_field(stats, 'protocol');
assert_optional_unsigned_int_field(stats, 'totalRequestsSent');
assert_optional_unsigned_int_field(stats, 'totalResponsesReceived');
assert_optional_number_field(stats, 'totalRoundTripTime');
}
|