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
|
// Copyright (c) 2012 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 "content/browser/download/download_file_impl.h"
#include <string>
#include "base/file_util.h"
#include "content/browser/download/download_create_info.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/download_manager.h"
using content::BrowserThread;
using content::DownloadId;
using content::DownloadManager;
DownloadFileImpl::DownloadFileImpl(
const DownloadCreateInfo* info,
DownloadRequestHandleInterface* request_handle,
DownloadManager* download_manager,
bool calculate_hash,
const net::BoundNetLog& bound_net_log)
: file_(info->save_info.file_path,
info->url(),
info->referrer_url,
info->received_bytes,
calculate_hash,
info->save_info.hash_state,
info->save_info.file_stream,
bound_net_log),
id_(info->download_id),
request_handle_(request_handle),
download_manager_(download_manager) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
}
DownloadFileImpl::~DownloadFileImpl() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
}
// BaseFile delegated functions.
net::Error DownloadFileImpl::Initialize() {
return file_.Initialize();
}
net::Error DownloadFileImpl::AppendDataToFile(const char* data,
size_t data_len) {
return file_.AppendDataToFile(data, data_len);
}
net::Error DownloadFileImpl::Rename(const FilePath& full_path) {
return file_.Rename(full_path);
}
void DownloadFileImpl::Detach() {
file_.Detach();
}
void DownloadFileImpl::Cancel() {
file_.Cancel();
}
void DownloadFileImpl::Finish() {
file_.Finish();
}
void DownloadFileImpl::AnnotateWithSourceInformation() {
file_.AnnotateWithSourceInformation();
}
FilePath DownloadFileImpl::FullPath() const {
return file_.full_path();
}
bool DownloadFileImpl::InProgress() const {
return file_.in_progress();
}
int64 DownloadFileImpl::BytesSoFar() const {
return file_.bytes_so_far();
}
int64 DownloadFileImpl::CurrentSpeed() const {
return file_.CurrentSpeed();
}
bool DownloadFileImpl::GetHash(std::string* hash) {
return file_.GetHash(hash);
}
std::string DownloadFileImpl::GetHashState() {
return file_.GetHashState();
}
// DownloadFileInterface implementation.
void DownloadFileImpl::CancelDownloadRequest() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
request_handle_->CancelRequest();
}
int DownloadFileImpl::Id() const {
return id_.local();
}
DownloadManager* DownloadFileImpl::GetDownloadManager() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
return download_manager_.get();
}
const DownloadId& DownloadFileImpl::GlobalId() const {
return id_;
}
std::string DownloadFileImpl::DebugString() const {
return base::StringPrintf("{"
" id_ = " "%d"
" request_handle = %s"
" Base File = %s"
" }",
id_.local(),
request_handle_->DebugString().c_str(),
file_.DebugString().c_str());
}
|