blob: c3ccbba2ab830b338ffd1597679805e07792bc5e [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;
Steve McKay988d8a32016-09-27 09:41:17 -070040import com.android.documentsui.roots.RootsAccess;
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -070041import com.android.internal.annotations.GuardedBy;
Steve McKay1aeb3952016-02-18 09:48:39 -080042
Ben Lin1427c602016-09-22 14:12:19 -070043import libcore.io.IoUtils;
44
Garfield Tan2010ff72016-09-30 14:55:32 -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;
Ben Lin1427c602016-09-22 14:12:19 -070053import java.util.Map;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070054import java.util.concurrent.CountDownLatch;
55import java.util.concurrent.ExecutionException;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070056import java.util.concurrent.Semaphore;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070057import java.util.concurrent.TimeUnit;
58
Steve McKay1aeb3952016-02-18 09:48:39 -080059public class RecentsLoader extends AsyncTaskLoader<DirectoryResult> {
Jeff Sharkeyf73d81a2013-11-18 17:41:33 -080060 // TODO: clean up cursor ownership so background thread doesn't traverse
61 // previously returned cursors for filtering/sorting; this currently races
62 // with the UI thread.
63
Jeff Sharkey3fd11772013-09-30 14:26:27 -070064 private static final int MAX_OUTSTANDING_RECENTS = 4;
65 private static final int MAX_OUTSTANDING_RECENTS_SVELTE = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070066
67 /**
68 * Time to wait for first pass to complete before returning partial results.
69 */
Jeff Sharkey9dd02622013-09-27 16:44:11 -070070 private static final int MAX_FIRST_PASS_WAIT_MILLIS = 500;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070071
Jeff Sharkey9dd02622013-09-27 16:44:11 -070072 /** Maximum documents from a single root. */
73 private static final int MAX_DOCS_FROM_ROOT = 64;
74
75 /** Ignore documents older than this age. */
76 private static final long REJECT_OLDER_THAN = 45 * DateUtils.DAY_IN_MILLIS;
77
78 /** MIME types that should always be excluded from recents. */
79 private static final String[] RECENT_REJECT_MIMES = new String[] { Document.MIME_TYPE_DIR };
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070080
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070081 private final Semaphore mQueryPermits;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070082
Steve McKay988d8a32016-09-27 09:41:17 -070083 private final RootsAccess mRoots;
Jeff Sharkey8b997042013-09-19 15:25:56 -070084 private final State mState;
Jeff Sharkey1c903cc2013-09-02 17:19:40 -070085
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -070086 @GuardedBy("mTasks")
Ben Lin1427c602016-09-22 14:12:19 -070087 /** A authority -> RecentsTask map */
88 private final Map<String, RecentsTask> mTasks = new HashMap<>();
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070089
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070090 private CountDownLatch mFirstPassLatch;
91 private volatile boolean mFirstPassDone;
92
93 private DirectoryResult mResult;
94
Steve McKay988d8a32016-09-27 09:41:17 -070095 public RecentsLoader(Context context, RootsAccess roots, State state) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070096 super(context);
Jeff Sharkey1c903cc2013-09-02 17:19:40 -070097 mRoots = roots;
Jeff Sharkey8b997042013-09-19 15:25:56 -070098 mState = state;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070099
100 // Keep clients around on high-RAM devices, since we'd be spinning them
101 // up moments later to fetch thumbnails anyway.
102 final ActivityManager am = (ActivityManager) getContext().getSystemService(
103 Context.ACTIVITY_SERVICE);
104 mQueryPermits = new Semaphore(
105 am.isLowRamDevice() ? MAX_OUTSTANDING_RECENTS_SVELTE : MAX_OUTSTANDING_RECENTS);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700106 }
107
108 @Override
109 public DirectoryResult loadInBackground() {
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700110 synchronized (mTasks) {
111 return loadInBackgroundLocked();
112 }
113 }
114
115 private DirectoryResult loadInBackgroundLocked() {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700116 if (mFirstPassLatch == null) {
117 // First time through we kick off all the recent tasks, and wait
118 // around to see if everyone finishes quickly.
Ben Lin1427c602016-09-22 14:12:19 -0700119 Map<String, List<String>> rootsIndex = indexRecentsRoots();
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700120
Ben Lin1427c602016-09-22 14:12:19 -0700121 for (String authority : rootsIndex.keySet()) {
122 mTasks.put(authority, new RecentsTask(authority, rootsIndex.get(authority)));
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700123 }
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;
Ben Lin1427c602016-09-22 14:12:19 -0700142 int totalQuerySize = 0;
Garfield Tan2b9578f2016-10-10 15:47:24 -0700143 List<Cursor> cursors = new ArrayList<>(mTasks.size());
Steve McKay1aeb3952016-02-18 09:48:39 -0800144 for (RecentsTask task : mTasks.values()) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700145 if (task.isDone()) {
146 try {
Ben Lin1427c602016-09-22 14:12:19 -0700147 final Cursor[] taskCursors = task.get();
148 if (taskCursors == null || taskCursors.length == 0) continue;
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700149
Ben Lin1427c602016-09-22 14:12:19 -0700150 totalQuerySize += taskCursors.length;
151 for (Cursor cursor : taskCursors) {
152 if (cursor == null) {
153 // It's possible given an authority, some roots fail to return a cursor
154 // after a query.
155 continue;
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700156 }
Ben Lin1427c602016-09-22 14:12:19 -0700157 final FilteringCursorWrapper filtered = new FilteringCursorWrapper(
158 cursor, mState.acceptMimes, RECENT_REJECT_MIMES, rejectBefore) {
159 @Override
160 public void close() {
161 // Ignored, since we manage cursor lifecycle internally
162 }
163 };
164 cursors.add(filtered);
165 }
166
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700167 } catch (InterruptedException e) {
168 throw new RuntimeException(e);
169 } catch (ExecutionException e) {
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700170 // We already logged on other side
Garfield Tan2b9578f2016-10-10 15:47:24 -0700171 } catch (Exception e) {
172 // Catch exceptions thrown when we read the cursor.
173 Log.e(TAG, "Failed to query Recents for authority: " + task.authority
174 + ". Skip this authority in Recents.", e);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700175 }
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700176 } else {
177 allDone = false;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700178 }
179 }
180
Steve McKayfefcd702015-08-20 16:19:38 +0000181 if (DEBUG) {
Ben Lin1427c602016-09-22 14:12:19 -0700182 Log.d(TAG,
183 "Found " + cursors.size() + " of " + totalQuerySize + " recent queries done");
Jeff Sharkey40457802013-09-21 13:57:33 -0700184 }
185
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700186 final DirectoryResult result = new DirectoryResult();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700187
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700188 final Cursor merged;
189 if (cursors.size() > 0) {
190 merged = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
191 } else {
192 // Return something when nobody is ready
193 merged = new MatrixCursor(new String[0]);
194 }
195
Garfield Tan2010ff72016-09-30 14:55:32 -0700196 final Cursor sorted = mState.sortModel.sortCursor(merged);
197
Ben Kwab8a5e082015-12-07 13:25:27 -0800198 // Tell the UI if this is an in-progress result. When loading is complete, another update is
199 // sent with EXTRA_LOADING set to false.
200 Bundle extras = new Bundle();
201 extras.putBoolean(DocumentsContract.EXTRA_LOADING, !allDone);
Garfield Tan2010ff72016-09-30 14:55:32 -0700202 sorted.setExtras(extras);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700203
Garfield Tan2010ff72016-09-30 14:55:32 -0700204 result.cursor = sorted;
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700205
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700206 return result;
207 }
208
Ben Lin1427c602016-09-22 14:12:19 -0700209 /**
210 * Returns a map of Authority -> rootIds
211 */
212 private Map<String, List<String>> indexRecentsRoots() {
213 final Collection<RootInfo> roots = mRoots.getMatchingRootsBlocking(mState);
214 HashMap<String, List<String>> rootsIndex = new HashMap<>();
215 for (RootInfo root : roots) {
216 if (!root.supportsRecents()) {
217 continue;
218 }
219
220 if (!rootsIndex.containsKey(root.authority)) {
221 rootsIndex.put(root.authority, new ArrayList<>());
222 }
223 rootsIndex.get(root.authority).add(root.rootId);
224 }
225
226 return rootsIndex;
227 }
228
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700229 @Override
230 public void cancelLoadInBackground() {
231 super.cancelLoadInBackground();
232 }
233
234 @Override
235 public void deliverResult(DirectoryResult result) {
236 if (isReset()) {
237 IoUtils.closeQuietly(result);
238 return;
239 }
240 DirectoryResult oldResult = mResult;
241 mResult = result;
242
243 if (isStarted()) {
244 super.deliverResult(result);
245 }
246
247 if (oldResult != null && oldResult != result) {
248 IoUtils.closeQuietly(oldResult);
249 }
250 }
251
252 @Override
253 protected void onStartLoading() {
254 if (mResult != null) {
255 deliverResult(mResult);
256 }
257 if (takeContentChanged() || mResult == null) {
258 forceLoad();
259 }
260 }
261
262 @Override
263 protected void onStopLoading() {
264 cancelLoad();
265 }
266
267 @Override
268 public void onCanceled(DirectoryResult result) {
269 IoUtils.closeQuietly(result);
270 }
271
272 @Override
273 protected void onReset() {
274 super.onReset();
275
276 // Ensure the loader is stopped
277 onStopLoading();
278
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700279 synchronized (mTasks) {
Steve McKay1aeb3952016-02-18 09:48:39 -0800280 for (RecentsTask task : mTasks.values()) {
Jeff Sharkey6ee1dfe2015-10-19 17:46:04 -0700281 IoUtils.closeQuietly(task);
282 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700283 }
284
285 IoUtils.closeQuietly(mResult);
286 mResult = null;
287 }
Steve McKay1aeb3952016-02-18 09:48:39 -0800288
289 // TODO: create better transfer of ownership around cursor to ensure its
290 // closed in all edge cases.
291
Ben Lin1427c602016-09-22 14:12:19 -0700292 public class RecentsTask extends AbstractFuture<Cursor[]> implements Runnable, Closeable {
Steve McKay1aeb3952016-02-18 09:48:39 -0800293 public final String authority;
Ben Lin1427c602016-09-22 14:12:19 -0700294 public final List<String> rootIds;
Steve McKay1aeb3952016-02-18 09:48:39 -0800295
Ben Lin1427c602016-09-22 14:12:19 -0700296 private Cursor[] mCursors;
Steve McKay1aeb3952016-02-18 09:48:39 -0800297
Ben Lin1427c602016-09-22 14:12:19 -0700298 public RecentsTask(String authority, List<String> rootIds) {
Steve McKay1aeb3952016-02-18 09:48:39 -0800299 this.authority = authority;
Ben Lin1427c602016-09-22 14:12:19 -0700300 this.rootIds = rootIds;
Steve McKay1aeb3952016-02-18 09:48:39 -0800301 }
302
303 @Override
304 public void run() {
305 if (isCancelled()) return;
306
307 try {
308 mQueryPermits.acquire();
309 } catch (InterruptedException e) {
310 return;
311 }
312
313 try {
314 runInternal();
315 } finally {
316 mQueryPermits.release();
317 }
318 }
319
320 public void runInternal() {
321 ContentProviderClient client = null;
322 try {
323 client = DocumentsApplication.acquireUnstableProviderOrThrow(
324 getContext().getContentResolver(), authority);
325
Ben Lin1427c602016-09-22 14:12:19 -0700326 final Cursor[] res = new Cursor[rootIds.size()];
327 mCursors = new Cursor[rootIds.size()];
328 for (int i = 0; i < rootIds.size(); i++) {
329 final Uri uri = DocumentsContract.buildRecentDocumentsUri(authority,
330 rootIds.get(i));
331 try {
332 res[i] = client.query(
333 uri, null, null, null, mState.sortModel.getDocumentSortQuery());
334 mCursors[i] = new RootCursorWrapper(authority, rootIds.get(i), res[i],
335 MAX_DOCS_FROM_ROOT);
336 } catch (Exception e) {
337 Log.w(TAG, "Failed to load " + authority + ", " + rootIds.get(i), e);
338 }
339 }
Steve McKay1aeb3952016-02-18 09:48:39 -0800340
341 } catch (Exception e) {
Ben Lin1427c602016-09-22 14:12:19 -0700342 Log.w(TAG, "Failed to acquire content resolver for authority: " + authority);
Steve McKay1aeb3952016-02-18 09:48:39 -0800343 } finally {
344 ContentProviderClient.releaseQuietly(client);
345 }
346
Ben Lin1427c602016-09-22 14:12:19 -0700347 set(mCursors);
Steve McKay1aeb3952016-02-18 09:48:39 -0800348
349 mFirstPassLatch.countDown();
350 if (mFirstPassDone) {
351 onContentChanged();
352 }
353 }
354
355 @Override
356 public void close() throws IOException {
Ben Lin1427c602016-09-22 14:12:19 -0700357 for (Cursor cursor : mCursors) {
358 IoUtils.closeQuietly(cursor);
359 }
Steve McKay1aeb3952016-02-18 09:48:39 -0800360 }
361 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700362}