| OLD | NEW |
| 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 |
| 11 #ifndef WEBRTC_API_RTCSTATSCOLLECTOR_H_ | 11 #ifndef WEBRTC_API_RTCSTATSCOLLECTOR_H_ |
| 12 #define WEBRTC_API_RTCSTATSCOLLECTOR_H_ | 12 #define WEBRTC_API_RTCSTATSCOLLECTOR_H_ |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "webrtc/api/stats/rtcstats_objects.h" | 17 #include "webrtc/api/stats/rtcstats_objects.h" |
| 18 #include "webrtc/api/stats/rtcstatsreport.h" | 18 #include "webrtc/api/stats/rtcstatsreport.h" |
| 19 #include "webrtc/base/asyncinvoker.h" | 19 #include "webrtc/base/asyncinvoker.h" |
| 20 #include "webrtc/base/refcount.h" | 20 #include "webrtc/base/refcount.h" |
| 21 #include "webrtc/base/scoped_ref_ptr.h" | 21 #include "webrtc/base/scoped_ref_ptr.h" |
| 22 #include "webrtc/base/timeutils.h" | 22 #include "webrtc/base/timeutils.h" |
| 23 | 23 |
| 24 namespace rtc { |
| 25 |
| 26 class SSLCertificate; |
| 27 |
| 28 } // namespace rtc |
| 29 |
| 24 namespace webrtc { | 30 namespace webrtc { |
| 25 | 31 |
| 26 class PeerConnection; | 32 class PeerConnection; |
| 33 struct SessionStats; |
| 27 | 34 |
| 28 class RTCStatsCollectorCallback : public virtual rtc::RefCountInterface { | 35 class RTCStatsCollectorCallback : public virtual rtc::RefCountInterface { |
| 29 public: | 36 public: |
| 30 virtual ~RTCStatsCollectorCallback() {} | 37 virtual ~RTCStatsCollectorCallback() {} |
| 31 | 38 |
| 32 virtual void OnStatsDelivered( | 39 virtual void OnStatsDelivered( |
| 33 const rtc::scoped_refptr<const RTCStatsReport>& report) = 0; | 40 const rtc::scoped_refptr<const RTCStatsReport>& report) = 0; |
| 34 }; | 41 }; |
| 35 | 42 |
| 36 // All public methods of the collector are to be called on the signaling thread. | 43 // All public methods of the collector are to be called on the signaling thread. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 62 virtual void ProducePartialResultsOnNetworkThread(int64_t timestamp_us); | 69 virtual void ProducePartialResultsOnNetworkThread(int64_t timestamp_us); |
| 63 | 70 |
| 64 // Can be called on any thread. | 71 // Can be called on any thread. |
| 65 void AddPartialResults( | 72 void AddPartialResults( |
| 66 const rtc::scoped_refptr<RTCStatsReport>& partial_report); | 73 const rtc::scoped_refptr<RTCStatsReport>& partial_report); |
| 67 | 74 |
| 68 private: | 75 private: |
| 69 void AddPartialResults_s(rtc::scoped_refptr<RTCStatsReport> partial_report); | 76 void AddPartialResults_s(rtc::scoped_refptr<RTCStatsReport> partial_report); |
| 70 void DeliverCachedReport(); | 77 void DeliverCachedReport(); |
| 71 | 78 |
| 72 std::unique_ptr<RTCPeerConnectionStats> ProducePeerConnectionStats_s( | 79 void ProduceCertificateStats_s( |
| 73 int64_t timestamp_us) const; | 80 int64_t timestamp_us, const SessionStats& session_stats, |
| 81 RTCStatsReport* report) const; |
| 82 void ProduceCertificateStatsFromSSLCertificateAndChain_s( |
| 83 int64_t timestamp_us, const rtc::SSLCertificate& certificate, |
| 84 RTCStatsReport* report) const; |
| 85 void ProducePeerConnectionStats_s( |
| 86 int64_t timestamp_us, RTCStatsReport* report) const; |
| 74 | 87 |
| 75 PeerConnection* const pc_; | 88 PeerConnection* const pc_; |
| 76 rtc::Thread* const signaling_thread_; | 89 rtc::Thread* const signaling_thread_; |
| 77 rtc::Thread* const worker_thread_; | 90 rtc::Thread* const worker_thread_; |
| 78 rtc::Thread* const network_thread_; | 91 rtc::Thread* const network_thread_; |
| 79 rtc::AsyncInvoker invoker_; | 92 rtc::AsyncInvoker invoker_; |
| 80 | 93 |
| 81 int num_pending_partial_reports_; | 94 int num_pending_partial_reports_; |
| 82 int64_t partial_report_timestamp_us_; | 95 int64_t partial_report_timestamp_us_; |
| 83 rtc::scoped_refptr<RTCStatsReport> partial_report_; | 96 rtc::scoped_refptr<RTCStatsReport> partial_report_; |
| 84 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_; | 97 std::vector<rtc::scoped_refptr<RTCStatsCollectorCallback>> callbacks_; |
| 85 | 98 |
| 86 // A timestamp, in microseconds, that is based on a timer that is | 99 // A timestamp, in microseconds, that is based on a timer that is |
| 87 // monotonically increasing. That is, even if the system clock is modified the | 100 // monotonically increasing. That is, even if the system clock is modified the |
| 88 // difference between the timer and this timestamp is how fresh the cached | 101 // difference between the timer and this timestamp is how fresh the cached |
| 89 // report is. | 102 // report is. |
| 90 int64_t cache_timestamp_us_; | 103 int64_t cache_timestamp_us_; |
| 91 int64_t cache_lifetime_us_; | 104 int64_t cache_lifetime_us_; |
| 92 rtc::scoped_refptr<const RTCStatsReport> cached_report_; | 105 rtc::scoped_refptr<const RTCStatsReport> cached_report_; |
| 93 }; | 106 }; |
| 94 | 107 |
| 95 } // namespace webrtc | 108 } // namespace webrtc |
| 96 | 109 |
| 97 #endif // WEBRTC_API_RTCSTATSCOLLECTOR_H_ | 110 #endif // WEBRTC_API_RTCSTATSCOLLECTOR_H_ |
| OLD | NEW |