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

Unified Diff: content/browser/download/download_manager.cc

Issue 7237034: sql::MetaTable.next_download_id, DownloadManager::GetNextId() (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: merge AGAIN Created 9 years, 4 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: content/browser/download/download_manager.cc
diff --git a/content/browser/download/download_manager.cc b/content/browser/download/download_manager.cc
index e211c96e780b4e310f2a201d3118976caa658621..ba2b17708f0595f348245cec12688a9c0bb69bcb 100644
--- a/content/browser/download/download_manager.cc
+++ b/content/browser/download/download_manager.cc
@@ -6,11 +6,15 @@
#include <iterator>
+#include "base/bind.h"
#include "base/callback.h"
#include "base/file_util.h"
#include "base/i18n/case_conversion.h"
#include "base/logging.h"
#include "base/stl_util.h"
+#include "base/stringprintf.h"
+#include "base/synchronization/lock.h"
+#include "base/sys_string_conversions.h"
#include "base/task.h"
#include "build/build_config.h"
#include "chrome/browser/download/download_util.h"
@@ -51,6 +55,7 @@ DownloadManager::DownloadManager(DownloadManagerDelegate* delegate,
DownloadStatusUpdater* status_updater)
: shutdown_needed_(false),
browser_context_(NULL),
+ next_id_(0),
file_manager_(NULL),
status_updater_(status_updater->AsWeakPtr()),
delegate_(delegate) {
@@ -177,6 +182,30 @@ void DownloadManager::SearchDownloads(const string16& query,
}
}
+void DownloadManager::OnPersistentStoreGetNextId(int next_id) {
+ DVLOG(1) << __FUNCTION__ << " " << next_id;
+ base::AutoLock lock(next_id_lock_);
+ // TODO(benjhayden) Delay Profile initialization until here, and set next_id_
+ // = next_id. The '+=' works for now because these ids are not yet persisted
+ // to the database. GetNextId() can allocate zero or more ids starting from 0,
+ // then this callback can increment next_id_, and the items with lower ids
+ // won't clash with any other items even though there may be items loaded from
+ // the history because items from the history don't have valid ids.
+ next_id_ += next_id;
+}
+
+DownloadId DownloadManager::GetNextId() {
+ // May be called on any thread via the GetNextIdThunk.
+ // TODO(benjhayden) If otr, forward to parent DM.
+ base::AutoLock lock(next_id_lock_);
+ return DownloadId(this, next_id_++);
+}
+
+DownloadManager::GetNextIdThunkType DownloadManager::GetNextIdThunk() {
+ // TODO(benjhayden) If otr, forward to parent DM.
+ return base::Bind(&DownloadManager::GetNextId, this);
+}
+
// Query the history service for information about all persisted downloads.
bool DownloadManager::Init(content::BrowserContext* browser_context) {
DCHECK(browser_context);
@@ -338,7 +367,7 @@ void DownloadManager::ContinueDownloadWithPath(DownloadItem* download,
BrowserThread::FILE, FROM_HERE,
NewRunnableMethod(
file_manager_, &DownloadFileManager::RenameInProgressDownloadFile,
- download->id(), download_path));
+ download->global_id(), download_path));
download->Rename(download_path);
@@ -506,10 +535,10 @@ void DownloadManager::OnDownloadRenamedToFinalName(int download_id,
DCHECK_EQ(0, uniquifier) << "We should not uniquify SAFE downloads twice";
}
- BrowserThread::PostTask(
- BrowserThread::FILE, FROM_HERE,
- NewRunnableMethod(
- file_manager_, &DownloadFileManager::CompleteDownload, download_id));
+ BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, NewRunnableMethod(
+ file_manager_,
+ &DownloadFileManager::CompleteDownload,
+ item->global_id()));
if (uniquifier)
item->set_path_uniquifier(uniquifier);
@@ -545,10 +574,9 @@ void DownloadManager::DownloadCancelledInternal(
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
request_handle.CancelRequest();
- BrowserThread::PostTask(
- BrowserThread::FILE, FROM_HERE,
- NewRunnableMethod(
- file_manager_, &DownloadFileManager::CancelDownload, download_id));
+ BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, NewRunnableMethod(
+ file_manager_, &DownloadFileManager::CancelDownload,
+ DownloadId(this, download_id)));
}
void DownloadManager::OnDownloadError(int32 download_id,
@@ -581,10 +609,10 @@ void DownloadManager::OnDownloadError(int32 download_id,
delegate_->UpdateItemInPersistentStore(download);
}
- BrowserThread::PostTask(
- BrowserThread::FILE, FROM_HERE,
- NewRunnableMethod(
- file_manager_, &DownloadFileManager::CancelDownload, download_id));
+ BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, NewRunnableMethod(
+ file_manager_,
+ &DownloadFileManager::CancelDownload,
+ download->global_id()));
}
void DownloadManager::UpdateDownloadProgress() {

Powered by Google App Engine
This is Rietveld 408576698