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

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

Issue 20190002: Add a copy or move validator to that can handle support audio and video files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test file name Created 7 years, 4 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_galleries/fileapi/supported_audio_video_checker.cc
diff --git a/chrome/browser/media_galleries/fileapi/supported_audio_video_checker.cc b/chrome/browser/media_galleries/fileapi/supported_audio_video_checker.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3da81ea24fbe6dca8b38e8a609c2f5c3d79fc873
--- /dev/null
+++ b/chrome/browser/media_galleries/fileapi/supported_audio_video_checker.cc
@@ -0,0 +1,105 @@
+// Copyright 2013 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/supported_audio_video_checker.h"
+
+#include <set>
+#include <vector>
+
+#include "base/bind.h"
+#include "base/callback.h"
+#include "base/lazy_instance.h"
+#include "base/location.h"
+#include "base/logging.h"
+#include "base/stl_util.h"
+#include "chrome/browser/media_galleries/fileapi/safe_audio_video_checker.h"
+#include "content/public/browser/browser_thread.h"
+#include "net/base/mime_util.h"
+
+namespace {
+
+class SupportedAudioVideoExtensions {
+ public:
+ SupportedAudioVideoExtensions() {
+ std::vector<base::FilePath::StringType> extensions;
+ net::GetExtensionsForMimeType("audio/*", &extensions);
+ net::GetExtensionsForMimeType("video/*", &extensions);
+ for (size_t i = 0; i < extensions.size(); ++i) {
+ std::string mime_type;
+ if (net::GetWellKnownMimeTypeFromExtension(extensions[i], &mime_type) &&
+ net::IsSupportedMimeType(mime_type)) {
+ audio_video_extensions_.insert(
+ base::FilePath::kExtensionSeparator + extensions[i]);
+ }
+ }
+ };
+
+ bool HasSupportedAudioVideoExtension(const base::FilePath& file) {
+ return ContainsKey(audio_video_extensions_, file.Extension());
+ }
+
+ private:
+ std::set<base::FilePath::StringType> audio_video_extensions_;
+
+ DISALLOW_COPY_AND_ASSIGN(SupportedAudioVideoExtensions);
+};
+
+static base::LazyInstance<SupportedAudioVideoExtensions>
Lei Zhang 2013/08/08 00:08:02 Doesn't need to be static.
vandebo (ex-Chrome) 2013/08/08 17:34:01 Done.
+ g_audio_video_extensions = LAZY_INSTANCE_INITIALIZER;
+
+base::PlatformFile OpenOnFileThread(const base::FilePath& path) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
+ return base::CreatePlatformFile(
+ path, base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ,
+ NULL /*created*/, NULL /*error_code*/);
+}
+
+} // namespace
+
+SupportedAudioVideoChecker::~SupportedAudioVideoChecker() {}
+
+// static
+bool SupportedAudioVideoChecker::SupportsFileType(const base::FilePath& path) {
+ return g_audio_video_extensions.Get().HasSupportedAudioVideoExtension(path);
+}
+
+void SupportedAudioVideoChecker::StartPreWriteValidation(
+ const fileapi::CopyOrMoveFileValidator::ResultCallback& result_callback) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
+ DCHECK(callback_.is_null());
+ callback_ = result_callback;
+
+ content::BrowserThread::PostTaskAndReplyWithResult(
+ content::BrowserThread::FILE,
+ FROM_HERE,
+ base::Bind(&OpenOnFileThread, path_),
+ base::Bind(&SupportedAudioVideoChecker::OnFileOpen,
+ weak_factory_.GetWeakPtr()));
+}
+
+void SupportedAudioVideoChecker::StartPostWriteValidation(
+ const base::FilePath& dest_platform_path,
+ const ResultCallback& result_callback) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
+
+ // TODO(gbillock): Insert AV call here in the right validator.
+ result_callback.Run(base::PLATFORM_FILE_OK);
+}
+
+SupportedAudioVideoChecker::SupportedAudioVideoChecker(
+ const base::FilePath& path)
+ : path_(path),
+ weak_factory_(this) {
+}
+
+void SupportedAudioVideoChecker::OnFileOpen(const base::PlatformFile& file) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
+ if (file == base::kInvalidPlatformFileValue) {
+ callback_.Run(base::PLATFORM_FILE_ERROR_SECURITY);
+ return;
+ }
+
+ safe_checker_ = new SafeAudioVideoChecker(file, callback_);
+ safe_checker_->Start();
+}

Powered by Google App Engine
This is Rietveld 408576698