blob: 9cb8f7edbe8a106aeb48c8a2bfc488b3d4a57824 [file] [log] [blame]
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001/*
2 * Copyright (C) 2013 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
17package com.android.documentsui;
18
Steve McKayd9caa6a2016-09-15 16:36:45 -070019import static com.android.documentsui.base.Shared.DEBUG;
20import static com.android.documentsui.base.Shared.TAG;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070021
Jeff Sharkey3fd11772013-09-30 14:26:27 -070022import android.app.ActivityManager;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070023import android.content.AsyncTaskLoader;
24import android.content.ContentProviderClient;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070025import android.content.Context;
26import android.database.Cursor;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070027import android.database.MatrixCursor;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070028import android.database.MergeCursor;
29import android.net.Uri;
Jeff Sharkey9dd02622013-09-27 16:44:11 -070030import android.os.Bundle;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070031import android.provider.DocumentsContract;
Jeff Sharkey9656a532013-09-13 13:42:19 -070032import android.provider.DocumentsContract.Document;
Jeff Sharkey9dd02622013-09-27 16:44:11 -070033import android.text.format.DateUtils;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070034import android.util.Log;
35
Steve McKayd9caa6a2016-09-15 16:36:45 -070036import com.android.documentsui.base.FilteringCursorWrapper;
Steve McKayd0805062016-09-15 14:30:38 -070037import com.android.documentsui.base.RootInfo;
Steve McKayd9caa6a2016-09-15 16:36:45 -070038import com.android.documentsui.base.State;
39import com.android.documentsui.roots.RootCursorWrapper;
40import com.android.documentsui.roots.RootsCache;
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -070041import com.android.internal.annotations.GuardedBy;
Steve McKay1aeb3952016-02-18 09:48:39 -080042
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070043import libcore.io.IoUtils;
44
Garfield, Tan11d23482016-08-05 09:33:29 -070045import com.google.common.util.concurrent.AbstractFuture;
46
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070047import java.io.Closeable;
48import java.io.IOException;
Steve McKayfefcd702015-08-20 16:19:38 +000049import java.util.ArrayList;
Jeff Sharkey8b997042013-09-19 15:25:56 -070050import java.util.Collection;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070051import java.util.HashMap;
52import java.util.List;
53import java.util.concurrent.CountDownLatch;
54import java.util.concurrent.ExecutionException;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070055import java.util.concurrent.Semaphore;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070056import java.util.concurrent.TimeUnit;
57
Steve McKay1aeb3952016-02-18 09:48:39 -080058public class RecentsLoader extends AsyncTaskLoader<DirectoryResult> {
Jeff Sharkeyf73d81a2013-11-18 17:41:33 -080059 // TODO: clean up cursor ownership so background thread doesn't traverse
60 // previously returned cursors for filtering/sorting; this currently races
61 // with the UI thread.
62
Jeff Sharkey3fd11772013-09-30 14:26:27 -070063 private static final int MAX_OUTSTANDING_RECENTS = 4;
64 private static final int MAX_OUTSTANDING_RECENTS_SVELTE = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070065
66 /**
67 * Time to wait for first pass to complete before returning partial results.
68 */
Jeff Sharkey9dd02622013-09-27 16:44:11 -070069 private static final int MAX_FIRST_PASS_WAIT_MILLIS = 500;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070070
Jeff Sharkey9dd02622013-09-27 16:44:11 -070071 /** Maximum documents from a single root. */
72 private static final int MAX_DOCS_FROM_ROOT = 64;
73
74 /** Ignore documents older than this age. */
75 private static final long REJECT_OLDER_THAN = 45 * DateUtils.DAY_IN_MILLIS;
76
77 /** MIME types that should always be excluded from recents. */
78 private static final String[] RECENT_REJECT_MIMES = new String[] { Document.MIME_TYPE_DIR };
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070079
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070080 private final Semaphore mQueryPermits;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070081
Jeff Sharkey8b997042013-09-19 15:25:56 -070082 private final RootsCache mRoots;
83 private final State mState;
Jeff Sharkey1c903cc2013-09-02 17:19:40 -070084
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -070085 @GuardedBy("mTasks")
Steve McKay1aeb3952016-02-18 09:48:39 -080086 private final HashMap<RootInfo, RecentsTask> mTasks = new HashMap<>();
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070087
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070088 private CountDownLatch mFirstPassLatch;
89 private volatile boolean mFirstPassDone;
90
91 private DirectoryResult mResult;
92
Steve McKay1aeb3952016-02-18 09:48:39 -080093 public RecentsLoader(Context context, RootsCache roots, State state) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070094 super(context);
Jeff Sharkey1c903cc2013-09-02 17:19:40 -070095 mRoots = roots;
Jeff Sharkey8b997042013-09-19 15:25:56 -070096 mState = state;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070097
98 // Keep clients around on high-RAM devices, since we'd be spinning them
99 // up moments later to fetch thumbnails anyway.
100 final ActivityManager am = (ActivityManager) getContext().getSystemService(
101 Context.ACTIVITY_SERVICE);
102 mQueryPermits = new Semaphore(
103 am.isLowRamDevice() ? MAX_OUTSTANDING_RECENTS_SVELTE : MAX_OUTSTANDING_RECENTS);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700104 }
105
106 @Override
107 public DirectoryResult loadInBackground() {
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700108 synchronized (mTasks) {
109 return loadInBackgroundLocked();
110 }
111 }
112
113 private DirectoryResult loadInBackgroundLocked() {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700114 if (mFirstPassLatch == null) {
115 // First time through we kick off all the recent tasks, and wait
116 // around to see if everyone finishes quickly.
117
Jeff Sharkey8b997042013-09-19 15:25:56 -0700118 final Collection<RootInfo> roots = mRoots.getMatchingRootsBlocking(mState);
119 for (RootInfo root : roots) {
Steve McKay1aeb3952016-02-18 09:48:39 -0800120 if (root.supportsRecents()) {
121 mTasks.put(root, new RecentsTask(root.authority, root.rootId));
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700122 }
123 }
124
125 mFirstPassLatch = new CountDownLatch(mTasks.size());
Steve McKay1aeb3952016-02-18 09:48:39 -0800126 for (RecentsTask task : mTasks.values()) {
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700127 ProviderExecutor.forAuthority(task.authority).execute(task);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700128 }
129
130 try {
131 mFirstPassLatch.await(MAX_FIRST_PASS_WAIT_MILLIS, TimeUnit.MILLISECONDS);
132 mFirstPassDone = true;
133 } catch (InterruptedException e) {
134 throw new RuntimeException(e);
135 }
136 }
137
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700138 final long rejectBefore = System.currentTimeMillis() - REJECT_OLDER_THAN;
139
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700140 // Collect all finished tasks
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700141 boolean allDone = true;
Steve McKayfefcd702015-08-20 16:19:38 +0000142 List<Cursor> cursors = new ArrayList<>();
Steve McKay1aeb3952016-02-18 09:48:39 -0800143 for (RecentsTask task : mTasks.values()) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700144 if (task.isDone()) {
145 try {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700146 final Cursor cursor = task.get();
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700147 if (cursor == null) continue;
148
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700149 final FilteringCursorWrapper filtered = new FilteringCursorWrapper(
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700150 cursor, mState.acceptMimes, RECENT_REJECT_MIMES, rejectBefore) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700151 @Override
152 public void close() {
153 // Ignored, since we manage cursor lifecycle internally
154 }
155 };
156 cursors.add(filtered);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700157 } catch (InterruptedException e) {
158 throw new RuntimeException(e);
159 } catch (ExecutionException e) {
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700160 // We already logged on other side
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700161 }
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700162 } else {
163 allDone = false;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700164 }
165 }
166
Steve McKayfefcd702015-08-20 16:19:38 +0000167 if (DEBUG) {
Jeff Sharkey40457802013-09-21 13:57:33 -0700168 Log.d(TAG, "Found " + cursors.size() + " of " + mTasks.size() + " recent queries done");
Jeff Sharkey40457802013-09-21 13:57:33 -0700169 }
170
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700171 final DirectoryResult result = new DirectoryResult();
Garfield, Tan11d23482016-08-05 09:33:29 -0700172 result.sortModel = mState.sortModel;
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700173
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700174 final Cursor merged;
175 if (cursors.size() > 0) {
176 merged = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
177 } else {
178 // Return something when nobody is ready
179 merged = new MatrixCursor(new String[0]);
180 }
181
Ben Kwab8a5e082015-12-07 13:25:27 -0800182 // Tell the UI if this is an in-progress result. When loading is complete, another update is
183 // sent with EXTRA_LOADING set to false.
184 Bundle extras = new Bundle();
185 extras.putBoolean(DocumentsContract.EXTRA_LOADING, !allDone);
186 merged.setExtras(extras);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700187
Ben Kwab8a5e082015-12-07 13:25:27 -0800188 result.cursor = merged;
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700189
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700190 return result;
191 }
192
193 @Override
194 public void cancelLoadInBackground() {
195 super.cancelLoadInBackground();
196 }
197
198 @Override
199 public void deliverResult(DirectoryResult result) {
200 if (isReset()) {
201 IoUtils.closeQuietly(result);
202 return;
203 }
204 DirectoryResult oldResult = mResult;
205 mResult = result;
206
207 if (isStarted()) {
208 super.deliverResult(result);
209 }
210
211 if (oldResult != null && oldResult != result) {
212 IoUtils.closeQuietly(oldResult);
213 }
214 }
215
216 @Override
217 protected void onStartLoading() {
218 if (mResult != null) {
219 deliverResult(mResult);
220 }
221 if (takeContentChanged() || mResult == null) {
222 forceLoad();
223 }
224 }
225
226 @Override
227 protected void onStopLoading() {
228 cancelLoad();
229 }
230
231 @Override
232 public void onCanceled(DirectoryResult result) {
233 IoUtils.closeQuietly(result);
234 }
235
236 @Override
237 protected void onReset() {
238 super.onReset();
239
240 // Ensure the loader is stopped
241 onStopLoading();
242
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700243 synchronized (mTasks) {
Steve McKay1aeb3952016-02-18 09:48:39 -0800244 for (RecentsTask task : mTasks.values()) {
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700245 IoUtils.closeQuietly(task);
246 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700247 }
248
249 IoUtils.closeQuietly(mResult);
250 mResult = null;
251 }
Steve McKay1aeb3952016-02-18 09:48:39 -0800252
253 // TODO: create better transfer of ownership around cursor to ensure its
254 // closed in all edge cases.
255
256 public class RecentsTask extends AbstractFuture<Cursor> implements Runnable, Closeable {
257 public final String authority;
258 public final String rootId;
259
260 private Cursor mWithRoot;
261
262 public RecentsTask(String authority, String rootId) {
263 this.authority = authority;
264 this.rootId = rootId;
265 }
266
267 @Override
268 public void run() {
269 if (isCancelled()) return;
270
271 try {
272 mQueryPermits.acquire();
273 } catch (InterruptedException e) {
274 return;
275 }
276
277 try {
278 runInternal();
279 } finally {
280 mQueryPermits.release();
281 }
282 }
283
284 public void runInternal() {
285 ContentProviderClient client = null;
286 try {
287 client = DocumentsApplication.acquireUnstableProviderOrThrow(
288 getContext().getContentResolver(), authority);
289
290 final Uri uri = DocumentsContract.buildRecentDocumentsUri(authority, rootId);
291 final Cursor cursor = client.query(
Garfield, Tan11d23482016-08-05 09:33:29 -0700292 uri, null, null, null, mState.sortModel.getDocumentSortQuery());
Steve McKay1aeb3952016-02-18 09:48:39 -0800293 mWithRoot = new RootCursorWrapper(authority, rootId, cursor, MAX_DOCS_FROM_ROOT);
294
295 } catch (Exception e) {
296 Log.w(TAG, "Failed to load " + authority + ", " + rootId, e);
297 } finally {
298 ContentProviderClient.releaseQuietly(client);
299 }
300
301 set(mWithRoot);
302
303 mFirstPassLatch.countDown();
304 if (mFirstPassDone) {
305 onContentChanged();
306 }
307 }
308
309 @Override
310 public void close() throws IOException {
311 IoUtils.closeQuietly(mWithRoot);
312 }
313 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700314}