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

Unified Diff: chrome/browser/engagement/important_sites_util.cc

Issue 2752263003: Count site data size for important sites (Closed)
Patch Set: switch to SmallMap Created 3 years, 9 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/engagement/important_sites_util.cc
diff --git a/chrome/browser/engagement/important_sites_util.cc b/chrome/browser/engagement/important_sites_util.cc
index e31a809d8242b91e6264d4cd2497911401ca6cff..613f763f00ff78e577ce6ca1c2283e4e1c825d88 100644
--- a/chrome/browser/engagement/important_sites_util.cc
+++ b/chrome/browser/engagement/important_sites_util.cc
@@ -8,9 +8,12 @@
#include <map>
#include <memory>
#include <set>
+#include <unordered_map>
#include <utility>
+#include "base/bind_helpers.h"
#include "base/containers/hash_tables.h"
+#include "base/containers/small_map.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "base/stl_util.h"
@@ -29,14 +32,23 @@
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/scoped_user_pref_update.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/dom_storage_context.h"
+#include "content/public/browser/local_storage_usage_info.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
+#include "storage/browser/quota/quota_manager.h"
#include "third_party/WebKit/public/platform/site_engagement.mojom.h"
#include "url/gurl.h"
+#include "url/url_util.h"
namespace {
using bookmarks::BookmarkModel;
+using content::BrowserThread;
dominickn 2017/04/10 05:06:12 Nit: the other files in engagement/ explicitly spe
dullweber 2017/04/10 13:29:38 Done.
using ImportantDomainInfo = ImportantSitesUtil::ImportantDomainInfo;
using ImportantReason = ImportantSitesUtil::ImportantReason;
+using ImportantSiteMap =
+ base::SmallMap<std::unordered_map<std::string, ImportantDomainInfo*>,
+ ImportantSitesUtil::kMaxImportantSites>;
// Note: These values are stored on both the per-site content settings
// dictionary and the dialog preference dictionary.
@@ -141,6 +153,15 @@ std::string GetRegisterableDomainOrIP(const GURL& url) {
return registerable_domain;
}
+std::string GetRegisterableDomainOrIPFromHost(const std::string& host) {
dominickn 2017/04/10 05:06:12 Would it be cheaper / more clear to just call GetR
dullweber 2017/04/10 13:29:38 The issue is that I can't create a GURL from hosts
+ std::string registerable_domain =
+ net::registry_controlled_domains::GetDomainAndRegistry(
+ host, net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
+ if (registerable_domain.empty() && url::HostIsIPAddress(host))
+ registerable_domain = host;
+ return registerable_domain;
+}
+
void MaybePopulateImportantInfoForReason(
const GURL& origin,
std::set<GURL>* visited_origins,
@@ -339,6 +360,96 @@ void PopulateInfoMapWithHomeScreen(
}
}
+// A helper class that retrieves the localstorage and quota usage for each
+// domain in |ImportantDomainInfo| and populates |ImportantDomainInfo::usage|.
dominickn 2017/04/10 05:06:12 This is a pretty big class (100 lines). It might b
dullweber 2017/04/10 13:29:38 I moved it a separate file. That cleaned up this f
+class UsageReceiver {
+ public:
dominickn 2017/04/10 05:06:12 You should probably document that the receiver wil
dullweber 2017/04/10 13:29:39 The |sites| parameter is a std::vector<ImportantDo
dominickn 2017/04/11 00:18:20 D'oh, I misread and thought that param was an rval
+ UsageReceiver(ImportantSitesUtil::UsageCallback done,
dominickn 2017/04/10 05:06:12 Nit: call this "callback" or "finish_callback". "d
dullweber 2017/04/10 13:29:38 Done.
+ std::vector<ImportantDomainInfo> sites,
+ storage::QuotaManager* quota_manager,
+ content::DOMStorageContext* dom_storage_context)
+ : done_(done),
+ sites_(std::move(sites)),
+ quota_manager_(quota_manager),
+ dom_storage_context_(dom_storage_context),
+ tasks_(-1) {
+ for (auto& site : sites_) {
dominickn 2017/04/10 05:06:12 It's not clear what the type is here, so I'd prefe
dullweber 2017/04/10 13:29:38 Done.
+ site.usage = 0;
+ site_map_[site.registerable_domain] = &site;
+ }
+ }
+
+ void RunAndDestroySelf() {
+ DCHECK_CURRENTLY_ON(BrowserThread::UI);
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&UsageReceiver::RunOnIOThread, base::Unretained(this)));
+ }
+
+ private:
+ void RunOnIOThread() {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ tasks_ = 1; // Task for this method
+ tasks_ += 1;
+ quota_manager_->GetUsageInfo(
+ base::Bind(&UsageReceiver::ReceiveQuotaUsage, base::Unretained(this)));
+
+ tasks_ += 1;
+ dom_storage_context_->GetLocalStorageUsage(base::Bind(
dominickn 2017/04/10 05:06:12 I can't find any other place in the codebase which
dullweber 2017/04/10 13:29:39 Yes it looks like localstorage should be queried f
+ &UsageReceiver::ReceiveLocalStorageUsage, base::Unretained(this)));
+ Done();
+ }
+
+ void ReceiveQuotaUsage(const std::vector<storage::UsageInfo>& usage_infos) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ for (const auto& info : usage_infos) {
dominickn 2017/04/10 05:06:12 Nit: no braces for 1 line conditional.
dullweber 2017/04/10 13:29:38 Done.
+ CountUsage(GetRegisterableDomainOrIPFromHost(info.host), info.usage);
+ }
+ Done();
+ }
+
+ void ReceiveLocalStorageUsage(
+ const std::vector<content::LocalStorageUsageInfo>& storage_infos) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ for (const auto& info : storage_infos) {
dominickn 2017/04/10 05:06:12 Nit: no braces for 1 line conditional.
dullweber 2017/04/10 13:29:38 Done.
+ CountUsage(GetRegisterableDomainOrIP(info.origin), info.data_size);
+ }
+ Done();
+ }
+
+ // Look up the corresponding ImportantDomainInfo for |url| and increase its
+ // usage by |size|.
+ void CountUsage(const std::string& domain, int64_t size) {
dominickn 2017/04/10 05:06:12 Nit: This is more accurately named "IncrementUsage
dullweber 2017/04/10 13:29:39 Done.
+ auto it = site_map_.find(domain);
dominickn 2017/04/10 05:06:11 It looks to me like the only reason for site_map_
dullweber 2017/04/10 13:29:38 That sounds like a good idea, thanks!
+ if (it != site_map_.end()) {
dominickn 2017/04/10 05:06:12 Nit: no braces for a 1 line conditional.
dullweber 2017/04/10 13:29:39 Done.
+ it->second->usage += size;
+ }
+ }
+
+ void Done() {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ DCHECK(tasks_ > 0);
dominickn 2017/04/10 05:06:12 DCHECK_GE(tasks_, 0);
dullweber 2017/04/10 13:29:39 Done.
+ if (--tasks_ == 0) {
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::Bind(&UsageReceiver::Finish, base::Unretained(this)));
+ }
+ }
+
+ void Finish() {
+ DCHECK_CURRENTLY_ON(BrowserThread::UI);
+ done_.Run(std::move(sites_));
+ base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
+ }
+
+ ImportantSitesUtil::UsageCallback done_;
+ std::vector<ImportantDomainInfo> sites_;
+ ImportantSiteMap site_map_;
+ storage::QuotaManager* quota_manager_;
+ content::DOMStorageContext* dom_storage_context_;
+ int tasks_;
+};
+
} // namespace
bool ImportantSitesUtil::IsDialogDisabled(Profile* profile) {
@@ -400,6 +511,16 @@ ImportantSitesUtil::GetImportantRegisterableDomains(Profile* profile,
return final_list;
}
+void ImportantSitesUtil::PopulateUsage(storage::QuotaManager* quota_manager,
+ content::DOMStorageContext* dom_storage,
+ std::vector<ImportantDomainInfo> sites,
+ UsageCallback callback) {
+ DCHECK_CURRENTLY_ON(BrowserThread::UI);
+ UsageReceiver* usage_receiver =
+ new UsageReceiver(callback, std::move(sites), quota_manager, dom_storage);
+ usage_receiver->RunAndDestroySelf();
+}
+
void ImportantSitesUtil::RecordBlacklistedAndIgnoredImportantSites(
Profile* profile,
const std::vector<std::string>& blacklisted_sites,

Powered by Google App Engine
This is Rietveld 408576698