Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/pc/rtcstatscollector.cc

Issue 3001683002: Revert of Trace the stats report as JSON instead of each stat separately. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/pc/rtcstats_integrationtest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 14 matching lines...) Expand all
25 #include "webrtc/pc/webrtcsession.h" 25 #include "webrtc/pc/webrtcsession.h"
26 #include "webrtc/rtc_base/checks.h" 26 #include "webrtc/rtc_base/checks.h"
27 #include "webrtc/rtc_base/stringutils.h" 27 #include "webrtc/rtc_base/stringutils.h"
28 #include "webrtc/rtc_base/timeutils.h" 28 #include "webrtc/rtc_base/timeutils.h"
29 #include "webrtc/rtc_base/trace_event.h" 29 #include "webrtc/rtc_base/trace_event.h"
30 30
31 namespace webrtc { 31 namespace webrtc {
32 32
33 namespace { 33 namespace {
34 34
35 const int kStatTypeMemberNameAndIdMaxLen = 1024;
36
37 std::string GetStatTypeMemberNameAndId(const RTCStats& stats,
38 const RTCStatsMemberInterface* member) {
39 RTC_DCHECK(strlen(stats.type()) + strlen(member->name())
40 + stats.id().size() + 3 < kStatTypeMemberNameAndIdMaxLen);
41 char buffer[kStatTypeMemberNameAndIdMaxLen];
42 rtc::sprintfn(&buffer[0], sizeof(buffer), "%s.%s.%s", stats.type(),
43 member->name(), stats.id().c_str());
44 return buffer;
45 }
46
35 std::string RTCCertificateIDFromFingerprint(const std::string& fingerprint) { 47 std::string RTCCertificateIDFromFingerprint(const std::string& fingerprint) {
36 return "RTCCertificate_" + fingerprint; 48 return "RTCCertificate_" + fingerprint;
37 } 49 }
38 50
39 std::string RTCCodecStatsIDFromDirectionMediaAndPayload( 51 std::string RTCCodecStatsIDFromDirectionMediaAndPayload(
40 bool inbound, bool audio, uint32_t payload_type) { 52 bool inbound, bool audio, uint32_t payload_type) {
41 // TODO(hbos): The present codec ID assignment is not sufficient to support 53 // TODO(hbos): The present codec ID assignment is not sufficient to support
42 // Unified Plan or unbundled connections in all cases. When we are able to 54 // Unified Plan or unbundled connections in all cases. When we are able to
43 // handle multiple m= lines of the same media type (and multiple BaseChannels 55 // handle multiple m= lines of the same media type (and multiple BaseChannels
44 // for the same type is possible?) this needs to be updated to differentiate 56 // for the same type is possible?) this needs to be updated to differentiate
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 if (!num_pending_partial_reports_) { 768 if (!num_pending_partial_reports_) {
757 cache_timestamp_us_ = partial_report_timestamp_us_; 769 cache_timestamp_us_ = partial_report_timestamp_us_;
758 cached_report_ = partial_report_; 770 cached_report_ = partial_report_;
759 partial_report_ = nullptr; 771 partial_report_ = nullptr;
760 channel_name_pairs_.reset(); 772 channel_name_pairs_.reset();
761 track_media_info_map_.reset(); 773 track_media_info_map_.reset();
762 track_to_id_.clear(); 774 track_to_id_.clear();
763 // Trace WebRTC Stats when getStats is called on Javascript. 775 // Trace WebRTC Stats when getStats is called on Javascript.
764 // This allows access to WebRTC stats from trace logs. To enable them, 776 // This allows access to WebRTC stats from trace logs. To enable them,
765 // select the "webrtc_stats" category when recording traces. 777 // select the "webrtc_stats" category when recording traces.
766 TRACE_EVENT_INSTANT1("webrtc_stats", "webrtc_stats", "report", 778 for (const RTCStats& stats : *cached_report_) {
767 cached_report_->ToJson()); 779 for (const RTCStatsMemberInterface* member : stats.Members()) {
780 if (member->is_defined()) {
781 TRACE_EVENT_INSTANT2("webrtc_stats", "webrtc_stats",
782 "value", member->ValueToString(),
783 "type.name.id", GetStatTypeMemberNameAndId(
784 stats, member));
785 }
786 }
787 }
768 DeliverCachedReport(); 788 DeliverCachedReport();
769 } 789 }
770 } 790 }
771 791
772 void RTCStatsCollector::DeliverCachedReport() { 792 void RTCStatsCollector::DeliverCachedReport() {
773 RTC_DCHECK(signaling_thread_->IsCurrent()); 793 RTC_DCHECK(signaling_thread_->IsCurrent());
774 RTC_DCHECK(!callbacks_.empty()); 794 RTC_DCHECK(!callbacks_.empty());
775 RTC_DCHECK(cached_report_); 795 RTC_DCHECK(cached_report_);
776 for (const rtc::scoped_refptr<RTCStatsCollectorCallback>& callback : 796 for (const rtc::scoped_refptr<RTCStatsCollectorCallback>& callback :
777 callbacks_) { 797 callbacks_) {
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 const std::string& type) { 1275 const std::string& type) {
1256 return CandidateTypeToRTCIceCandidateType(type); 1276 return CandidateTypeToRTCIceCandidateType(type);
1257 } 1277 }
1258 1278
1259 const char* DataStateToRTCDataChannelStateForTesting( 1279 const char* DataStateToRTCDataChannelStateForTesting(
1260 DataChannelInterface::DataState state) { 1280 DataChannelInterface::DataState state) {
1261 return DataStateToRTCDataChannelState(state); 1281 return DataStateToRTCDataChannelState(state);
1262 } 1282 }
1263 1283
1264 } // namespace webrtc 1284 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/pc/rtcstats_integrationtest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698