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

Unified Diff: chrome/browser/chromeos/customization_wallpaper_downloader.cc

Issue 236013002: Apply default wallpaper from customization manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: After-review. Created 6 years, 8 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/chromeos/customization_wallpaper_downloader.cc
diff --git a/chrome/browser/chromeos/customization_wallpaper_downloader.cc b/chrome/browser/chromeos/customization_wallpaper_downloader.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a57b4e1ced7184f0543ba6bdc8151a38a31447cb
--- /dev/null
+++ b/chrome/browser/chromeos/customization_wallpaper_downloader.cc
@@ -0,0 +1,186 @@
+// 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/chromeos/customization_wallpaper_downloader.h"
+
+#include "base/file_util.h"
+#include "content/public/browser/browser_thread.h"
+#include "net/base/load_flags.h"
+#include "net/http/http_status_code.h"
+#include "net/url_request/url_request_context_getter.h"
+#include "url/gurl.h"
+
+namespace chromeos {
+namespace {
+// This is temporary file suffix (for downloading or resizing).
+const char kTemporarySuffix[] = ".temp";
Nikita (slow) 2014/04/15 12:39:24 nit: .tmp? // To reflect what comments are saying.
Alexander Alekseev 2014/04/15 22:47:31 Done.
+
+// Sleep between wallpaper retries (used multiplied by retry number).
+const unsigned kRetrySleepSeconds = 10;
+
+// Do not retry beyond this number of attempts.
+const int kMaxRetries = 200;
Daniel Erat 2014/04/15 03:06:30 why don't you make it retry forever and add a cons
Alexander Alekseev 2014/04/15 22:47:31 Done.
+
+void CreateWallpaperDirectory(const base::FilePath& wallpaper_dir,
+ bool* success) {
+ DCHECK(content::BrowserThread::GetBlockingPool()->RunsTasksOnCurrentThread());
+ DCHECK(success);
+
+ *success = CreateDirectoryAndGetError(wallpaper_dir, NULL);
Nikita (slow) 2014/04/15 12:39:24 NOTREACHED() if unable to create directory.
Alexander Alekseev 2014/04/15 22:47:31 Done.
+}
+
+void RenameTemporaryFile(const base::FilePath& from,
+ const base::FilePath& to,
+ bool* success) {
+ DCHECK(content::BrowserThread::GetBlockingPool()->RunsTasksOnCurrentThread());
+ DCHECK(success);
+
+ base::File::Error error;
+ if (base::ReplaceFile(from, to, &error)) {
+ *success = true;
+ } else {
+ LOG(WARNING)
+ << "Failed to rename temporary file of Customized Wallpaper. error="
+ << error;
+ *success = false;
+ }
+}
+
+} // namespace
+
+CustomizationWallpaperDownloader::CustomizationWallpaperDownloader(
+ net::URLRequestContextGetter* url_context_getter,
+ const GURL& wallpaper_url,
+ const base::FilePath& wallpaper_dir,
+ const base::FilePath& wallpaper_downloaded_file,
+ base::Callback<void(bool success, const GURL&)>
+ on_wallpaper_fetch_completed)
+ : url_context_getter_(url_context_getter),
+ wallpaper_url_(wallpaper_url),
+ wallpaper_dir_(wallpaper_dir),
+ wallpaper_downloaded_file_(wallpaper_downloaded_file),
+ wallpaper_temporary_file_(wallpaper_downloaded_file.value() +
+ kTemporarySuffix),
+ attempts_(0),
+ on_wallpaper_fetch_completed_(on_wallpaper_fetch_completed),
+ weak_factory_(this) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+}
+
+CustomizationWallpaperDownloader::~CustomizationWallpaperDownloader() {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+}
+
+void CustomizationWallpaperDownloader::StartRequest() {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ DCHECK(wallpaper_url_.is_valid());
+ ++attempts_;
+
+ url_fetcher_.reset(
+ net::URLFetcher::Create(wallpaper_url_, net::URLFetcher::GET, this));
+ url_fetcher_->SetRequestContext(url_context_getter_);
+ url_fetcher_->SetLoadFlags(net::LOAD_BYPASS_CACHE | net::LOAD_DISABLE_CACHE |
Nikita (slow) 2014/04/15 12:39:24 nit: One flag per line.
Alexander Alekseev 2014/04/15 22:47:31 Done.
+ net::LOAD_DO_NOT_SAVE_COOKIES |
+ net::LOAD_DO_NOT_SEND_COOKIES |
+ net::LOAD_DO_NOT_SEND_AUTH_DATA);
+ base::SequencedWorkerPool* blocking_pool =
+ content::BrowserThread::GetBlockingPool();
+ url_fetcher_->SaveResponseToFileAtPath(
+ wallpaper_temporary_file_,
+ blocking_pool->GetSequencedTaskRunner(blocking_pool->GetSequenceToken()));
+ url_fetcher_->Start();
+}
+
+void CustomizationWallpaperDownloader::Retry() {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ if (attempts_ > kMaxRetries) {
+ LOG(WARNING)
+ << "Failed to fetch customized wallpaper. Retry limit reached.";
+ on_wallpaper_fetch_completed_.Run(false, wallpaper_url_);
+ return;
+ }
+
+ const base::TimeDelta delay =
+ base::TimeDelta::FromSeconds(kRetrySleepSeconds) * attempts_;
+ VLOG(1) << "Schedule Customized Wallpaper download in " << delay.InSecondsF()
+ << " seconds.";
+ request_scheduled_.Start(
+ FROM_HERE, delay, this, &CustomizationWallpaperDownloader::StartRequest);
+}
+
+void CustomizationWallpaperDownloader::Start() {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ scoped_ptr<bool> success(new bool(false));
+
+ base::Closure mkdir_closure = base::Bind(&CreateWallpaperDirectory,
+ wallpaper_dir_,
+ base::Unretained(success.get()));
+ base::Closure on_created_closure =
+ base::Bind(&CustomizationWallpaperDownloader::OnWallpaperDirectoryCreated,
+ weak_factory_.GetWeakPtr(),
+ base::Passed(success.Pass()));
+ if (!content::BrowserThread::PostBlockingPoolTaskAndReply(
+ FROM_HERE, mkdir_closure, on_created_closure)) {
+ LOG(WARNING) << "Failed to start Customized Wallpaper download.";
+ }
+}
+
+void CustomizationWallpaperDownloader::OnWallpaperDirectoryCreated(
+ scoped_ptr<bool> success) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ if (*success)
+ StartRequest();
+}
+
+void CustomizationWallpaperDownloader::OnURLFetchComplete(
+ const net::URLFetcher* source) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ DCHECK_EQ(url_fetcher_.get(), source);
+
+ const net::URLRequestStatus status = source->GetStatus();
+ const int response_code = source->GetResponseCode();
+
+ const bool server_error =
+ !status.is_success() ||
+ (response_code >= net::HTTP_INTERNAL_SERVER_ERROR &&
+ response_code < (net::HTTP_INTERNAL_SERVER_ERROR + 100));
+
+ VLOG(1) << "CustomizationWallpaperDownloader::OnURLFetchComplete(): status="
+ << status.status();
+
+ if (server_error) {
+ url_fetcher_.reset();
+ Retry();
+ return;
+ }
+
+ base::FilePath response_path;
+ url_fetcher_->GetResponseAsFilePath(true, &response_path);
+ url_fetcher_.reset();
+
+ scoped_ptr<bool> success(new bool(false));
+
+ base::Closure rename_closure = base::Bind(&RenameTemporaryFile,
+ response_path,
+ wallpaper_downloaded_file_,
+ base::Unretained(success.get()));
+ base::Closure on_rename_closure =
+ base::Bind(&CustomizationWallpaperDownloader::OnTemporaryFileRenamed,
+ weak_factory_.GetWeakPtr(),
+ base::Passed(success.Pass()));
+ if (!content::BrowserThread::PostBlockingPoolTaskAndReply(
+ FROM_HERE, rename_closure, on_rename_closure)) {
+ LOG(WARNING)
+ << "Failed to start Customized Wallpaper Rename DownloadedFile.";
+ on_wallpaper_fetch_completed_.Run(false, wallpaper_url_);
+ }
+}
+
+void CustomizationWallpaperDownloader::OnTemporaryFileRenamed(
+ scoped_ptr<bool> success) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ on_wallpaper_fetch_completed_.Run(*success, wallpaper_url_);
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698