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

Unified Diff: components/ntp_snippets/content_suggestions_service.cc

Issue 2102023002: Add ContentSuggestionsService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename ContentSuggestionsState to ContentSuggestionsCategoryStatus; Add s to ContentSuggestionsCate… Created 4 years, 5 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/ntp_snippets/content_suggestions_service.cc
diff --git a/components/ntp_snippets/content_suggestions_service.cc b/components/ntp_snippets/content_suggestions_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5b7e8507e2c3e6d9957173a603f4ef73f20ced2a
--- /dev/null
+++ b/components/ntp_snippets/content_suggestions_service.cc
@@ -0,0 +1,205 @@
+// Copyright 2016 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 "components/ntp_snippets/content_suggestions_service.h"
+
+#include <algorithm>
+#include <iterator>
+
+#include "base/bind.h"
+#include "base/strings/string_number_conversions.h"
+#include "ui/gfx/image/image.h"
+
+namespace ntp_snippets {
+
+ContentSuggestionsService::ContentSuggestionsService(State enabled)
+ : enabled_(enabled) {}
+
+ContentSuggestionsService::~ContentSuggestionsService() {}
+
+void ContentSuggestionsService::Shutdown() {
+ DCHECK(providers_.empty());
+ DCHECK(categories_.empty());
+ DCHECK(suggestions_by_category_.empty());
+ DCHECK(id_category_map_.empty());
+ enabled_ = State::DISABLED;
+ FOR_EACH_OBSERVER(Observer, observers_, ContentSuggestionsServiceShutdown());
+ observers_.Clear();
+}
+
+ContentSuggestionsCategoryStatus ContentSuggestionsService::GetCategoryStatus(
+ ContentSuggestionsCategory category) const {
+ if (enabled_ == State::DISABLED)
+ return ContentSuggestionsCategoryStatus::
+ ALL_SUGGESTIONS_EXPLICITLY_DISABLED;
+
+ auto iterator = providers_.find(category);
+ if (iterator == providers_.end())
+ return ContentSuggestionsCategoryStatus::NOT_PROVIDED;
+
+ return iterator->second->GetCategoryStatus(category);
+}
+
+const std::vector<ContentSuggestion>&
+ContentSuggestionsService::GetSuggestionsForCategory(
+ ContentSuggestionsCategory category) const {
+ auto iterator = suggestions_by_category_.find(category);
+ if (iterator == suggestions_by_category_.end()) {
+ return no_suggestions_;
tschumann 2016/07/06 06:36:12 I wonder if handing out references to the underlyi
Marc Treib 2016/07/06 08:20:44 Generally, the convention is that a reference is s
Philipp Keck 2016/07/06 15:53:20 Acknowledged.
+ }
+ return iterator->second;
+}
+
+void ContentSuggestionsService::FetchSuggestionImage(
+ const std::string& suggestion_id,
+ const ImageFetchedCallback& callback) {
+ if (!id_category_map_.count(suggestion_id)) {
+ LOG(WARNING) << "Requested image for unknown suggestion " << suggestion_id;
+ callback.Run(suggestion_id, gfx::Image());
+ return;
+ }
+ ContentSuggestionsCategory category = id_category_map_[suggestion_id];
+ if (!providers_.count(category)) {
+ LOG(WARNING) << "Requested image for suggestion " << suggestion_id
+ << " for unavailable category " << int(category);
+ callback.Run(suggestion_id, gfx::Image());
+ return;
+ }
+ providers_[category]->FetchSuggestionImage(suggestion_id, callback);
+}
+
+void ContentSuggestionsService::ClearCachedSuggestionsForDebugging() {
+ suggestions_by_category_.clear();
+ id_category_map_.clear();
+ for (auto& provider : providers_) {
+ provider.second->ClearCachedSuggestionsForDebugging();
+ }
+ FOR_EACH_OBSERVER(Observer, observers_, OnNewSuggestions());
+}
+
+void ContentSuggestionsService::ClearDiscardedSuggestionsForDebugging() {
+ for (auto& provider : providers_) {
+ provider.second->ClearDiscardedSuggestionsForDebugging();
+ }
+}
+
+void ContentSuggestionsService::DiscardSuggestion(
+ const std::string& suggestion_id) {
+ if (!id_category_map_.count(suggestion_id)) {
+ LOG(WARNING) << "Discarded unknown suggestion " << suggestion_id;
+ return;
+ }
+ ContentSuggestionsCategory category = id_category_map_[suggestion_id];
+ if (!providers_.count(category)) {
+ LOG(WARNING) << "Discarded suggestion " << suggestion_id
+ << " for unavailable category " << int(category);
+ return;
+ }
+ providers_[category]->DiscardSuggestion(suggestion_id);
+
+ // Remove the suggestion locally.
+ id_category_map_.erase(suggestion_id);
+ std::vector<ContentSuggestion>* suggestions =
+ &suggestions_by_category_[category];
+ auto position =
+ std::find_if(suggestions->begin(), suggestions->end(),
+ [&suggestion_id](const ContentSuggestion& suggestion) {
+ return suggestion_id == suggestion.id();
+ });
+ DCHECK(position != suggestions->end());
+ suggestions->erase(position);
+}
+
+void ContentSuggestionsService::AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+}
+
+void ContentSuggestionsService::RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+}
+
+void ContentSuggestionsService::RegisterProvider(
+ ContentSuggestionsProvider* provider) {
+ if (enabled_ == State::DISABLED)
+ return;
+
+ for (ContentSuggestionsCategory category : provider->provided_categories()) {
+ DCHECK_EQ(0ul, providers_.count(category));
+ providers_[category] = provider;
+ // TODO(pke) In the future, make sure that the categories have some useful
+ // (maybe constant, at least consistent) ordering for the UI.
+ categories_.push_back(category);
+ if (IsContentSuggestionsCategoryStatusAvailable(
+ provider->GetCategoryStatus(category))) {
+ suggestions_by_category_[category] = std::vector<ContentSuggestion>();
+ }
+ provider->SetObserver(this);
+ FOR_EACH_OBSERVER(Observer, observers_,
+ OnCategoryStatusChanged(
+ category, provider->GetCategoryStatus(category)));
+ }
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// Private methods
+
+void ContentSuggestionsService::OnNewSuggestions(
+ ContentSuggestionsCategory changed_category,
+ std::vector<ContentSuggestion> new_suggestions) {
+ DCHECK(IsCategoryRegistered(changed_category));
+
+ for (const ContentSuggestion& suggestion :
+ suggestions_by_category_[changed_category]) {
+ id_category_map_.erase(suggestion.id());
+ }
+
+ for (const ContentSuggestion& suggestion : new_suggestions) {
+ id_category_map_[suggestion.id()] = changed_category;
+ }
+
+ suggestions_by_category_[changed_category] = std::move(new_suggestions);
+
+ FOR_EACH_OBSERVER(Observer, observers_, OnNewSuggestions());
+}
+
+void ContentSuggestionsService::OnCategoryStatusChanged(
+ ContentSuggestionsCategory changed_category,
+ ContentSuggestionsCategoryStatus new_status) {
+ if (!IsContentSuggestionsCategoryStatusAvailable(new_status)) {
+ for (const ContentSuggestion& suggestion :
+ suggestions_by_category_[changed_category]) {
+ id_category_map_.erase(suggestion.id());
+ }
+ suggestions_by_category_.erase(changed_category);
+ }
+ FOR_EACH_OBSERVER(Observer, observers_,
+ OnCategoryStatusChanged(changed_category, new_status));
+}
+
+void ContentSuggestionsService::OnProviderShutdown(
+ ContentSuggestionsProvider* provider) {
+ for (ContentSuggestionsCategory category : provider->provided_categories()) {
+ auto iterator = std::find(categories_.begin(), categories_.end(), category);
+ DCHECK(iterator != categories_.end());
+ categories_.erase(iterator);
+ for (const ContentSuggestion& suggestion :
+ suggestions_by_category_[category]) {
+ id_category_map_.erase(suggestion.id());
+ }
+ suggestions_by_category_.erase(category);
+ providers_.erase(category);
+ FOR_EACH_OBSERVER(
+ Observer, observers_,
+ OnCategoryStatusChanged(category, GetCategoryStatus(category)));
+ }
+ provider->SetObserver(nullptr);
+}
+
+bool ContentSuggestionsService::IsCategoryRegistered(
+ ContentSuggestionsCategory category) const {
+ return std::find(categories_.begin(), categories_.end(), category) !=
+ categories_.end();
+}
+
+} // namespace ntp_snippets

Powered by Google App Engine
This is Rietveld 408576698