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
|
// 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 "chrome/browser/budget_service/budget_database.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "base/time/clock.h"
#include "base/time/default_clock.h"
#include "chrome/browser/budget_service/budget.pb.h"
#include "chrome/browser/engagement/site_engagement_score.h"
#include "chrome/browser/engagement/site_engagement_service.h"
#include "chrome/browser/profiles/profile.h"
#include "components/leveldb_proto/proto_database_impl.h"
#include "content/public/browser/browser_thread.h"
#include "url/gurl.h"
#include "url/origin.h"
using content::BrowserThread;
namespace {
// UMA are logged for the database with this string as part of the name.
// They will be LevelDB.*.BudgetManager. Changes here should be synchronized
// with histograms.xml.
const char kDatabaseUMAName[] = "BudgetManager";
// 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
BudgetDatabase::BudgetInfo::BudgetInfo() {}
BudgetDatabase::BudgetInfo::BudgetInfo(const BudgetInfo&& other)
: last_engagement_award(other.last_engagement_award) {
chunks = std::move(other.chunks);
}
BudgetDatabase::BudgetInfo::~BudgetInfo() {}
BudgetDatabase::BudgetDatabase(
Profile* profile,
const base::FilePath& database_dir,
const scoped_refptr<base::SequencedTaskRunner>& task_runner)
: profile_(profile),
db_(new leveldb_proto::ProtoDatabaseImpl<budget_service::Budget>(
task_runner)),
clock_(base::WrapUnique(new base::DefaultClock)),
weak_ptr_factory_(this) {
db_->Init(kDatabaseUMAName, database_dir,
base::Bind(&BudgetDatabase::OnDatabaseInit,
weak_ptr_factory_.GetWeakPtr()));
}
BudgetDatabase::~BudgetDatabase() {}
void BudgetDatabase::GetBudgetDetails(const url::Origin& origin,
const GetBudgetCallback& callback) {
SyncCache(origin,
base::Bind(&BudgetDatabase::GetBudgetAfterSync,
weak_ptr_factory_.GetWeakPtr(), origin, callback));
}
void BudgetDatabase::SpendBudget(const url::Origin& origin,
double amount,
const SpendBudgetCallback& callback) {
SyncCache(origin, base::Bind(&BudgetDatabase::SpendBudgetAfterSync,
weak_ptr_factory_.GetWeakPtr(), origin, amount,
callback));
}
void BudgetDatabase::SetClockForTesting(std::unique_ptr<base::Clock> clock) {
clock_ = std::move(clock);
}
void BudgetDatabase::OnDatabaseInit(bool success) {
// TODO(harkness): Consider caching the budget database now?
}
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,
const 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) {
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)) {
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());
callback.Run(success);
}
void BudgetDatabase::GetBudgetAfterSync(const url::Origin& origin,
const GetBudgetCallback& callback,
bool success) {
std::vector<blink::mojom::BudgetStatePtr> predictions;
// If the database wasn't able to read the information, return the
// failure and an empty predictions array.
if (!success) {
callback.Run(blink::mojom::BudgetServiceErrorType::DATABASE_ERROR,
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.
blink::mojom::BudgetStatePtr prediction(blink::mojom::BudgetState::New());
prediction->budget_at = total;
prediction->time = clock_->Now().ToDoubleT();
predictions.push_back(std::move(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) {
blink::mojom::BudgetStatePtr prediction(blink::mojom::BudgetState::New());
total -= chunk.amount;
prediction->budget_at = total;
prediction->time = chunk.expiration.ToDoubleT();
predictions.push_back(std::move(prediction));
}
callback.Run(blink::mojom::BudgetServiceErrorType::NONE,
std::move(predictions));
}
void BudgetDatabase::SpendBudgetAfterSync(const url::Origin& origin,
double amount,
const SpendBudgetCallback& callback,
bool success) {
if (!success) {
callback.Run(blink::mojom::BudgetServiceErrorType::DATABASE_ERROR,
false /* success */);
return;
}
// Get the current SES score, to generate UMA.
SiteEngagementService* service = SiteEngagementService::Get(profile_);
double score = service->GetScore(origin.GetURL());
// 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) {
UMA_HISTOGRAM_COUNTS_100("PushMessaging.SESForNoBudgetOrigin", score);
callback.Run(blink::mojom::BudgetServiceErrorType::NONE,
false /* success */);
return;
} else if (total < amount * 2) {
UMA_HISTOGRAM_COUNTS_100("PushMessaging.SESForLowBudgetOrigin", score);
}
// 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::Bind(&BudgetDatabase::SpendBudgetAfterWrite,
weak_ptr_factory_.GetWeakPtr(), callback));
}
// This converts the bool value which is returned from the database to a Mojo
// error type.
void BudgetDatabase::SpendBudgetAfterWrite(const 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) {
callback.Run(blink::mojom::BudgetServiceErrorType::DATABASE_ERROR,
false /* success */);
return;
}
callback.Run(blink::mojom::BudgetServiceErrorType::NONE, true /* success */);
}
void BudgetDatabase::WriteCachedValuesToDatabase(
const url::Origin& origin,
const StoreBudgetCallback& callback) {
// 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), callback);
}
void BudgetDatabase::SyncCache(const url::Origin& origin,
const CacheCallback& callback) {
// If the origin isn't already cached, add it to the cache.
if (!IsCached(origin)) {
CacheCallback add_callback =
base::Bind(&BudgetDatabase::SyncLoadedCache,
weak_ptr_factory_.GetWeakPtr(), origin, callback);
db_->GetEntry(origin.Serialize(), base::Bind(&BudgetDatabase::AddToCache,
weak_ptr_factory_.GetWeakPtr(),
origin, add_callback));
return;
}
SyncLoadedCache(origin, callback, true /* success */);
}
void BudgetDatabase::SyncLoadedCache(const url::Origin& origin,
const CacheCallback& callback,
bool success) {
if (!success) {
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, callback);
else
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::TimeDelta::FromDays(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::TimeDelta::FromDays(kBudgetDurationInDays);
}
// Get the current SES score, and calculate the hourly budget for that score.
SiteEngagementService* service = SiteEngagementService::Get(profile_);
double hourly_budget = kMaximumHourlyBudget *
service->GetScore(origin.GetURL()) /
service->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::TimeDelta::FromDays(kBudgetDurationInDays);
budget_map_[origin].chunks.emplace_back(elapsed.InHours() * hourly_budget,
expiration);
// Any time we award engagement budget, which is done at most once an hour
// whenever any budget action is taken, record the budget.
double budget = GetBudget(origin);
UMA_HISTOGRAM_COUNTS_100("PushMessaging.BackgroundBudget", budget);
}
// 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::TimeDelta::FromDays(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;
}
|