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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// DownloadHistory manages persisting DownloadItems to the history service by
// observing a single DownloadManager and all its DownloadItems using an
// AllDownloadItemNotifier.
//
// DownloadHistory decides whether and when to add items to, remove items from,
// and update items in the database. DownloadHistory uses DownloadHistoryData to
// store per-DownloadItem data such as whether the item is persisted or being
// persisted, and the last history::DownloadRow that was passed to the database.
// When the DownloadManager and its delegate (ChromeDownloadManagerDelegate) are
// initialized, DownloadHistory is created and queries the HistoryService. When
// the HistoryService calls back from QueryDownloads() to QueryCallback(),
// DownloadHistory will then wait for DownloadManager to call
// LoadHistoryDownloads(), and uses DownloadManager::CreateDownloadItem() to
// inform DownloadManager of these persisted DownloadItems. CreateDownloadItem()
// internally calls OnDownloadCreated(), which normally adds items to the
// database, so LoadHistoryDownloads() uses |loading_id_| to disable adding
// these items to the database. If a download is removed via
// OnDownloadRemoved() while the item is still being added to the database,
// DownloadHistory uses |removed_while_adding_| to remember to remove the item
// when its ItemAdded() callback is called. All callbacks are bound with a weak
// pointer to DownloadHistory to prevent use-after-free bugs.
// ChromeDownloadManagerDelegate owns DownloadHistory, and deletes it in
// Shutdown(), which is called by DownloadManagerImpl::Shutdown() after all
// DownloadItems are destroyed.
#include "chrome/browser/download/download_history.h"
#include <memory>
#include <optional>
#include <utility>
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/observer_list.h"
#include "build/build_config.h"
#include "chrome/browser/download/download_crx_util.h"
#include "chrome/browser/profiles/profile.h"
#include "components/download/public/common/download_features.h"
#include "components/download/public/common/download_item.h"
#include "components/download/public/common/download_utils.h"
#include "components/history/content/browser/download_conversions.h"
#include "components/history/core/browser/download_database.h"
#include "components/history/core/browser/download_row.h"
#include "components/history/core/browser/history_service.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/download_manager.h"
#include "content/public/browser/storage_partition_config.h"
#include "extensions/buildflags/buildflags.h"
#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "chrome/browser/extensions/api/downloads/downloads_api.h"
#endif
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/download/download_item_web_app_data.h"
#endif
using history::DownloadState;
namespace {
// Max data url size to be stored in history DB.
const size_t kMaxDataURLSize = 1024u;
// If there is a data URL at the end of the url chain, truncate it if it is too
// long.
void TruncatedDataUrlAtTheEndIfNeeded(std::vector<GURL>* url_chain) {
if (url_chain->empty())
return;
GURL* url = &url_chain->back();
if (url->SchemeIs(url::kDataScheme)) {
const std::string& data_url = url->spec();
if (data_url.size() > kMaxDataURLSize) {
GURL truncated_url(data_url.substr(0, kMaxDataURLSize));
url->Swap(&truncated_url);
}
}
}
// Per-DownloadItem data. This information does not belong inside DownloadItem,
// and keeping maps in DownloadHistory from DownloadItem to this information is
// error-prone and complicated. Unfortunately, DownloadHistory::removing_*_ and
// removed_while_adding_ cannot be moved into this class partly because
// DownloadHistoryData is destroyed when DownloadItems are destroyed, and we
// have no control over when DownloadItems are destroyed.
class DownloadHistoryData : public base::SupportsUserData::Data {
public:
enum PersistenceState {
NOT_PERSISTED,
PERSISTING,
PERSISTED,
};
static DownloadHistoryData* Get(download::DownloadItem* item) {
base::SupportsUserData::Data* data = item->GetUserData(kKey);
return static_cast<DownloadHistoryData*>(data);
}
static const DownloadHistoryData* Get(const download::DownloadItem* item) {
const base::SupportsUserData::Data* data = item->GetUserData(kKey);
return static_cast<const DownloadHistoryData*>(data);
}
explicit DownloadHistoryData(download::DownloadItem* item) {
item->SetUserData(kKey, base::WrapUnique(this));
}
DownloadHistoryData(const DownloadHistoryData&) = delete;
DownloadHistoryData& operator=(const DownloadHistoryData&) = delete;
~DownloadHistoryData() override = default;
PersistenceState state() const { return state_; }
void SetState(PersistenceState s) { state_ = s; }
// This allows DownloadHistory::OnDownloadUpdated() to see what changed in a
// DownloadItem if anything, in order to prevent writing to the database
// unnecessarily. It is nullified when the item is no longer in progress in
// order to save memory.
history::DownloadRow* info() { return info_.get(); }
void set_info(const history::DownloadRow& i) {
// TODO(qinmin): avoid creating a new copy each time.
info_ = std::make_unique<history::DownloadRow>(i);
}
void clear_info() {
info_.reset();
}
private:
static const char kKey[];
PersistenceState state_ = NOT_PERSISTED;
std::unique_ptr<history::DownloadRow> info_;
};
const char DownloadHistoryData::kKey[] =
"DownloadItem DownloadHistoryData";
history::DownloadRow GetDownloadRow(download::DownloadItem* item) {
std::string by_ext_id, by_ext_name;
#if BUILDFLAG(ENABLE_EXTENSIONS)
extensions::DownloadedByExtension* by_ext =
extensions::DownloadedByExtension::Get(item);
if (by_ext) {
by_ext_id = by_ext->id();
by_ext_name = by_ext->name();
}
#endif
history::DownloadRow download;
download.current_path = item->GetFullPath();
download.target_path = item->GetTargetFilePath();
download.url_chain = item->GetUrlChain();
download.referrer_url = item->GetReferrerUrl();
download.embedder_download_data = item->GetSerializedEmbedderDownloadData();
download.tab_url = item->GetTabUrl();
download.tab_referrer_url = item->GetTabReferrerUrl();
download.http_method = std::string(); // HTTP method not available yet.
download.mime_type = item->GetMimeType();
download.original_mime_type = item->GetOriginalMimeType();
download.start_time = item->GetStartTime();
download.end_time = item->GetEndTime();
download.etag = item->GetETag();
download.last_modified = item->GetLastModifiedTime();
download.received_bytes = item->GetReceivedBytes();
download.total_bytes = item->GetTotalBytes();
download.state = history::ToHistoryDownloadState(item->GetState());
download.danger_type =
history::ToHistoryDownloadDangerType(item->GetDangerType());
download.interrupt_reason =
history::ToHistoryDownloadInterruptReason(item->GetLastReason());
download.hash = std::string(); // Hash value not available yet.
download.id = history::ToHistoryDownloadId(item->GetId());
download.guid = item->GetGuid();
download.opened = item->GetOpened();
download.last_access_time = item->GetLastAccessTime();
download.transient = item->IsTransient();
download.by_ext_id = by_ext_id;
download.by_ext_name = by_ext_name;
#if !BUILDFLAG(IS_ANDROID)
if (DownloadItemWebAppData* web_app_data = DownloadItemWebAppData::Get(item);
web_app_data != nullptr) {
download.by_web_app_id = web_app_data->id();
}
#endif
download.download_slice_info = history::GetHistoryDownloadSliceInfos(*item);
TruncatedDataUrlAtTheEndIfNeeded(&download.url_chain);
return download;
}
enum class ShouldUpdateHistoryResult {
NO_UPDATE,
UPDATE,
UPDATE_IMMEDIATELY,
};
ShouldUpdateHistoryResult ShouldUpdateHistory(
const history::DownloadRow* previous,
const history::DownloadRow& current) {
// When download path is determined, Chrome should commit the history
// immediately. Otherwise the file will be left permanently on the external
// storage if Chrome crashes right away.
// TODO(qinmin): this doesn't solve all the issues. When download starts,
// Chrome will write the http response data to a temporary file, and later
// rename it. If Chrome is killed before committing the history here,
// that temporary file will still get permanently left.
// See http://crbug.com/664677.
if (previous == nullptr || previous->current_path != current.current_path) {
return ShouldUpdateHistoryResult::UPDATE_IMMEDIATELY;
}
// Ignore url_chain, referrer, site_url, http_method, mime_type,
// original_mime_type, start_time, id, and guid. These fields don't change.
if ((previous->target_path != current.target_path) ||
(previous->end_time != current.end_time) ||
(previous->received_bytes != current.received_bytes) ||
(previous->total_bytes != current.total_bytes) ||
(previous->etag != current.etag) ||
(previous->last_modified != current.last_modified) ||
(previous->state != current.state) ||
(previous->danger_type != current.danger_type) ||
(previous->interrupt_reason != current.interrupt_reason) ||
(previous->hash != current.hash) ||
(previous->opened != current.opened) ||
(previous->last_access_time != current.last_access_time) ||
(previous->transient != current.transient) ||
(previous->by_ext_id != current.by_ext_id) ||
(previous->by_ext_name != current.by_ext_name) ||
(previous->by_web_app_id != current.by_web_app_id) ||
(previous->download_slice_info != current.download_slice_info)) {
return ShouldUpdateHistoryResult::UPDATE;
}
return ShouldUpdateHistoryResult::NO_UPDATE;
}
// Counts how many times a target file path exists in |rows| and stores
// the result into |file_path_count|.
void CountFilePathOccurences(const std::vector<history::DownloadRow>& rows,
std::map<std::string, int>* file_path_count) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!base::FeatureList::IsEnabled(
download::features::kDeleteOverwrittenDownloads)) {
return;
}
for (const history::DownloadRow& row : rows) {
if (row.state != DownloadState::COMPLETE || row.target_path.empty())
continue;
std::string file_path = row.target_path.AsUTF8Unsafe();
if (file_path.empty())
continue;
++(*file_path_count)[file_path];
}
}
// Checks whether a particular download row should be skipped from loading given
// the number of times the same target file path appears in |file_path_count|.
bool ShouldSkipLoadingDownload(const history::DownloadRow& row,
std::map<std::string, int>* file_path_count) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!base::FeatureList::IsEnabled(
download::features::kDeleteOverwrittenDownloads)) {
return false;
}
if (row.state != DownloadState::COMPLETE || row.target_path.empty())
return false;
const std::string file_path = row.target_path.AsUTF8Unsafe();
if (file_path.empty())
return false;
auto iter = file_path_count->find(file_path);
CHECK(iter != file_path_count->end());
--iter->second;
if (iter->second < 1)
return false;
return base::Time::Now() - row.end_time >=
download::GetOverwrittenDownloadDeleteTime();
}
} // anonymous namespace
DownloadHistory::HistoryAdapter::HistoryAdapter(
history::HistoryService* history)
: history_(history) {
}
DownloadHistory::HistoryAdapter::~HistoryAdapter() = default;
void DownloadHistory::HistoryAdapter::QueryDownloads(
history::HistoryService::DownloadQueryCallback callback) {
history_->QueryDownloads(std::move(callback));
}
void DownloadHistory::HistoryAdapter::CreateDownload(
const history::DownloadRow& info,
history::HistoryService::DownloadCreateCallback callback) {
history_->CreateDownload(info, std::move(callback));
}
void DownloadHistory::HistoryAdapter::UpdateDownload(
const history::DownloadRow& data, bool should_commit_immediately) {
history_->UpdateDownload(data, should_commit_immediately);
}
void DownloadHistory::HistoryAdapter::RemoveDownloads(
const std::set<uint32_t>& ids) {
history_->RemoveDownloads(ids);
}
DownloadHistory::Observer::Observer() = default;
DownloadHistory::Observer::~Observer() = default;
// static
bool DownloadHistory::IsPersisted(const download::DownloadItem* item) {
const DownloadHistoryData* data = DownloadHistoryData::Get(item);
return data && (data->state() == DownloadHistoryData::PERSISTED);
}
DownloadHistory::DownloadHistory(content::DownloadManager* manager,
std::unique_ptr<HistoryAdapter> history)
: notifier_(manager, this),
history_(std::move(history)),
loading_id_(download::DownloadItem::kInvalidId),
initial_history_query_complete_(false) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
download::SimpleDownloadManager::DownloadVector items;
notifier_.GetManager()->GetAllDownloads(&items);
for (download::DownloadItem* item : items) {
OnDownloadCreated(notifier_.GetManager(), item);
}
history_->QueryDownloads(base::BindOnce(&DownloadHistory::QueryCallback,
weak_ptr_factory_.GetWeakPtr()));
}
DownloadHistory::~DownloadHistory() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
for (Observer& observer : observers_)
observer.OnDownloadHistoryDestroyed();
observers_.Clear();
}
void DownloadHistory::AddObserver(DownloadHistory::Observer* observer) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
observers_.AddObserver(observer);
if (initial_history_query_complete_)
observer->OnHistoryQueryComplete();
}
void DownloadHistory::RemoveObserver(DownloadHistory::Observer* observer) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
observers_.RemoveObserver(observer);
}
void DownloadHistory::QueryCallback(std::vector<history::DownloadRow> rows) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// ManagerGoingDown() may have happened before the history loaded.
if (!notifier_.GetManager())
return;
notifier_.GetManager()->OnHistoryQueryComplete(
base::BindOnce(&DownloadHistory::LoadHistoryDownloads,
weak_ptr_factory_.GetWeakPtr(), std::move(rows)));
}
void DownloadHistory::LoadHistoryDownloads(
const std::vector<history::DownloadRow>& rows) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(notifier_.GetManager());
std::map<std::string, int> file_name_count;
CountFilePathOccurences(rows, &file_name_count);
for (const history::DownloadRow& row : rows) {
if (ShouldSkipLoadingDownload(row, &file_name_count)) {
ScheduleRemoveDownload(row.id);
continue;
}
loading_id_ = history::ToContentDownloadId(row.id);
download::DownloadItem::DownloadState history_download_state =
history::ToContentDownloadState(row.state);
download::DownloadInterruptReason history_reason =
history::ToContentDownloadInterruptReason(row.interrupt_reason);
std::vector<GURL> url_chain = row.url_chain;
TruncatedDataUrlAtTheEndIfNeeded(&url_chain);
// If the serialized EmbedderDownloadData is not present in DownloadRow,
// use the site URL to grab the appropriate StoragePartitionConfig to use
// to create the DownloadItem. Since DownloadRow comes from the download
// history database, it may contain entries that still use site URL.
content::StoragePartitionConfig storage_partition_config;
if (row.embedder_download_data.empty()) {
storage_partition_config =
notifier_.GetManager()->GetStoragePartitionConfigForSiteUrl(
row.site_url);
} else {
storage_partition_config =
notifier_.GetManager()
->SerializedEmbedderDownloadDataToStoragePartitionConfig(
row.embedder_download_data);
}
download::DownloadItem* item = notifier_.GetManager()->CreateDownloadItem(
row.guid, loading_id_, row.current_path, row.target_path, url_chain,
row.referrer_url, storage_partition_config, row.tab_url,
row.tab_referrer_url, std::nullopt, row.mime_type,
row.original_mime_type, row.start_time, row.end_time, row.etag,
row.last_modified, row.received_bytes, row.total_bytes,
std::string(), // TODO(asanka): Need to persist and restore hash of
// partial file for an interrupted download. No need to
// store hash for a completed file.
history_download_state,
history::ToContentDownloadDangerType(row.danger_type), history_reason,
row.opened, row.last_access_time, row.transient,
history::ToContentReceivedSlices(row.download_slice_info));
// DownloadManager returns a nullptr if it decides to remove the download
// permanently.
if (item == nullptr) {
ScheduleRemoveDownload(row.id);
continue;
}
DCHECK_EQ(download::DownloadItem::kInvalidId, loading_id_);
// The download might have been in the terminal state without informing
// history DB. If this is the case, populate the new state back to history
// DB.
if (item->IsDone() &&
!download::IsDownloadDone(item->GetURL(), history_download_state,
history_reason)) {
OnDownloadUpdated(notifier_.GetManager(), item);
}
// The item was created already and observers were notified of its creation
// via OnDownloadCreated(). Since we are about to possibly add extra info to
// it (for extensions and web apps), we must notify observers again, after
// modification, so that observers who care about the extra info may have an
// updated view of the item.
bool should_update_observers = false;
#if BUILDFLAG(ENABLE_EXTENSIONS)
if (!row.by_ext_id.empty() && !row.by_ext_name.empty()) {
new extensions::DownloadedByExtension(item, row.by_ext_id,
row.by_ext_name);
should_update_observers = true;
}
#endif
#if !BUILDFLAG(IS_ANDROID)
if (!row.by_web_app_id.empty()) {
DownloadItemWebAppData::CreateAndAttachToItem(item, row.by_web_app_id);
should_update_observers = true;
}
#endif
if (should_update_observers) {
item->UpdateObservers();
}
DCHECK_EQ(DownloadHistoryData::PERSISTED,
DownloadHistoryData::Get(item)->state());
}
// Indicate that the history db is initialized.
notifier_.GetManager()->PostInitialization(
content::DownloadManager::DOWNLOAD_INITIALIZATION_DEPENDENCY_HISTORY_DB);
initial_history_query_complete_ = true;
for (Observer& observer : observers_) {
observer.OnHistoryQueryComplete();
}
}
void DownloadHistory::MaybeAddToHistory(download::DownloadItem* item) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!NeedToUpdateDownloadHistory(item))
return;
uint32_t download_id = item->GetId();
DownloadHistoryData* data = DownloadHistoryData::Get(item);
bool removing = removing_ids_.find(download_id) != removing_ids_.end();
// TODO(benjhayden): Remove IsTemporary().
if ((notifier_.GetManager() &&
download_crx_util::IsTrustedExtensionDownload(
Profile::FromBrowserContext(
notifier_.GetManager()->GetBrowserContext()),
*item)) ||
item->IsTemporary() ||
(data->state() != DownloadHistoryData::NOT_PERSISTED) || removing) {
return;
}
data->SetState(DownloadHistoryData::PERSISTING);
// Keep the info for in-progress download, so we can check whether history DB
// update is needed when DownloadUpdated() is called.
history::DownloadRow download_row = GetDownloadRow(item);
if (item->GetState() == download::DownloadItem::IN_PROGRESS)
data->set_info(download_row);
else
data->clear_info();
history_->CreateDownload(
download_row, base::BindOnce(&DownloadHistory::ItemAdded,
weak_ptr_factory_.GetWeakPtr(), download_id,
download_row));
}
void DownloadHistory::ItemAdded(uint32_t download_id,
const history::DownloadRow& download_row,
bool success) {
if (removed_while_adding_.find(download_id) !=
removed_while_adding_.end()) {
removed_while_adding_.erase(download_id);
if (success)
ScheduleRemoveDownload(download_id);
return;
}
if (!notifier_.GetManager())
return;
download::DownloadItem* item =
notifier_.GetManager()->GetDownload(download_id);
if (!item) {
// This item will have called OnDownloadDestroyed(). If the item should
// have been removed from history, then it would have also called
// OnDownloadRemoved(), which would have put |download_id| in
// removed_while_adding_, handled above.
return;
}
DownloadHistoryData* data = DownloadHistoryData::Get(item);
bool was_persisted = IsPersisted(item);
// The sql INSERT statement failed. Avoid an infinite loop: don't
// automatically retry. Retry adding the next time the item is updated by
// resetting the state to NOT_PERSISTED.
if (!success) {
DVLOG(20) << __func__ << " INSERT failed id=" << download_id;
data->SetState(DownloadHistoryData::NOT_PERSISTED);
return;
}
data->SetState(DownloadHistoryData::PERSISTED);
// Notify the observer about the change in the persistence state.
if (was_persisted != IsPersisted(item)) {
for (Observer& observer : observers_)
observer.OnDownloadStored(item, download_row);
}
}
void DownloadHistory::OnDownloadCreated(content::DownloadManager* manager,
download::DownloadItem* item) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// All downloads should pass through OnDownloadCreated exactly once.
CHECK(!DownloadHistoryData::Get(item));
DownloadHistoryData* data = new DownloadHistoryData(item);
if (item->GetId() == loading_id_)
OnDownloadRestoredFromHistory(item);
if (item->GetState() == download::DownloadItem::IN_PROGRESS &&
NeedToUpdateDownloadHistory(item)) {
data->set_info(GetDownloadRow(item));
}
MaybeAddToHistory(item);
}
void DownloadHistory::OnDownloadUpdated(content::DownloadManager* manager,
download::DownloadItem* item) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DownloadHistoryData* data = DownloadHistoryData::Get(item);
if (data->state() == DownloadHistoryData::NOT_PERSISTED) {
MaybeAddToHistory(item);
return;
}
if (item->IsTemporary()) {
OnDownloadRemoved(notifier_.GetManager(), item);
return;
}
if (!NeedToUpdateDownloadHistory(item))
return;
history::DownloadRow current_info(GetDownloadRow(item));
ShouldUpdateHistoryResult should_update_result =
ShouldUpdateHistory(data->info(), current_info);
bool should_update =
(should_update_result != ShouldUpdateHistoryResult::NO_UPDATE);
if (should_update) {
history_->UpdateDownload(
current_info,
should_update_result == ShouldUpdateHistoryResult::UPDATE_IMMEDIATELY);
for (Observer& observer : observers_)
observer.OnDownloadStored(item, current_info);
}
if (item->GetState() == download::DownloadItem::IN_PROGRESS) {
data->set_info(current_info);
} else {
data->clear_info();
}
}
void DownloadHistory::OnDownloadOpened(content::DownloadManager* manager,
download::DownloadItem* item) {
OnDownloadUpdated(manager, item);
}
void DownloadHistory::OnDownloadRemoved(content::DownloadManager* manager,
download::DownloadItem* item) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DownloadHistoryData* data = DownloadHistoryData::Get(item);
if (data->state() != DownloadHistoryData::PERSISTED) {
if (data->state() == DownloadHistoryData::PERSISTING) {
// ScheduleRemoveDownload will be called when history_ calls ItemAdded().
removed_while_adding_.insert(item->GetId());
}
return;
}
ScheduleRemoveDownload(item->GetId());
// This is important: another OnDownloadRemoved() handler could do something
// that synchronously fires an OnDownloadUpdated().
data->SetState(DownloadHistoryData::NOT_PERSISTED);
}
void DownloadHistory::ScheduleRemoveDownload(uint32_t download_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// For database efficiency, batch removals together if they happen all at
// once.
if (removing_ids_.empty()) {
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(&DownloadHistory::RemoveDownloadsBatch,
weak_ptr_factory_.GetWeakPtr()));
}
removing_ids_.insert(download_id);
}
void DownloadHistory::RemoveDownloadsBatch() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
IdSet remove_ids;
removing_ids_.swap(remove_ids);
history_->RemoveDownloads(remove_ids);
for (Observer& observer : observers_)
observer.OnDownloadsRemoved(remove_ids);
}
void DownloadHistory::OnDownloadRestoredFromHistory(
download::DownloadItem* item) {
DownloadHistoryData* data = DownloadHistoryData::Get(item);
data->SetState(DownloadHistoryData::PERSISTED);
loading_id_ = download::DownloadItem::kInvalidId;
}
bool DownloadHistory::NeedToUpdateDownloadHistory(
download::DownloadItem* item) {
#if BUILDFLAG(ENABLE_EXTENSIONS)
// Always populate new extension downloads to history.
DownloadHistoryData* data = DownloadHistoryData::Get(item);
extensions::DownloadedByExtension* by_ext =
extensions::DownloadedByExtension::Get(item);
if (by_ext && !by_ext->id().empty() && !by_ext->name().empty() &&
data->state() != DownloadHistoryData::NOT_PERSISTED) {
return true;
}
#endif
// When download DB is enabled, only downloads that are in terminal state
// are added to or updated in history DB. Non-transient in-progress and
// interrupted download will be stored in the in-progress DB.
return !item->IsTransient() &&
(item->IsSavePackageDownload() || item->IsDone());
}
|