blob: 1622c06b0a3416ba186bd776161fa2e751e532ef [file] [log] [blame]
Steve Howarda2709362010-07-02 17:12:48 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Steve Howardd58429f2010-09-27 16:32:39 -070017package android.app;
Steve Howarda2709362010-07-02 17:12:48 -070018
Ben Lin726bf6a2016-04-27 11:38:05 -070019import android.annotation.Nullable;
Jeff Sharkey32cd2fb2013-10-02 10:11:22 -070020import android.annotation.SdkConstant;
Jeff Sharkey4233f032017-07-15 12:58:38 -060021import android.annotation.SdkConstant.SdkConstantType;
Jeff Sharkey8d5d0652017-04-04 14:38:39 -060022import android.annotation.SystemApi;
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060023import android.annotation.SystemService;
Mathew Inwood61e8ae62018-08-14 14:17:44 +010024import android.annotation.UnsupportedAppUsage;
Steve Howarda2709362010-07-02 17:12:48 -070025import android.content.ContentResolver;
Steve Howardeca77fc2010-09-12 18:49:08 -070026import android.content.ContentUris;
Steve Howarda2709362010-07-02 17:12:48 -070027import android.content.ContentValues;
Steve Howard4f564cd2010-09-22 15:57:25 -070028import android.content.Context;
Ben Lin726bf6a2016-04-27 11:38:05 -070029import android.content.Intent;
Steve Howarda2709362010-07-02 17:12:48 -070030import android.database.Cursor;
31import android.database.CursorWrapper;
Steve Howardd58429f2010-09-27 16:32:39 -070032import android.net.ConnectivityManager;
Jeff Sharkey1a303952011-06-16 13:04:20 -070033import android.net.NetworkPolicyManager;
Steve Howardd58429f2010-09-27 16:32:39 -070034import android.net.Uri;
Jeff Sharkey60cfad82016-01-05 17:30:57 -070035import android.os.Build;
Steve Howard4f564cd2010-09-22 15:57:25 -070036import android.os.Environment;
Ben Lin726bf6a2016-04-27 11:38:05 -070037import android.os.FileUtils;
Steve Howarda2709362010-07-02 17:12:48 -070038import android.os.ParcelFileDescriptor;
39import android.provider.Downloads;
Ben Lin726bf6a2016-04-27 11:38:05 -070040import android.provider.MediaStore.Images;
Jeff Sharkey4233f032017-07-15 12:58:38 -060041import android.provider.Settings;
Vasu Nori0abbf802011-01-17 15:08:14 -080042import android.provider.Settings.SettingNotFoundException;
Vasu Noric0e50752011-01-20 17:57:54 -080043import android.text.TextUtils;
Steve Howard4f564cd2010-09-22 15:57:25 -070044import android.util.Pair;
Steve Howarda2709362010-07-02 17:12:48 -070045
Steve Howard4f564cd2010-09-22 15:57:25 -070046import java.io.File;
Steve Howarda2709362010-07-02 17:12:48 -070047import java.io.FileNotFoundException;
48import java.util.ArrayList;
Steve Howarda2709362010-07-02 17:12:48 -070049import java.util.List;
Steve Howarda2709362010-07-02 17:12:48 -070050
51/**
52 * The download manager is a system service that handles long-running HTTP downloads. Clients may
53 * request that a URI be downloaded to a particular destination file. The download manager will
54 * conduct the download in the background, taking care of HTTP interactions and retrying downloads
55 * after failures or across connectivity changes and system reboots.
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060056 * <p>
Steve Howard610c4352010-09-30 18:30:04 -070057 * Apps that request downloads through this API should register a broadcast receiver for
58 * {@link #ACTION_NOTIFICATION_CLICKED} to appropriately handle when the user clicks on a running
59 * download in a notification or from the downloads UI.
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060060 * <p>
Nicolas Falliere9530e3a2012-06-18 17:21:06 -070061 * Note that the application must have the {@link android.Manifest.permission#INTERNET}
62 * permission to use this class.
Steve Howarda2709362010-07-02 17:12:48 -070063 */
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060064@SystemService(Context.DOWNLOAD_SERVICE)
Steve Howarda2709362010-07-02 17:12:48 -070065public class DownloadManager {
Vasu Norie7be6bd2010-10-10 14:58:08 -070066
Steve Howarda2709362010-07-02 17:12:48 -070067 /**
68 * An identifier for a particular download, unique across the system. Clients use this ID to
69 * make subsequent calls related to the download.
70 */
Vasu Norief7e33b2010-10-20 13:26:02 -070071 public final static String COLUMN_ID = Downloads.Impl._ID;
Steve Howarda2709362010-07-02 17:12:48 -070072
73 /**
Steve Howard8651bd52010-08-03 12:35:32 -070074 * The client-supplied title for this download. This will be displayed in system notifications.
75 * Defaults to the empty string.
Steve Howarda2709362010-07-02 17:12:48 -070076 */
Vasu Norief7e33b2010-10-20 13:26:02 -070077 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
Steve Howarda2709362010-07-02 17:12:48 -070078
79 /**
80 * The client-supplied description of this download. This will be displayed in system
Steve Howard8651bd52010-08-03 12:35:32 -070081 * notifications. Defaults to the empty string.
Steve Howarda2709362010-07-02 17:12:48 -070082 */
Vasu Norief7e33b2010-10-20 13:26:02 -070083 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
Steve Howarda2709362010-07-02 17:12:48 -070084
85 /**
86 * URI to be downloaded.
87 */
Vasu Norief7e33b2010-10-20 13:26:02 -070088 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
Steve Howarda2709362010-07-02 17:12:48 -070089
90 /**
Steve Howard8651bd52010-08-03 12:35:32 -070091 * Internet Media Type of the downloaded file. If no value is provided upon creation, this will
92 * initially be null and will be filled in based on the server's response once the download has
93 * started.
Steve Howarda2709362010-07-02 17:12:48 -070094 *
95 * @see <a href="http://www.ietf.org/rfc/rfc1590.txt">RFC 1590, defining Media Types</a>
96 */
97 public final static String COLUMN_MEDIA_TYPE = "media_type";
98
99 /**
Steve Howard8651bd52010-08-03 12:35:32 -0700100 * Total size of the download in bytes. This will initially be -1 and will be filled in once
101 * the download starts.
Steve Howarda2709362010-07-02 17:12:48 -0700102 */
103 public final static String COLUMN_TOTAL_SIZE_BYTES = "total_size";
104
105 /**
106 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
Steve Howard8651bd52010-08-03 12:35:32 -0700107 * will be used here. Otherwise, the value will initially be null and will be filled in with a
108 * generated URI once the download has started.
Steve Howarda2709362010-07-02 17:12:48 -0700109 */
110 public final static String COLUMN_LOCAL_URI = "local_uri";
111
112 /**
Jeff Sharkey60cfad82016-01-05 17:30:57 -0700113 * Path to the downloaded file on disk.
114 * <p>
115 * Note that apps may not have filesystem permissions to directly access
116 * this path. Instead of trying to open this path directly, apps should use
117 * {@link ContentResolver#openFileDescriptor(Uri, String)} to gain access.
118 *
119 * @deprecated apps should transition to using
120 * {@link ContentResolver#openFileDescriptor(Uri, String)}
121 * instead.
Doug Zongkeree04af32010-10-08 13:42:16 -0700122 */
Jeff Sharkey60cfad82016-01-05 17:30:57 -0700123 @Deprecated
Doug Zongkeree04af32010-10-08 13:42:16 -0700124 public final static String COLUMN_LOCAL_FILENAME = "local_filename";
125
126 /**
Steve Howarda2709362010-07-02 17:12:48 -0700127 * Current status of the download, as one of the STATUS_* constants.
128 */
Vasu Norief7e33b2010-10-20 13:26:02 -0700129 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS;
Steve Howarda2709362010-07-02 17:12:48 -0700130
131 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700132 * Provides more detail on the status of the download. Its meaning depends on the value of
133 * {@link #COLUMN_STATUS}.
Steve Howarda2709362010-07-02 17:12:48 -0700134 *
Steve Howard3e8c1d32010-09-29 17:03:32 -0700135 * When {@link #COLUMN_STATUS} is {@link #STATUS_FAILED}, this indicates the type of error that
136 * occurred. If an HTTP error occurred, this will hold the HTTP status code as defined in RFC
137 * 2616. Otherwise, it will hold one of the ERROR_* constants.
138 *
139 * When {@link #COLUMN_STATUS} is {@link #STATUS_PAUSED}, this indicates why the download is
140 * paused. It will hold one of the PAUSED_* constants.
141 *
142 * If {@link #COLUMN_STATUS} is neither {@link #STATUS_FAILED} nor {@link #STATUS_PAUSED}, this
143 * column's value is undefined.
Steve Howarda2709362010-07-02 17:12:48 -0700144 *
145 * @see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1.1">RFC 2616
146 * status codes</a>
147 */
Steve Howard3e8c1d32010-09-29 17:03:32 -0700148 public final static String COLUMN_REASON = "reason";
Steve Howarda2709362010-07-02 17:12:48 -0700149
150 /**
151 * Number of bytes download so far.
152 */
153 public final static String COLUMN_BYTES_DOWNLOADED_SO_FAR = "bytes_so_far";
154
155 /**
Steve Howardadcb6972010-07-12 17:09:25 -0700156 * Timestamp when the download was last modified, in {@link System#currentTimeMillis
Steve Howarda2709362010-07-02 17:12:48 -0700157 * System.currentTimeMillis()} (wall clock time in UTC).
158 */
Steve Howardadcb6972010-07-12 17:09:25 -0700159 public final static String COLUMN_LAST_MODIFIED_TIMESTAMP = "last_modified_timestamp";
Steve Howarda2709362010-07-02 17:12:48 -0700160
Vasu Nori216fa222010-10-12 23:08:13 -0700161 /**
162 * The URI to the corresponding entry in MediaProvider for this downloaded entry. It is
163 * used to delete the entries from MediaProvider database when it is deleted from the
164 * downloaded list.
165 */
Vasu Norief7e33b2010-10-20 13:26:02 -0700166 public static final String COLUMN_MEDIAPROVIDER_URI = Downloads.Impl.COLUMN_MEDIAPROVIDER_URI;
Steve Howarda2709362010-07-02 17:12:48 -0700167
168 /**
Jeff Sharkeyb180a652013-09-23 14:23:41 -0700169 * @hide
170 */
171 public final static String COLUMN_ALLOW_WRITE = Downloads.Impl.COLUMN_ALLOW_WRITE;
172
173 /**
Steve Howarda2709362010-07-02 17:12:48 -0700174 * Value of {@link #COLUMN_STATUS} when the download is waiting to start.
175 */
176 public final static int STATUS_PENDING = 1 << 0;
177
178 /**
179 * Value of {@link #COLUMN_STATUS} when the download is currently running.
180 */
181 public final static int STATUS_RUNNING = 1 << 1;
182
183 /**
184 * Value of {@link #COLUMN_STATUS} when the download is waiting to retry or resume.
185 */
186 public final static int STATUS_PAUSED = 1 << 2;
187
188 /**
189 * Value of {@link #COLUMN_STATUS} when the download has successfully completed.
190 */
191 public final static int STATUS_SUCCESSFUL = 1 << 3;
192
193 /**
194 * Value of {@link #COLUMN_STATUS} when the download has failed (and will not be retried).
195 */
196 public final static int STATUS_FAILED = 1 << 4;
197
Steve Howarda2709362010-07-02 17:12:48 -0700198 /**
199 * Value of COLUMN_ERROR_CODE when the download has completed with an error that doesn't fit
200 * under any other error code.
201 */
202 public final static int ERROR_UNKNOWN = 1000;
203
204 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700205 * Value of {@link #COLUMN_REASON} when a storage issue arises which doesn't fit under any
Steve Howarda2709362010-07-02 17:12:48 -0700206 * other error code. Use the more specific {@link #ERROR_INSUFFICIENT_SPACE} and
207 * {@link #ERROR_DEVICE_NOT_FOUND} when appropriate.
208 */
209 public final static int ERROR_FILE_ERROR = 1001;
210
211 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700212 * Value of {@link #COLUMN_REASON} when an HTTP code was received that download manager
Steve Howarda2709362010-07-02 17:12:48 -0700213 * can't handle.
214 */
215 public final static int ERROR_UNHANDLED_HTTP_CODE = 1002;
216
217 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700218 * Value of {@link #COLUMN_REASON} when an error receiving or processing data occurred at
Steve Howarda2709362010-07-02 17:12:48 -0700219 * the HTTP level.
220 */
221 public final static int ERROR_HTTP_DATA_ERROR = 1004;
222
223 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700224 * Value of {@link #COLUMN_REASON} when there were too many redirects.
Steve Howarda2709362010-07-02 17:12:48 -0700225 */
226 public final static int ERROR_TOO_MANY_REDIRECTS = 1005;
227
228 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700229 * Value of {@link #COLUMN_REASON} when there was insufficient storage space. Typically,
Steve Howarda2709362010-07-02 17:12:48 -0700230 * this is because the SD card is full.
231 */
232 public final static int ERROR_INSUFFICIENT_SPACE = 1006;
233
234 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700235 * Value of {@link #COLUMN_REASON} when no external storage device was found. Typically,
Steve Howarda2709362010-07-02 17:12:48 -0700236 * this is because the SD card is not mounted.
237 */
238 public final static int ERROR_DEVICE_NOT_FOUND = 1007;
239
Steve Howardb8e07a52010-07-21 14:53:21 -0700240 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700241 * Value of {@link #COLUMN_REASON} when some possibly transient error occurred but we can't
Steve Howard33bbd122010-08-02 17:51:29 -0700242 * resume the download.
243 */
244 public final static int ERROR_CANNOT_RESUME = 1008;
245
246 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700247 * Value of {@link #COLUMN_REASON} when the requested destination file already exists (the
Steve Howarda9e87c92010-09-16 12:02:03 -0700248 * download manager will not overwrite an existing file).
249 */
250 public final static int ERROR_FILE_ALREADY_EXISTS = 1009;
251
252 /**
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700253 * Value of {@link #COLUMN_REASON} when the download has failed because of
254 * {@link NetworkPolicyManager} controls on the requesting application.
255 *
256 * @hide
257 */
258 public final static int ERROR_BLOCKED = 1010;
259
260 /**
Steve Howard3e8c1d32010-09-29 17:03:32 -0700261 * Value of {@link #COLUMN_REASON} when the download is paused because some network error
262 * occurred and the download manager is waiting before retrying the request.
263 */
264 public final static int PAUSED_WAITING_TO_RETRY = 1;
265
266 /**
267 * Value of {@link #COLUMN_REASON} when the download is waiting for network connectivity to
268 * proceed.
269 */
270 public final static int PAUSED_WAITING_FOR_NETWORK = 2;
271
272 /**
273 * Value of {@link #COLUMN_REASON} when the download exceeds a size limit for downloads over
274 * the mobile network and the download manager is waiting for a Wi-Fi connection to proceed.
275 */
276 public final static int PAUSED_QUEUED_FOR_WIFI = 3;
277
278 /**
279 * Value of {@link #COLUMN_REASON} when the download is paused for some other reason.
280 */
281 public final static int PAUSED_UNKNOWN = 4;
282
283 /**
Steve Howardb8e07a52010-07-21 14:53:21 -0700284 * Broadcast intent action sent by the download manager when a download completes.
285 */
Jeff Sharkey32cd2fb2013-10-02 10:11:22 -0700286 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Steve Howardb8e07a52010-07-21 14:53:21 -0700287 public final static String ACTION_DOWNLOAD_COMPLETE = "android.intent.action.DOWNLOAD_COMPLETE";
288
289 /**
Steve Howard610c4352010-09-30 18:30:04 -0700290 * Broadcast intent action sent by the download manager when the user clicks on a running
291 * download, either from a system notification or from the downloads UI.
Steve Howardb8e07a52010-07-21 14:53:21 -0700292 */
Jeff Sharkey32cd2fb2013-10-02 10:11:22 -0700293 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Steve Howardb8e07a52010-07-21 14:53:21 -0700294 public final static String ACTION_NOTIFICATION_CLICKED =
295 "android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED";
296
297 /**
Steve Howarde78fc182010-09-24 14:59:36 -0700298 * Intent action to launch an activity to display all downloads.
299 */
Jeff Sharkey32cd2fb2013-10-02 10:11:22 -0700300 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
Steve Howarde78fc182010-09-24 14:59:36 -0700301 public final static String ACTION_VIEW_DOWNLOADS = "android.intent.action.VIEW_DOWNLOADS";
302
303 /**
Vasu Norie5f92242011-01-24 16:12:20 -0800304 * Intent extra included with {@link #ACTION_VIEW_DOWNLOADS} to start DownloadApp in
305 * sort-by-size mode.
306 */
307 public final static String INTENT_EXTRAS_SORT_BY_SIZE =
308 "android.app.DownloadManager.extra_sortBySize";
309
310 /**
Steve Howardb8e07a52010-07-21 14:53:21 -0700311 * Intent extra included with {@link #ACTION_DOWNLOAD_COMPLETE} intents, indicating the ID (as a
312 * long) of the download that just completed.
313 */
314 public static final String EXTRA_DOWNLOAD_ID = "extra_download_id";
Steve Howarda2709362010-07-02 17:12:48 -0700315
Vasu Nori71b8c232010-10-27 15:22:19 -0700316 /**
317 * When clicks on multiple notifications are received, the following
318 * provides an array of download ids corresponding to the download notification that was
319 * clicked. It can be retrieved by the receiver of this
320 * Intent using {@link android.content.Intent#getLongArrayExtra(String)}.
321 */
322 public static final String EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS = "extra_click_download_ids";
323
Jeff Sharkey8d5d0652017-04-04 14:38:39 -0600324 /** {@hide} */
325 @SystemApi
326 public static final String ACTION_DOWNLOAD_COMPLETED =
327 "android.intent.action.DOWNLOAD_COMPLETED";
328
Vasu Norie16c43b2010-11-06 18:48:08 -0700329 /**
330 * columns to request from DownloadProvider.
331 * @hide
332 */
Mathew Inwood61e8ae62018-08-14 14:17:44 +0100333 @UnsupportedAppUsage
Vasu Norie16c43b2010-11-06 18:48:08 -0700334 public static final String[] UNDERLYING_COLUMNS = new String[] {
Steve Howarda2709362010-07-02 17:12:48 -0700335 Downloads.Impl._ID,
Vasu Norie69924f2010-11-15 13:10:11 -0800336 Downloads.Impl._DATA + " AS " + COLUMN_LOCAL_FILENAME,
Vasu Nori216fa222010-10-12 23:08:13 -0700337 Downloads.Impl.COLUMN_MEDIAPROVIDER_URI,
Vasu Nori5be894e2010-11-02 21:55:30 -0700338 Downloads.Impl.COLUMN_DESTINATION,
Vasu Norief7e33b2010-10-20 13:26:02 -0700339 Downloads.Impl.COLUMN_TITLE,
340 Downloads.Impl.COLUMN_DESCRIPTION,
341 Downloads.Impl.COLUMN_URI,
Vasu Norief7e33b2010-10-20 13:26:02 -0700342 Downloads.Impl.COLUMN_STATUS,
Steve Howarda9e87c92010-09-16 12:02:03 -0700343 Downloads.Impl.COLUMN_FILE_NAME_HINT,
Vasu Norie16c43b2010-11-06 18:48:08 -0700344 Downloads.Impl.COLUMN_MIME_TYPE + " AS " + COLUMN_MEDIA_TYPE,
345 Downloads.Impl.COLUMN_TOTAL_BYTES + " AS " + COLUMN_TOTAL_SIZE_BYTES,
346 Downloads.Impl.COLUMN_LAST_MODIFICATION + " AS " + COLUMN_LAST_MODIFIED_TIMESTAMP,
347 Downloads.Impl.COLUMN_CURRENT_BYTES + " AS " + COLUMN_BYTES_DOWNLOADED_SO_FAR,
Jeff Sharkeyb180a652013-09-23 14:23:41 -0700348 Downloads.Impl.COLUMN_ALLOW_WRITE,
Vasu Norie16c43b2010-11-06 18:48:08 -0700349 /* add the following 'computed' columns to the cursor.
350 * they are not 'returned' by the database, but their inclusion
351 * eliminates need to have lot of methods in CursorTranslator
352 */
353 "'placeholder' AS " + COLUMN_LOCAL_URI,
354 "'placeholder' AS " + COLUMN_REASON
Steve Howarda2709362010-07-02 17:12:48 -0700355 };
356
Steve Howarda2709362010-07-02 17:12:48 -0700357 /**
Steve Howard4f564cd2010-09-22 15:57:25 -0700358 * This class contains all the information necessary to request a new download. The URI is the
Steve Howarda2709362010-07-02 17:12:48 -0700359 * only required parameter.
Steve Howard4f564cd2010-09-22 15:57:25 -0700360 *
361 * Note that the default download destination is a shared volume where the system might delete
362 * your file if it needs to reclaim space for system use. If this is a problem, use a location
363 * on external storage (see {@link #setDestinationUri(Uri)}.
Steve Howarda2709362010-07-02 17:12:48 -0700364 */
365 public static class Request {
366 /**
Steve Howardb8e07a52010-07-21 14:53:21 -0700367 * Bit flag for {@link #setAllowedNetworkTypes} corresponding to
368 * {@link ConnectivityManager#TYPE_MOBILE}.
369 */
370 public static final int NETWORK_MOBILE = 1 << 0;
Steve Howarda2709362010-07-02 17:12:48 -0700371
Steve Howardb8e07a52010-07-21 14:53:21 -0700372 /**
373 * Bit flag for {@link #setAllowedNetworkTypes} corresponding to
374 * {@link ConnectivityManager#TYPE_WIFI}.
375 */
376 public static final int NETWORK_WIFI = 1 << 1;
377
HÃ¥kan3 Johansson011238b2012-02-08 21:13:35 +0100378 /**
379 * Bit flag for {@link #setAllowedNetworkTypes} corresponding to
380 * {@link ConnectivityManager#TYPE_BLUETOOTH}.
381 * @hide
382 */
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600383 @Deprecated
HÃ¥kan3 Johansson011238b2012-02-08 21:13:35 +0100384 public static final int NETWORK_BLUETOOTH = 1 << 2;
385
Mathew Inwood61e8ae62018-08-14 14:17:44 +0100386 @UnsupportedAppUsage
Steve Howardb8e07a52010-07-21 14:53:21 -0700387 private Uri mUri;
388 private Uri mDestinationUri;
Steve Howard4f564cd2010-09-22 15:57:25 -0700389 private List<Pair<String, String>> mRequestHeaders = new ArrayList<Pair<String, String>>();
390 private CharSequence mTitle;
391 private CharSequence mDescription;
Steve Howard4f564cd2010-09-22 15:57:25 -0700392 private String mMimeType;
Steve Howardb8e07a52010-07-21 14:53:21 -0700393 private int mAllowedNetworkTypes = ~0; // default to all network types allowed
Jeff Sharkey15ec7d62012-04-17 12:23:40 -0700394 private boolean mRoamingAllowed = true;
395 private boolean mMeteredAllowed = true;
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600396 private int mFlags = 0;
Steve Howard90fb15a2010-09-09 16:13:41 -0700397 private boolean mIsVisibleInDownloadsUi = true;
Vasu Nori5be894e2010-11-02 21:55:30 -0700398 private boolean mScannable = false;
Vasu Nori1cde3fb2010-11-05 11:02:52 -0700399 /** if a file is designated as a MediaScanner scannable file, the following value is
400 * stored in the database column {@link Downloads.Impl#COLUMN_MEDIA_SCANNED}.
401 */
402 private static final int SCANNABLE_VALUE_YES = 0;
403 // value of 1 is stored in the above column by DownloadProvider after it is scanned by
404 // MediaScanner
405 /** if a file is designated as a file that should not be scanned by MediaScanner,
406 * the following value is stored in the database column
407 * {@link Downloads.Impl#COLUMN_MEDIA_SCANNED}.
408 */
409 private static final int SCANNABLE_VALUE_NO = 2;
Steve Howarda2709362010-07-02 17:12:48 -0700410
411 /**
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700412 * This download is visible but only shows in the notifications
413 * while it's in progress.
414 */
415 public static final int VISIBILITY_VISIBLE = 0;
416
417 /**
418 * This download is visible and shows in the notifications while
419 * in progress and after completion.
420 */
421 public static final int VISIBILITY_VISIBLE_NOTIFY_COMPLETED = 1;
422
423 /**
424 * This download doesn't show in the UI or in the notifications.
425 */
426 public static final int VISIBILITY_HIDDEN = 2;
427
Vasu Norif9e85232011-02-10 14:59:54 -0800428 /**
429 * This download shows in the notifications after completion ONLY.
430 * It is usuable only with
Vasu Nori37281302011-03-07 11:25:01 -0800431 * {@link DownloadManager#addCompletedDownload(String, String,
432 * boolean, String, String, long, boolean)}.
Vasu Norif9e85232011-02-10 14:59:54 -0800433 */
434 public static final int VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION = 3;
435
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700436 /** can take any of the following values: {@link #VISIBILITY_HIDDEN}
Vasu Norif9e85232011-02-10 14:59:54 -0800437 * {@link #VISIBILITY_VISIBLE_NOTIFY_COMPLETED}, {@link #VISIBILITY_VISIBLE},
438 * {@link #VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION}
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700439 */
440 private int mNotificationVisibility = VISIBILITY_VISIBLE;
441
442 /**
Alex Klyubin66629bc2015-06-11 14:34:44 -0700443 * @param uri the HTTP or HTTPS URI to download.
Steve Howarda2709362010-07-02 17:12:48 -0700444 */
445 public Request(Uri uri) {
446 if (uri == null) {
447 throw new NullPointerException();
448 }
449 String scheme = uri.getScheme();
Paul Westbrook86a60192010-09-15 12:55:49 -0700450 if (scheme == null || (!scheme.equals("http") && !scheme.equals("https"))) {
451 throw new IllegalArgumentException("Can only download HTTP/HTTPS URIs: " + uri);
Steve Howarda2709362010-07-02 17:12:48 -0700452 }
453 mUri = uri;
454 }
455
Vasu Noric0e50752011-01-20 17:57:54 -0800456 Request(String uriString) {
457 mUri = Uri.parse(uriString);
458 }
459
Steve Howarda2709362010-07-02 17:12:48 -0700460 /**
Steve Howard4f564cd2010-09-22 15:57:25 -0700461 * Set the local destination for the downloaded file. Must be a file URI to a path on
Steve Howarda2709362010-07-02 17:12:48 -0700462 * external storage, and the calling application must have the WRITE_EXTERNAL_STORAGE
463 * permission.
Vasu Nori5be894e2010-11-02 21:55:30 -0700464 * <p>
465 * The downloaded file is not scanned by MediaScanner.
466 * But it can be made scannable by calling {@link #allowScanningByMediaScanner()}.
467 * <p>
Steve Howard4f564cd2010-09-22 15:57:25 -0700468 * By default, downloads are saved to a generated filename in the shared download cache and
469 * may be deleted by the system at any time to reclaim space.
Steve Howarda2709362010-07-02 17:12:48 -0700470 *
471 * @return this object
472 */
473 public Request setDestinationUri(Uri uri) {
474 mDestinationUri = uri;
475 return this;
476 }
477
478 /**
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700479 * Set the local destination for the downloaded file to a path within
480 * the application's external files directory (as returned by
481 * {@link Context#getExternalFilesDir(String)}.
Vasu Nori5be894e2010-11-02 21:55:30 -0700482 * <p>
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700483 * The downloaded file is not scanned by MediaScanner. But it can be
484 * made scannable by calling {@link #allowScanningByMediaScanner()}.
Steve Howard4f564cd2010-09-22 15:57:25 -0700485 *
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700486 * @param context the {@link Context} to use in determining the external
487 * files directory
488 * @param dirType the directory type to pass to
489 * {@link Context#getExternalFilesDir(String)}
490 * @param subPath the path within the external directory, including the
491 * destination filename
Steve Howard4f564cd2010-09-22 15:57:25 -0700492 * @return this object
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700493 * @throws IllegalStateException If the external storage directory
494 * cannot be found or created.
Steve Howard4f564cd2010-09-22 15:57:25 -0700495 */
496 public Request setDestinationInExternalFilesDir(Context context, String dirType,
497 String subPath) {
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700498 final File file = context.getExternalFilesDir(dirType);
499 if (file == null) {
500 throw new IllegalStateException("Failed to get external storage files directory");
501 } else if (file.exists()) {
502 if (!file.isDirectory()) {
503 throw new IllegalStateException(file.getAbsolutePath() +
504 " already exists and is not a directory");
505 }
506 } else {
507 if (!file.mkdirs()) {
508 throw new IllegalStateException("Unable to create directory: "+
509 file.getAbsolutePath());
510 }
511 }
512 setDestinationFromBase(file, subPath);
Steve Howard4f564cd2010-09-22 15:57:25 -0700513 return this;
514 }
515
516 /**
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700517 * Set the local destination for the downloaded file to a path within
518 * the public external storage directory (as returned by
519 * {@link Environment#getExternalStoragePublicDirectory(String)}).
520 * <p>
521 * The downloaded file is not scanned by MediaScanner. But it can be
522 * made scannable by calling {@link #allowScanningByMediaScanner()}.
Steve Howard4f564cd2010-09-22 15:57:25 -0700523 *
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700524 * @param dirType the directory type to pass to {@link Environment#getExternalStoragePublicDirectory(String)}
525 * @param subPath the path within the external directory, including the
526 * destination filename
Steve Howard4f564cd2010-09-22 15:57:25 -0700527 * @return this object
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700528 * @throws IllegalStateException If the external storage directory
529 * cannot be found or created.
Steve Howard4f564cd2010-09-22 15:57:25 -0700530 */
531 public Request setDestinationInExternalPublicDir(String dirType, String subPath) {
Vasu Nori6916b032010-12-19 20:31:00 -0800532 File file = Environment.getExternalStoragePublicDirectory(dirType);
Jeff Sharkey45d01ea2013-03-25 17:30:16 -0700533 if (file == null) {
534 throw new IllegalStateException("Failed to get external storage public directory");
535 } else if (file.exists()) {
Vasu Nori6916b032010-12-19 20:31:00 -0800536 if (!file.isDirectory()) {
537 throw new IllegalStateException(file.getAbsolutePath() +
538 " already exists and is not a directory");
539 }
540 } else {
Roger Chen1740ada2012-12-17 13:31:17 +0800541 if (!file.mkdirs()) {
Vasu Nori6916b032010-12-19 20:31:00 -0800542 throw new IllegalStateException("Unable to create directory: "+
543 file.getAbsolutePath());
544 }
545 }
546 setDestinationFromBase(file, subPath);
Steve Howard4f564cd2010-09-22 15:57:25 -0700547 return this;
548 }
549
550 private void setDestinationFromBase(File base, String subPath) {
551 if (subPath == null) {
552 throw new NullPointerException("subPath cannot be null");
553 }
554 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);
555 }
556
557 /**
Vasu Nori5be894e2010-11-02 21:55:30 -0700558 * If the file to be downloaded is to be scanned by MediaScanner, this method
559 * should be called before {@link DownloadManager#enqueue(Request)} is called.
560 */
561 public void allowScanningByMediaScanner() {
562 mScannable = true;
563 }
564
565 /**
Steve Howard4f564cd2010-09-22 15:57:25 -0700566 * Add an HTTP header to be included with the download request. The header will be added to
567 * the end of the list.
Steve Howarda2709362010-07-02 17:12:48 -0700568 * @param header HTTP header name
569 * @param value header value
570 * @return this object
Steve Howard4f564cd2010-09-22 15:57:25 -0700571 * @see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2">HTTP/1.1
572 * Message Headers</a>
Steve Howarda2709362010-07-02 17:12:48 -0700573 */
Steve Howard4f564cd2010-09-22 15:57:25 -0700574 public Request addRequestHeader(String header, String value) {
575 if (header == null) {
576 throw new NullPointerException("header cannot be null");
577 }
578 if (header.contains(":")) {
579 throw new IllegalArgumentException("header may not contain ':'");
580 }
581 if (value == null) {
582 value = "";
583 }
584 mRequestHeaders.add(Pair.create(header, value));
Steve Howarda2709362010-07-02 17:12:48 -0700585 return this;
586 }
587
588 /**
Steve Howard610c4352010-09-30 18:30:04 -0700589 * Set the title of this download, to be displayed in notifications (if enabled). If no
590 * title is given, a default one will be assigned based on the download filename, once the
591 * download starts.
Steve Howarda2709362010-07-02 17:12:48 -0700592 * @return this object
593 */
Steve Howard4f564cd2010-09-22 15:57:25 -0700594 public Request setTitle(CharSequence title) {
Steve Howarda2709362010-07-02 17:12:48 -0700595 mTitle = title;
596 return this;
597 }
598
599 /**
600 * Set a description of this download, to be displayed in notifications (if enabled)
601 * @return this object
602 */
Steve Howard4f564cd2010-09-22 15:57:25 -0700603 public Request setDescription(CharSequence description) {
Steve Howarda2709362010-07-02 17:12:48 -0700604 mDescription = description;
605 return this;
606 }
607
608 /**
Steve Howard4f564cd2010-09-22 15:57:25 -0700609 * Set the MIME content type of this download. This will override the content type declared
Steve Howarda2709362010-07-02 17:12:48 -0700610 * in the server's response.
Steve Howard4f564cd2010-09-22 15:57:25 -0700611 * @see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7">HTTP/1.1
612 * Media Types</a>
Steve Howarda2709362010-07-02 17:12:48 -0700613 * @return this object
614 */
Steve Howard4f564cd2010-09-22 15:57:25 -0700615 public Request setMimeType(String mimeType) {
616 mMimeType = mimeType;
Steve Howarda2709362010-07-02 17:12:48 -0700617 return this;
618 }
619
620 /**
Steve Howard8e15afe2010-07-28 17:12:40 -0700621 * Control whether a system notification is posted by the download manager while this
622 * download is running. If enabled, the download manager posts notifications about downloads
623 * through the system {@link android.app.NotificationManager}. By default, a notification is
624 * shown.
Steve Howarda2709362010-07-02 17:12:48 -0700625 *
Steve Howard8e15afe2010-07-28 17:12:40 -0700626 * If set to false, this requires the permission
627 * android.permission.DOWNLOAD_WITHOUT_NOTIFICATION.
628 *
629 * @param show whether the download manager should show a notification for this download.
Steve Howarda2709362010-07-02 17:12:48 -0700630 * @return this object
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700631 * @deprecated use {@link #setNotificationVisibility(int)}
Steve Howarda2709362010-07-02 17:12:48 -0700632 */
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700633 @Deprecated
Steve Howard8e15afe2010-07-28 17:12:40 -0700634 public Request setShowRunningNotification(boolean show) {
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700635 return (show) ? setNotificationVisibility(VISIBILITY_VISIBLE) :
636 setNotificationVisibility(VISIBILITY_HIDDEN);
637 }
638
639 /**
640 * Control whether a system notification is posted by the download manager while this
641 * download is running or when it is completed.
642 * If enabled, the download manager posts notifications about downloads
643 * through the system {@link android.app.NotificationManager}.
644 * By default, a notification is shown only when the download is in progress.
645 *<p>
646 * It can take the following values: {@link #VISIBILITY_HIDDEN},
647 * {@link #VISIBILITY_VISIBLE},
648 * {@link #VISIBILITY_VISIBLE_NOTIFY_COMPLETED}.
649 *<p>
650 * If set to {@link #VISIBILITY_HIDDEN}, this requires the permission
651 * android.permission.DOWNLOAD_WITHOUT_NOTIFICATION.
652 *
653 * @param visibility the visibility setting value
654 * @return this object
655 */
656 public Request setNotificationVisibility(int visibility) {
657 mNotificationVisibility = visibility;
Steve Howarda2709362010-07-02 17:12:48 -0700658 return this;
659 }
660
Steve Howardb8e07a52010-07-21 14:53:21 -0700661 /**
Jeff Sharkey792e0912012-04-16 11:52:18 -0700662 * Restrict the types of networks over which this download may proceed.
663 * By default, all network types are allowed. Consider using
664 * {@link #setAllowedOverMetered(boolean)} instead, since it's more
665 * flexible.
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600666 * <p>
667 * As of {@link android.os.Build.VERSION_CODES#N}, setting only the
668 * {@link #NETWORK_WIFI} flag here is equivalent to calling
669 * {@link #setAllowedOverMetered(boolean)} with {@code false}.
Jeff Sharkey792e0912012-04-16 11:52:18 -0700670 *
Steve Howardb8e07a52010-07-21 14:53:21 -0700671 * @param flags any combination of the NETWORK_* bit flags.
672 * @return this object
673 */
Steve Howarda2709362010-07-02 17:12:48 -0700674 public Request setAllowedNetworkTypes(int flags) {
Steve Howardb8e07a52010-07-21 14:53:21 -0700675 mAllowedNetworkTypes = flags;
676 return this;
Steve Howarda2709362010-07-02 17:12:48 -0700677 }
678
Steve Howardb8e07a52010-07-21 14:53:21 -0700679 /**
680 * Set whether this download may proceed over a roaming connection. By default, roaming is
681 * allowed.
682 * @param allowed whether to allow a roaming connection to be used
683 * @return this object
684 */
Steve Howarda2709362010-07-02 17:12:48 -0700685 public Request setAllowedOverRoaming(boolean allowed) {
Steve Howardb8e07a52010-07-21 14:53:21 -0700686 mRoamingAllowed = allowed;
687 return this;
Steve Howarda2709362010-07-02 17:12:48 -0700688 }
689
690 /**
Jeff Sharkey15ec7d62012-04-17 12:23:40 -0700691 * Set whether this download may proceed over a metered network
692 * connection. By default, metered networks are allowed.
693 *
694 * @see ConnectivityManager#isActiveNetworkMetered()
695 */
696 public Request setAllowedOverMetered(boolean allow) {
697 mMeteredAllowed = allow;
698 return this;
699 }
700
701 /**
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600702 * Specify that to run this download, the device needs to be plugged in.
703 * This defaults to false.
704 *
705 * @param requiresCharging Whether or not the device is plugged in.
706 * @see android.app.job.JobInfo.Builder#setRequiresCharging(boolean)
707 */
708 public Request setRequiresCharging(boolean requiresCharging) {
709 if (requiresCharging) {
710 mFlags |= Downloads.Impl.FLAG_REQUIRES_CHARGING;
711 } else {
712 mFlags &= ~Downloads.Impl.FLAG_REQUIRES_CHARGING;
713 }
714 return this;
715 }
716
717 /**
718 * Specify that to run, the download needs the device to be in idle
719 * mode. This defaults to false.
720 * <p>
721 * Idle mode is a loose definition provided by the system, which means
722 * that the device is not in use, and has not been in use for some time.
723 *
724 * @param requiresDeviceIdle Whether or not the device need be within an
725 * idle maintenance window.
726 * @see android.app.job.JobInfo.Builder#setRequiresDeviceIdle(boolean)
727 */
728 public Request setRequiresDeviceIdle(boolean requiresDeviceIdle) {
729 if (requiresDeviceIdle) {
730 mFlags |= Downloads.Impl.FLAG_REQUIRES_DEVICE_IDLE;
731 } else {
732 mFlags &= ~Downloads.Impl.FLAG_REQUIRES_DEVICE_IDLE;
733 }
734 return this;
735 }
736
737 /**
Steve Howard90fb15a2010-09-09 16:13:41 -0700738 * Set whether this download should be displayed in the system's Downloads UI. True by
739 * default.
740 * @param isVisible whether to display this download in the Downloads UI
741 * @return this object
742 */
743 public Request setVisibleInDownloadsUi(boolean isVisible) {
744 mIsVisibleInDownloadsUi = isVisible;
745 return this;
746 }
747
748 /**
Steve Howarda2709362010-07-02 17:12:48 -0700749 * @return ContentValues to be passed to DownloadProvider.insert()
750 */
Steve Howardb8e07a52010-07-21 14:53:21 -0700751 ContentValues toContentValues(String packageName) {
Steve Howarda2709362010-07-02 17:12:48 -0700752 ContentValues values = new ContentValues();
753 assert mUri != null;
Vasu Norief7e33b2010-10-20 13:26:02 -0700754 values.put(Downloads.Impl.COLUMN_URI, mUri.toString());
Steve Howardb8e07a52010-07-21 14:53:21 -0700755 values.put(Downloads.Impl.COLUMN_IS_PUBLIC_API, true);
Vasu Norief7e33b2010-10-20 13:26:02 -0700756 values.put(Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE, packageName);
Steve Howarda2709362010-07-02 17:12:48 -0700757
758 if (mDestinationUri != null) {
Jeff Sharkey4233f032017-07-15 12:58:38 -0600759 values.put(Downloads.Impl.COLUMN_DESTINATION,
760 Downloads.Impl.DESTINATION_FILE_URI);
761 values.put(Downloads.Impl.COLUMN_FILE_NAME_HINT,
762 mDestinationUri.toString());
Steve Howarda2709362010-07-02 17:12:48 -0700763 } else {
Vasu Norief7e33b2010-10-20 13:26:02 -0700764 values.put(Downloads.Impl.COLUMN_DESTINATION,
Jeff Sharkey4233f032017-07-15 12:58:38 -0600765 Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE);
Steve Howarda2709362010-07-02 17:12:48 -0700766 }
Vasu Nori5be894e2010-11-02 21:55:30 -0700767 // is the file supposed to be media-scannable?
Vasu Nori1cde3fb2010-11-05 11:02:52 -0700768 values.put(Downloads.Impl.COLUMN_MEDIA_SCANNED, (mScannable) ? SCANNABLE_VALUE_YES :
769 SCANNABLE_VALUE_NO);
Steve Howarda2709362010-07-02 17:12:48 -0700770
771 if (!mRequestHeaders.isEmpty()) {
Steve Howardea9147d2010-07-13 19:02:45 -0700772 encodeHttpHeaders(values);
Steve Howarda2709362010-07-02 17:12:48 -0700773 }
774
Vasu Norief7e33b2010-10-20 13:26:02 -0700775 putIfNonNull(values, Downloads.Impl.COLUMN_TITLE, mTitle);
776 putIfNonNull(values, Downloads.Impl.COLUMN_DESCRIPTION, mDescription);
777 putIfNonNull(values, Downloads.Impl.COLUMN_MIME_TYPE, mMimeType);
Steve Howarda2709362010-07-02 17:12:48 -0700778
Vasu Nori4c6e5df2010-10-26 17:00:16 -0700779 values.put(Downloads.Impl.COLUMN_VISIBILITY, mNotificationVisibility);
Steve Howardb8e07a52010-07-21 14:53:21 -0700780 values.put(Downloads.Impl.COLUMN_ALLOWED_NETWORK_TYPES, mAllowedNetworkTypes);
781 values.put(Downloads.Impl.COLUMN_ALLOW_ROAMING, mRoamingAllowed);
Jeff Sharkey15ec7d62012-04-17 12:23:40 -0700782 values.put(Downloads.Impl.COLUMN_ALLOW_METERED, mMeteredAllowed);
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600783 values.put(Downloads.Impl.COLUMN_FLAGS, mFlags);
Steve Howard90fb15a2010-09-09 16:13:41 -0700784 values.put(Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI, mIsVisibleInDownloadsUi);
Steve Howardb8e07a52010-07-21 14:53:21 -0700785
Steve Howarda2709362010-07-02 17:12:48 -0700786 return values;
787 }
788
Steve Howardea9147d2010-07-13 19:02:45 -0700789 private void encodeHttpHeaders(ContentValues values) {
790 int index = 0;
Steve Howard4f564cd2010-09-22 15:57:25 -0700791 for (Pair<String, String> header : mRequestHeaders) {
792 String headerString = header.first + ": " + header.second;
Steve Howardea9147d2010-07-13 19:02:45 -0700793 values.put(Downloads.Impl.RequestHeaders.INSERT_KEY_PREFIX + index, headerString);
794 index++;
795 }
796 }
797
Steve Howard4f564cd2010-09-22 15:57:25 -0700798 private void putIfNonNull(ContentValues contentValues, String key, Object value) {
Steve Howarda2709362010-07-02 17:12:48 -0700799 if (value != null) {
Steve Howard4f564cd2010-09-22 15:57:25 -0700800 contentValues.put(key, value.toString());
Steve Howarda2709362010-07-02 17:12:48 -0700801 }
802 }
803 }
804
805 /**
806 * This class may be used to filter download manager queries.
807 */
808 public static class Query {
Steve Howardf054e192010-09-01 18:26:26 -0700809 /**
810 * Constant for use with {@link #orderBy}
811 * @hide
812 */
813 public static final int ORDER_ASCENDING = 1;
814
815 /**
816 * Constant for use with {@link #orderBy}
817 * @hide
818 */
819 public static final int ORDER_DESCENDING = 2;
820
Steve Howard64c48b82010-10-07 17:53:52 -0700821 private long[] mIds = null;
Steve Howarda2709362010-07-02 17:12:48 -0700822 private Integer mStatusFlags = null;
Ben Lince763d82016-05-02 16:45:45 -0700823 private String mFilterString = null;
Vasu Norief7e33b2010-10-20 13:26:02 -0700824 private String mOrderByColumn = Downloads.Impl.COLUMN_LAST_MODIFICATION;
Steve Howardf054e192010-09-01 18:26:26 -0700825 private int mOrderDirection = ORDER_DESCENDING;
Steve Howard90fb15a2010-09-09 16:13:41 -0700826 private boolean mOnlyIncludeVisibleInDownloadsUi = false;
Steve Howarda2709362010-07-02 17:12:48 -0700827
828 /**
Steve Howard64c48b82010-10-07 17:53:52 -0700829 * Include only the downloads with the given IDs.
Steve Howarda2709362010-07-02 17:12:48 -0700830 * @return this object
831 */
Steve Howard64c48b82010-10-07 17:53:52 -0700832 public Query setFilterById(long... ids) {
833 mIds = ids;
Steve Howarda2709362010-07-02 17:12:48 -0700834 return this;
835 }
836
837 /**
Ben Lince763d82016-05-02 16:45:45 -0700838 *
839 * Include only the downloads that contains the given string in its name.
840 * @return this object
841 * @hide
842 */
843 public Query setFilterByString(@Nullable String filter) {
844 mFilterString = filter;
845 return this;
846 }
847
848 /**
Steve Howarda2709362010-07-02 17:12:48 -0700849 * Include only downloads with status matching any the given status flags.
850 * @param flags any combination of the STATUS_* bit flags
851 * @return this object
852 */
853 public Query setFilterByStatus(int flags) {
854 mStatusFlags = flags;
855 return this;
856 }
857
858 /**
Steve Howard90fb15a2010-09-09 16:13:41 -0700859 * Controls whether this query includes downloads not visible in the system's Downloads UI.
860 * @param value if true, this query will only include downloads that should be displayed in
861 * the system's Downloads UI; if false (the default), this query will include
862 * both visible and invisible downloads.
863 * @return this object
864 * @hide
865 */
Mathew Inwood61e8ae62018-08-14 14:17:44 +0100866 @UnsupportedAppUsage
Steve Howard90fb15a2010-09-09 16:13:41 -0700867 public Query setOnlyIncludeVisibleInDownloadsUi(boolean value) {
868 mOnlyIncludeVisibleInDownloadsUi = value;
869 return this;
870 }
871
872 /**
Steve Howardf054e192010-09-01 18:26:26 -0700873 * Change the sort order of the returned Cursor.
874 *
875 * @param column one of the COLUMN_* constants; currently, only
876 * {@link #COLUMN_LAST_MODIFIED_TIMESTAMP} and {@link #COLUMN_TOTAL_SIZE_BYTES} are
877 * supported.
878 * @param direction either {@link #ORDER_ASCENDING} or {@link #ORDER_DESCENDING}
879 * @return this object
880 * @hide
881 */
Mathew Inwood8c854f82018-09-14 12:35:36 +0100882 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
Steve Howardf054e192010-09-01 18:26:26 -0700883 public Query orderBy(String column, int direction) {
884 if (direction != ORDER_ASCENDING && direction != ORDER_DESCENDING) {
885 throw new IllegalArgumentException("Invalid direction: " + direction);
886 }
887
888 if (column.equals(COLUMN_LAST_MODIFIED_TIMESTAMP)) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700889 mOrderByColumn = Downloads.Impl.COLUMN_LAST_MODIFICATION;
Steve Howardf054e192010-09-01 18:26:26 -0700890 } else if (column.equals(COLUMN_TOTAL_SIZE_BYTES)) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700891 mOrderByColumn = Downloads.Impl.COLUMN_TOTAL_BYTES;
Steve Howardf054e192010-09-01 18:26:26 -0700892 } else {
893 throw new IllegalArgumentException("Cannot order by " + column);
894 }
895 mOrderDirection = direction;
896 return this;
897 }
898
899 /**
Steve Howarda2709362010-07-02 17:12:48 -0700900 * Run this query using the given ContentResolver.
901 * @param projection the projection to pass to ContentResolver.query()
902 * @return the Cursor returned by ContentResolver.query()
903 */
Steve Howardeca77fc2010-09-12 18:49:08 -0700904 Cursor runQuery(ContentResolver resolver, String[] projection, Uri baseUri) {
905 Uri uri = baseUri;
Steve Howard90fb15a2010-09-09 16:13:41 -0700906 List<String> selectionParts = new ArrayList<String>();
Steve Howard64c48b82010-10-07 17:53:52 -0700907 String[] selectionArgs = null;
Steve Howarda2709362010-07-02 17:12:48 -0700908
Ben Lince763d82016-05-02 16:45:45 -0700909 int whereArgsCount = (mIds == null) ? 0 : mIds.length;
910 whereArgsCount = (mFilterString == null) ? whereArgsCount : whereArgsCount + 1;
911 selectionArgs = new String[whereArgsCount];
912
913 if (whereArgsCount > 0) {
914 if (mIds != null) {
915 selectionParts.add(getWhereClauseForIds(mIds));
916 getWhereArgsForIds(mIds, selectionArgs);
917 }
918
919 if (mFilterString != null) {
920 selectionParts.add(Downloads.Impl.COLUMN_TITLE + " LIKE ?");
921 selectionArgs[selectionArgs.length - 1] = "%" + mFilterString + "%";
922 }
Steve Howarda2709362010-07-02 17:12:48 -0700923 }
924
925 if (mStatusFlags != null) {
926 List<String> parts = new ArrayList<String>();
927 if ((mStatusFlags & STATUS_PENDING) != 0) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700928 parts.add(statusClause("=", Downloads.Impl.STATUS_PENDING));
Steve Howarda2709362010-07-02 17:12:48 -0700929 }
930 if ((mStatusFlags & STATUS_RUNNING) != 0) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700931 parts.add(statusClause("=", Downloads.Impl.STATUS_RUNNING));
Steve Howarda2709362010-07-02 17:12:48 -0700932 }
933 if ((mStatusFlags & STATUS_PAUSED) != 0) {
Steve Howard3e8c1d32010-09-29 17:03:32 -0700934 parts.add(statusClause("=", Downloads.Impl.STATUS_PAUSED_BY_APP));
935 parts.add(statusClause("=", Downloads.Impl.STATUS_WAITING_TO_RETRY));
936 parts.add(statusClause("=", Downloads.Impl.STATUS_WAITING_FOR_NETWORK));
937 parts.add(statusClause("=", Downloads.Impl.STATUS_QUEUED_FOR_WIFI));
Steve Howarda2709362010-07-02 17:12:48 -0700938 }
939 if ((mStatusFlags & STATUS_SUCCESSFUL) != 0) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700940 parts.add(statusClause("=", Downloads.Impl.STATUS_SUCCESS));
Steve Howarda2709362010-07-02 17:12:48 -0700941 }
942 if ((mStatusFlags & STATUS_FAILED) != 0) {
943 parts.add("(" + statusClause(">=", 400)
944 + " AND " + statusClause("<", 600) + ")");
945 }
Steve Howard90fb15a2010-09-09 16:13:41 -0700946 selectionParts.add(joinStrings(" OR ", parts));
Steve Howarda2709362010-07-02 17:12:48 -0700947 }
Steve Howardf054e192010-09-01 18:26:26 -0700948
Steve Howard90fb15a2010-09-09 16:13:41 -0700949 if (mOnlyIncludeVisibleInDownloadsUi) {
950 selectionParts.add(Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI + " != '0'");
951 }
952
Vasu Nori216fa222010-10-12 23:08:13 -0700953 // only return rows which are not marked 'deleted = 1'
954 selectionParts.add(Downloads.Impl.COLUMN_DELETED + " != '1'");
955
Steve Howard90fb15a2010-09-09 16:13:41 -0700956 String selection = joinStrings(" AND ", selectionParts);
Steve Howardf054e192010-09-01 18:26:26 -0700957 String orderDirection = (mOrderDirection == ORDER_ASCENDING ? "ASC" : "DESC");
958 String orderBy = mOrderByColumn + " " + orderDirection;
959
Steve Howard64c48b82010-10-07 17:53:52 -0700960 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
Steve Howarda2709362010-07-02 17:12:48 -0700961 }
962
963 private String joinStrings(String joiner, Iterable<String> parts) {
964 StringBuilder builder = new StringBuilder();
965 boolean first = true;
966 for (String part : parts) {
967 if (!first) {
968 builder.append(joiner);
969 }
970 builder.append(part);
971 first = false;
972 }
973 return builder.toString();
974 }
975
976 private String statusClause(String operator, int value) {
Vasu Norief7e33b2010-10-20 13:26:02 -0700977 return Downloads.Impl.COLUMN_STATUS + operator + "'" + value + "'";
Steve Howarda2709362010-07-02 17:12:48 -0700978 }
979 }
980
Jeff Sharkey60cfad82016-01-05 17:30:57 -0700981 private final ContentResolver mResolver;
982 private final String mPackageName;
Jeff Sharkey60cfad82016-01-05 17:30:57 -0700983
Steve Howardeca77fc2010-09-12 18:49:08 -0700984 private Uri mBaseUri = Downloads.Impl.CONTENT_URI;
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -0700985 private boolean mAccessFilename;
Steve Howarda2709362010-07-02 17:12:48 -0700986
987 /**
988 * @hide
989 */
Jeff Sharkey60cfad82016-01-05 17:30:57 -0700990 public DownloadManager(Context context) {
991 mResolver = context.getContentResolver();
992 mPackageName = context.getPackageName();
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -0700993
994 // Callers can access filename columns when targeting old platform
995 // versions; otherwise we throw telling them it's deprecated.
996 mAccessFilename = context.getApplicationInfo().targetSdkVersion < Build.VERSION_CODES.N;
Steve Howarda2709362010-07-02 17:12:48 -0700997 }
998
999 /**
Steve Howardeca77fc2010-09-12 18:49:08 -07001000 * Makes this object access the download provider through /all_downloads URIs rather than
1001 * /my_downloads URIs, for clients that have permission to do so.
1002 * @hide
1003 */
Mathew Inwood61e8ae62018-08-14 14:17:44 +01001004 @UnsupportedAppUsage
Steve Howardeca77fc2010-09-12 18:49:08 -07001005 public void setAccessAllDownloads(boolean accessAllDownloads) {
1006 if (accessAllDownloads) {
1007 mBaseUri = Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI;
1008 } else {
1009 mBaseUri = Downloads.Impl.CONTENT_URI;
1010 }
1011 }
1012
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001013 /** {@hide} */
Mathew Inwood8c854f82018-09-14 12:35:36 +01001014 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001015 public void setAccessFilename(boolean accessFilename) {
1016 mAccessFilename = accessFilename;
1017 }
1018
Steve Howardeca77fc2010-09-12 18:49:08 -07001019 /**
Steve Howarda2709362010-07-02 17:12:48 -07001020 * Enqueue a new download. The download will start automatically once the download manager is
1021 * ready to execute it and connectivity is available.
1022 *
1023 * @param request the parameters specifying this download
1024 * @return an ID for the download, unique across the system. This ID is used to make future
1025 * calls related to this download.
1026 */
1027 public long enqueue(Request request) {
Steve Howardb8e07a52010-07-21 14:53:21 -07001028 ContentValues values = request.toContentValues(mPackageName);
Vasu Norief7e33b2010-10-20 13:26:02 -07001029 Uri downloadUri = mResolver.insert(Downloads.Impl.CONTENT_URI, values);
Steve Howarda2709362010-07-02 17:12:48 -07001030 long id = Long.parseLong(downloadUri.getLastPathSegment());
1031 return id;
1032 }
1033
1034 /**
Vasu Nori216fa222010-10-12 23:08:13 -07001035 * Marks the specified download as 'to be deleted'. This is done when a completed download
1036 * is to be removed but the row was stored without enough info to delete the corresponding
1037 * metadata from Mediaprovider database. Actual cleanup of this row is done in DownloadService.
1038 *
1039 * @param ids the IDs of the downloads to be marked 'deleted'
1040 * @return the number of downloads actually updated
1041 * @hide
1042 */
1043 public int markRowDeleted(long... ids) {
1044 if (ids == null || ids.length == 0) {
1045 // called with nothing to remove!
1046 throw new IllegalArgumentException("input param 'ids' can't be null");
1047 }
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -06001048 return mResolver.delete(mBaseUri, getWhereClauseForIds(ids), getWhereArgsForIds(ids));
Vasu Nori216fa222010-10-12 23:08:13 -07001049 }
1050
1051 /**
Steve Howard64c48b82010-10-07 17:53:52 -07001052 * Cancel downloads and remove them from the download manager. Each download will be stopped if
Vasu Nori17ee56c2011-02-28 08:35:39 -08001053 * it was running, and it will no longer be accessible through the download manager.
1054 * If there is a downloaded file, partial or complete, it is deleted.
Steve Howarda2709362010-07-02 17:12:48 -07001055 *
Steve Howard64c48b82010-10-07 17:53:52 -07001056 * @param ids the IDs of the downloads to remove
1057 * @return the number of downloads actually removed
Steve Howarda2709362010-07-02 17:12:48 -07001058 */
Steve Howard64c48b82010-10-07 17:53:52 -07001059 public int remove(long... ids) {
Vasu Norie16c43b2010-11-06 18:48:08 -07001060 return markRowDeleted(ids);
Steve Howarda2709362010-07-02 17:12:48 -07001061 }
1062
1063 /**
1064 * Query the download manager about downloads that have been requested.
1065 * @param query parameters specifying filters for this query
1066 * @return a Cursor over the result set of downloads, with columns consisting of all the
1067 * COLUMN_* constants.
1068 */
1069 public Cursor query(Query query) {
Steve Howardeca77fc2010-09-12 18:49:08 -07001070 Cursor underlyingCursor = query.runQuery(mResolver, UNDERLYING_COLUMNS, mBaseUri);
Steve Howardf054e192010-09-01 18:26:26 -07001071 if (underlyingCursor == null) {
1072 return null;
1073 }
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001074 return new CursorTranslator(underlyingCursor, mBaseUri, mAccessFilename);
Steve Howarda2709362010-07-02 17:12:48 -07001075 }
1076
1077 /**
1078 * Open a downloaded file for reading. The download must have completed.
1079 * @param id the ID of the download
1080 * @return a read-only {@link ParcelFileDescriptor}
1081 * @throws FileNotFoundException if the destination file does not already exist
1082 */
1083 public ParcelFileDescriptor openDownloadedFile(long id) throws FileNotFoundException {
1084 return mResolver.openFileDescriptor(getDownloadUri(id), "r");
1085 }
1086
1087 /**
John Spurlock92a262c2013-11-04 16:25:38 -05001088 * Returns the {@link Uri} of the given downloaded file id, if the file is
1089 * downloaded successfully. Otherwise, null is returned.
Vasu Nori5be894e2010-11-02 21:55:30 -07001090 *
1091 * @param id the id of the downloaded file.
Jeff Sharkeyb11683b2015-07-29 10:15:34 -07001092 * @return the {@link Uri} of the given downloaded file id, if download was
1093 * successful. null otherwise.
Vasu Nori5be894e2010-11-02 21:55:30 -07001094 */
1095 public Uri getUriForDownloadedFile(long id) {
1096 // to check if the file is in cache, get its destination from the database
1097 Query query = new Query().setFilterById(id);
1098 Cursor cursor = null;
1099 try {
1100 cursor = query(query);
1101 if (cursor == null) {
1102 return null;
1103 }
Leon Scrogginsd75e64a2010-12-13 15:48:40 -05001104 if (cursor.moveToFirst()) {
Vasu Nori6e2b2a62010-11-16 17:58:22 -08001105 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
Vasu Nori5be894e2010-11-02 21:55:30 -07001106 if (DownloadManager.STATUS_SUCCESSFUL == status) {
Jeff Sharkeydf42d732016-09-16 16:57:34 -06001107 return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id);
Vasu Nori5be894e2010-11-02 21:55:30 -07001108 }
1109 }
1110 } finally {
1111 if (cursor != null) {
1112 cursor.close();
1113 }
1114 }
1115 // downloaded file not found or its status is not 'successfully completed'
1116 return null;
1117 }
1118
1119 /**
John Spurlock92a262c2013-11-04 16:25:38 -05001120 * Returns the media type of the given downloaded file id, if the file was
1121 * downloaded successfully. Otherwise, null is returned.
Vasu Nori6e2b2a62010-11-16 17:58:22 -08001122 *
1123 * @param id the id of the downloaded file.
John Spurlock92a262c2013-11-04 16:25:38 -05001124 * @return the media type of the given downloaded file id, if download was successful. null
Vasu Nori6e2b2a62010-11-16 17:58:22 -08001125 * otherwise.
1126 */
1127 public String getMimeTypeForDownloadedFile(long id) {
1128 Query query = new Query().setFilterById(id);
1129 Cursor cursor = null;
1130 try {
1131 cursor = query(query);
1132 if (cursor == null) {
1133 return null;
1134 }
1135 while (cursor.moveToFirst()) {
1136 return cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_MEDIA_TYPE));
1137 }
1138 } finally {
1139 if (cursor != null) {
1140 cursor.close();
1141 }
1142 }
1143 // downloaded file not found or its status is not 'successfully completed'
1144 return null;
1145 }
1146
1147 /**
Steve Howard64c48b82010-10-07 17:53:52 -07001148 * Restart the given downloads, which must have already completed (successfully or not). This
Steve Howard90fb15a2010-09-09 16:13:41 -07001149 * method will only work when called from within the download manager's process.
Steve Howard64c48b82010-10-07 17:53:52 -07001150 * @param ids the IDs of the downloads
Steve Howard90fb15a2010-09-09 16:13:41 -07001151 * @hide
1152 */
Steve Howard64c48b82010-10-07 17:53:52 -07001153 public void restartDownload(long... ids) {
1154 Cursor cursor = query(new Query().setFilterById(ids));
Steve Howard90fb15a2010-09-09 16:13:41 -07001155 try {
Steve Howard64c48b82010-10-07 17:53:52 -07001156 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
1157 int status = cursor.getInt(cursor.getColumnIndex(COLUMN_STATUS));
1158 if (status != STATUS_SUCCESSFUL && status != STATUS_FAILED) {
1159 throw new IllegalArgumentException("Cannot restart incomplete download: "
1160 + cursor.getLong(cursor.getColumnIndex(COLUMN_ID)));
1161 }
Steve Howard90fb15a2010-09-09 16:13:41 -07001162 }
1163 } finally {
1164 cursor.close();
1165 }
1166
1167 ContentValues values = new ContentValues();
1168 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, 0);
1169 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, -1);
1170 values.putNull(Downloads.Impl._DATA);
1171 values.put(Downloads.Impl.COLUMN_STATUS, Downloads.Impl.STATUS_PENDING);
Jeff Sharkey54781202013-01-17 17:27:33 -08001172 values.put(Downloads.Impl.COLUMN_FAILED_CONNECTIONS, 0);
Steve Howard64c48b82010-10-07 17:53:52 -07001173 mResolver.update(mBaseUri, values, getWhereClauseForIds(ids), getWhereArgsForIds(ids));
Steve Howard90fb15a2010-09-09 16:13:41 -07001174 }
1175
1176 /**
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -06001177 * Force the given downloads to proceed even if their size is larger than
1178 * {@link #getMaxBytesOverMobile(Context)}.
1179 *
1180 * @hide
1181 */
1182 public void forceDownload(long... ids) {
1183 ContentValues values = new ContentValues();
1184 values.put(Downloads.Impl.COLUMN_STATUS, Downloads.Impl.STATUS_PENDING);
1185 values.put(Downloads.Impl.COLUMN_CONTROL, Downloads.Impl.CONTROL_RUN);
1186 values.put(Downloads.Impl.COLUMN_BYPASS_RECOMMENDED_SIZE_LIMIT, 1);
1187 mResolver.update(mBaseUri, values, getWhereClauseForIds(ids), getWhereArgsForIds(ids));
1188 }
1189
1190 /**
Vasu Nori0abbf802011-01-17 15:08:14 -08001191 * Returns maximum size, in bytes, of downloads that may go over a mobile connection; or null if
1192 * there's no limit
1193 *
1194 * @param context the {@link Context} to use for accessing the {@link ContentResolver}
1195 * @return maximum size, in bytes, of downloads that may go over a mobile connection; or null if
1196 * there's no limit
1197 */
1198 public static Long getMaxBytesOverMobile(Context context) {
1199 try {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001200 return Settings.Global.getLong(context.getContentResolver(),
1201 Settings.Global.DOWNLOAD_MAX_BYTES_OVER_MOBILE);
Vasu Nori0abbf802011-01-17 15:08:14 -08001202 } catch (SettingNotFoundException exc) {
1203 return null;
1204 }
1205 }
1206
1207 /**
Ben Lin726bf6a2016-04-27 11:38:05 -07001208 * Rename the given download if the download has completed
1209 *
1210 * @param context the {@link Context} to use in case need to update MediaProvider
1211 * @param id the downloaded id
1212 * @param displayName the new name to rename to
1213 * @return true if rename was successful, false otherwise
1214 * @hide
1215 */
1216 public boolean rename(Context context, long id, String displayName) {
1217 if (!FileUtils.isValidFatFilename(displayName)) {
1218 throw new SecurityException(displayName + " is not a valid filename");
1219 }
1220
1221 Query query = new Query().setFilterById(id);
1222 Cursor cursor = null;
1223 String oldDisplayName = null;
1224 String mimeType = null;
1225 try {
1226 cursor = query(query);
1227 if (cursor == null) {
1228 return false;
1229 }
1230 if (cursor.moveToFirst()) {
1231 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
1232 if (DownloadManager.STATUS_SUCCESSFUL != status) {
1233 return false;
1234 }
1235 oldDisplayName = cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_TITLE));
1236 mimeType = cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_MEDIA_TYPE));
1237 }
1238 } finally {
1239 if (cursor != null) {
1240 cursor.close();
1241 }
1242 }
1243
1244 if (oldDisplayName == null || mimeType == null) {
1245 throw new IllegalStateException(
1246 "Document with id " + id + " does not exist");
1247 }
1248
1249 final File parent = Environment.getExternalStoragePublicDirectory(
1250 Environment.DIRECTORY_DOWNLOADS);
1251
1252 final File before = new File(parent, oldDisplayName);
1253 final File after = new File(parent, displayName);
1254
1255 if (after.exists()) {
1256 throw new IllegalStateException("Already exists " + after);
1257 }
1258 if (!before.renameTo(after)) {
1259 throw new IllegalStateException("Failed to rename to " + after);
1260 }
1261
1262 // Update MediaProvider if necessary
1263 if (mimeType.startsWith("image/")) {
1264 context.getContentResolver().delete(Images.Media.EXTERNAL_CONTENT_URI,
1265 Images.Media.DATA + "=?",
1266 new String[] {
1267 before.getAbsolutePath()
1268 });
1269
1270 Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
1271 intent.setData(Uri.fromFile(after));
1272 context.sendBroadcast(intent);
1273 }
1274
1275 ContentValues values = new ContentValues();
1276 values.put(Downloads.Impl.COLUMN_TITLE, displayName);
1277 values.put(Downloads.Impl._DATA, after.toString());
1278 values.putNull(Downloads.Impl.COLUMN_MEDIAPROVIDER_URI);
1279 long[] ids = {id};
1280
1281 return (mResolver.update(mBaseUri, values, getWhereClauseForIds(ids),
1282 getWhereArgsForIds(ids)) == 1);
1283 }
1284
1285 /**
Vasu Nori0abbf802011-01-17 15:08:14 -08001286 * Returns recommended maximum size, in bytes, of downloads that may go over a mobile
1287 * connection; or null if there's no recommended limit. The user will have the option to bypass
1288 * this limit.
1289 *
1290 * @param context the {@link Context} to use for accessing the {@link ContentResolver}
1291 * @return recommended maximum size, in bytes, of downloads that may go over a mobile
1292 * connection; or null if there's no recommended limit.
1293 */
1294 public static Long getRecommendedMaxBytesOverMobile(Context context) {
1295 try {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001296 return Settings.Global.getLong(context.getContentResolver(),
1297 Settings.Global.DOWNLOAD_RECOMMENDED_MAX_BYTES_OVER_MOBILE);
Vasu Nori0abbf802011-01-17 15:08:14 -08001298 } catch (SettingNotFoundException exc) {
1299 return null;
1300 }
1301 }
Vasu Noric0e50752011-01-20 17:57:54 -08001302
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001303 /** {@hide} */
1304 public static boolean isActiveNetworkExpensive(Context context) {
1305 // TODO: connect to NetworkPolicyManager
1306 return false;
1307 }
1308
1309 /** {@hide} */
1310 public static long getActiveNetworkWarningBytes(Context context) {
1311 // TODO: connect to NetworkPolicyManager
1312 return -1;
1313 }
1314
Vasu Noric0e50752011-01-20 17:57:54 -08001315 /**
1316 * Adds a file to the downloads database system, so it could appear in Downloads App
1317 * (and thus become eligible for management by the Downloads App).
1318 * <p>
1319 * It is helpful to make the file scannable by MediaScanner by setting the param
1320 * isMediaScannerScannable to true. It makes the file visible in media managing
1321 * applications such as Gallery App, which could be a useful purpose of using this API.
1322 *
1323 * @param title the title that would appear for this file in Downloads App.
1324 * @param description the description that would appear for this file in Downloads App.
1325 * @param isMediaScannerScannable true if the file is to be scanned by MediaScanner. Files
1326 * scanned by MediaScanner appear in the applications used to view media (for example,
1327 * Gallery app).
1328 * @param mimeType mimetype of the file.
1329 * @param path absolute pathname to the file. The file should be world-readable, so that it can
1330 * be managed by the Downloads App and any other app that is used to read it (for example,
1331 * Gallery app to display the file, if the file contents represent a video/image).
1332 * @param length length of the downloaded file
Vasu Norif9e85232011-02-10 14:59:54 -08001333 * @param showNotification true if a notification is to be sent, false otherwise
Vasu Noric0e50752011-01-20 17:57:54 -08001334 * @return an ID for the download entry added to the downloads app, unique across the system
1335 * This ID is used to make future calls related to this download.
1336 */
Vasu Nori37281302011-03-07 11:25:01 -08001337 public long addCompletedDownload(String title, String description,
Vasu Norif9e85232011-02-10 14:59:54 -08001338 boolean isMediaScannerScannable, String mimeType, String path, long length,
1339 boolean showNotification) {
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001340 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
Edward Cunninghamabb2c5a2016-03-25 20:56:31 +00001341 length, showNotification, false, null, null);
1342 }
1343
1344 /**
1345 * Adds a file to the downloads database system, so it could appear in Downloads App
1346 * (and thus become eligible for management by the Downloads App).
1347 * <p>
1348 * It is helpful to make the file scannable by MediaScanner by setting the param
1349 * isMediaScannerScannable to true. It makes the file visible in media managing
1350 * applications such as Gallery App, which could be a useful purpose of using this API.
1351 *
1352 * @param title the title that would appear for this file in Downloads App.
1353 * @param description the description that would appear for this file in Downloads App.
1354 * @param isMediaScannerScannable true if the file is to be scanned by MediaScanner. Files
1355 * scanned by MediaScanner appear in the applications used to view media (for example,
1356 * Gallery app).
1357 * @param mimeType mimetype of the file.
1358 * @param path absolute pathname to the file. The file should be world-readable, so that it can
1359 * be managed by the Downloads App and any other app that is used to read it (for example,
1360 * Gallery app to display the file, if the file contents represent a video/image).
1361 * @param length length of the downloaded file
1362 * @param showNotification true if a notification is to be sent, false otherwise
1363 * @param uri the original HTTP URI of the download
1364 * @param referer the HTTP Referer for the download
1365 * @return an ID for the download entry added to the downloads app, unique across the system
1366 * This ID is used to make future calls related to this download.
1367 */
1368 public long addCompletedDownload(String title, String description,
1369 boolean isMediaScannerScannable, String mimeType, String path, long length,
1370 boolean showNotification, Uri uri, Uri referer) {
1371 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
1372 length, showNotification, false, uri, referer);
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001373 }
1374
1375 /** {@hide} */
1376 public long addCompletedDownload(String title, String description,
1377 boolean isMediaScannerScannable, String mimeType, String path, long length,
1378 boolean showNotification, boolean allowWrite) {
Edward Cunninghamabb2c5a2016-03-25 20:56:31 +00001379 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
1380 length, showNotification, allowWrite, null, null);
1381 }
1382
1383 /** {@hide} */
1384 public long addCompletedDownload(String title, String description,
1385 boolean isMediaScannerScannable, String mimeType, String path, long length,
1386 boolean showNotification, boolean allowWrite, Uri uri, Uri referer) {
Vasu Noric0e50752011-01-20 17:57:54 -08001387 // make sure the input args are non-null/non-zero
1388 validateArgumentIsNonEmpty("title", title);
1389 validateArgumentIsNonEmpty("description", description);
1390 validateArgumentIsNonEmpty("path", path);
1391 validateArgumentIsNonEmpty("mimeType", mimeType);
Jeff Sharkey33f95ed2012-05-02 17:07:54 -07001392 if (length < 0) {
Vasu Noric0e50752011-01-20 17:57:54 -08001393 throw new IllegalArgumentException(" invalid value for param: totalBytes");
1394 }
1395
1396 // if there is already an entry with the given path name in downloads.db, return its id
Edward Cunninghamabb2c5a2016-03-25 20:56:31 +00001397 Request request;
1398 if (uri != null) {
1399 request = new Request(uri);
1400 } else {
1401 request = new Request(NON_DOWNLOADMANAGER_DOWNLOAD);
1402 }
1403 request.setTitle(title)
Vasu Noric0e50752011-01-20 17:57:54 -08001404 .setDescription(description)
1405 .setMimeType(mimeType);
Edward Cunninghamabb2c5a2016-03-25 20:56:31 +00001406 if (referer != null) {
1407 request.addRequestHeader("Referer", referer.toString());
1408 }
Vasu Noric0e50752011-01-20 17:57:54 -08001409 ContentValues values = request.toContentValues(null);
1410 values.put(Downloads.Impl.COLUMN_DESTINATION,
1411 Downloads.Impl.DESTINATION_NON_DOWNLOADMANAGER_DOWNLOAD);
1412 values.put(Downloads.Impl._DATA, path);
1413 values.put(Downloads.Impl.COLUMN_STATUS, Downloads.Impl.STATUS_SUCCESS);
1414 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, length);
1415 values.put(Downloads.Impl.COLUMN_MEDIA_SCANNED,
1416 (isMediaScannerScannable) ? Request.SCANNABLE_VALUE_YES :
1417 Request.SCANNABLE_VALUE_NO);
Vasu Norif9e85232011-02-10 14:59:54 -08001418 values.put(Downloads.Impl.COLUMN_VISIBILITY, (showNotification) ?
1419 Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION : Request.VISIBILITY_HIDDEN);
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001420 values.put(Downloads.Impl.COLUMN_ALLOW_WRITE, allowWrite ? 1 : 0);
Vasu Noric0e50752011-01-20 17:57:54 -08001421 Uri downloadUri = mResolver.insert(Downloads.Impl.CONTENT_URI, values);
1422 if (downloadUri == null) {
1423 return -1;
1424 }
1425 return Long.parseLong(downloadUri.getLastPathSegment());
1426 }
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001427
Vasu Noric0e50752011-01-20 17:57:54 -08001428 private static final String NON_DOWNLOADMANAGER_DOWNLOAD =
1429 "non-dwnldmngr-download-dont-retry2download";
1430
1431 private static void validateArgumentIsNonEmpty(String paramName, String val) {
1432 if (TextUtils.isEmpty(val)) {
1433 throw new IllegalArgumentException(paramName + " can't be null");
1434 }
1435 }
1436
Vasu Nori0abbf802011-01-17 15:08:14 -08001437 /**
Steve Howarda2709362010-07-02 17:12:48 -07001438 * Get the DownloadProvider URI for the download with the given ID.
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001439 *
1440 * @hide
Steve Howarda2709362010-07-02 17:12:48 -07001441 */
Jeff Sharkeyb180a652013-09-23 14:23:41 -07001442 public Uri getDownloadUri(long id) {
Jeff Sharkey15471942016-09-16 12:04:05 -06001443 return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id);
Steve Howarda2709362010-07-02 17:12:48 -07001444 }
1445
1446 /**
Steve Howard64c48b82010-10-07 17:53:52 -07001447 * Get a parameterized SQL WHERE clause to select a bunch of IDs.
1448 */
Mathew Inwood61e8ae62018-08-14 14:17:44 +01001449 @UnsupportedAppUsage
Steve Howard64c48b82010-10-07 17:53:52 -07001450 static String getWhereClauseForIds(long[] ids) {
1451 StringBuilder whereClause = new StringBuilder();
Vasu Norie7be6bd2010-10-10 14:58:08 -07001452 whereClause.append("(");
Steve Howard64c48b82010-10-07 17:53:52 -07001453 for (int i = 0; i < ids.length; i++) {
1454 if (i > 0) {
Vasu Norie7be6bd2010-10-10 14:58:08 -07001455 whereClause.append("OR ");
Steve Howard64c48b82010-10-07 17:53:52 -07001456 }
Vasu Norie7be6bd2010-10-10 14:58:08 -07001457 whereClause.append(Downloads.Impl._ID);
1458 whereClause.append(" = ? ");
Steve Howard64c48b82010-10-07 17:53:52 -07001459 }
1460 whereClause.append(")");
1461 return whereClause.toString();
1462 }
1463
1464 /**
1465 * Get the selection args for a clause returned by {@link #getWhereClauseForIds(long[])}.
1466 */
Mathew Inwood61e8ae62018-08-14 14:17:44 +01001467 @UnsupportedAppUsage
Steve Howard64c48b82010-10-07 17:53:52 -07001468 static String[] getWhereArgsForIds(long[] ids) {
1469 String[] whereArgs = new String[ids.length];
Ben Lince763d82016-05-02 16:45:45 -07001470 return getWhereArgsForIds(ids, whereArgs);
Steve Howard64c48b82010-10-07 17:53:52 -07001471 }
1472
1473 /**
Ben Lince763d82016-05-02 16:45:45 -07001474 * Get selection args for a clause returned by {@link #getWhereClauseForIds(long[])}
1475 * and write it to the supplied args array.
1476 */
1477 static String[] getWhereArgsForIds(long[] ids, String[] args) {
1478 assert(args.length >= ids.length);
1479 for (int i = 0; i < ids.length; i++) {
1480 args[i] = Long.toString(ids[i]);
1481 }
1482 return args;
1483 }
1484
1485
1486 /**
Steve Howarda2709362010-07-02 17:12:48 -07001487 * This class wraps a cursor returned by DownloadProvider -- the "underlying cursor" -- and
1488 * presents a different set of columns, those defined in the DownloadManager.COLUMN_* constants.
1489 * Some columns correspond directly to underlying values while others are computed from
1490 * underlying data.
1491 */
1492 private static class CursorTranslator extends CursorWrapper {
Jeff Sharkey60cfad82016-01-05 17:30:57 -07001493 private final Uri mBaseUri;
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001494 private final boolean mAccessFilename;
Steve Howardeca77fc2010-09-12 18:49:08 -07001495
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001496 public CursorTranslator(Cursor cursor, Uri baseUri, boolean accessFilename) {
Steve Howarda2709362010-07-02 17:12:48 -07001497 super(cursor);
Steve Howardeca77fc2010-09-12 18:49:08 -07001498 mBaseUri = baseUri;
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001499 mAccessFilename = accessFilename;
Steve Howarda2709362010-07-02 17:12:48 -07001500 }
1501
1502 @Override
Steve Howarda2709362010-07-02 17:12:48 -07001503 public int getInt(int columnIndex) {
1504 return (int) getLong(columnIndex);
1505 }
1506
1507 @Override
1508 public long getLong(int columnIndex) {
Vasu Norie16c43b2010-11-06 18:48:08 -07001509 if (getColumnName(columnIndex).equals(COLUMN_REASON)) {
1510 return getReason(super.getInt(getColumnIndex(Downloads.Impl.COLUMN_STATUS)));
1511 } else if (getColumnName(columnIndex).equals(COLUMN_STATUS)) {
1512 return translateStatus(super.getInt(getColumnIndex(Downloads.Impl.COLUMN_STATUS)));
1513 } else {
1514 return super.getLong(columnIndex);
1515 }
Steve Howarda2709362010-07-02 17:12:48 -07001516 }
1517
1518 @Override
1519 public String getString(int columnIndex) {
Jeff Sharkey60cfad82016-01-05 17:30:57 -07001520 final String columnName = getColumnName(columnIndex);
1521 switch (columnName) {
1522 case COLUMN_LOCAL_URI:
1523 return getLocalUri();
1524 case COLUMN_LOCAL_FILENAME:
Jeff Sharkeyaec99bf2016-01-07 09:58:40 -07001525 if (!mAccessFilename) {
Jeff Sharkey0c2ccd02016-03-22 10:05:47 -06001526 throw new SecurityException(
Jeff Sharkey60cfad82016-01-05 17:30:57 -07001527 "COLUMN_LOCAL_FILENAME is deprecated;"
1528 + " use ContentResolver.openFileDescriptor() instead");
1529 }
1530 default:
1531 return super.getString(columnIndex);
1532 }
Steve Howardeca77fc2010-09-12 18:49:08 -07001533 }
1534
1535 private String getLocalUri() {
Vasu Norie16c43b2010-11-06 18:48:08 -07001536 long destinationType = getLong(getColumnIndex(Downloads.Impl.COLUMN_DESTINATION));
1537 if (destinationType == Downloads.Impl.DESTINATION_FILE_URI ||
Vasu Noric0e50752011-01-20 17:57:54 -08001538 destinationType == Downloads.Impl.DESTINATION_EXTERNAL ||
1539 destinationType == Downloads.Impl.DESTINATION_NON_DOWNLOADMANAGER_DOWNLOAD) {
Jeff Sharkey281c1822016-03-30 19:46:42 -06001540 String localPath = super.getString(getColumnIndex(COLUMN_LOCAL_FILENAME));
Steve Howard99047d72010-09-29 17:41:37 -07001541 if (localPath == null) {
1542 return null;
1543 }
1544 return Uri.fromFile(new File(localPath)).toString();
Steve Howardbb0d23b2010-09-22 18:56:29 -07001545 }
1546
Steve Howardeca77fc2010-09-12 18:49:08 -07001547 // return content URI for cache download
Vasu Norie16c43b2010-11-06 18:48:08 -07001548 long downloadId = getLong(getColumnIndex(Downloads.Impl._ID));
Jeff Sharkey15471942016-09-16 12:04:05 -06001549 return ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, downloadId).toString();
Steve Howarda2709362010-07-02 17:12:48 -07001550 }
1551
Steve Howard3e8c1d32010-09-29 17:03:32 -07001552 private long getReason(int status) {
1553 switch (translateStatus(status)) {
1554 case STATUS_FAILED:
1555 return getErrorCode(status);
1556
1557 case STATUS_PAUSED:
1558 return getPausedReason(status);
1559
1560 default:
1561 return 0; // arbitrary value when status is not an error
Steve Howarda2709362010-07-02 17:12:48 -07001562 }
Steve Howard3e8c1d32010-09-29 17:03:32 -07001563 }
1564
1565 private long getPausedReason(int status) {
1566 switch (status) {
1567 case Downloads.Impl.STATUS_WAITING_TO_RETRY:
1568 return PAUSED_WAITING_TO_RETRY;
1569
1570 case Downloads.Impl.STATUS_WAITING_FOR_NETWORK:
1571 return PAUSED_WAITING_FOR_NETWORK;
1572
1573 case Downloads.Impl.STATUS_QUEUED_FOR_WIFI:
1574 return PAUSED_QUEUED_FOR_WIFI;
1575
1576 default:
1577 return PAUSED_UNKNOWN;
1578 }
1579 }
1580
1581 private long getErrorCode(int status) {
Steve Howard33bbd122010-08-02 17:51:29 -07001582 if ((400 <= status && status < Downloads.Impl.MIN_ARTIFICIAL_ERROR_STATUS)
1583 || (500 <= status && status < 600)) {
Steve Howarda2709362010-07-02 17:12:48 -07001584 // HTTP status code
1585 return status;
1586 }
1587
1588 switch (status) {
Vasu Norief7e33b2010-10-20 13:26:02 -07001589 case Downloads.Impl.STATUS_FILE_ERROR:
Steve Howarda2709362010-07-02 17:12:48 -07001590 return ERROR_FILE_ERROR;
1591
Vasu Norief7e33b2010-10-20 13:26:02 -07001592 case Downloads.Impl.STATUS_UNHANDLED_HTTP_CODE:
1593 case Downloads.Impl.STATUS_UNHANDLED_REDIRECT:
Steve Howarda2709362010-07-02 17:12:48 -07001594 return ERROR_UNHANDLED_HTTP_CODE;
1595
Vasu Norief7e33b2010-10-20 13:26:02 -07001596 case Downloads.Impl.STATUS_HTTP_DATA_ERROR:
Steve Howarda2709362010-07-02 17:12:48 -07001597 return ERROR_HTTP_DATA_ERROR;
1598
Vasu Norief7e33b2010-10-20 13:26:02 -07001599 case Downloads.Impl.STATUS_TOO_MANY_REDIRECTS:
Steve Howarda2709362010-07-02 17:12:48 -07001600 return ERROR_TOO_MANY_REDIRECTS;
1601
Vasu Norief7e33b2010-10-20 13:26:02 -07001602 case Downloads.Impl.STATUS_INSUFFICIENT_SPACE_ERROR:
Steve Howarda2709362010-07-02 17:12:48 -07001603 return ERROR_INSUFFICIENT_SPACE;
1604
Vasu Norief7e33b2010-10-20 13:26:02 -07001605 case Downloads.Impl.STATUS_DEVICE_NOT_FOUND_ERROR:
Steve Howarda2709362010-07-02 17:12:48 -07001606 return ERROR_DEVICE_NOT_FOUND;
1607
Steve Howard33bbd122010-08-02 17:51:29 -07001608 case Downloads.Impl.STATUS_CANNOT_RESUME:
1609 return ERROR_CANNOT_RESUME;
1610
Steve Howarda9e87c92010-09-16 12:02:03 -07001611 case Downloads.Impl.STATUS_FILE_ALREADY_EXISTS_ERROR:
1612 return ERROR_FILE_ALREADY_EXISTS;
1613
Steve Howarda2709362010-07-02 17:12:48 -07001614 default:
1615 return ERROR_UNKNOWN;
1616 }
1617 }
1618
Steve Howard3e8c1d32010-09-29 17:03:32 -07001619 private int translateStatus(int status) {
Steve Howarda2709362010-07-02 17:12:48 -07001620 switch (status) {
Vasu Norief7e33b2010-10-20 13:26:02 -07001621 case Downloads.Impl.STATUS_PENDING:
Steve Howarda2709362010-07-02 17:12:48 -07001622 return STATUS_PENDING;
1623
Vasu Norief7e33b2010-10-20 13:26:02 -07001624 case Downloads.Impl.STATUS_RUNNING:
Steve Howarda2709362010-07-02 17:12:48 -07001625 return STATUS_RUNNING;
1626
Steve Howard3e8c1d32010-09-29 17:03:32 -07001627 case Downloads.Impl.STATUS_PAUSED_BY_APP:
1628 case Downloads.Impl.STATUS_WAITING_TO_RETRY:
1629 case Downloads.Impl.STATUS_WAITING_FOR_NETWORK:
1630 case Downloads.Impl.STATUS_QUEUED_FOR_WIFI:
Steve Howarda2709362010-07-02 17:12:48 -07001631 return STATUS_PAUSED;
1632
Vasu Norief7e33b2010-10-20 13:26:02 -07001633 case Downloads.Impl.STATUS_SUCCESS:
Steve Howarda2709362010-07-02 17:12:48 -07001634 return STATUS_SUCCESSFUL;
1635
1636 default:
Vasu Norief7e33b2010-10-20 13:26:02 -07001637 assert Downloads.Impl.isStatusError(status);
Steve Howarda2709362010-07-02 17:12:48 -07001638 return STATUS_FAILED;
1639 }
1640 }
1641 }
1642}