blob: 9461dd444fd3a91eb3fe385049a6e951548fa532 (
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
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
|
// 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.
#ifndef CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
#include <map>
#include <set>
#include <string>
#include "base/file_path.h"
#include "base/memory/singleton.h"
#include "base/string16.h"
#include "base/values.h"
#include "chrome/browser/extensions/extension_function.h"
#include "content/public/browser/download_id.h"
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager.h"
class DownloadFileIconExtractor;
class DownloadQuery;
namespace content {
class ResourceContext;
class ResourceDispatcherHost;
}
// Functions in the chrome.downloads namespace facilitate
// controlling downloads from extensions. See the full API doc at
// http://goo.gl/6hO1n
namespace download_extension_errors {
// Errors that can be returned through chrome.extension.lastError.message.
extern const char kGenericError[];
extern const char kIconNotFoundError[];
extern const char kInvalidDangerTypeError[];
extern const char kInvalidFilterError[];
extern const char kInvalidOperationError[];
extern const char kInvalidOrderByError[];
extern const char kInvalidQueryLimit[];
extern const char kInvalidStateError[];
extern const char kInvalidURLError[];
extern const char kNotImplementedError[];
} // namespace download_extension_errors
class DownloadsDownloadFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.download");
DownloadsDownloadFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsDownloadFunction();
private:
void OnStarted(content::DownloadId dl_id, net::Error error);
DISALLOW_COPY_AND_ASSIGN(DownloadsDownloadFunction);
};
class DownloadsSearchFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.search");
DownloadsSearchFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsSearchFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsSearchFunction);
};
class DownloadsPauseFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.pause");
DownloadsPauseFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsPauseFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsPauseFunction);
};
class DownloadsResumeFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.resume");
DownloadsResumeFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsResumeFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsResumeFunction);
};
class DownloadsCancelFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.cancel");
DownloadsCancelFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsCancelFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsCancelFunction);
};
class DownloadsEraseFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.erase");
DownloadsEraseFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsEraseFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsEraseFunction);
};
class DownloadsSetDestinationFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.setDestination");
DownloadsSetDestinationFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsSetDestinationFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsSetDestinationFunction);
};
class DownloadsAcceptDangerFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.acceptDanger");
DownloadsAcceptDangerFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsAcceptDangerFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsAcceptDangerFunction);
};
class DownloadsShowFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.show");
DownloadsShowFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsShowFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsShowFunction);
};
class DownloadsOpenFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.open");
DownloadsOpenFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsOpenFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsOpenFunction);
};
class DownloadsDragFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.drag");
DownloadsDragFunction();
virtual bool RunImpl() OVERRIDE;
protected:
virtual ~DownloadsDragFunction();
private:
DISALLOW_COPY_AND_ASSIGN(DownloadsDragFunction);
};
class DownloadsGetFileIconFunction : public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("downloads.getFileIcon");
DownloadsGetFileIconFunction();
virtual bool RunImpl() OVERRIDE;
void SetIconExtractorForTesting(DownloadFileIconExtractor* extractor);
protected:
virtual ~DownloadsGetFileIconFunction();
private:
void OnIconURLExtracted(const std::string& url);
FilePath path_;
int icon_size_;
scoped_ptr<DownloadFileIconExtractor> icon_extractor_;
DISALLOW_COPY_AND_ASSIGN(DownloadsGetFileIconFunction);
};
// Observes a single DownloadManager and many DownloadItems and dispatches
// onCreated and onErased events.
class ExtensionDownloadsEventRouter : public content::DownloadManager::Observer,
public content::DownloadItem::Observer {
public:
explicit ExtensionDownloadsEventRouter(
Profile* profile, content::DownloadManager* manager);
virtual ~ExtensionDownloadsEventRouter();
// content::DownloadManager::Observer
virtual void OnDownloadCreated(content::DownloadManager* manager,
content::DownloadItem* download_item) OVERRIDE;
virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE;
// content::DownloadItem::Observer
virtual void OnDownloadUpdated(content::DownloadItem* download) OVERRIDE;
virtual void OnDownloadOpened(content::DownloadItem* download) OVERRIDE;
// Used for testing.
struct DownloadsNotificationSource {
std::string event_name;
Profile* profile;
};
private:
struct OnChangedStat {
OnChangedStat();
~OnChangedStat();
int fires;
int total;
};
typedef std::map<int, content::DownloadItem*> ItemMap;
typedef std::map<int, base::DictionaryValue*> ItemJsonMap;
typedef std::map<int, OnChangedStat*> OnChangedStatMap;
void DispatchEvent(const char* event_name, base::Value* json_arg);
Profile* profile_;
content::DownloadManager* manager_;
ItemMap downloads_;
ItemJsonMap item_jsons_;
OnChangedStatMap on_changed_stats_;
DISALLOW_COPY_AND_ASSIGN(ExtensionDownloadsEventRouter);
};
#endif // CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
|