blob: cef1c47f4d02ac78454c7e4cac092e74adeabc62 (
plain)
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
|
// Copyright 2017 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.
#ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_JOB_H_
#define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_JOB_H_
#include "base/macros.h"
#include "base/time/time.h"
#include "content/browser/byte_stream.h"
#include "content/common/content_export.h"
#include "content/public/browser/download_danger_type.h"
#include "content/public/browser/download_interrupt_reasons.h"
namespace content {
class DownloadItemImpl;
class WebContents;
// DownloadJob lives on UI thread and subclasses implement actual download logic
// and interact with DownloadItemImpl.
// The base class is a friend class of DownloadItemImpl.
class CONTENT_EXPORT DownloadJob {
public:
explicit DownloadJob(DownloadItemImpl* download_item);
virtual ~DownloadJob();
// Download operations.
virtual void Start() = 0;
virtual void Cancel(bool user_cancel) = 0;
virtual void Pause();
virtual void Resume(bool resume_request);
bool is_paused() const { return is_paused_; }
// Return the WebContents associated with the download. Usually used to
// associate a browser window for any UI that needs to be displayed to the
// user.
// Or return nullptr if the download is not associated with an active
// WebContents.
virtual WebContents* GetWebContents() const = 0;
// Returns whether the download is parallelizable. The download may not send
// parallel requests as it can be disabled through flags.
virtual bool IsParallelizable() const;
// Cancel a particular request starts from |offset|, while the download is not
// canceled. Used in parallel download.
// TODO(xingliu): Remove this function if download job owns download file.
virtual void CancelRequestWithOffset(int64_t offset);
protected:
void StartDownload() const;
// Add a byte stream to the download sink. Return false if we start to
// destroy download file.
bool AddByteStream(std::unique_ptr<ByteStreamReader> stream_reader,
int64_t offset,
int64_t length);
DownloadItemImpl* download_item_;
private:
// If the download progress is paused by the user.
bool is_paused_;
DISALLOW_COPY_AND_ASSIGN(DownloadJob);
};
} // namespace content
#endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_JOB_H_
|