1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/push_messaging/budget_database.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/time/clock.h"
#include "base/time/default_clock.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/push_messaging/budget.pb.h"
#include "components/leveldb_proto/public/proto_database_provider.h"
#include "components/site_engagement/content/site_engagement_score.h"
#include "components/site_engagement/content/site_engagement_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/storage_partition.h"
#include "url/gurl.h"
#include "url/origin.h"
using content::BrowserThread;
namespace {
// The default amount of time during which a budget will be valid.
constexpr int kBudgetDurationInDays = 4;
// The amount of budget that a maximally engaged site should receive per hour.
// For context, silent push messages cost 2 each, so this allows 6 silent push
// messages a day for a fully engaged site. See budget_manager.cc for costs of
// various actions.
constexpr double kMaximumHourlyBudget = 12.0 / 24.0;
} // namespace
BudgetState::BudgetState() = default;
BudgetState::BudgetState(const BudgetState& other) = default;
BudgetState::~BudgetState() = default;
BudgetState& BudgetState::operator=(const BudgetState& other) = default;
BudgetDatabase::BudgetInfo::BudgetInfo() = default;
BudgetDatabase::BudgetInfo::BudgetInfo(const BudgetInfo&& other)
: last_engagement_award(other.last_engagement_award) {
chunks = std::move(other.chunks);
}
BudgetDatabase::BudgetInfo::~BudgetInfo() = default;
BudgetDatabase::BudgetDatabase(Profile* profile)
: profile_(profile->GetWeakPtr()),
clock_(base::WrapUnique(new base::DefaultClock)) {
auto* protodb_provider =
profile->GetDefaultStoragePartition()->GetProtoDatabaseProvider();
// In incognito mode the provider service is not created.
if (!protodb_provider)
return;
db_ = protodb_provider->GetDB<budget_service::Budget>(
leveldb_proto::ProtoDbType::BUDGET_DATABASE,
profile->GetPath().Append(FILE_PATH_LITERAL("BudgetDatabase")),
base::ThreadPool::CreateSequencedTaskRunner(
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN}));
db_->Init(base::BindOnce(&BudgetDatabase::OnDatabaseInit,
weak_ptr_factory_.GetWeakPtr()));
}
BudgetDatabase::~BudgetDatabase() = default;
void BudgetDatabase::GetBudgetDetails(const url::Origin& origin,
GetBudgetCallback callback) {
SyncCache(origin, base::BindOnce(&BudgetDatabase::GetBudgetAfterSync,
weak_ptr_factory_.GetWeakPtr(), origin,
std::move(callback)));
}
void BudgetDatabase::SpendBudget(const url::Origin& origin,
SpendBudgetCallback callback,
double amount) {
SyncCache(origin, base::BindOnce(&BudgetDatabase::SpendBudgetAfterSync,
weak_ptr_factory_.GetWeakPtr(), origin,
amount, std::move(callback)));
}
void BudgetDatabase::SetClockForTesting(std::unique_ptr<base::Clock> clock) {
clock_ = std::move(clock);
}
void BudgetDatabase::OnDatabaseInit(leveldb_proto::Enums::InitStatus status) {
// TODO(harkness): Consider caching the budget database now?
if (status != leveldb_proto::Enums::InitStatus::kOK)
db_.reset();
}
bool BudgetDatabase::IsCached(const url::Origin& origin) const {
return budget_map_.find(origin) != budget_map_.end();
}
double BudgetDatabase::GetBudget(const url::Origin& origin) const {
double total = 0;
auto iter = budget_map_.find(origin);
if (iter == budget_map_.end())
return total;
const BudgetInfo& info = iter->second;
for (const BudgetChunk& chunk : info.chunks)
total += chunk.amount;
return total;
}
void BudgetDatabase::AddToCache(
const url::Origin& origin,
CacheCallback callback,
bool success,
std::unique_ptr<budget_service::Budget> budget_proto) {
// If the database read failed or there's nothing to add, just return.
if (!success || !budget_proto) {
std::move(callback).Run(success);
return;
}
// If there were two simultaneous loads, don't overwrite the cache value,
// which might have been updated after the previous load.
if (IsCached(origin)) {
std::move(callback).Run(success);
return;
}
// Add the data to the cache, converting from the proto format to an STL
// format which is better for removing things from the list.
BudgetInfo& info = budget_map_[origin];
for (const auto& chunk : budget_proto->budget()) {
info.chunks.emplace_back(chunk.amount(),
base::Time::FromInternalValue(chunk.expiration()));
}
info.last_engagement_award =
base::Time::FromInternalValue(budget_proto->engagement_last_updated());
std::move(callback).Run(success);
}
void BudgetDatabase::GetBudgetAfterSync(const url::Origin& origin,
GetBudgetCallback callback,
bool success) {
std::vector<BudgetState> predictions;
// If the database wasn't able to read the information, return the
// failure and an empty predictions array.
if (!success) {
std::move(callback).Run(std::move(predictions));
return;
}
// Now, build up the BudgetExpection. This is different from the format
// in which the cache stores the data. The cache stores chunks of budget and
// when that budget expires. The mojo array describes a set of times
// and the budget at those times.
double total = GetBudget(origin);
// Always add one entry at the front of the list for the total budget now.
{
BudgetState prediction;
prediction.budget_at = total;
prediction.time = clock_->Now().InMillisecondsFSinceUnixEpoch();
predictions.push_back(prediction);
}
// Starting with the soonest expiring chunks, add entries for the
// expiration times going forward.
const BudgetChunks& chunks = budget_map_[origin].chunks;
for (const auto& chunk : chunks) {
BudgetState prediction;
total -= chunk.amount;
prediction.budget_at = total;
prediction.time = chunk.expiration.InMillisecondsFSinceUnixEpoch();
predictions.push_back(prediction);
}
std::move(callback).Run(std::move(predictions));
}
void BudgetDatabase::SpendBudgetAfterSync(const url::Origin& origin,
double amount,
SpendBudgetCallback callback,
bool success) {
if (!success) {
std::move(callback).Run(false /* success */);
return;
}
// Walk the list of budget chunks to see if the origin has enough budget.
double total = 0;
BudgetInfo& info = budget_map_[origin];
for (const BudgetChunk& chunk : info.chunks)
total += chunk.amount;
if (total < amount) {
std::move(callback).Run(false /* success */);
return;
}
// Walk the chunks and remove enough budget to cover the needed amount.
double bill = amount;
for (auto iter = info.chunks.begin(); iter != info.chunks.end();) {
if (iter->amount > bill) {
iter->amount -= bill;
bill = 0;
break;
}
bill -= iter->amount;
iter = info.chunks.erase(iter);
}
// There should have been enough budget to cover the entire bill.
DCHECK_EQ(0, bill);
// Now that the cache is updated, write the data to the database.
WriteCachedValuesToDatabase(
origin,
base::BindOnce(&BudgetDatabase::SpendBudgetAfterWrite,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
}
// This converts the bool value which is returned from the database to a Mojo
// error type.
void BudgetDatabase::SpendBudgetAfterWrite(SpendBudgetCallback callback,
bool write_successful) {
// TODO(harkness): If the database write fails, the cache will be out of sync
// with the database. Consider ways to mitigate this.
if (!write_successful) {
std::move(callback).Run(false /* success */);
return;
}
std::move(callback).Run(true /* success */);
}
void BudgetDatabase::WriteCachedValuesToDatabase(const url::Origin& origin,
StoreBudgetCallback callback) {
if (!db_) {
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), false));
return;
}
// Create the data structures that are passed to the ProtoDatabase.
std::unique_ptr<
leveldb_proto::ProtoDatabase<budget_service::Budget>::KeyEntryVector>
entries(new leveldb_proto::ProtoDatabase<
budget_service::Budget>::KeyEntryVector());
std::unique_ptr<std::vector<std::string>> keys_to_remove(
new std::vector<std::string>());
// Each operation can either update the existing budget or remove the origin's
// budget information.
if (IsCached(origin)) {
// Build the Budget proto object.
budget_service::Budget budget;
const BudgetInfo& info = budget_map_[origin];
for (const auto& chunk : info.chunks) {
budget_service::BudgetChunk* budget_chunk = budget.add_budget();
budget_chunk->set_amount(chunk.amount);
budget_chunk->set_expiration(chunk.expiration.ToInternalValue());
}
budget.set_engagement_last_updated(
info.last_engagement_award.ToInternalValue());
entries->push_back(std::make_pair(origin.Serialize(), budget));
} else {
// If the origin doesn't exist in the cache, this is a remove operation.
keys_to_remove->push_back(origin.Serialize());
}
// Send the updates to the database.
db_->UpdateEntries(std::move(entries), std::move(keys_to_remove),
std::move(callback));
}
void BudgetDatabase::SyncCache(const url::Origin& origin,
CacheCallback callback) {
// If the origin isn't already cached, add it to the cache.
if (!IsCached(origin)) {
if (!db_) {
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), false));
return;
}
CacheCallback add_callback = base::BindOnce(
&BudgetDatabase::SyncLoadedCache, weak_ptr_factory_.GetWeakPtr(),
origin, std::move(callback));
db_->GetEntry(origin.Serialize(),
base::BindOnce(&BudgetDatabase::AddToCache,
weak_ptr_factory_.GetWeakPtr(), origin,
std::move(add_callback)));
return;
}
SyncLoadedCache(origin, std::move(callback), true /* success */);
}
void BudgetDatabase::SyncLoadedCache(const url::Origin& origin,
CacheCallback callback,
bool success) {
if (!success) {
std::move(callback).Run(false /* success */);
return;
}
// Now, cleanup any expired budget chunks for the origin.
bool needs_write = CleanupExpiredBudget(origin);
// Get the SES score and add engagement budget for the site.
AddEngagementBudget(origin);
if (needs_write)
WriteCachedValuesToDatabase(origin, std::move(callback));
else
std::move(callback).Run(success);
}
void BudgetDatabase::AddEngagementBudget(const url::Origin& origin) {
// Calculate how much budget should be awarded. The award depends on the
// time elapsed since the last award and the SES score.
// By default, give the origin kBudgetDurationInDays worth of budget, but
// reduce that if budget has already been given during that period.
base::TimeDelta elapsed = base::Days(kBudgetDurationInDays);
if (IsCached(origin)) {
elapsed = clock_->Now() - budget_map_[origin].last_engagement_award;
// Don't give engagement awards for periods less than an hour.
if (elapsed.InHours() < 1)
return;
// Cap elapsed time to the budget duration.
if (elapsed.InDays() > kBudgetDurationInDays)
elapsed = base::Days(kBudgetDurationInDays);
}
// Get the current SES score, and calculate the hourly budget for that score.
double hourly_budget = kMaximumHourlyBudget *
GetSiteEngagementScoreForOrigin(origin) /
site_engagement::SiteEngagementService::GetMaxPoints();
// Update the last_engagement_award to the current time. If the origin wasn't
// already in the map, this adds a new entry for it.
budget_map_[origin].last_engagement_award = clock_->Now();
// Add a new chunk of budget for the origin at the default expiration time.
base::Time expiration = clock_->Now() + base::Days(kBudgetDurationInDays);
budget_map_[origin].chunks.emplace_back(elapsed.InHours() * hourly_budget,
expiration);
}
// Cleans up budget in the cache. Relies on the caller eventually writing the
// cache back to the database.
bool BudgetDatabase::CleanupExpiredBudget(const url::Origin& origin) {
if (!IsCached(origin))
return false;
base::Time now = clock_->Now();
BudgetChunks& chunks = budget_map_[origin].chunks;
auto cleanup_iter = chunks.begin();
// This relies on the list of chunks being in timestamp order.
while (cleanup_iter != chunks.end() && cleanup_iter->expiration <= now)
cleanup_iter = chunks.erase(cleanup_iter);
// If the entire budget is empty now AND there have been no engagements
// in the last kBudgetDurationInDays days, remove this from the cache.
if (chunks.empty() && budget_map_[origin].last_engagement_award <
clock_->Now() - base::Days(kBudgetDurationInDays)) {
budget_map_.erase(origin);
return true;
}
// Although some things may have expired, there are some chunks still valid.
// Don't write to the DB now, write either when all chunks expire or when the
// origin spends some budget.
return false;
}
double BudgetDatabase::GetSiteEngagementScoreForOrigin(
const url::Origin& origin) const {
if (profile_->IsOffTheRecord())
return 0;
return site_engagement::SiteEngagementService::Get(profile_.get())
->GetScore(origin.GetURL());
}
|