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

Unified Diff: chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.cc

Issue 103283003: Media Galleries API Metadata: SafeMediaMetadataParser and IPCTunnelDataReader. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.cc
diff --git a/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.cc b/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.cc
new file mode 100644
index 0000000000000000000000000000000000000000..df662da556248a3b43e4e6beffb8ae593dad95ea
--- /dev/null
+++ b/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.cc
@@ -0,0 +1,130 @@
+// 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.
+
+#include "chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h"
+
+#include "chrome/browser/extensions/blob_reader.h"
+#include "chrome/common/chrome_utility_messages.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/child_process_data.h"
+#include "content/public/browser/utility_process_host.h"
+
+using content::BrowserThread;
+
+namespace metadata {
+
+namespace {
+
+// Completes the Blob byte request by forwarding it to the utility process.
+void OnBlobReaderDone(
+ const base::WeakPtr<content::UtilityProcessHost>& utility_process_host,
+ int64 request_id,
+ scoped_ptr<std::string> data) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+
+ if (!utility_process_host.get())
+ return;
+ utility_process_host->Send(new ChromeUtilityMsg_RequestBlobBytes_Finished(
+ request_id, *data));
+}
+
+} // namespace
+
+SafeMediaMetadataParser::SafeMediaMetadataParser(Profile* profile,
+ const std::string& blob_uuid,
+ int64 blob_size,
+ const std::string& mime_type)
+ : profile_(profile),
+ blob_uuid_(blob_uuid),
+ blob_size_(blob_size),
+ mime_type_(mime_type),
+ parser_state_(INITIAL_STATE) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+}
+
+void SafeMediaMetadataParser::Start(const DoneCallback& callback) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ BrowserThread::PostTask(
+ BrowserThread::IO,
+ FROM_HERE,
+ base::Bind(&SafeMediaMetadataParser::StartWorkOnIOThread, this,
+ callback));
+}
+
+SafeMediaMetadataParser::~SafeMediaMetadataParser() {
+}
+
+void SafeMediaMetadataParser::StartWorkOnIOThread(
+ const DoneCallback& callback) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ DCHECK_EQ(INITIAL_STATE, parser_state_);
+ DCHECK(!callback.is_null());
+
+ callback_ = callback;
+
+ utility_process_host_ = content::UtilityProcessHost::Create(
+ this, base::MessageLoopProxy::current())->AsWeakPtr();
+
+ utility_process_host_->Send(
+ new ChromeUtilityMsg_ParseMediaMetadata(mime_type_, blob_size_));
+
+ parser_state_ = STARTED_PARSING_STATE;
+}
+
+void SafeMediaMetadataParser::OnParseMediaMetadataFinished(
+ bool parse_success, const base::DictionaryValue& metadata_dictionary) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ DCHECK(!callback_.is_null());
+
+ if (parser_state_ != STARTED_PARSING_STATE)
+ return;
+
+ BrowserThread::PostTask(
+ BrowserThread::UI,
+ FROM_HERE,
+ base::Bind(callback_, parse_success,
+ base::Owned(metadata_dictionary.DeepCopy())));
+ parser_state_ = FINISHED_PARSING_STATE;
+}
+
+void SafeMediaMetadataParser::OnUtilityProcessRequestBlobBytes(
+ int64 request_id, int64 byte_start, int64 length) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+
+ // BlobReader is self-deleting.
+ BlobReader* reader = new BlobReader(
+ profile_,
+ blob_uuid_,
+ base::Bind(&OnBlobReaderDone, utility_process_host_, request_id));
+ reader->SetByteRange(byte_start, length);
+ reader->Start();
+}
+
+void SafeMediaMetadataParser::OnProcessCrashed(int exit_code) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ DCHECK(!callback_.is_null());
+
+ BrowserThread::PostTask(
+ BrowserThread::UI,
+ FROM_HERE,
+ base::Bind(callback_, false, base::Owned(new base::DictionaryValue)));
+ parser_state_ = FINISHED_PARSING_STATE;
+}
+
+bool SafeMediaMetadataParser::OnMessageReceived(const IPC::Message& message) {
+ bool handled = true;
+ IPC_BEGIN_MESSAGE_MAP(SafeMediaMetadataParser, message)
+ IPC_MESSAGE_HANDLER(
+ ChromeUtilityHostMsg_ParseMediaMetadata_Finished,
+ OnParseMediaMetadataFinished)
+ IPC_MESSAGE_HANDLER(
+ ChromeUtilityHostMsg_RequestBlobBytes,
+ OnUtilityProcessRequestBlobBytes)
+ IPC_MESSAGE_UNHANDLED(handled = false)
+ IPC_END_MESSAGE_MAP()
+ return handled;
+}
+
+} // namespace metadata
« no previous file with comments | « chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698