// 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 "storage/browser/quota/client_usage_tracker.h" #include "base/bind.h" #include "base/stl_util.h" #include "net/base/net_util.h" #include "storage/browser/quota/storage_monitor.h" #include "storage/browser/quota/storage_observer.h" namespace storage { namespace { typedef ClientUsageTracker::OriginUsageAccumulator OriginUsageAccumulator; typedef ClientUsageTracker::OriginSetByHost OriginSetByHost; void DidGetHostUsage(const UsageCallback& callback, int64 limited_usage, int64 unlimited_usage) { DCHECK_GE(limited_usage, 0); DCHECK_GE(unlimited_usage, 0); callback.Run(limited_usage + unlimited_usage); } bool EraseOriginFromOriginSet(OriginSetByHost* origins_by_host, const std::string& host, const GURL& origin) { OriginSetByHost::iterator found = origins_by_host->find(host); if (found == origins_by_host->end()) return false; if (!found->second.erase(origin)) return false; if (found->second.empty()) origins_by_host->erase(host); return true; } bool OriginSetContainsOrigin(const OriginSetByHost& origins, const std::string& host, const GURL& origin) { OriginSetByHost::const_iterator itr = origins.find(host); return itr != origins.end() && ContainsKey(itr->second, origin); } void DidGetGlobalUsageForLimitedGlobalUsage(const UsageCallback& callback, int64 total_global_usage, int64 global_unlimited_usage) { callback.Run(total_global_usage - global_unlimited_usage); } } // namespace ClientUsageTracker::ClientUsageTracker( UsageTracker* tracker, QuotaClient* client, StorageType type, SpecialStoragePolicy* special_storage_policy, StorageMonitor* storage_monitor) : tracker_(tracker), client_(client), type_(type), storage_monitor_(storage_monitor), global_limited_usage_(0), global_unlimited_usage_(0), global_usage_retrieved_(false), special_storage_policy_(special_storage_policy) { DCHECK(tracker_); DCHECK(client_); if (special_storage_policy_.get()) special_storage_policy_->AddObserver(this); } ClientUsageTracker::~ClientUsageTracker() { if (special_storage_policy_.get()) special_storage_policy_->RemoveObserver(this); } void ClientUsageTracker::GetGlobalLimitedUsage(const UsageCallback& callback) { if (!global_usage_retrieved_) { GetGlobalUsage(base::Bind(&DidGetGlobalUsageForLimitedGlobalUsage, callback)); return; } if (non_cached_limited_origins_by_host_.empty()) { callback.Run(global_limited_usage_); return; } AccumulateInfo* info = new AccumulateInfo; info->pending_jobs = non_cached_limited_origins_by_host_.size() + 1; UsageCallback accumulator = base::Bind( &ClientUsageTracker::AccumulateLimitedOriginUsage, AsWeakPtr(), base::Owned(info), callback); for (const auto& host_and_origins : non_cached_limited_origins_by_host_) { for (const auto& origin : host_and_origins.second) client_->GetOriginUsage(origin, type_, accumulator); } accumulator.Run(global_limited_usage_); } void ClientUsageTracker::GetGlobalUsage(const GlobalUsageCallback& callback) { if (global_usage_retrieved_ && non_cached_limited_origins_by_host_.empty() && non_cached_unlimited_origins_by_host_.empty()) { callback.Run(global_limited_usage_ + global_unlimited_usage_, global_unlimited_usage_); return; } client_->GetOriginsForType(type_, base::Bind( &ClientUsageTracker::DidGetOriginsForGlobalUsage, AsWeakPtr(), callback)); } void ClientUsageTracker::GetHostUsage( const std::string& host, const UsageCallback& callback) { if (ContainsKey(cached_hosts_, host) && !ContainsKey(non_cached_limited_origins_by_host_, host) && !ContainsKey(non_cached_unlimited_origins_by_host_, host)) { // TODO(kinuko): Drop host_usage_map_ cache periodically. callback.Run(GetCachedHostUsage(host)); return; } if (!host_usage_accumulators_.Add( host, base::Bind(&DidGetHostUsage, callback))) return; client_->GetOriginsForHost(type_, host, base::Bind( &ClientUsageTracker::DidGetOriginsForHostUsage, AsWeakPtr(), host)); } void ClientUsageTracker::UpdateUsageCache( const GURL& origin, int64 delta) { std::string host = net::GetHostOrSpecFromURL(origin); if (cached_hosts_.find(host) != cached_hosts_.end()) { if (!IsUsageCacheEnabledForOrigin(origin)) return; cached_usage_by_host_[host][origin] += delta; if (IsStorageUnlimited(origin)) global_unlimited_usage_ += delta; else global_limited_usage_ += delta; DCHECK_GE(cached_usage_by_host_[host][origin], 0); DCHECK_GE(global_limited_usage_, 0); // Notify the usage monitor that usage has changed. The storage monitor may // be NULL during tests. if (storage_monitor_) { StorageObserver::Filter filter(type_, origin); storage_monitor_->NotifyUsageChange(filter, delta); } return; } // We don't know about this host yet, so populate our cache for it. GetHostUsage(host, base::Bind(&ClientUsageTracker::DidGetHostUsageAfterUpdate, AsWeakPtr(), origin)); } void ClientUsageTracker::GetCachedHostsUsage( std::map* host_usage) const { DCHECK(host_usage); for (const auto& host_and_usage_map : cached_usage_by_host_) { const std::string& host = host_and_usage_map.first; (*host_usage)[host] += GetCachedHostUsage(host); } } void ClientUsageTracker::GetCachedOrigins(std::set* origins) const { DCHECK(origins); for (const auto& host_and_usage_map : cached_usage_by_host_) { for (const auto& origin_and_usage : host_and_usage_map.second) origins->insert(origin_and_usage.first); } } void ClientUsageTracker::SetUsageCacheEnabled(const GURL& origin, bool enabled) { std::string host = net::GetHostOrSpecFromURL(origin); if (!enabled) { // Erase |origin| from cache and subtract its usage. HostUsageMap::iterator found_host = cached_usage_by_host_.find(host); if (found_host != cached_usage_by_host_.end()) { UsageMap& cached_usage_for_host = found_host->second; UsageMap::iterator found = cached_usage_for_host.find(origin); if (found != cached_usage_for_host.end()) { int64 usage = found->second; UpdateUsageCache(origin, -usage); cached_usage_for_host.erase(found); if (cached_usage_for_host.empty()) { cached_usage_by_host_.erase(found_host); cached_hosts_.erase(host); } } } if (IsStorageUnlimited(origin)) non_cached_unlimited_origins_by_host_[host].insert(origin); else non_cached_limited_origins_by_host_[host].insert(origin); } else { // Erase |origin| from |non_cached_origins_| and invalidate the usage cache // for the host. if (EraseOriginFromOriginSet(&non_cached_limited_origins_by_host_, host, origin) || EraseOriginFromOriginSet(&non_cached_unlimited_origins_by_host_, host, origin)) { cached_hosts_.erase(host); global_usage_retrieved_ = false; } } } void ClientUsageTracker::AccumulateLimitedOriginUsage( AccumulateInfo* info, const UsageCallback& callback, int64 usage) { info->limited_usage += usage; if (--info->pending_jobs) return; callback.Run(info->limited_usage); } void ClientUsageTracker::DidGetOriginsForGlobalUsage( const GlobalUsageCallback& callback, const std::set& origins) { OriginSetByHost origins_by_host; for (const auto& origin : origins) origins_by_host[net::GetHostOrSpecFromURL(origin)].insert(origin); AccumulateInfo* info = new AccumulateInfo; // Getting host usage may synchronously return the result if the usage is // cached, which may in turn dispatch the completion callback before we finish // looping over all hosts (because info->pending_jobs may reach 0 during the // loop). To avoid this, we add one more pending host as a sentinel and // fire the sentinel callback at the end. info->pending_jobs = origins_by_host.size() + 1; HostUsageAccumulator accumulator = base::Bind(&ClientUsageTracker::AccumulateHostUsage, AsWeakPtr(), base::Owned(info), callback); for (const auto& host_and_origins : origins_by_host) { const std::string& host = host_and_origins.first; const std::set& origins = host_and_origins.second; if (host_usage_accumulators_.Add(host, accumulator)) GetUsageForOrigins(host, origins); } // Fire the sentinel as we've now called GetUsageForOrigins for all clients. accumulator.Run(0, 0); } void ClientUsageTracker::AccumulateHostUsage( AccumulateInfo* info, const GlobalUsageCallback& callback, int64 limited_usage, int64 unlimited_usage) { info->limited_usage += limited_usage; info->unlimited_usage += unlimited_usage; if (--info->pending_jobs) return; DCHECK_GE(info->limited_usage, 0); DCHECK_GE(info->unlimited_usage, 0); global_usage_retrieved_ = true; callback.Run(info->limited_usage + info->unlimited_usage, info->unlimited_usage); } void ClientUsageTracker::DidGetOriginsForHostUsage( const std::string& host, const std::set& origins) { GetUsageForOrigins(host, origins); } void ClientUsageTracker::GetUsageForOrigins( const std::string& host, const std::set& origins) { AccumulateInfo* info = new AccumulateInfo; // Getting origin usage may synchronously return the result if the usage is // cached, which may in turn dispatch the completion callback before we finish // looping over all origins (because info->pending_jobs may reach 0 during the // loop). To avoid this, we add one more pending origin as a sentinel and // fire the sentinel callback at the end. info->pending_jobs = origins.size() + 1; OriginUsageAccumulator accumulator = base::Bind(&ClientUsageTracker::AccumulateOriginUsage, AsWeakPtr(), base::Owned(info), host); for (const auto& origin : origins) { DCHECK_EQ(host, net::GetHostOrSpecFromURL(origin)); int64 origin_usage = 0; if (GetCachedOriginUsage(origin, &origin_usage)) accumulator.Run(origin, origin_usage); else client_->GetOriginUsage(origin, type_, base::Bind(accumulator, origin)); } // Fire the sentinel as we've now called GetOriginUsage for all clients. accumulator.Run(GURL(), 0); } void ClientUsageTracker::AccumulateOriginUsage(AccumulateInfo* info, const std::string& host, const GURL& origin, int64 usage) { if (!origin.is_empty()) { if (usage < 0) usage = 0; if (IsStorageUnlimited(origin)) info->unlimited_usage += usage; else info->limited_usage += usage; if (IsUsageCacheEnabledForOrigin(origin)) AddCachedOrigin(origin, usage); } if (--info->pending_jobs) return; AddCachedHost(host); host_usage_accumulators_.Run( host, info->limited_usage, info->unlimited_usage); } void ClientUsageTracker::DidGetHostUsageAfterUpdate( const GURL& origin, int64 usage) { if (!storage_monitor_) return; StorageObserver::Filter filter(type_, origin); storage_monitor_->NotifyUsageChange(filter, 0); } void ClientUsageTracker::AddCachedOrigin( const GURL& origin, int64 new_usage) { DCHECK(IsUsageCacheEnabledForOrigin(origin)); std::string host = net::GetHostOrSpecFromURL(origin); int64* usage = &cached_usage_by_host_[host][origin]; int64 delta = new_usage - *usage; *usage = new_usage; if (delta) { if (IsStorageUnlimited(origin)) global_unlimited_usage_ += delta; else global_limited_usage_ += delta; } DCHECK_GE(*usage, 0); DCHECK_GE(global_limited_usage_, 0); } void ClientUsageTracker::AddCachedHost(const std::string& host) { cached_hosts_.insert(host); } int64 ClientUsageTracker::GetCachedHostUsage(const std::string& host) const { HostUsageMap::const_iterator found = cached_usage_by_host_.find(host); if (found == cached_usage_by_host_.end()) return 0; int64 usage = 0; const UsageMap& usage_map = found->second; for (const auto& origin_and_usage : usage_map) usage += origin_and_usage.second; return usage; } bool ClientUsageTracker::GetCachedOriginUsage( const GURL& origin, int64* usage) const { std::string host = net::GetHostOrSpecFromURL(origin); HostUsageMap::const_iterator found_host = cached_usage_by_host_.find(host); if (found_host == cached_usage_by_host_.end()) return false; UsageMap::const_iterator found = found_host->second.find(origin); if (found == found_host->second.end()) return false; DCHECK(IsUsageCacheEnabledForOrigin(origin)); *usage = found->second; return true; } bool ClientUsageTracker::IsUsageCacheEnabledForOrigin( const GURL& origin) const { std::string host = net::GetHostOrSpecFromURL(origin); return !OriginSetContainsOrigin(non_cached_limited_origins_by_host_, host, origin) && !OriginSetContainsOrigin(non_cached_unlimited_origins_by_host_, host, origin); } void ClientUsageTracker::OnGranted(const GURL& origin, int change_flags) { DCHECK(CalledOnValidThread()); if (change_flags & SpecialStoragePolicy::STORAGE_UNLIMITED) { int64 usage = 0; if (GetCachedOriginUsage(origin, &usage)) { global_unlimited_usage_ += usage; global_limited_usage_ -= usage; } std::string host = net::GetHostOrSpecFromURL(origin); if (EraseOriginFromOriginSet(&non_cached_limited_origins_by_host_, host, origin)) non_cached_unlimited_origins_by_host_[host].insert(origin); } } void ClientUsageTracker::OnRevoked(const GURL& origin, int change_flags) { DCHECK(CalledOnValidThread()); if (change_flags & SpecialStoragePolicy::STORAGE_UNLIMITED) { int64 usage = 0; if (GetCachedOriginUsage(origin, &usage)) { global_unlimited_usage_ -= usage; global_limited_usage_ += usage; } std::string host = net::GetHostOrSpecFromURL(origin); if (EraseOriginFromOriginSet(&non_cached_unlimited_origins_by_host_, host, origin)) non_cached_limited_origins_by_host_[host].insert(origin); } } void ClientUsageTracker::OnCleared() { DCHECK(CalledOnValidThread()); global_limited_usage_ += global_unlimited_usage_; global_unlimited_usage_ = 0; for (const auto& host_and_origins : non_cached_unlimited_origins_by_host_) { const auto& host = host_and_origins.first; for (const auto& origin : host_and_origins.second) non_cached_limited_origins_by_host_[host].insert(origin); } non_cached_unlimited_origins_by_host_.clear(); } bool ClientUsageTracker::IsStorageUnlimited(const GURL& origin) const { if (type_ == kStorageTypeSyncable) return false; return special_storage_policy_.get() && special_storage_policy_->IsStorageUnlimited(origin); } } // namespace storage