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

Unified Diff: components/favicon/core/large_icon_service.cc

Issue 1122103003: [Large Icon Service] Move icon resizing into worker thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename Session to LargeIconWorker and move to anonymous namespace; use PostTaskAndReply(). Created 5 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: components/favicon/core/large_icon_service.cc
diff --git a/components/favicon/core/large_icon_service.cc b/components/favicon/core/large_icon_service.cc
index ed1a17f46375f1da5d11f6e74f0ae9962585070e..308fd7f8823d927f838e5ca3ddd81e8d6eef23aa 100644
--- a/components/favicon/core/large_icon_service.cc
+++ b/components/favicon/core/large_icon_service.cc
@@ -4,50 +4,122 @@
#include "components/favicon/core/large_icon_service.h"
+#include "base/bind.h"
+#include "base/logging.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/task_runner.h"
+#include "base/threading/sequenced_worker_pool.h"
#include "components/favicon/core/favicon_service.h"
#include "components/favicon_base/fallback_icon_style.h"
#include "components/favicon_base/favicon_types.h"
+#include "content/public/browser/browser_thread.h"
#include "skia/ext/image_operations.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/geometry/size.h"
-namespace favicon {
-
-LargeIconService::LargeIconService(FaviconService* favicon_service)
- : favicon_service_(favicon_service) {
- large_icon_types_.push_back(favicon_base::IconType::FAVICON);
- large_icon_types_.push_back(favicon_base::IconType::TOUCH_ICON);
- large_icon_types_.push_back(favicon_base::IconType::TOUCH_PRECOMPOSED_ICON);
+namespace {
+
+// Tracks the states of a request session for LargeIconService, and manages
+// the callback chain on different threads.
pkotwicz 2015/05/11 18:57:39 How about: "Processes the bitmap data returned fro
huangs 2015/05/11 20:24:37 Done.
+class LargeIconWorker : public base::RefCountedThreadSafe<LargeIconWorker> {
+ public:
+ LargeIconWorker(int min_source_size_in_pixel,
+ int desired_size_in_pixel,
+ favicon_base::LargeIconCallback callback,
+ scoped_refptr<base::TaskRunner> background_task_runner,
+ base::CancelableTaskTracker* tracker);
+
+ // Must run on the owner (UI) thread in production.
+ // Intermediate callback for GetLargeIconOrFallbackStyle(). Invokes
+ // ProcessIconOnBackgroundThread() so we do not perform complex image
+ // operations on the UI thread.
+ void OnIconLookupComplete(
+ const favicon_base::FaviconRawBitmapResult& bitmap_result);
+
+ private:
+ friend class base::RefCountedThreadSafe<LargeIconWorker>;
+
+ ~LargeIconWorker();
+
+ // Must run on a background thread in production.
+ // Tries to resize |bitmap_result| and pass the output to |callback|. If
pkotwicz 2015/05/11 18:57:39 |bitmap_result| -> |bitmap_result_| |callback| ->
huangs 2015/05/11 20:24:37 Done. Also below since we're making static functio
+ // that does not work, computes the icon fallback style and uses it to
+ // invoke |callback|. This must be run on a background thread because image
pkotwicz 2015/05/11 18:57:39 |callback| -> |callback_|
huangs 2015/05/11 20:24:37 Done.
+ // resizing and dominant color extraction can be expensive.
+ void ProcessIconOnBackgroundThread();
+
+ // Must run on a background thread in production.
+ // If |bitmap_result| is square and large enough (>= |min_source_in_pixel|),
+ // resizes it to |desired_size_in_pixel| (but if |desired_size_in_pixel| is
+ // 0 then don't resize). If successful, stores the resulting bitmap data
+ // into |resized_bitmap_result| and returns true.
+ static bool ResizeLargeIconOnBackgroundThreadIfValid(
+ int min_source_size_in_pixel,
+ int desired_size_in_pixel,
+ const favicon_base::FaviconRawBitmapResult& bitmap_result,
+ favicon_base::FaviconRawBitmapResult* resized_bitmap_result);
+
+ // Must run on the owner (UI) thread in production.
+ // Invoked when ProcessIconOnBackgroundThread() is done.
+ void OnIconProcessingComplete();
+
+ int min_source_size_in_pixel_;
+ int desired_size_in_pixel_;
+ favicon_base::LargeIconCallback callback_;
+ scoped_refptr<base::TaskRunner> background_task_runner_;
+ base::CancelableTaskTracker* tracker_;
+ favicon_base::FaviconRawBitmapResult bitmap_result_;
+ scoped_ptr<favicon_base::LargeIconResult> result_;
+
+ DISALLOW_COPY_AND_ASSIGN(LargeIconWorker);
+};
+
+LargeIconWorker::LargeIconWorker(
+ int min_source_size_in_pixel,
+ int desired_size_in_pixel,
+ favicon_base::LargeIconCallback callback,
+ scoped_refptr<base::TaskRunner> background_task_runner,
+ base::CancelableTaskTracker* tracker)
+ : min_source_size_in_pixel_(min_source_size_in_pixel),
+ desired_size_in_pixel_(desired_size_in_pixel),
+ callback_(callback),
+ background_task_runner_(background_task_runner),
+ tracker_(tracker) {
}
-LargeIconService::~LargeIconService() {
+LargeIconWorker::~LargeIconWorker() {
}
-base::CancelableTaskTracker::TaskId
- LargeIconService::GetLargeIconOrFallbackStyle(
- const GURL& page_url,
- int min_source_size_in_pixel,
- int desired_size_in_pixel,
- const favicon_base::LargeIconCallback& callback,
- base::CancelableTaskTracker* tracker) {
- DCHECK_LE(1, min_source_size_in_pixel);
- DCHECK_LE(0, desired_size_in_pixel);
+void LargeIconWorker::OnIconLookupComplete(
+ const favicon_base::FaviconRawBitmapResult& bitmap_result) {
+ bitmap_result_ = bitmap_result;
+ tracker_->PostTaskAndReply(
+ background_task_runner_.get(), FROM_HERE,
+ base::Bind(&LargeIconWorker::ProcessIconOnBackgroundThread, this),
+ base::Bind(&LargeIconWorker::OnIconProcessingComplete, this));
+}
- // TODO(beaudoin): For now this is just a wrapper around
- // GetLargestRawFaviconForPageURL. Add the logic required to select the best
- // possible large icon. Also add logic to fetch-on-demand when the URL of
- // a large icon is known but its bitmap is not available.
- return favicon_service_->GetLargestRawFaviconForPageURL(
- page_url,
- large_icon_types_,
- std::max(min_source_size_in_pixel, desired_size_in_pixel),
- base::Bind(&LargeIconService::RunLargeIconCallback,
- base::Unretained(this), callback, min_source_size_in_pixel,
- desired_size_in_pixel),
- tracker);
+void LargeIconWorker::ProcessIconOnBackgroundThread() {
+ favicon_base::FaviconRawBitmapResult resized_bitmap_result;
+ if (ResizeLargeIconOnBackgroundThreadIfValid(min_source_size_in_pixel_,
+ desired_size_in_pixel_, bitmap_result_, &resized_bitmap_result)) {
+ result_.reset(
+ new favicon_base::LargeIconResult(resized_bitmap_result));
+ } else {
+ // Failed to resize |bitmap_result|, so compute fallback icon style.
pkotwicz 2015/05/11 18:57:39 Nit: |bitmap_result| -> |bitmap_result_|
huangs 2015/05/11 20:24:37 Done.
+ scoped_ptr<favicon_base::FallbackIconStyle> fallback_icon_style(
+ new favicon_base::FallbackIconStyle());
+ if (bitmap_result_.is_valid()) {
+ favicon_base::SetDominantColorAsBackground(
+ bitmap_result_.bitmap_data, fallback_icon_style.get());
+ }
+ result_.reset(
+ new favicon_base::LargeIconResult(fallback_icon_style.release()));
+ }
}
-bool LargeIconService::ResizeLargeIconIfValid(
+// static
+bool LargeIconWorker::ResizeLargeIconOnBackgroundThreadIfValid(
pkotwicz 2015/05/11 18:57:39 Nit: Can't you grab |min_source_size_in_pixel|, |d
huangs 2015/05/11 20:24:37 Makes since now that the routine is not exposed. D
int min_source_size_in_pixel,
int desired_size_in_pixel,
const favicon_base::FaviconRawBitmapResult& bitmap_result,
@@ -89,25 +161,53 @@ bool LargeIconService::ResizeLargeIconIfValid(
return true;
}
-void LargeIconService::RunLargeIconCallback(
- const favicon_base::LargeIconCallback& callback,
- int min_source_size_in_pixel,
- int desired_size_in_pixel,
- const favicon_base::FaviconRawBitmapResult& bitmap_result) {
- favicon_base::FaviconRawBitmapResult resized_bitmap_result;
- if (ResizeLargeIconIfValid(min_source_size_in_pixel, desired_size_in_pixel,
- bitmap_result, &resized_bitmap_result)) {
- callback.Run(favicon_base::LargeIconResult(resized_bitmap_result));
- return;
- }
+void LargeIconWorker::OnIconProcessingComplete() {
+ callback_.Run(*result_);
+}
- // Failed to resize |bitmap_result|, so compute fallback icon style.
- favicon_base::LargeIconResult result(new favicon_base::FallbackIconStyle());
- if (bitmap_result.is_valid()) {
- favicon_base::SetDominantColorAsBackground(
- bitmap_result.bitmap_data, result.fallback_icon_style.get());
- }
- callback.Run(result);
+} // namespace
+
+namespace favicon {
+
+LargeIconService::LargeIconService(FaviconService* favicon_service)
+ : favicon_service_(favicon_service) {
+ large_icon_types_.push_back(favicon_base::IconType::FAVICON);
+ large_icon_types_.push_back(favicon_base::IconType::TOUCH_ICON);
+ large_icon_types_.push_back(favicon_base::IconType::TOUCH_PRECOMPOSED_ICON);
+}
+
+LargeIconService::~LargeIconService() {
+}
+
+base::CancelableTaskTracker::TaskId
+ LargeIconService::GetLargeIconOrFallbackStyle(
+ const GURL& page_url,
+ int min_source_size_in_pixel,
+ int desired_size_in_pixel,
+ const favicon_base::LargeIconCallback& callback,
+ base::CancelableTaskTracker* tracker) {
+ DCHECK_LE(1, min_source_size_in_pixel);
+ DCHECK_LE(0, desired_size_in_pixel);
+
+ scoped_refptr<LargeIconWorker> session =
pkotwicz 2015/05/11 18:57:39 Nit: session -> worker
huangs 2015/05/11 20:24:37 Done.
+ new LargeIconWorker(min_source_size_in_pixel,
+ desired_size_in_pixel, callback, GetBackgroundTaskRunner(), tracker);
+
+ // TODO(beaudoin): For now this is just a wrapper around
+ // GetLargestRawFaviconForPageURL. Add the logic required to select the best
+ // possible large icon. Also add logic to fetch-on-demand when the URL of
+ // a large icon is known but its bitmap is not available.
+ return favicon_service_->GetLargestRawFaviconForPageURL(
+ page_url, large_icon_types_, desired_size_in_pixel,
+ base::Bind(&LargeIconWorker::OnIconLookupComplete, session),
+ tracker);
+}
+
+// Returns TaskRunner used to execute background task.
+scoped_refptr<base::TaskRunner> LargeIconService::GetBackgroundTaskRunner() {
+ return content::BrowserThread::GetBlockingPool()
+ ->GetTaskRunnerWithShutdownBehavior(
+ base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
}
} // namespace favicon

Powered by Google App Engine
This is Rietveld 408576698