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
|
// Copyright (c) 2011 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.
//
// Download utilities.
#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/string16.h"
#include "ui/gfx/native_widget_types.h"
#if defined(TOOLKIT_VIEWS)
#include "views/view.h"
#endif
class BaseDownloadItemModel;
class CrxInstaller;
class DownloadItem;
class DownloadManager;
class GURL;
class Profile;
class ResourceDispatcherHost;
class SkBitmap;
struct DownloadCreateInfo;
struct DownloadSaveInfo;
namespace base {
class DictionaryValue;
class TimeTicks;
}
namespace content {
class ResourceContext;
}
namespace gfx {
class Canvas;
class Image;
}
namespace download_util {
// Download temporary file creation --------------------------------------------
// Return the default download directory.
const FilePath& GetDefaultDownloadDirectory();
// Create a temporary file for a download in the user's default download
// directory and return true if was successful in creating the file.
bool CreateTemporaryFileForDownload(FilePath* path);
// Return true if the |download_path| is dangerous path.
bool DownloadPathIsDangerous(const FilePath& download_path);
// Generate a filename based on the response from the server. Similar
// in operation to net::GenerateFileName(), but uses a localized
// default name.
void GenerateFileNameFromRequest(const DownloadItem& download_item,
FilePath* generated_name);
// Generate a filename based on the URL, a suggested name and a MIME
// type. Similar in operation to net::GenerateFileName(), but uses a
// localized default name.
void GenerateFileNameFromSuggestedName(const GURL& url,
const std::string& suggested_name,
const std::string& mime_type,
FilePath* generated_name);
// Download progress animations ------------------------------------------------
// Arc sweep angle for use with downloads of unknown size
const int kUnknownAngleDegrees = 50;
// Rate of progress for use with downloads of unknown size
const int kUnknownIncrementDegrees = 12;
// Start angle for downloads with known size (midnight position)
const int kStartAngleDegrees = -90;
// A circle
const int kMaxDegrees = 360;
// Progress animation timer period, in milliseconds.
const int kProgressRateMs = 150;
// XP and Vista must support icons of this size.
const int kSmallIconSize = 16;
const int kBigIconSize = 32;
// Our progress halo around the icon.
int GetBigProgressIconSize();
const int kSmallProgressIconSize = 39;
const int kBigProgressIconSize = 52;
// The offset required to center the icon in the progress bitmaps.
int GetBigProgressIconOffset();
const int kSmallProgressIconOffset =
(kSmallProgressIconSize - kSmallIconSize) / 2;
enum PaintDownloadProgressSize {
SMALL = 0,
BIG
};
// We keep a count of how often various events occur in the
// histogram "Download.Counts".
enum DownloadCountTypes {
// The download was initiated by navigating to a URL (e.g. by user
// click).
INITIATED_BY_NAVIGATION_COUNT = 0,
// The download was initiated by invoking a context menu within a page.
INITIATED_BY_CONTEXT_MENU_COUNT,
// The download was initiated when the SavePackage system rejected
// a Save Page As ... by returning false from
// SavePackage::IsSaveableContents().
INITIATED_BY_SAVE_PACKAGE_FAILURE_COUNT,
// The download was initiated by a drag and drop from a drag-and-drop
// enabled web application.
INITIATED_BY_DRAG_N_DROP_COUNT,
// The download was initiated by explicit RPC from the renderer process
// (e.g. by Alt-click).
INITIATED_BY_RENDERER_COUNT,
// Downloads that made it to DownloadResourceHandler -- all of the
// above minus those blocked by DownloadThrottlingResourceHandler.
UNTHROTTLED_COUNT,
// Downloads that actually complete.
COMPLETED_COUNT,
// Downloads that are cancelled before completion (user action or error).
CANCELLED_COUNT,
// Downloads that are started. Should be equal to UNTHROTTLED_COUNT.
START_COUNT,
// Downloads that were interrupted by the OS.
INTERRUPTED_COUNT,
DOWNLOAD_COUNT_TYPES_LAST_ENTRY
};
// Increment one of the above counts.
void RecordDownloadCount(DownloadCountTypes type);
// Record COMPLETED_COUNT and how long the download took.
void RecordDownloadCompleted(const base::TimeTicks& start);
// Record INTERRUPTED_COUNT, |error|, |received| and |total| bytes.
void RecordDownloadInterrupted(int error, int64 received, int64 total);
// Records the mime type of the download.
void RecordDownloadMimeType(const std::string& mime_type);
// Paint the common download animation progress foreground and background,
// clipping the foreground to 'percent' full. If percent is -1, then we don't
// know the total size, so we just draw a rotating segment until we're done.
//
// |containing_view| is the View subclass within which the progress animation
// is drawn (generally either DownloadItemTabView or DownloadItemView). We
// require the containing View in addition to the canvas because if we are
// drawing in a right-to-left locale, we need to mirror the position of the
// progress animation within the containing View.
void PaintDownloadProgress(gfx::Canvas* canvas,
#if defined(TOOLKIT_VIEWS)
views::View* containing_view,
#endif
int origin_x,
int origin_y,
int start_angle,
int percent,
PaintDownloadProgressSize size);
void PaintDownloadComplete(gfx::Canvas* canvas,
#if defined(TOOLKIT_VIEWS)
views::View* containing_view,
#endif
int origin_x,
int origin_y,
double animation_progress,
PaintDownloadProgressSize size);
void PaintDownloadInterrupted(gfx::Canvas* canvas,
#if defined(TOOLKIT_VIEWS)
views::View* containing_view,
#endif
int origin_x,
int origin_y,
double animation_progress,
PaintDownloadProgressSize size);
// Drag support ----------------------------------------------------------------
// Helper function for download views to use when acting as a drag source for a
// DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view|
// is only required for Mac OS X, elsewhere it can be NULL.
void DragDownload(const DownloadItem* download,
gfx::Image* icon,
gfx::NativeView view);
// Helpers ---------------------------------------------------------------------
// Creates a representation of a download in a format that the downloads
// HTML page can understand.
base::DictionaryValue* CreateDownloadItemValue(DownloadItem* download, int id);
// Get the localized status text for an in-progress download.
string16 GetProgressStatusText(DownloadItem* download);
// Update the application icon to indicate overall download progress.
// |download_count| is the number of downloads currently in progress. If
// |progress_known| is false, then at least one download is of indeterminate
// size and |progress| is invalid, otherwise |progress| indicates the overall
// download progress (float value from 0..1).
void UpdateAppIconDownloadProgress(int download_count,
bool progress_known,
float progress);
// Appends the passed the number between parenthesis the path before the
// extension.
void AppendNumberToPath(FilePath* path, int number);
// Attempts to find a number that can be appended to that path to make it
// unique. If |path| does not exist, 0 is returned. If it fails to find such
// a number, -1 is returned.
int GetUniquePathNumber(const FilePath& path);
// Download the URL. Must be called on the IO thread.
void DownloadUrl(const GURL& url,
const GURL& referrer,
const std::string& referrer_charset,
const DownloadSaveInfo& save_info,
ResourceDispatcherHost* rdh,
int render_process_host_id,
int render_view_id,
const content::ResourceContext* context);
// Sends a notification on downloads being initiated
// Must be called on the UI thread.
void NotifyDownloadInitiated(int render_process_id, int render_view_id);
// Same as GetUniquePathNumber, except that it also checks the existence
// of its .crdownload intermediate path.
// If |path| does not exist, 0 is returned. If it fails to find such
// a number, -1 is returned.
int GetUniquePathNumberWithCrDownload(const FilePath& path);
// Returns a .crdownload intermediate path for the |suggested_path|.
FilePath GetCrDownloadPath(const FilePath& suggested_path);
} // namespace download_util
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
|