OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 #include "webrtc/call/rtc_event_log.h" | 11 #include "webrtc/call/rtc_event_log.h" |
12 | 12 |
13 #include <deque> | 13 #include <limits> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/checks.h" | 16 #include "webrtc/base/checks.h" |
17 #include "webrtc/base/criticalsection.h" | 17 #include "webrtc/base/constructormagic.h" |
18 #include "webrtc/base/thread_annotations.h" | 18 #include "webrtc/base/event.h" |
19 #include "webrtc/base/thread_checker.h" | |
19 #include "webrtc/call.h" | 20 #include "webrtc/call.h" |
21 #include "webrtc/call/rtc_event_log_helper_thread.h" | |
22 #include "webrtc/common_audio/swap_queue.h" | |
20 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 23 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
21 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 24 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
22 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | 25 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
23 #include "webrtc/system_wrappers/include/clock.h" | 26 #include "webrtc/system_wrappers/include/clock.h" |
24 #include "webrtc/system_wrappers/include/file_wrapper.h" | 27 #include "webrtc/system_wrappers/include/file_wrapper.h" |
28 #include "webrtc/system_wrappers/include/logging.h" | |
25 | 29 |
26 #ifdef ENABLE_RTC_EVENT_LOG | 30 #ifdef ENABLE_RTC_EVENT_LOG |
27 // Files generated at build-time by the protobuf compiler. | 31 // Files generated at build-time by the protobuf compiler. |
28 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD | 32 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD |
29 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" | 33 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" |
30 #else | 34 #else |
31 #include "webrtc/call/rtc_event_log.pb.h" | 35 #include "webrtc/call/rtc_event_log.pb.h" |
32 #endif | 36 #endif |
33 #endif | 37 #endif |
34 | 38 |
35 namespace webrtc { | 39 namespace webrtc { |
36 | 40 |
37 #ifndef ENABLE_RTC_EVENT_LOG | 41 #ifndef ENABLE_RTC_EVENT_LOG |
38 | 42 |
39 // No-op implementation if flag is not set. | 43 // No-op implementation if flag is not set. |
40 class RtcEventLogImpl final : public RtcEventLog { | 44 class RtcEventLogNullImpl final : public RtcEventLog { |
41 public: | 45 public: |
42 void SetBufferDuration(int64_t buffer_duration_us) override {} | 46 bool StartLogging(const std::string& file_name, |
43 void StartLogging(const std::string& file_name, int duration_ms) override {} | 47 int64_t max_size_bytes) override { |
44 bool StartLogging(rtc::PlatformFile log_file) override { return false; } | 48 return false; |
45 void StopLogging(void) override {} | 49 } |
50 bool StartLogging(rtc::PlatformFile platform_file, | |
51 int64_t max_size_bytes) override { | |
52 return false; | |
53 } | |
54 void StopLogging() override {} | |
55 // We don't want to hide the deprecated versions coming from the base class. | |
56 using RtcEventLog::StartLogging; | |
the sun
2016/02/25 15:23:19
Not necessary.
terelius
2016/03/09 19:49:39
Fixed.
| |
57 | |
46 void LogVideoReceiveStreamConfig( | 58 void LogVideoReceiveStreamConfig( |
47 const VideoReceiveStream::Config& config) override {} | 59 const VideoReceiveStream::Config& config) override {} |
48 void LogVideoSendStreamConfig( | 60 void LogVideoSendStreamConfig( |
49 const VideoSendStream::Config& config) override {} | 61 const VideoSendStream::Config& config) override {} |
50 void LogRtpHeader(PacketDirection direction, | 62 void LogRtpHeader(PacketDirection direction, |
51 MediaType media_type, | 63 MediaType media_type, |
52 const uint8_t* header, | 64 const uint8_t* header, |
53 size_t packet_length) override {} | 65 size_t packet_length) override {} |
54 void LogRtcpPacket(PacketDirection direction, | 66 void LogRtcpPacket(PacketDirection direction, |
55 MediaType media_type, | 67 MediaType media_type, |
56 const uint8_t* packet, | 68 const uint8_t* packet, |
57 size_t length) override {} | 69 size_t length) override {} |
58 void LogAudioPlayout(uint32_t ssrc) override {} | 70 void LogAudioPlayout(uint32_t ssrc) override {} |
59 void LogBwePacketLossEvent(int32_t bitrate, | 71 void LogBwePacketLossEvent(int32_t bitrate, |
60 uint8_t fraction_loss, | 72 uint8_t fraction_loss, |
61 int32_t total_packets) override {} | 73 int32_t total_packets) override {} |
62 }; | 74 }; |
63 | 75 |
64 #else // ENABLE_RTC_EVENT_LOG is defined | 76 #else // ENABLE_RTC_EVENT_LOG is defined |
65 | 77 |
66 class RtcEventLogImpl final : public RtcEventLog { | 78 class RtcEventLogImpl final : public RtcEventLog { |
67 public: | 79 public: |
68 RtcEventLogImpl(); | 80 explicit RtcEventLogImpl(const Clock* clock); |
81 ~RtcEventLogImpl() override; | |
69 | 82 |
70 void SetBufferDuration(int64_t buffer_duration_us) override; | 83 bool StartLogging(const std::string& file_name, |
71 void StartLogging(const std::string& file_name, int duration_ms) override; | 84 int64_t max_size_bytes) override; |
72 bool StartLogging(rtc::PlatformFile log_file) override; | 85 bool StartLogging(rtc::PlatformFile platform_file, |
86 int64_t max_size_bytes) override; | |
87 // We don't want to hide the deprecated versions coming from the base class. | |
88 using RtcEventLog::StartLogging; | |
the sun
2016/02/25 15:23:19
Not necessary.
terelius
2016/03/09 19:49:39
Fixed.
| |
73 void StopLogging() override; | 89 void StopLogging() override; |
74 void LogVideoReceiveStreamConfig( | 90 void LogVideoReceiveStreamConfig( |
75 const VideoReceiveStream::Config& config) override; | 91 const VideoReceiveStream::Config& config) override; |
76 void LogVideoSendStreamConfig(const VideoSendStream::Config& config) override; | 92 void LogVideoSendStreamConfig(const VideoSendStream::Config& config) override; |
77 void LogRtpHeader(PacketDirection direction, | 93 void LogRtpHeader(PacketDirection direction, |
78 MediaType media_type, | 94 MediaType media_type, |
79 const uint8_t* header, | 95 const uint8_t* header, |
80 size_t packet_length) override; | 96 size_t packet_length) override; |
81 void LogRtcpPacket(PacketDirection direction, | 97 void LogRtcpPacket(PacketDirection direction, |
82 MediaType media_type, | 98 MediaType media_type, |
83 const uint8_t* packet, | 99 const uint8_t* packet, |
84 size_t length) override; | 100 size_t length) override; |
85 void LogAudioPlayout(uint32_t ssrc) override; | 101 void LogAudioPlayout(uint32_t ssrc) override; |
86 void LogBwePacketLossEvent(int32_t bitrate, | 102 void LogBwePacketLossEvent(int32_t bitrate, |
87 uint8_t fraction_loss, | 103 uint8_t fraction_loss, |
88 int32_t total_packets) override; | 104 int32_t total_packets) override; |
89 | 105 |
90 private: | 106 private: |
91 // Starts logging. This function assumes the file_ has been opened succesfully | 107 // Message queue for passing control messages to the logging thread. |
92 // and that the start_time_us_ and _duration_us_ have been set. | 108 SwapQueue<EventLogMessage> message_queue_; |
the sun
2016/02/25 15:23:19
Note, you don't really need one queue per event ty
stefan-webrtc
2016/03/01 09:44:16
We plan on using the event log in other places too
ivoc
2016/03/01 10:04:57
I'm still not convinced that a single queue is a b
terelius
2016/03/01 11:24:04
We *are* logging from a single point in time.
Hav
the sun
2016/03/02 10:09:16
But since we're not using any of those optimizatio
| |
93 void StartLoggingLocked() EXCLUSIVE_LOCKS_REQUIRED(crit_); | |
94 // Stops logging and clears the stored data and buffers. | |
95 void StopLoggingLocked() EXCLUSIVE_LOCKS_REQUIRED(crit_); | |
96 // Adds a new event to the logfile if logging is active, or adds it to the | |
97 // list of recent log events otherwise. | |
98 void HandleEvent(rtclog::Event* event) EXCLUSIVE_LOCKS_REQUIRED(crit_); | |
99 // Writes the event to the file. Note that this will destroy the state of the | |
100 // input argument. | |
101 void StoreToFile(rtclog::Event* event) EXCLUSIVE_LOCKS_REQUIRED(crit_); | |
102 // Adds the event to the list of recent events, and removes any events that | |
103 // are too old and no longer fall in the time window. | |
104 void AddRecentEvent(const rtclog::Event& event) | |
105 EXCLUSIVE_LOCKS_REQUIRED(crit_); | |
106 | 109 |
107 rtc::CriticalSection crit_; | 110 // Message queues for passing events to the logging thread. |
108 rtc::scoped_ptr<FileWrapper> file_ GUARDED_BY(crit_) = | 111 SwapQueue<rtclog::Event> config_queue_; |
109 rtc::scoped_ptr<FileWrapper>(FileWrapper::Create()); | 112 SwapQueue<rtclog::Event> rtp_queue_; |
110 rtc::PlatformFile platform_file_ GUARDED_BY(crit_) = | 113 SwapQueue<rtclog::Event> rtcp_queue_; |
111 rtc::kInvalidPlatformFileValue; | 114 SwapQueue<rtclog::Event> acm_playout_queue_; |
112 rtclog::EventStream stream_ GUARDED_BY(crit_); | 115 SwapQueue<rtclog::Event> bwe_loss_queue_; |
113 std::deque<rtclog::Event> recent_log_events_ GUARDED_BY(crit_); | |
114 std::vector<rtclog::Event> config_events_ GUARDED_BY(crit_); | |
115 | 116 |
116 // Microseconds to record log events, before starting the actual log. | 117 rtc::Event wake_up_; |
117 int64_t buffer_duration_us_ GUARDED_BY(crit_); | 118 rtc::Event stopped_; |
118 bool currently_logging_ GUARDED_BY(crit_); | 119 |
119 int64_t start_time_us_ GUARDED_BY(crit_); | |
120 int64_t duration_us_ GUARDED_BY(crit_); | |
121 const Clock* const clock_; | 120 const Clock* const clock_; |
121 | |
122 RtcEventLogHelperThread helper_thread_; | |
123 rtc::ThreadChecker thread_checker_; | |
124 | |
125 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RtcEventLogImpl); | |
122 }; | 126 }; |
123 | 127 |
124 namespace { | 128 namespace { |
125 // The functions in this namespace convert enums from the runtime format | 129 // The functions in this namespace convert enums from the runtime format |
126 // that the rest of the WebRtc project can use, to the corresponding | 130 // that the rest of the WebRtc project can use, to the corresponding |
127 // serialized enum which is defined by the protobuf. | 131 // serialized enum which is defined by the protobuf. |
128 | 132 |
129 // Do not add default return values to the conversion functions in this | |
130 // unnamed namespace. The intention is to make the compiler warn if anyone | |
131 // adds unhandled new events/modes/etc. | |
132 | |
133 rtclog::VideoReceiveConfig_RtcpMode ConvertRtcpMode(RtcpMode rtcp_mode) { | 133 rtclog::VideoReceiveConfig_RtcpMode ConvertRtcpMode(RtcpMode rtcp_mode) { |
134 switch (rtcp_mode) { | 134 switch (rtcp_mode) { |
135 case RtcpMode::kCompound: | 135 case RtcpMode::kCompound: |
136 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; | 136 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; |
137 case RtcpMode::kReducedSize: | 137 case RtcpMode::kReducedSize: |
138 return rtclog::VideoReceiveConfig::RTCP_REDUCEDSIZE; | 138 return rtclog::VideoReceiveConfig::RTCP_REDUCEDSIZE; |
139 case RtcpMode::kOff: | 139 case RtcpMode::kOff: |
140 RTC_NOTREACHED(); | 140 RTC_NOTREACHED(); |
141 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; | 141 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; |
142 } | 142 } |
143 RTC_NOTREACHED(); | 143 RTC_NOTREACHED(); |
144 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; | 144 return rtclog::VideoReceiveConfig::RTCP_COMPOUND; |
145 } | 145 } |
146 | 146 |
147 rtclog::MediaType ConvertMediaType(MediaType media_type) { | 147 rtclog::MediaType ConvertMediaType(MediaType media_type) { |
148 switch (media_type) { | 148 switch (media_type) { |
149 case MediaType::ANY: | 149 case MediaType::ANY: |
150 return rtclog::MediaType::ANY; | 150 return rtclog::MediaType::ANY; |
151 case MediaType::AUDIO: | 151 case MediaType::AUDIO: |
152 return rtclog::MediaType::AUDIO; | 152 return rtclog::MediaType::AUDIO; |
153 case MediaType::VIDEO: | 153 case MediaType::VIDEO: |
154 return rtclog::MediaType::VIDEO; | 154 return rtclog::MediaType::VIDEO; |
155 case MediaType::DATA: | 155 case MediaType::DATA: |
156 return rtclog::MediaType::DATA; | 156 return rtclog::MediaType::DATA; |
157 } | 157 } |
158 RTC_NOTREACHED(); | 158 RTC_NOTREACHED(); |
159 return rtclog::ANY; | 159 return rtclog::ANY; |
160 } | 160 } |
161 | 161 |
162 } // namespace | 162 // The RTP and RTCP buffers reserve space for twice the expected number of |
163 // sent packets because they also contain received packets. | |
164 const int kStreamConfigsPerSecond = 64; // 16 clients w. 4 streams each. | |
165 const int kRtpPacketsPerSecond = 500; // 125 sent video packets/s @ 1 Mbps. | |
166 const int kRtcpPacketsPerSecond = 40; // Assume RTCP sent 20 times/s. | |
167 const int kPlayoutsPerSecond = 100; // Playout called every 10 ms. | |
168 const int kBweUpdatesPerSecond = 20; // One BWE update per RTCP packet. | |
163 | 169 |
164 namespace { | 170 const int kControlMessagesPerSecond = 5; |
165 bool IsConfigEvent(const rtclog::Event& event) { | |
166 rtclog::Event_EventType event_type = event.type(); | |
167 return event_type == rtclog::Event::VIDEO_RECEIVER_CONFIG_EVENT || | |
168 event_type == rtclog::Event::VIDEO_SENDER_CONFIG_EVENT || | |
169 event_type == rtclog::Event::AUDIO_RECEIVER_CONFIG_EVENT || | |
170 event_type == rtclog::Event::AUDIO_SENDER_CONFIG_EVENT; | |
171 } | |
172 } // namespace | 171 } // namespace |
173 | 172 |
174 // RtcEventLogImpl member functions. | 173 // RtcEventLogImpl member functions. |
175 RtcEventLogImpl::RtcEventLogImpl() | 174 RtcEventLogImpl::RtcEventLogImpl(const Clock* clock) |
176 : file_(FileWrapper::Create()), | 175 // Allocate buffers for roughly one second of history. |
177 stream_(), | 176 : message_queue_(kControlMessagesPerSecond), |
178 buffer_duration_us_(10000000), | 177 config_queue_(kStreamConfigsPerSecond), |
179 currently_logging_(false), | 178 rtp_queue_(kRtpPacketsPerSecond), |
180 start_time_us_(0), | 179 rtcp_queue_(kRtcpPacketsPerSecond), |
181 duration_us_(0), | 180 acm_playout_queue_(kPlayoutsPerSecond), |
182 clock_(Clock::GetRealTimeClock()) { | 181 bwe_loss_queue_(kBweUpdatesPerSecond), |
182 wake_up_(false, false), | |
183 stopped_(false, false), | |
184 clock_(clock), | |
185 helper_thread_(&message_queue_, | |
186 &config_queue_, | |
187 &rtp_queue_, | |
188 &rtcp_queue_, | |
189 &acm_playout_queue_, | |
190 &bwe_loss_queue_, | |
191 &wake_up_, | |
192 &stopped_, | |
193 clock), | |
194 thread_checker_() { | |
195 thread_checker_.DetachFromThread(); | |
183 } | 196 } |
184 | 197 |
185 void RtcEventLogImpl::SetBufferDuration(int64_t buffer_duration_us) { | 198 RtcEventLogImpl::~RtcEventLogImpl() { |
186 rtc::CritScope lock(&crit_); | 199 // The RtcEventLogHelperThread destructor closes the file |
187 buffer_duration_us_ = buffer_duration_us; | 200 // and waits for the thread to terminate. |
188 } | 201 } |
189 | 202 |
190 void RtcEventLogImpl::StartLogging(const std::string& file_name, | 203 bool RtcEventLogImpl::StartLogging(const std::string& file_name, |
191 int duration_ms) { | 204 int64_t max_size_bytes) { |
192 rtc::CritScope lock(&crit_); | 205 EventLogMessage message; |
193 if (currently_logging_) { | 206 message.message_type = EventLogMessage::START_FILE; |
194 StopLoggingLocked(); | 207 message.max_size_bytes = max_size_bytes; |
195 } | 208 message.start_time = clock_->TimeInMicroseconds(); |
196 if (file_->OpenFile(file_name.c_str(), false) != 0) { | 209 message.stop_time = std::numeric_limits<int64_t>::max(); |
197 return; | 210 message.file.reset(FileWrapper::Create()); |
198 } | 211 if (message.file->OpenFile(file_name.c_str(), false) != 0) { |
199 start_time_us_ = clock_->TimeInMicroseconds(); | |
200 duration_us_ = static_cast<int64_t>(duration_ms) * 1000; | |
201 StartLoggingLocked(); | |
202 } | |
203 | |
204 bool RtcEventLogImpl::StartLogging(rtc::PlatformFile log_file) { | |
205 rtc::CritScope lock(&crit_); | |
206 | |
207 if (currently_logging_) { | |
208 StopLoggingLocked(); | |
209 } | |
210 RTC_DCHECK(platform_file_ == rtc::kInvalidPlatformFileValue); | |
211 | |
212 FILE* file_stream = rtc::FdopenPlatformFileForWriting(log_file); | |
213 if (!file_stream) { | |
214 rtc::ClosePlatformFile(log_file); | |
215 return false; | 212 return false; |
216 } | 213 } |
217 | 214 if (!message_queue_.Insert(&message)) { |
218 if (file_->OpenFromFileHandle(file_stream, true, false) != 0) { | 215 LOG(LS_WARNING) << "Message queue full. Can't start logging."; |
219 rtc::ClosePlatformFile(log_file); | |
220 return false; | 216 return false; |
221 } | 217 } |
222 platform_file_ = log_file; | |
223 // Set the start time and duration to keep logging for 10 minutes. | |
224 start_time_us_ = clock_->TimeInMicroseconds(); | |
225 duration_us_ = 10 * 60 * 1000000; | |
226 StartLoggingLocked(); | |
227 return true; | 218 return true; |
228 } | 219 } |
229 | 220 |
230 void RtcEventLogImpl::StartLoggingLocked() { | 221 bool RtcEventLogImpl::StartLogging(rtc::PlatformFile platform_file, |
231 currently_logging_ = true; | 222 int64_t max_size_bytes) { |
232 | 223 EventLogMessage message; |
233 // Write all old configuration events to the log file. | 224 message.message_type = EventLogMessage::START_FILE; |
234 for (auto& event : config_events_) { | 225 message.max_size_bytes = max_size_bytes; |
235 StoreToFile(&event); | 226 message.start_time = clock_->TimeInMicroseconds(); |
227 message.stop_time = std::numeric_limits<int64_t>::max(); | |
228 message.file.reset(FileWrapper::Create()); | |
229 FILE* file_handle = rtc::FdopenPlatformFileForWriting(platform_file); | |
230 if (!file_handle) { | |
231 return false; | |
236 } | 232 } |
237 // Write all recent configuration events to the log file, and | 233 if (message.file->OpenFromFileHandle(file_handle, true, false) != 0) { |
238 // write all other recent events to the log file, ignoring any old events. | 234 return false; |
239 for (auto& event : recent_log_events_) { | |
240 if (IsConfigEvent(event)) { | |
241 StoreToFile(&event); | |
242 config_events_.push_back(event); | |
243 } else if (event.timestamp_us() >= start_time_us_ - buffer_duration_us_) { | |
244 StoreToFile(&event); | |
245 } | |
246 } | 235 } |
247 recent_log_events_.clear(); | 236 if (!message_queue_.Insert(&message)) { |
248 // Write a LOG_START event to the file. | 237 LOG(LS_WARNING) << "Message queue full. Can't start logging."; |
249 rtclog::Event start_event; | 238 return false; |
250 start_event.set_timestamp_us(start_time_us_); | 239 } |
251 start_event.set_type(rtclog::Event::LOG_START); | 240 return true; |
252 StoreToFile(&start_event); | |
253 } | 241 } |
254 | 242 |
255 void RtcEventLogImpl::StopLogging() { | 243 void RtcEventLogImpl::StopLogging() { |
256 rtc::CritScope lock(&crit_); | 244 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
the sun
2016/02/25 15:23:19
Why just here? Add to StartLogging() too?
terelius
2016/03/09 19:49:39
Done.
| |
257 StopLoggingLocked(); | 245 EventLogMessage message; |
246 message.message_type = EventLogMessage::STOP_FILE; | |
247 message.stop_time = clock_->TimeInMicroseconds(); | |
248 if (!message_queue_.Insert(&message)) { | |
249 // TODO(terelius): We would like to have a blocking Insert function in the | |
250 // SwapQueue, but for the time being we will just assume that the message | |
251 // queue never gets full. | |
252 LOG(LS_WARNING) << "Message queue full. Can't stop logging."; | |
253 return; | |
stefan-webrtc
2016/03/01 09:44:16
Will we be able to make sure the caller tries to s
terelius
2016/03/09 19:49:39
This would happen if the user tries to start loggi
| |
254 } | |
255 wake_up_.Set(); // Request the output thread to wake up. | |
256 stopped_.Wait(rtc::Event::kForever); // Wait for the log to stop. | |
258 } | 257 } |
259 | 258 |
260 void RtcEventLogImpl::LogVideoReceiveStreamConfig( | 259 void RtcEventLogImpl::LogVideoReceiveStreamConfig( |
261 const VideoReceiveStream::Config& config) { | 260 const VideoReceiveStream::Config& config) { |
262 rtc::CritScope lock(&crit_); | |
263 | |
264 rtclog::Event event; | 261 rtclog::Event event; |
265 event.set_timestamp_us(clock_->TimeInMicroseconds()); | 262 event.set_timestamp_us(clock_->TimeInMicroseconds()); |
266 event.set_type(rtclog::Event::VIDEO_RECEIVER_CONFIG_EVENT); | 263 event.set_type(rtclog::Event::VIDEO_RECEIVER_CONFIG_EVENT); |
267 | 264 |
268 rtclog::VideoReceiveConfig* receiver_config = | 265 rtclog::VideoReceiveConfig* receiver_config = |
269 event.mutable_video_receiver_config(); | 266 event.mutable_video_receiver_config(); |
270 receiver_config->set_remote_ssrc(config.rtp.remote_ssrc); | 267 receiver_config->set_remote_ssrc(config.rtp.remote_ssrc); |
271 receiver_config->set_local_ssrc(config.rtp.local_ssrc); | 268 receiver_config->set_local_ssrc(config.rtp.local_ssrc); |
272 | 269 |
273 receiver_config->set_rtcp_mode(ConvertRtcpMode(config.rtp.rtcp_mode)); | 270 receiver_config->set_rtcp_mode(ConvertRtcpMode(config.rtp.rtcp_mode)); |
(...skipping 11 matching lines...) Expand all Loading... | |
285 receiver_config->add_header_extensions(); | 282 receiver_config->add_header_extensions(); |
286 extension->set_name(e.name); | 283 extension->set_name(e.name); |
287 extension->set_id(e.id); | 284 extension->set_id(e.id); |
288 } | 285 } |
289 | 286 |
290 for (const auto& d : config.decoders) { | 287 for (const auto& d : config.decoders) { |
291 rtclog::DecoderConfig* decoder = receiver_config->add_decoders(); | 288 rtclog::DecoderConfig* decoder = receiver_config->add_decoders(); |
292 decoder->set_name(d.payload_name); | 289 decoder->set_name(d.payload_name); |
293 decoder->set_payload_type(d.payload_type); | 290 decoder->set_payload_type(d.payload_type); |
294 } | 291 } |
295 HandleEvent(&event); | 292 if (!config_queue_.Insert(&event)) { |
293 LOG(LS_WARNING) << "Config queue full. Not logging config event."; | |
294 } | |
296 } | 295 } |
297 | 296 |
298 void RtcEventLogImpl::LogVideoSendStreamConfig( | 297 void RtcEventLogImpl::LogVideoSendStreamConfig( |
299 const VideoSendStream::Config& config) { | 298 const VideoSendStream::Config& config) { |
300 rtc::CritScope lock(&crit_); | |
301 | |
302 rtclog::Event event; | 299 rtclog::Event event; |
303 event.set_timestamp_us(clock_->TimeInMicroseconds()); | 300 event.set_timestamp_us(clock_->TimeInMicroseconds()); |
304 event.set_type(rtclog::Event::VIDEO_SENDER_CONFIG_EVENT); | 301 event.set_type(rtclog::Event::VIDEO_SENDER_CONFIG_EVENT); |
305 | 302 |
306 rtclog::VideoSendConfig* sender_config = event.mutable_video_sender_config(); | 303 rtclog::VideoSendConfig* sender_config = event.mutable_video_sender_config(); |
307 | 304 |
308 for (const auto& ssrc : config.rtp.ssrcs) { | 305 for (const auto& ssrc : config.rtp.ssrcs) { |
309 sender_config->add_ssrcs(ssrc); | 306 sender_config->add_ssrcs(ssrc); |
310 } | 307 } |
311 | 308 |
312 for (const auto& e : config.rtp.extensions) { | 309 for (const auto& e : config.rtp.extensions) { |
313 rtclog::RtpHeaderExtension* extension = | 310 rtclog::RtpHeaderExtension* extension = |
314 sender_config->add_header_extensions(); | 311 sender_config->add_header_extensions(); |
315 extension->set_name(e.name); | 312 extension->set_name(e.name); |
316 extension->set_id(e.id); | 313 extension->set_id(e.id); |
317 } | 314 } |
318 | 315 |
319 for (const auto& rtx_ssrc : config.rtp.rtx.ssrcs) { | 316 for (const auto& rtx_ssrc : config.rtp.rtx.ssrcs) { |
320 sender_config->add_rtx_ssrcs(rtx_ssrc); | 317 sender_config->add_rtx_ssrcs(rtx_ssrc); |
321 } | 318 } |
322 sender_config->set_rtx_payload_type(config.rtp.rtx.payload_type); | 319 sender_config->set_rtx_payload_type(config.rtp.rtx.payload_type); |
323 | 320 |
324 rtclog::EncoderConfig* encoder = sender_config->mutable_encoder(); | 321 rtclog::EncoderConfig* encoder = sender_config->mutable_encoder(); |
325 encoder->set_name(config.encoder_settings.payload_name); | 322 encoder->set_name(config.encoder_settings.payload_name); |
326 encoder->set_payload_type(config.encoder_settings.payload_type); | 323 encoder->set_payload_type(config.encoder_settings.payload_type); |
327 HandleEvent(&event); | 324 if (!config_queue_.Insert(&event)) { |
325 LOG(LS_WARNING) << "Config queue full. Not logging config event."; | |
326 } | |
328 } | 327 } |
329 | 328 |
330 void RtcEventLogImpl::LogRtpHeader(PacketDirection direction, | 329 void RtcEventLogImpl::LogRtpHeader(PacketDirection direction, |
331 MediaType media_type, | 330 MediaType media_type, |
332 const uint8_t* header, | 331 const uint8_t* header, |
333 size_t packet_length) { | 332 size_t packet_length) { |
334 // Read header length (in bytes) from packet data. | 333 // Read header length (in bytes) from packet data. |
335 if (packet_length < 12u) { | 334 if (packet_length < 12u) { |
336 return; // Don't read outside the packet. | 335 return; // Don't read outside the packet. |
337 } | 336 } |
338 const bool x = (header[0] & 0x10) != 0; | 337 const bool x = (header[0] & 0x10) != 0; |
339 const uint8_t cc = header[0] & 0x0f; | 338 const uint8_t cc = header[0] & 0x0f; |
340 size_t header_length = 12u + cc * 4u; | 339 size_t header_length = 12u + cc * 4u; |
341 | 340 |
342 if (x) { | 341 if (x) { |
343 if (packet_length < 12u + cc * 4u + 4u) { | 342 if (packet_length < 12u + cc * 4u + 4u) { |
344 return; // Don't read outside the packet. | 343 return; // Don't read outside the packet. |
345 } | 344 } |
346 size_t x_len = ByteReader<uint16_t>::ReadBigEndian(header + 14 + cc * 4); | 345 size_t x_len = ByteReader<uint16_t>::ReadBigEndian(header + 14 + cc * 4); |
347 header_length += (x_len + 1) * 4; | 346 header_length += (x_len + 1) * 4; |
348 } | 347 } |
349 | 348 |
350 rtc::CritScope lock(&crit_); | |
351 rtclog::Event rtp_event; | 349 rtclog::Event rtp_event; |
352 rtp_event.set_timestamp_us(clock_->TimeInMicroseconds()); | 350 rtp_event.set_timestamp_us(clock_->TimeInMicroseconds()); |
353 rtp_event.set_type(rtclog::Event::RTP_EVENT); | 351 rtp_event.set_type(rtclog::Event::RTP_EVENT); |
354 rtp_event.mutable_rtp_packet()->set_incoming(direction == kIncomingPacket); | 352 rtp_event.mutable_rtp_packet()->set_incoming(direction == kIncomingPacket); |
355 rtp_event.mutable_rtp_packet()->set_type(ConvertMediaType(media_type)); | 353 rtp_event.mutable_rtp_packet()->set_type(ConvertMediaType(media_type)); |
356 rtp_event.mutable_rtp_packet()->set_packet_length(packet_length); | 354 rtp_event.mutable_rtp_packet()->set_packet_length(packet_length); |
357 rtp_event.mutable_rtp_packet()->set_header(header, header_length); | 355 rtp_event.mutable_rtp_packet()->set_header(header, header_length); |
358 HandleEvent(&rtp_event); | 356 if (!rtp_queue_.Insert(&rtp_event)) { |
357 LOG(LS_WARNING) << "RTP queue full. Not logging RTP packet."; | |
358 } | |
359 } | 359 } |
360 | 360 |
361 void RtcEventLogImpl::LogRtcpPacket(PacketDirection direction, | 361 void RtcEventLogImpl::LogRtcpPacket(PacketDirection direction, |
362 MediaType media_type, | 362 MediaType media_type, |
363 const uint8_t* packet, | 363 const uint8_t* packet, |
364 size_t length) { | 364 size_t length) { |
365 rtc::CritScope lock(&crit_); | |
366 rtclog::Event rtcp_event; | 365 rtclog::Event rtcp_event; |
367 rtcp_event.set_timestamp_us(clock_->TimeInMicroseconds()); | 366 rtcp_event.set_timestamp_us(clock_->TimeInMicroseconds()); |
368 rtcp_event.set_type(rtclog::Event::RTCP_EVENT); | 367 rtcp_event.set_type(rtclog::Event::RTCP_EVENT); |
369 rtcp_event.mutable_rtcp_packet()->set_incoming(direction == kIncomingPacket); | 368 rtcp_event.mutable_rtcp_packet()->set_incoming(direction == kIncomingPacket); |
370 rtcp_event.mutable_rtcp_packet()->set_type(ConvertMediaType(media_type)); | 369 rtcp_event.mutable_rtcp_packet()->set_type(ConvertMediaType(media_type)); |
371 | 370 |
372 RTCPUtility::RtcpCommonHeader header; | 371 RTCPUtility::RtcpCommonHeader header; |
373 const uint8_t* block_begin = packet; | 372 const uint8_t* block_begin = packet; |
374 const uint8_t* packet_end = packet + length; | 373 const uint8_t* packet_end = packet + length; |
375 RTC_DCHECK(length <= IP_PACKET_SIZE); | 374 RTC_DCHECK(length <= IP_PACKET_SIZE); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
407 FALLTHROUGH(); | 406 FALLTHROUGH(); |
408 default: | 407 default: |
409 // We don't log sender descriptions, application defined messages | 408 // We don't log sender descriptions, application defined messages |
410 // or message blocks of unknown type. | 409 // or message blocks of unknown type. |
411 break; | 410 break; |
412 } | 411 } |
413 | 412 |
414 block_begin += block_size; | 413 block_begin += block_size; |
415 } | 414 } |
416 rtcp_event.mutable_rtcp_packet()->set_packet_data(buffer, buffer_length); | 415 rtcp_event.mutable_rtcp_packet()->set_packet_data(buffer, buffer_length); |
417 HandleEvent(&rtcp_event); | 416 if (!rtcp_queue_.Insert(&rtcp_event)) { |
417 LOG(LS_WARNING) << "RTCP queue full. Not logging RTCP packet."; | |
418 } | |
418 } | 419 } |
419 | 420 |
420 void RtcEventLogImpl::LogAudioPlayout(uint32_t ssrc) { | 421 void RtcEventLogImpl::LogAudioPlayout(uint32_t ssrc) { |
421 rtc::CritScope lock(&crit_); | |
422 rtclog::Event event; | 422 rtclog::Event event; |
423 event.set_timestamp_us(clock_->TimeInMicroseconds()); | 423 event.set_timestamp_us(clock_->TimeInMicroseconds()); |
424 event.set_type(rtclog::Event::AUDIO_PLAYOUT_EVENT); | 424 event.set_type(rtclog::Event::AUDIO_PLAYOUT_EVENT); |
425 auto playout_event = event.mutable_audio_playout_event(); | 425 auto playout_event = event.mutable_audio_playout_event(); |
426 playout_event->set_local_ssrc(ssrc); | 426 playout_event->set_local_ssrc(ssrc); |
427 HandleEvent(&event); | 427 if (!acm_playout_queue_.Insert(&event)) { |
428 LOG(LS_WARNING) << "Playout queue full. Not logging ACM playout."; | |
429 } | |
428 } | 430 } |
429 | 431 |
430 void RtcEventLogImpl::LogBwePacketLossEvent(int32_t bitrate, | 432 void RtcEventLogImpl::LogBwePacketLossEvent(int32_t bitrate, |
431 uint8_t fraction_loss, | 433 uint8_t fraction_loss, |
432 int32_t total_packets) { | 434 int32_t total_packets) { |
433 rtc::CritScope lock(&crit_); | |
434 rtclog::Event event; | 435 rtclog::Event event; |
435 event.set_timestamp_us(clock_->TimeInMicroseconds()); | 436 event.set_timestamp_us(clock_->TimeInMicroseconds()); |
436 event.set_type(rtclog::Event::BWE_PACKET_LOSS_EVENT); | 437 event.set_type(rtclog::Event::BWE_PACKET_LOSS_EVENT); |
437 auto bwe_event = event.mutable_bwe_packet_loss_event(); | 438 auto bwe_event = event.mutable_bwe_packet_loss_event(); |
438 bwe_event->set_bitrate(bitrate); | 439 bwe_event->set_bitrate(bitrate); |
439 bwe_event->set_fraction_loss(fraction_loss); | 440 bwe_event->set_fraction_loss(fraction_loss); |
440 bwe_event->set_total_packets(total_packets); | 441 bwe_event->set_total_packets(total_packets); |
441 HandleEvent(&event); | 442 if (!bwe_loss_queue_.Insert(&event)) { |
442 } | 443 LOG(LS_WARNING) << "BWE loss queue full. Not logging BWE update."; |
443 | |
444 void RtcEventLogImpl::StopLoggingLocked() { | |
445 if (currently_logging_) { | |
446 currently_logging_ = false; | |
447 // Create a LogEnd event | |
448 rtclog::Event event; | |
449 event.set_timestamp_us(clock_->TimeInMicroseconds()); | |
450 event.set_type(rtclog::Event::LOG_END); | |
451 // Store the event and close the file | |
452 RTC_DCHECK(file_->Open()); | |
453 StoreToFile(&event); | |
454 file_->CloseFile(); | |
455 if (platform_file_ != rtc::kInvalidPlatformFileValue) { | |
456 rtc::ClosePlatformFile(platform_file_); | |
457 platform_file_ = rtc::kInvalidPlatformFileValue; | |
458 } | |
459 } | |
460 RTC_DCHECK(!file_->Open()); | |
461 stream_.Clear(); | |
462 } | |
463 | |
464 void RtcEventLogImpl::HandleEvent(rtclog::Event* event) { | |
465 if (currently_logging_) { | |
466 if (clock_->TimeInMicroseconds() < start_time_us_ + duration_us_) { | |
467 StoreToFile(event); | |
468 return; | |
469 } | |
470 StopLoggingLocked(); | |
471 } | |
472 AddRecentEvent(*event); | |
473 } | |
474 | |
475 void RtcEventLogImpl::StoreToFile(rtclog::Event* event) { | |
476 // Reuse the same object at every log event. | |
477 if (stream_.stream_size() < 1) { | |
478 stream_.add_stream(); | |
479 } | |
480 RTC_DCHECK_EQ(stream_.stream_size(), 1); | |
481 stream_.mutable_stream(0)->Swap(event); | |
482 // TODO(terelius): Doesn't this create a new EventStream per event? | |
483 // Is this guaranteed to work e.g. in future versions of protobuf? | |
484 std::string dump_buffer; | |
485 stream_.SerializeToString(&dump_buffer); | |
486 file_->Write(dump_buffer.data(), dump_buffer.size()); | |
487 } | |
488 | |
489 void RtcEventLogImpl::AddRecentEvent(const rtclog::Event& event) { | |
490 recent_log_events_.push_back(event); | |
491 while (recent_log_events_.front().timestamp_us() < | |
492 event.timestamp_us() - buffer_duration_us_) { | |
493 if (IsConfigEvent(recent_log_events_.front())) { | |
494 config_events_.push_back(recent_log_events_.front()); | |
495 } | |
496 recent_log_events_.pop_front(); | |
497 } | 444 } |
498 } | 445 } |
499 | 446 |
500 bool RtcEventLog::ParseRtcEventLog(const std::string& file_name, | 447 bool RtcEventLog::ParseRtcEventLog(const std::string& file_name, |
501 rtclog::EventStream* result) { | 448 rtclog::EventStream* result) { |
502 char tmp_buffer[1024]; | 449 char tmp_buffer[1024]; |
503 int bytes_read = 0; | 450 int bytes_read = 0; |
504 rtc::scoped_ptr<FileWrapper> dump_file(FileWrapper::Create()); | 451 rtc::scoped_ptr<FileWrapper> dump_file(FileWrapper::Create()); |
505 if (dump_file->OpenFile(file_name.c_str(), true) != 0) { | 452 if (dump_file->OpenFile(file_name.c_str(), true) != 0) { |
506 return false; | 453 return false; |
507 } | 454 } |
508 std::string dump_buffer; | 455 std::string dump_buffer; |
509 while ((bytes_read = dump_file->Read(tmp_buffer, sizeof(tmp_buffer))) > 0) { | 456 while ((bytes_read = dump_file->Read(tmp_buffer, sizeof(tmp_buffer))) > 0) { |
510 dump_buffer.append(tmp_buffer, bytes_read); | 457 dump_buffer.append(tmp_buffer, bytes_read); |
511 } | 458 } |
512 dump_file->CloseFile(); | 459 dump_file->CloseFile(); |
513 return result->ParseFromString(dump_buffer); | 460 return result->ParseFromString(dump_buffer); |
514 } | 461 } |
515 | 462 |
516 #endif // ENABLE_RTC_EVENT_LOG | 463 #endif // ENABLE_RTC_EVENT_LOG |
517 | 464 |
518 // RtcEventLog member functions. | 465 // RtcEventLog member functions. |
519 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() { | 466 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create(const Clock* clock) { |
520 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl()); | 467 #ifdef ENABLE_RTC_EVENT_LOG |
468 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl(clock)); | |
469 #else | |
470 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogNullImpl()); | |
471 #endif // ENABLE_RTC_EVENT_LOG | |
521 } | 472 } |
522 | 473 |
523 } // namespace webrtc | 474 } // namespace webrtc |
OLD | NEW |