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

Unified Diff: chrome/browser/media/webrtc_rtp_dump_writer.h

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for tommi's Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/webrtc_rtp_dump_writer.h
diff --git a/chrome/browser/media/webrtc_rtp_dump_writer.h b/chrome/browser/media/webrtc_rtp_dump_writer.h
new file mode 100644
index 0000000000000000000000000000000000000000..77c9f21b836c8a7ab4bcab69091ed6135f0d8acf
--- /dev/null
+++ b/chrome/browser/media/webrtc_rtp_dump_writer.h
@@ -0,0 +1,125 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_WRITER_H_
+#define CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_WRITER_H_
+
+#include "base/basictypes.h"
+#include "base/callback.h"
+#include "base/files/file_path.h"
+#include "base/memory/weak_ptr.h"
+#include "base/threading/thread_checker.h"
+#include "base/time/time.h"
+#include "chrome/browser/media/rtp_dump_type.h"
+
+// This class is responsible for creating the compressed RTP header dump file:
+// - Adds the RTP headers to an in-memory buffer.
+// - When the in-memory buffer is full, compresses it, and writes it to the
+// disk. Drop the packet and notifies the client if the max file size is
+// reached.
+// - The uncompressed dump follows the standard RTPPlay format
+// (http://www.cs.columbia.edu/irt/software/rtptools/).
+// - The caller is always responsible for cleaning up the dump file in all
+// cases.
+// - WebRtcRtpDumpWriter does not stop writing to the dump after the max size
Henrik Grunell 2014/05/23 12:17:51 Above it says it drops the packet, which is contra
jiayl 2014/05/23 17:48:36 Done.
+// limit is reached. The caller must stop calling WriteRtpPacket instead.
+//
+// This object must run on the IO thread.
+class WebRtcRtpDumpWriter {
+ public:
+ typedef base::Callback<void(bool incoming_succeeded, bool outgoing_succeeded)>
+ EndDumpCallback;
+
+ // Returns the header length of the RTP packet.
+ static size_t GetRtpHeaderLen(const uint8* packet, size_t length);
Henrik Grunell 2014/05/23 12:17:51 Is this used from outside or can it be an ordinary
jiayl 2014/05/23 17:48:36 It's dead code. removed.
+
+ // |dump_path| is the file path of the compressed dump file. |max_dump_size|
Henrik Grunell 2014/05/23 12:17:51 There's no |dump_path|. :) Add incoming_ and outgo
jiayl 2014/05/23 17:48:36 Done.
+ // is the max size of the compressed dump file in bytes.
+ // |max_dump_size_reached_callback| will be called when the on-disk file size
+ // reaches |max_dump_size|.
+ WebRtcRtpDumpWriter(const base::FilePath& incoming_dump_path,
+ const base::FilePath& outgoing_dump_path,
+ size_t max_dump_size,
+ const base::Closure& max_dump_size_reached_callback);
+
+ virtual ~WebRtcRtpDumpWriter();
+
+ // Adds a RTP packet to the dump. The caller must make sure it's a valid RTP
+ // packet. No validation is done by this method.
+ virtual void WriteRtpPacket(const uint8* packet_header,
+ size_t header_length,
+ size_t packet_length,
+ bool incoming);
+
+ // Flushes the in-memory buffer to the disk and ends the dump.
+ // |finished_callback| will be called to indicate whether the dump is valid.
+ // If this object is destroyed before the operation is finished, the callback
+ // will be canceled and the dump files will be deleted.
+ virtual void EndDump(RtpDumpType type,
+ const EndDumpCallback& finished_callback);
+
+ size_t max_dump_size() const;
+
+ private:
+ enum FlushResult {
+ // Flushing has succeeded and the dump size is under the max limit.
+ FLUSH_RESULT_SUCCESS,
+ // Nothing has been written to disk and the dump is empty.
+ FLUSH_RESULT_NO_DATA,
+ // Flushing has failed for other reasons.
+ FLUSH_RESULT_FAILURE
+ };
+
+ class FileThreadWorker;
+
+ typedef base::Callback<void(bool)> FlushDoneCallback;
+
+ struct EndDumpContext {
+ EndDumpContext(RtpDumpType type, const EndDumpCallback& callback);
+ ~EndDumpContext();
+
+ RtpDumpType type;
+ bool incoming_succeeded;
+ bool outgoing_succeeded;
+ EndDumpCallback callback;
+ };
+
+ void FlushBuffer(bool incoming,
+ bool end_stream,
+ const FlushDoneCallback& callback);
+
+ void OnFlushDone(const FlushDoneCallback& callback,
+ const scoped_ptr<FlushResult>& result,
+ const scoped_ptr<size_t>& bytes_written);
+
+ void OnDumpEnded(EndDumpContext context, bool incoming, bool success);
+
+ // The max limit on the total size of incoming and outgoing dumps on disk.
+ const size_t max_dump_size_;
+
+ // The callback to call when the max size limit is reached.
+ const base::Closure max_dump_size_reached_callback_;
+
+ // The in-memory buffers for the uncompressed dumps.
+ std::vector<uint8> incoming_buffer_;
+ std::vector<uint8> outgoing_buffer_;
+
+ // The time when the first packet is dumped.
+ base::TimeTicks start_time_;
+
+ // The total on-disk size of the compressed incoming and outgoing dumps.
+ size_t total_dump_size_on_disk_;
+
+ // File thread workers must be called and deleted on the FILE thread.
+ scoped_ptr<FileThreadWorker> incoming_file_thread_worker_;
+ scoped_ptr<FileThreadWorker> outgoing_file_thread_worker_;
+
+ base::ThreadChecker thread_checker_;
+
+ base::WeakPtrFactory<WebRtcRtpDumpWriter> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebRtcRtpDumpWriter);
+};
+
+#endif // CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_WRITER_H_

Powered by Google App Engine
This is Rietveld 408576698