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
|
// Copyright (c) 2009 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/dom_ui/downloads_dom_handler.h"
#include "app/l10n_util.h"
#include "base/basictypes.h"
#include "base/i18n/time_formatting.h"
#include "base/singleton.h"
#include "base/string_piece.h"
#include "base/thread.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/dom_ui/chrome_url_data_manager.h"
#include "chrome/browser/dom_ui/fileicon_source.h"
#include "chrome/browser/metrics/user_metrics.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/jstemplate_builder.h"
#include "chrome/common/time_format.h"
#include "chrome/common/url_constants.h"
#include "grit/browser_resources.h"
#include "grit/generated_resources.h"
#if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
// TODO(port): re-enable when download_util is ported
#include "chrome/browser/download/download_util.h"
#else
#include "chrome/common/temp_scaffolding_stubs.h"
#endif
namespace {
// Maximum number of downloads to show. TODO(glen): Remove this and instead
// stuff the downloads down the pipe slowly.
static const int kMaxDownloads = 150;
// Sort DownloadItems into descending order by their start time.
class DownloadItemSorter : public std::binary_function<DownloadItem*,
DownloadItem*,
bool> {
public:
bool operator()(const DownloadItem* lhs, const DownloadItem* rhs) {
return lhs->start_time() > rhs->start_time();
}
};
} // namespace
DownloadsDOMHandler::DownloadsDOMHandler(DownloadManager* dlm)
: search_text_(),
download_manager_(dlm) {
// Create our fileicon data source.
ChromeThread::PostTask(
ChromeThread::IO, FROM_HERE,
NewRunnableMethod(Singleton<ChromeURLDataManager>().get(),
&ChromeURLDataManager::AddDataSource,
new FileIconSource()));
}
DownloadsDOMHandler::~DownloadsDOMHandler() {
ClearDownloadItems();
download_manager_->RemoveObserver(this);
}
// DownloadsDOMHandler, public: -----------------------------------------------
void DownloadsDOMHandler::Init() {
download_manager_->AddObserver(this);
}
void DownloadsDOMHandler::RegisterMessages() {
dom_ui_->RegisterMessageCallback("getDownloads",
NewCallback(this, &DownloadsDOMHandler::HandleGetDownloads));
dom_ui_->RegisterMessageCallback("openFile",
NewCallback(this, &DownloadsDOMHandler::HandleOpenFile));
dom_ui_->RegisterMessageCallback("drag",
NewCallback(this, &DownloadsDOMHandler::HandleDrag));
dom_ui_->RegisterMessageCallback("saveDangerous",
NewCallback(this, &DownloadsDOMHandler::HandleSaveDangerous));
dom_ui_->RegisterMessageCallback("discardDangerous",
NewCallback(this, &DownloadsDOMHandler::HandleDiscardDangerous));
dom_ui_->RegisterMessageCallback("show",
NewCallback(this, &DownloadsDOMHandler::HandleShow));
dom_ui_->RegisterMessageCallback("togglepause",
NewCallback(this, &DownloadsDOMHandler::HandlePause));
dom_ui_->RegisterMessageCallback("resume",
NewCallback(this, &DownloadsDOMHandler::HandlePause));
dom_ui_->RegisterMessageCallback("remove",
NewCallback(this, &DownloadsDOMHandler::HandleRemove));
dom_ui_->RegisterMessageCallback("cancel",
NewCallback(this, &DownloadsDOMHandler::HandleCancel));
dom_ui_->RegisterMessageCallback("clearAll",
NewCallback(this, &DownloadsDOMHandler::HandleClearAll));
}
void DownloadsDOMHandler::OnDownloadUpdated(DownloadItem* download) {
// Get the id for the download. Our downloads are sorted latest to first,
// and the id is the index into that list. We should be careful of sync
// errors between the UI and the download_items_ list (we may wish to use
// something other than 'id').
OrderedDownloads::iterator it = find(download_items_.begin(),
download_items_.end(),
download);
if (it == download_items_.end())
return;
const int id = static_cast<int>(it - download_items_.begin());
ListValue results_value;
results_value.Append(CreateDownloadItemValue(download, id));
dom_ui_->CallJavascriptFunction(L"downloadUpdated", results_value);
}
// A download has started or been deleted. Query our DownloadManager for the
// current set of downloads, which will call us back in SetDownloads once it
// has retrieved them.
void DownloadsDOMHandler::ModelChanged() {
ClearDownloadItems();
download_manager_->GetDownloads(this, search_text_);
}
void DownloadsDOMHandler::SetDownloads(
std::vector<DownloadItem*>& downloads) {
ClearDownloadItems();
// Swap new downloads in.
download_items_.swap(downloads);
sort(download_items_.begin(), download_items_.end(), DownloadItemSorter());
// Scan for any in progress downloads and add ourself to them as an observer.
for (OrderedDownloads::iterator it = download_items_.begin();
it != download_items_.end(); ++it) {
if (static_cast<int>(it - download_items_.begin()) > kMaxDownloads)
break;
DownloadItem* download = *it;
if (download->state() == DownloadItem::IN_PROGRESS) {
// We want to know what happens as the download progresses.
download->AddObserver(this);
} else if (download->safety_state() == DownloadItem::DANGEROUS) {
// We need to be notified when the user validates the dangerous download.
download->AddObserver(this);
}
}
SendCurrentDownloads();
}
void DownloadsDOMHandler::HandleGetDownloads(const Value* value) {
std::wstring new_search = ExtractStringValue(value);
if (search_text_.compare(new_search) != 0) {
search_text_ = new_search;
ClearDownloadItems();
download_manager_->GetDownloads(this, search_text_);
} else {
SendCurrentDownloads();
}
}
void DownloadsDOMHandler::HandleOpenFile(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
download_manager_->OpenDownload(file, NULL);
}
void DownloadsDOMHandler::HandleDrag(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file) {
IconManager* im = g_browser_process->icon_manager();
SkBitmap* icon = im->LookupIcon(file->full_path(), IconLoader::NORMAL);
gfx::NativeView view = dom_ui_->tab_contents()->GetNativeView();
download_util::DragDownload(file, icon, view);
}
}
void DownloadsDOMHandler::HandleSaveDangerous(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
download_manager_->DangerousDownloadValidated(file);
}
void DownloadsDOMHandler::HandleDiscardDangerous(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
file->Remove(true);
}
void DownloadsDOMHandler::HandleShow(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
download_manager_->ShowDownloadInShell(file);
}
void DownloadsDOMHandler::HandlePause(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
file->TogglePause();
}
void DownloadsDOMHandler::HandleRemove(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
file->Remove(false);
}
void DownloadsDOMHandler::HandleCancel(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
file->Cancel(true);
}
void DownloadsDOMHandler::HandleClearAll(const Value* value) {
download_manager_->RemoveAllDownloads();
}
// DownloadsDOMHandler, private: ----------------------------------------------
void DownloadsDOMHandler::SendCurrentDownloads() {
ListValue results_value;
for (OrderedDownloads::iterator it = download_items_.begin();
it != download_items_.end(); ++it) {
int index = static_cast<int>(it - download_items_.begin());
if (index > kMaxDownloads)
break;
results_value.Append(CreateDownloadItemValue(*it, index));
}
dom_ui_->CallJavascriptFunction(L"downloadsList", results_value);
}
DictionaryValue* DownloadsDOMHandler::CreateDownloadItemValue(
DownloadItem* download, int id) {
DictionaryValue* file_value = new DictionaryValue();
file_value->SetInteger(L"started",
static_cast<int>(download->start_time().ToTimeT()));
file_value->SetString(L"since_string",
TimeFormat::RelativeDate(download->start_time(), NULL));
file_value->SetString(L"date_string",
base::TimeFormatShortDate(download->start_time()));
file_value->SetInteger(L"id", id);
file_value->SetString(L"file_path", download->full_path().ToWStringHack());
// Keep file names as LTR.
std::wstring file_name = download->GetFileName().ToWStringHack();
if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT)
l10n_util::WrapStringWithLTRFormatting(&file_name);
file_value->SetString(L"file_name", file_name);
file_value->SetString(L"url", download->url().spec());
if (download->state() == DownloadItem::IN_PROGRESS) {
if (download->safety_state() == DownloadItem::DANGEROUS) {
file_value->SetString(L"state", L"DANGEROUS");
} else if (download->is_paused()) {
file_value->SetString(L"state", L"PAUSED");
} else {
file_value->SetString(L"state", L"IN_PROGRESS");
}
file_value->SetString(L"progress_status_text",
GetProgressStatusText(download));
file_value->SetInteger(L"percent",
static_cast<int>(download->PercentComplete()));
file_value->SetInteger(L"received",
static_cast<int>(download->received_bytes()));
} else if (download->state() == DownloadItem::CANCELLED) {
file_value->SetString(L"state", L"CANCELLED");
} else if (download->state() == DownloadItem::COMPLETE) {
if (download->safety_state() == DownloadItem::DANGEROUS) {
file_value->SetString(L"state", L"DANGEROUS");
} else {
file_value->SetString(L"state", L"COMPLETE");
}
}
file_value->SetInteger(L"total",
static_cast<int>(download->total_bytes()));
return file_value;
}
void DownloadsDOMHandler::ClearDownloadItems() {
// Clear out old state and remove self as observer for each download.
for (OrderedDownloads::iterator it = download_items_.begin();
it != download_items_.end(); ++it) {
(*it)->RemoveObserver(this);
}
download_items_.clear();
}
DownloadItem* DownloadsDOMHandler::GetDownloadById(int id) {
for (OrderedDownloads::iterator it = download_items_.begin();
it != download_items_.end(); ++it) {
if (static_cast<int>(it - download_items_.begin() == id)) {
return (*it);
}
}
return NULL;
}
DownloadItem* DownloadsDOMHandler::GetDownloadByValue(const Value* value) {
int id;
if (ExtractIntegerValue(value, &id)) {
return GetDownloadById(id);
}
return NULL;
}
std::wstring DownloadsDOMHandler::GetProgressStatusText(
DownloadItem* download) {
int64 total = download->total_bytes();
int64 size = download->received_bytes();
DataUnits amount_units = GetByteDisplayUnits(size);
std::wstring received_size = FormatBytes(size, amount_units, true);
std::wstring amount = received_size;
// Adjust both strings for the locale direction since we don't yet know which
// string we'll end up using for constructing the final progress string.
std::wstring amount_localized;
if (l10n_util::AdjustStringForLocaleDirection(amount, &amount_localized)) {
amount.assign(amount_localized);
received_size.assign(amount_localized);
}
if (total) {
amount_units = GetByteDisplayUnits(total);
std::wstring total_text = FormatBytes(total, amount_units, true);
std::wstring total_text_localized;
if (l10n_util::AdjustStringForLocaleDirection(total_text,
&total_text_localized))
total_text.assign(total_text_localized);
amount = l10n_util::GetStringF(IDS_DOWNLOAD_TAB_PROGRESS_SIZE,
received_size,
total_text);
} else {
amount.assign(received_size);
}
amount_units = GetByteDisplayUnits(download->CurrentSpeed());
std::wstring speed_text = FormatSpeed(download->CurrentSpeed(),
amount_units, true);
std::wstring speed_text_localized;
if (l10n_util::AdjustStringForLocaleDirection(speed_text,
&speed_text_localized))
speed_text.assign(speed_text_localized);
base::TimeDelta remaining;
std::wstring time_remaining;
if (download->is_paused())
time_remaining = l10n_util::GetString(IDS_DOWNLOAD_PROGRESS_PAUSED);
else if (download->TimeRemaining(&remaining))
time_remaining = TimeFormat::TimeRemaining(remaining);
if (time_remaining.empty()) {
return l10n_util::GetStringF(IDS_DOWNLOAD_TAB_PROGRESS_STATUS_TIME_UNKNOWN,
speed_text, amount);
}
return l10n_util::GetStringF(IDS_DOWNLOAD_TAB_PROGRESS_STATUS, speed_text,
amount, time_remaining);
}
|