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
|
// Copyright (c) 2010 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/download/download_file.h"
#include <string>
#include "base/file_util.h"
#include "base/stringprintf.h"
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/download/download_manager.h"
#include "chrome/browser/download/download_util.h"
#include "chrome/browser/history/download_create_info.h"
DownloadFile::DownloadFile(const DownloadCreateInfo* info,
DownloadManager* download_manager)
: BaseFile(info->save_info.file_path,
info->url,
info->referrer_url,
info->received_bytes,
info->save_info.file_stream),
id_(info->download_id),
child_id_(info->child_id),
request_id_(info->request_id),
download_manager_(download_manager) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
}
DownloadFile::~DownloadFile() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
}
void DownloadFile::DeleteCrDownload() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
FilePath crdownload = download_util::GetCrDownloadPath(full_path_);
file_util::Delete(crdownload, false);
}
void DownloadFile::CancelDownloadRequest(ResourceDispatcherHost* rdh) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
NewRunnableFunction(&download_util::CancelDownloadRequest,
rdh,
child_id_,
request_id_));
}
DownloadManager* DownloadFile::GetDownloadManager() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
return download_manager_.get();
}
std::string DownloadFile::DebugString() const {
return base::StringPrintf("{"
" full_path_ = " "\"%s\""
" id_ = " "%d"
" child_id_ = " "%d"
" request_id_ = " "%d"
" Base File = %s"
" }",
full_path_.value().c_str(),
id_,
child_id_,
request_id_,
BaseFile::DebugString().c_str());
}
|