OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/media/webrtc_rtp_dump_writer.h" | |
6 | |
7 #include "base/big_endian.h" | |
8 #include "base/file_util.h" | |
9 #include "base/logging.h" | |
10 #include "content/public/browser/browser_thread.h" | |
11 #include "third_party/zlib/zlib.h" | |
12 | |
13 using content::BrowserThread; | |
14 | |
15 namespace { | |
16 | |
17 static const size_t kMinimumGzipOutputBufferSize = 256; | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
nit: comment with units
| |
18 | |
19 const unsigned char kRtpDumpFileHeaderFirstLine[] = "#!rtpplay1.0 0.0.0.0/0\n"; | |
20 static const size_t kRtpDumpFileHeaderSize = 16; | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
nit: Add comments, include units
| |
21 | |
22 // A helper for writing the header of the dump file. | |
23 void WriteRtpDumpFileHeaderBigEndian(base::TimeTicks start, | |
24 std::vector<uint8>* output) { | |
25 size_t buffer_start_pos = output->size(); | |
26 output->resize(output->size() + kRtpDumpFileHeaderSize); | |
27 | |
28 char* buffer = reinterpret_cast<char*>(output->data() + buffer_start_pos); | |
29 | |
30 base::TimeDelta delta = start - base::TimeTicks(); | |
31 uint32 start_sec = delta.InSeconds(); | |
32 base::WriteBigEndian(buffer, start_sec); | |
33 buffer += sizeof(start_sec); | |
34 | |
35 uint32 start_usec = | |
36 delta.InMilliseconds() * base::Time::kMicrosecondsPerMillisecond; | |
37 base::WriteBigEndian(buffer, start_usec); | |
38 buffer += sizeof(start_usec); | |
39 | |
40 // Network source, always 0. | |
41 base::WriteBigEndian(buffer, uint32(0)); | |
42 buffer += sizeof(uint32); | |
43 | |
44 // UDP port, always 0. | |
45 base::WriteBigEndian(buffer, uint16(0)); | |
46 buffer += sizeof(uint16); | |
47 | |
48 // 2 bytes padding. | |
49 base::WriteBigEndian(buffer, uint16(0)); | |
50 } | |
51 | |
52 // The header size for each packet dump. | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
nit: add units
| |
53 static const size_t kPacketDumpHeaderSize = 8; | |
54 | |
55 // A helper for writing the header for each packet dump. | |
56 // |start| is the time when the recording is started. | |
57 // |dump_length| is the length of the packet dump including this header. | |
58 // |packet_length| is the length of the RTP packet header. | |
59 void WritePacketDumpHeaderBigEndian(const base::TimeTicks& start, | |
60 uint16 dump_length, | |
61 uint16 packet_length, | |
62 std::vector<uint8>* output) { | |
63 size_t buffer_start_pos = output->size(); | |
64 output->resize(output->size() + kPacketDumpHeaderSize); | |
65 | |
66 char* buffer = reinterpret_cast<char*>(output->data() + buffer_start_pos); | |
67 | |
68 base::WriteBigEndian(buffer, dump_length); | |
69 buffer += sizeof(dump_length); | |
70 | |
71 base::WriteBigEndian(buffer, packet_length); | |
72 buffer += sizeof(packet_length); | |
73 | |
74 base::WriteBigEndian(buffer, | |
75 (base::TimeTicks::Now() - start).InMilliseconds()); | |
76 } | |
77 | |
78 // Append |src_len| bytes from |src| to |dest|. | |
79 void AppendToBuffer(const uint8* src, | |
80 size_t src_len, | |
81 std::vector<uint8>* dest) { | |
82 size_t old_dest_size = dest->size(); | |
83 dest->resize(old_dest_size + src_len); | |
84 memcpy(dest->data() + old_dest_size, src, src_len); | |
85 } | |
86 | |
87 } // namespace | |
88 | |
89 // This class is running on the FILE thread for compressing and writing the | |
90 // dump buffer to disk. | |
91 class WebRtcRtpDumpWriter::FileThreadWorker { | |
92 public: | |
93 explicit FileThreadWorker(const base::FilePath& dump_path) | |
94 : dump_path_(dump_path) { | |
95 thread_checker_.DetachFromThread(); | |
96 | |
97 memset(&stream_, 0, sizeof(stream_)); | |
98 int result = deflateInit2(&stream_, | |
99 Z_DEFAULT_COMPRESSION, | |
100 Z_DEFLATED, | |
101 // windowBits = 15 is default, 16 is added to | |
102 // produce a gzip header + trailer. | |
103 15 + 16, | |
104 8, // memLevel = 8 is default. | |
105 Z_DEFAULT_STRATEGY); | |
106 DCHECK_EQ(Z_OK, result); | |
107 } | |
108 | |
109 ~FileThreadWorker() { | |
110 DCHECK(thread_checker_.CalledOnValidThread()); | |
111 } | |
112 | |
113 // Compresses the data in |buffer| and write to the dump file. If |end_stream| | |
114 // is true, the compression stream will be ended and the dump file cannot be | |
115 // written to any more. | |
116 void CompressAndWriteToFileOnFileThread( | |
117 scoped_ptr<std::vector<uint8> > buffer, | |
118 bool end_stream, | |
119 FlushResult* result, | |
120 size_t* bytes_written) { | |
121 DCHECK(thread_checker_.CalledOnValidThread()); | |
122 | |
123 // This is called either when the in-memory buffer is full or the dump | |
124 // should be ended. | |
125 DCHECK(buffer->size() || end_stream); | |
Henrik Grunell
2014/05/28 11:57:51
Since size() returns and int, check > 0. Same belo
| |
126 | |
127 *result = FLUSH_RESULT_SUCCESS; | |
128 *bytes_written = 0; | |
129 | |
130 // There may be nothing to compress/write if there is no RTP packet since | |
131 // the last flush. | |
132 if (buffer->size()) { | |
133 *bytes_written = CompressAndWriteBufferToFile(buffer.get(), result); | |
134 } else if (!base::PathExists(dump_path_)) { | |
135 // If the dump does not exist, it means there is no RTP packet recorded. | |
136 // Return FLUSH_RESULT_NO_DATA to indicate no dump file created. | |
137 *result = FLUSH_RESULT_NO_DATA; | |
138 } | |
139 | |
140 if (end_stream) { | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
nit: if (end_stream && !EndDumpFile())
| |
141 if (!EndDumpFile()) | |
142 *result = FLUSH_RESULT_FAILURE; | |
143 } | |
144 } | |
145 | |
146 private: | |
147 // Helper for CompressAndWriteToFileOnFileThread to compress and write one | |
148 // dump. | |
149 size_t CompressAndWriteBufferToFile(std::vector<uint8>* buffer, | |
150 FlushResult* result) { | |
151 DCHECK(thread_checker_.CalledOnValidThread()); | |
152 DCHECK(buffer->size()); | |
153 | |
154 *result = FLUSH_RESULT_SUCCESS; | |
155 | |
156 std::vector<uint8> compressed_buffer; | |
157 if (!Compress(buffer, &compressed_buffer)) { | |
158 DVLOG(2) << "Compressing buffer failed."; | |
159 *result = FLUSH_RESULT_FAILURE; | |
160 return 0; | |
161 } | |
162 | |
163 int bytes_written = -1; | |
164 | |
165 if (base::PathExists(dump_path_)) { | |
166 bytes_written = base::AppendToFile( | |
167 dump_path_, | |
168 reinterpret_cast<const char*>(compressed_buffer.data()), | |
169 compressed_buffer.size()); | |
170 } else { | |
171 bytes_written = base::WriteFile( | |
172 dump_path_, | |
173 reinterpret_cast<const char*>(compressed_buffer.data()), | |
174 compressed_buffer.size()); | |
175 } | |
176 | |
177 if (bytes_written == -1) { | |
178 DVLOG(2) << "Writing file failed: " << dump_path_.value(); | |
179 *result = FLUSH_RESULT_FAILURE; | |
180 return 0; | |
181 } | |
182 | |
183 DCHECK_EQ(static_cast<size_t>(bytes_written), compressed_buffer.size()); | |
184 return bytes_written; | |
185 } | |
186 | |
187 // Compresses |input| into |output|. | |
188 bool Compress(std::vector<uint8>* input, std::vector<uint8>* output) { | |
189 DCHECK(thread_checker_.CalledOnValidThread()); | |
190 int result = Z_OK; | |
191 | |
192 output->resize(std::max(kMinimumGzipOutputBufferSize, input->size())); | |
193 | |
194 stream_.next_in = input->data(); | |
195 stream_.avail_in = input->size(); | |
196 stream_.next_out = output->data(); | |
197 stream_.avail_out = output->size(); | |
198 | |
199 result = deflate(&stream_, Z_SYNC_FLUSH); | |
200 DCHECK_EQ(Z_OK, result); | |
201 DCHECK_EQ(0U, stream_.avail_in); | |
202 | |
203 output->resize(output->size() - stream_.avail_out); | |
204 | |
205 stream_.next_in = NULL; | |
206 stream_.next_out = NULL; | |
207 stream_.avail_out = 0; | |
208 return true; | |
209 } | |
210 | |
211 // Ends the compression stream and completes the dump file. | |
212 bool EndDumpFile() { | |
213 DCHECK(thread_checker_.CalledOnValidThread()); | |
214 | |
215 std::vector<uint8> output_buffer; | |
216 output_buffer.resize(kMinimumGzipOutputBufferSize); | |
217 | |
218 stream_.next_in = NULL; | |
219 stream_.avail_in = 0; | |
220 stream_.next_out = output_buffer.data(); | |
221 stream_.avail_out = output_buffer.size(); | |
222 | |
223 int result = deflate(&stream_, Z_FINISH); | |
224 DCHECK_EQ(Z_STREAM_END, result); | |
225 | |
226 result = deflateEnd(&stream_); | |
227 DCHECK_EQ(Z_OK, result); | |
228 | |
229 output_buffer.resize(output_buffer.size() - stream_.avail_out); | |
230 | |
231 memset(&stream_, 0, sizeof(z_stream)); | |
232 | |
233 DCHECK(!output_buffer.empty()); | |
234 int bytes_written = | |
235 base::AppendToFile(dump_path_, | |
236 reinterpret_cast<const char*>(output_buffer.data()), | |
237 output_buffer.size()); | |
238 | |
239 return bytes_written > 0; | |
240 } | |
241 | |
242 const base::FilePath dump_path_; | |
243 | |
244 z_stream stream_; | |
245 | |
246 base::ThreadChecker thread_checker_; | |
247 | |
248 DISALLOW_COPY_AND_ASSIGN(FileThreadWorker); | |
249 }; | |
250 | |
251 WebRtcRtpDumpWriter::WebRtcRtpDumpWriter( | |
252 const base::FilePath& incoming_dump_path, | |
253 const base::FilePath& outgoing_dump_path, | |
254 size_t max_dump_size, | |
255 const base::Closure& max_dump_size_reached_callback) | |
256 : max_dump_size_(max_dump_size), | |
257 max_dump_size_reached_callback_(max_dump_size_reached_callback), | |
258 total_dump_size_on_disk_(0), | |
259 incoming_file_thread_worker_(new FileThreadWorker(incoming_dump_path)), | |
260 outgoing_file_thread_worker_(new FileThreadWorker(outgoing_dump_path)), | |
261 weak_ptr_factory_(this) { | |
262 } | |
263 | |
264 WebRtcRtpDumpWriter::~WebRtcRtpDumpWriter() { | |
265 DCHECK(thread_checker_.CalledOnValidThread()); | |
266 if (!BrowserThread::DeleteSoon(BrowserThread::FILE, | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
nit: clearer to say:
bool success = BrowserThread
| |
267 FROM_HERE, | |
268 incoming_file_thread_worker_.release())) { | |
269 DCHECK(false); | |
270 } | |
271 | |
272 if (!BrowserThread::DeleteSoon(BrowserThread::FILE, | |
273 FROM_HERE, | |
274 outgoing_file_thread_worker_.release())) { | |
275 DCHECK(false); | |
276 } | |
277 } | |
278 | |
279 void WebRtcRtpDumpWriter::WriteRtpPacket(const uint8* packet_header, | |
280 size_t header_length, | |
281 size_t packet_length, | |
282 bool incoming) { | |
283 DCHECK(thread_checker_.CalledOnValidThread()); | |
284 | |
285 static const size_t kMaxInMemoryBufferSize = 65536; | |
286 | |
287 std::vector<uint8>* dest_buffer = | |
288 incoming ? &incoming_buffer_ : &outgoing_buffer_; | |
289 | |
290 // We use the capacity of the buffer to indicate if the buffer has been | |
291 // initialized and if the dump file header has been created. | |
292 if (!dest_buffer->capacity()) { | |
293 dest_buffer->reserve(std::min(kMaxInMemoryBufferSize, max_dump_size_)); | |
294 | |
295 start_time_ = base::TimeTicks::Now(); | |
296 | |
297 // Writes the dump file header. | |
298 AppendToBuffer(kRtpDumpFileHeaderFirstLine, | |
299 arraysize(kRtpDumpFileHeaderFirstLine) - 1, | |
300 dest_buffer); | |
301 WriteRtpDumpFileHeaderBigEndian(start_time_, dest_buffer); | |
302 } | |
303 | |
304 size_t packet_dump_length = kPacketDumpHeaderSize + header_length; | |
305 | |
306 // Flushes the buffer to disk if the buffer is full. | |
307 if (dest_buffer->size() + packet_dump_length > kMaxInMemoryBufferSize) | |
308 FlushBuffer(incoming, false, FlushDoneCallback()); | |
309 | |
310 WritePacketDumpHeaderBigEndian( | |
311 start_time_, packet_dump_length, packet_length, dest_buffer); | |
312 | |
313 // Writes the actual RTP packet header. | |
314 AppendToBuffer(packet_header, header_length, dest_buffer); | |
315 } | |
316 | |
317 void WebRtcRtpDumpWriter::EndDump(RtpDumpType type, | |
318 const EndDumpCallback& finished_callback) { | |
319 DCHECK(thread_checker_.CalledOnValidThread()); | |
320 DCHECK((type == RTP_DUMP_BOTH || type == RTP_DUMP_INCOMING) | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
Here's a "simplification":
DCHECK(type == RTP_DUM
| |
321 ? incoming_file_thread_worker_ != NULL | |
322 : true); | |
323 DCHECK((type == RTP_DUMP_BOTH || type == RTP_DUMP_OUTGOING) | |
324 ? outgoing_file_thread_worker_ != NULL | |
325 : true); | |
326 | |
327 bool incoming = (type == RTP_DUMP_BOTH || type == RTP_DUMP_INCOMING); | |
328 EndDumpContext context(type, finished_callback); | |
329 | |
330 // End the incoming dump first if required. OnDumpEnded will continue to end | |
331 // the outgoing dump if necessary. | |
332 FlushBuffer(incoming, | |
333 true, | |
334 base::Bind(&WebRtcRtpDumpWriter::OnDumpEnded, | |
335 weak_ptr_factory_.GetWeakPtr(), | |
336 context, | |
337 incoming)); | |
338 } | |
339 | |
340 size_t WebRtcRtpDumpWriter::max_dump_size() const { | |
341 DCHECK(thread_checker_.CalledOnValidThread()); | |
342 return max_dump_size_; | |
343 } | |
344 | |
345 WebRtcRtpDumpWriter::EndDumpContext::EndDumpContext( | |
346 RtpDumpType type, | |
347 const EndDumpCallback& callback) | |
348 : type(type), | |
349 incoming_succeeded(false), | |
350 outgoing_succeeded(false), | |
351 callback(callback) { | |
352 } | |
353 | |
354 WebRtcRtpDumpWriter::EndDumpContext::~EndDumpContext() { | |
355 } | |
356 | |
357 void WebRtcRtpDumpWriter::FlushBuffer(bool incoming, | |
358 bool end_stream, | |
359 const FlushDoneCallback& callback) { | |
360 DCHECK(thread_checker_.CalledOnValidThread()); | |
361 | |
362 scoped_ptr<std::vector<uint8> > new_buffer(new std::vector<uint8>()); | |
363 | |
364 if (incoming) { | |
365 new_buffer->reserve(incoming_buffer_.capacity()); | |
366 new_buffer->swap(incoming_buffer_); | |
367 } else { | |
368 new_buffer->reserve(outgoing_buffer_.capacity()); | |
369 new_buffer->swap(outgoing_buffer_); | |
370 } | |
371 | |
372 scoped_ptr<FlushResult> result(new FlushResult(FLUSH_RESULT_FAILURE)); | |
373 | |
374 scoped_ptr<size_t> bytes_written(new size_t(0)); | |
375 | |
376 FileThreadWorker* worker = incoming ? incoming_file_thread_worker_.get() | |
377 : outgoing_file_thread_worker_.get(); | |
378 | |
379 // Using "Unretained(worker)" because |worker| is owner by this object and it | |
380 // guaranteed to be deleted on the FILE thread before this object goes away. | |
381 base::Closure task = | |
382 base::Bind(&FileThreadWorker::CompressAndWriteToFileOnFileThread, | |
383 base::Unretained(worker), | |
384 Passed(&new_buffer), | |
385 end_stream, | |
386 result.get(), | |
387 bytes_written.get()); | |
388 | |
389 // OnFlushDone is necessary to avoid running the callback after this | |
390 // object is gone. | |
391 base::Closure reply = base::Bind(&WebRtcRtpDumpWriter::OnFlushDone, | |
392 weak_ptr_factory_.GetWeakPtr(), | |
393 callback, | |
394 Passed(&result), | |
395 Passed(&bytes_written)); | |
396 | |
397 // Define the task and reply outside the method call so that getting and | |
398 // passing the scoped_ptr does not depend on the argument evaluation order. | |
399 BrowserThread::PostTaskAndReply(BrowserThread::FILE, FROM_HERE, task, reply); | |
400 | |
401 if (end_stream) { | |
402 if (!BrowserThread::DeleteSoon( | |
vrk (LEFT CHROMIUM)
2014/05/28 23:55:07
Same comment here as above:
bool success = Brows
| |
403 BrowserThread::FILE, | |
404 FROM_HERE, | |
405 incoming ? incoming_file_thread_worker_.release() | |
406 : outgoing_file_thread_worker_.release())) { | |
407 DCHECK(false); | |
408 } | |
409 } | |
410 } | |
411 | |
412 void WebRtcRtpDumpWriter::OnFlushDone(const FlushDoneCallback& callback, | |
413 const scoped_ptr<FlushResult>& result, | |
414 const scoped_ptr<size_t>& bytes_written) { | |
415 DCHECK(thread_checker_.CalledOnValidThread()); | |
416 | |
417 total_dump_size_on_disk_ += *bytes_written; | |
418 | |
419 if (total_dump_size_on_disk_ >= max_dump_size_ && | |
420 !max_dump_size_reached_callback_.is_null()) { | |
421 max_dump_size_reached_callback_.Run(); | |
422 } | |
423 | |
424 // Returns success for FLUSH_RESULT_MAX_SIZE_REACHED since the dump is still | |
425 // valid. | |
426 if (!callback.is_null()) { | |
427 callback.Run(*result != FLUSH_RESULT_FAILURE && | |
428 *result != FLUSH_RESULT_NO_DATA); | |
429 } | |
430 } | |
431 | |
432 void WebRtcRtpDumpWriter::OnDumpEnded(EndDumpContext context, | |
433 bool incoming, | |
434 bool success) { | |
435 DCHECK(thread_checker_.CalledOnValidThread()); | |
436 | |
437 DVLOG(2) << "Dump ended, incoming = " << incoming | |
438 << ", succeeded = " << success; | |
439 | |
440 if (incoming) | |
441 context.incoming_succeeded = success; | |
442 else | |
443 context.outgoing_succeeded = success; | |
444 | |
445 // End the outgoing dump if needed. | |
446 if (incoming && context.type == RTP_DUMP_BOTH) { | |
447 FlushBuffer(false, | |
448 true, | |
449 base::Bind(&WebRtcRtpDumpWriter::OnDumpEnded, | |
450 weak_ptr_factory_.GetWeakPtr(), | |
451 context, | |
452 false)); | |
453 return; | |
454 } | |
455 | |
456 context.callback.Run(context.incoming_succeeded, context.outgoing_succeeded); | |
457 } | |
OLD | NEW |