1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Each download is represented by a DownloadItem, and all DownloadItems
6 // are owned by the DownloadManager which maintains a global list of all
7 // downloads. DownloadItems are created when a user initiates a download,
8 // and exist for the duration of the browser life time.
10 // Download observers:
11 // DownloadItem::Observer:
12 // - allows observers to receive notifications about one download from start
14 // Use AddObserver() / RemoveObserver() on the appropriate download object to
15 // receive state updates.
17 #ifndef CONTENT_PUBLIC_BROWSER_DOWNLOAD_ITEM_H_
18 #define CONTENT_PUBLIC_BROWSER_DOWNLOAD_ITEM_H_
24 #include "base/callback_forward.h"
25 #include "base/files/file_path.h"
26 #include "base/strings/string16.h"
27 #include "base/supports_user_data.h"
28 #include "content/public/browser/download_danger_type.h"
29 #include "content/public/browser/download_interrupt_reasons.h"
30 #include "content/public/common/page_transition_types.h"
44 class DownloadManager
;
47 // One DownloadItem per download. This is the model class that stores all the
48 // state for a download. Multiple views, such as a tab's download shelf and the
49 // Destination tab's download view, may refer to a given DownloadItem.
51 // This is intended to be used only on the UI thread.
52 class CONTENT_EXPORT DownloadItem
: public base::SupportsUserData
{
55 // Download is actively progressing.
58 // Download is completely finished.
61 // Download has been cancelled.
64 // This state indicates that the download has been interrupted.
71 // How the final target path should be used.
72 enum TargetDisposition
{
73 TARGET_DISPOSITION_OVERWRITE
, // Overwrite if the target already exists.
74 TARGET_DISPOSITION_PROMPT
// Prompt the user for the actual
76 // TARGET_DISPOSITION_OVERWRITE.
79 // Callback used with AcquireFileAndDeleteDownload().
80 typedef base::Callback
<void(const base::FilePath
&)> AcquireFileCallback
;
82 static const char kEmptyFileHash
[];
84 // Interface that observers of a particular download must implement in order
85 // to receive updates to the download's status.
86 class CONTENT_EXPORT Observer
{
88 virtual void OnDownloadUpdated(DownloadItem
* download
) {}
89 virtual void OnDownloadOpened(DownloadItem
* download
) {}
90 virtual void OnDownloadRemoved(DownloadItem
* download
) {}
92 // Called when the download is being destroyed. This happens after
93 // every OnDownloadRemoved() as well as when the DownloadManager is going
95 virtual void OnDownloadDestroyed(DownloadItem
* download
) {}
98 virtual ~Observer() {}
101 virtual ~DownloadItem() {}
103 // Observation ---------------------------------------------------------------
105 virtual void AddObserver(DownloadItem::Observer
* observer
) = 0;
106 virtual void RemoveObserver(DownloadItem::Observer
* observer
) = 0;
107 virtual void UpdateObservers() = 0;
109 // User Actions --------------------------------------------------------------
111 // Called when the user has validated the download of a dangerous file.
112 virtual void ValidateDangerousDownload() = 0;
114 // Called to acquire a dangerous download and remove the DownloadItem from
115 // views and history. |callback| will be invoked on the UI thread with the
116 // path to the downloaded file. The caller is responsible for cleanup.
117 // Note: It is important for |callback| to be valid since the downloaded file
118 // will not be cleaned up if the callback fails.
119 virtual void StealDangerousDownload(const AcquireFileCallback
& callback
) = 0;
121 // Pause a download. Will have no effect if the download is already
123 virtual void Pause() = 0;
125 // Resume a download that has been paused or interrupted. Will have no effect
126 // if the download is neither.
127 virtual void Resume() = 0;
129 // Cancel the download operation. We need to distinguish between cancels at
130 // exit (DownloadManager destructor) from user interface initiated cancels
131 // because at exit, the history system may not exist, and any updates to it
132 // require AddRef'ing the DownloadManager in the destructor which results in
133 // a DCHECK failure. Set |user_cancel| to false when canceling from at
134 // exit to prevent this crash. This may result in a difference between the
135 // downloaded file's size on disk, and what the history system's last record
136 // of it is. At worst, we'll end up re-downloading a small portion of the file
137 // when resuming a download (assuming the server supports byte ranges).
138 virtual void Cancel(bool user_cancel
) = 0;
140 // Removes the download from the views and history. If the download was
141 // in-progress or interrupted, then the intermediate file will also be
143 virtual void Remove() = 0;
145 // Open the file associated with this download. If the download is
146 // still in progress, marks the download to be opened when it is complete.
147 virtual void OpenDownload() = 0;
149 // Show the download via the OS shell.
150 virtual void ShowDownloadInShell() = 0;
152 // State accessors -----------------------------------------------------------
154 virtual int32
GetId() const = 0;
155 virtual DownloadId
GetGlobalId() const = 0;
156 virtual DownloadState
GetState() const = 0;
158 // Returns the most recent interrupt reason for this download. Returns
159 // DOWNLOAD_INTERRUPT_REASON_NONE if there is no previous interrupt reason.
160 // Cancelled downloads return DOWNLOAD_INTERRUPT_REASON_USER_CANCELLED. If
161 // the download was resumed, then the return value is the interrupt reason
162 // prior to resumption.
163 virtual DownloadInterruptReason
GetLastReason() const = 0;
165 virtual bool IsPaused() const = 0;
166 virtual bool IsTemporary() const = 0;
168 // Returns true if the download can be resumed. A download can be resumed if
169 // an in-progress download was paused or if an interrupted download requires
170 // user-interaction to resume.
171 virtual bool CanResume() const = 0;
173 // Returns true if the download is in a terminal state. This includes
174 // completed downloads, cancelled downloads, and interrupted downloads that
176 virtual bool IsDone() const = 0;
178 // Origin State accessors -------------------------------------------------
180 virtual const GURL
& GetURL() const = 0;
181 virtual const std::vector
<GURL
>& GetUrlChain() const = 0;
182 virtual const GURL
& GetOriginalUrl() const = 0;
183 virtual const GURL
& GetReferrerUrl() const = 0;
184 virtual std::string
GetSuggestedFilename() const = 0;
185 virtual std::string
GetContentDisposition() const = 0;
186 virtual std::string
GetMimeType() const = 0;
187 virtual std::string
GetOriginalMimeType() const = 0;
188 virtual std::string
GetRemoteAddress() const = 0;
189 virtual bool HasUserGesture() const = 0;
190 virtual PageTransition
GetTransitionType() const = 0;
191 virtual const std::string
& GetLastModifiedTime() const = 0;
192 virtual const std::string
& GetETag() const = 0;
193 virtual bool IsSavePackageDownload() const = 0;
195 // Destination State accessors --------------------------------------------
197 // Full path to the downloaded or downloading file. This is the path to the
198 // physical file, if one exists. It should be considered a hint; changes to
199 // this value and renames of the file on disk are not atomic with each other.
200 // May be empty if the in-progress path hasn't been determined yet or if the
201 // download was interrupted.
203 // DO NOT USE THIS METHOD to access the target path of the DownloadItem. Use
204 // GetTargetFilePath() instead. While the download is in progress, the
205 // intermediate file named by GetFullPath() may be renamed or disappear
206 // completely on the FILE thread. The path may also be reset to empty when the
207 // download is interrupted.
208 virtual const base::FilePath
& GetFullPath() const = 0;
210 // Target path of an in-progress download. We may be downloading to a
211 // temporary or intermediate file (specified by GetFullPath()); this is the
212 // name we will use once the download completes.
213 // May be empty if the target path hasn't yet been determined.
214 virtual const base::FilePath
& GetTargetFilePath() const = 0;
216 // If the download forced a path rather than requesting name determination,
217 // return the path requested.
218 virtual const base::FilePath
& GetForcedFilePath() const = 0;
220 // Returns the file-name that should be reported to the user. If a display
221 // name has been explicitly set using SetDisplayName(), this function returns
222 // that display name. Otherwise returns the final target filename.
223 virtual base::FilePath
GetFileNameToReportUser() const = 0;
225 virtual TargetDisposition
GetTargetDisposition() const = 0;
227 // Final hash of completely downloaded file; not valid if
228 // GetState() != COMPLETED.
229 virtual const std::string
& GetHash() const = 0;
231 // Intermediate hash state, for persisting partial downloads.
232 virtual const std::string
& GetHashState() const = 0;
234 // True if the file associated with the download has been removed by
236 virtual bool GetFileExternallyRemoved() const = 0;
238 // True if the file that will be written by the download is dangerous
239 // and we will require a call to ValidateDangerousDownload() to complete.
240 // False if the download is safe or that function has been called.
241 virtual bool IsDangerous() const = 0;
243 // Why |safety_state_| is not SAFE.
244 virtual DownloadDangerType
GetDangerType() const = 0;
246 // Progress State accessors -----------------------------------------------
248 // Simple calculation of the amount of time remaining to completion. Fills
249 // |*remaining| with the amount of time remaining if successful. Fails and
250 // returns false if we do not have the number of bytes or the speed so can
252 virtual bool TimeRemaining(base::TimeDelta
* remaining
) const = 0;
254 // Simple speed estimate in bytes/s
255 virtual int64
CurrentSpeed() const = 0;
257 // Rough percent complete, -1 means we don't know (== we didn't receive a
259 virtual int PercentComplete() const = 0;
261 // Returns true if this download has saved all of its data.
262 virtual bool AllDataSaved() const = 0;
264 virtual int64
GetTotalBytes() const = 0;
265 virtual int64
GetReceivedBytes() const = 0;
266 virtual base::Time
GetStartTime() const = 0;
267 virtual base::Time
GetEndTime() const = 0;
269 // Open/Show State accessors ----------------------------------------------
271 // Returns true if it is OK to open a folder which this file is inside.
272 virtual bool CanShowInFolder() = 0;
274 // Returns true if it is OK to open the download.
275 virtual bool CanOpenDownload() = 0;
277 // Tests if a file type should be opened automatically.
278 virtual bool ShouldOpenFileBasedOnExtension() = 0;
280 // Returns true if the download will be auto-opened when complete.
281 virtual bool GetOpenWhenComplete() const = 0;
283 // Returns true if the download has been auto-opened by the system.
284 virtual bool GetAutoOpened() = 0;
286 // Returns true if the download has been opened.
287 virtual bool GetOpened() const = 0;
289 // Misc State accessors ---------------------------------------------------
291 virtual BrowserContext
* GetBrowserContext() const = 0;
292 virtual WebContents
* GetWebContents() const = 0;
294 // External state transitions/setters ----------------------------------------
295 // TODO(rdsmith): These should all be removed; the download item should
296 // control its own state transitions.
298 // Called if a check of the download contents was performed and the results of
299 // the test are available. This should only be called after AllDataSaved() is
301 virtual void OnContentCheckCompleted(DownloadDangerType danger_type
) = 0;
303 // Mark the download to be auto-opened when completed.
304 virtual void SetOpenWhenComplete(bool open
) = 0;
306 // Mark the download as temporary (not visible in persisted store or
307 // SearchDownloads(), removed from main UI upon completion).
308 virtual void SetIsTemporary(bool temporary
) = 0;
310 // Mark the download as having been opened (without actually opening it).
311 virtual void SetOpened(bool opened
) = 0;
313 // Set a display name for the download that will be independent of the target
314 // filename. If |name| is not empty, then GetFileNameToReportUser() will
315 // return |name|. Has no effect on the final target filename.
316 virtual void SetDisplayName(const base::FilePath
& name
) = 0;
318 // Debug/testing -------------------------------------------------------------
319 virtual std::string
DebugString(bool verbose
) const = 0;
322 } // namespace content
324 #endif // CONTENT_PUBLIC_BROWSER_DOWNLOAD_ITEM_H_