blob: 1a17b6c639974236675707c5d813b22f229fafa4 [file] [log] [blame]
Jeff Sharkeye22d02e2013-04-26 16:54:55 -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
Jeff Sharkey311a7d82015-04-11 21:27:21 -070019import static com.android.documentsui.BaseActivity.State.ACTION_BROWSE;
20import static com.android.documentsui.BaseActivity.State.ACTION_BROWSE_ALL;
Steve McKayd0a2a2c2015-03-25 14:35:33 -070021import static com.android.documentsui.BaseActivity.State.ACTION_CREATE;
22import static com.android.documentsui.BaseActivity.State.ACTION_MANAGE;
23import static com.android.documentsui.BaseActivity.State.MODE_GRID;
24import static com.android.documentsui.BaseActivity.State.MODE_LIST;
25import static com.android.documentsui.BaseActivity.State.MODE_UNKNOWN;
26import static com.android.documentsui.BaseActivity.State.SORT_ORDER_UNKNOWN;
Steve McKayfefcd702015-08-20 16:19:38 +000027import static com.android.documentsui.Shared.TAG;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070028import static com.android.documentsui.model.DocumentInfo.getCursorInt;
29import static com.android.documentsui.model.DocumentInfo.getCursorLong;
30import static com.android.documentsui.model.DocumentInfo.getCursorString;
Steve McKayef280152015-06-11 10:10:49 -070031import static com.android.internal.util.Preconditions.checkNotNull;
Steve McKayd57f5fa2015-07-23 16:33:41 -070032import static com.android.internal.util.Preconditions.checkState;
Steve McKay0599a442015-05-05 14:50:00 -070033
Ben Kwaf5858932015-04-07 15:43:39 -070034import android.app.Activity;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070035import android.app.ActivityManager;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070036import android.app.Fragment;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070037import android.app.FragmentManager;
38import android.app.FragmentTransaction;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070039import android.app.LoaderManager.LoaderCallbacks;
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -070040import android.content.ClipData;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070041import android.content.ContentProviderClient;
Jeff Sharkey873daa32013-08-18 17:38:20 -070042import android.content.ContentResolver;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070043import android.content.ContentValues;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070044import android.content.Context;
Jeff Sharkey873daa32013-08-18 17:38:20 -070045import android.content.Intent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070046import android.content.Loader;
Jeff Sharkey083d7e12014-07-27 21:01:45 -070047import android.content.res.Resources;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070048import android.database.Cursor;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070049import android.graphics.Bitmap;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -070050import android.graphics.Canvas;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070051import android.graphics.Point;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070052import android.graphics.drawable.Drawable;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070053import android.net.Uri;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070054import android.os.AsyncTask;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070055import android.os.Bundle;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070056import android.os.CancellationSignal;
Makoto Onuki77778752015-07-01 14:55:14 -070057import android.os.Handler;
58import android.os.Looper;
Jeff Sharkeye39a89b2013-10-29 11:56:37 -070059import android.os.OperationCanceledException;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070060import android.os.Parcelable;
Steve McKay8e258c62015-05-06 14:27:57 -070061import android.os.SystemProperties;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070062import android.provider.DocumentsContract;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070063import android.provider.DocumentsContract.Document;
Ben Kwa24be5d32015-08-27 16:04:46 -070064import android.support.annotation.Nullable;
Ben Kwa7461a952015-09-01 11:03:01 -070065import android.support.annotation.VisibleForTesting;
Ben Kwa91923182015-08-27 16:06:33 -070066import android.support.design.widget.Snackbar;
Steve McKayef280152015-06-11 10:10:49 -070067import android.support.v7.widget.GridLayoutManager;
68import android.support.v7.widget.LinearLayoutManager;
69import android.support.v7.widget.RecyclerView;
70import android.support.v7.widget.RecyclerView.LayoutManager;
Steve McKayef280152015-06-11 10:10:49 -070071import android.support.v7.widget.RecyclerView.RecyclerListener;
72import android.support.v7.widget.RecyclerView.ViewHolder;
Jeff Sharkey6d579272015-06-11 09:16:19 -070073import android.text.TextUtils;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070074import android.text.format.DateUtils;
Jeff Sharkey2e694f82013-08-06 16:26:14 -070075import android.text.format.Formatter;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070076import android.text.format.Time;
77import android.util.Log;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070078import android.util.SparseArray;
Ben Kwa91923182015-08-27 16:06:33 -070079import android.util.SparseBooleanArray;
Ben Kwa0574b182015-09-08 07:31:19 -070080import android.util.TypedValue;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070081import android.view.ActionMode;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -070082import android.view.DragEvent;
Steve McKayef280152015-06-11 10:10:49 -070083import android.view.GestureDetector;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070084import android.view.LayoutInflater;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070085import android.view.Menu;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070086import android.view.MenuItem;
Steve McKayef280152015-06-11 10:10:49 -070087import android.view.MotionEvent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070088import android.view.View;
Steve McKayd57f5fa2015-07-23 16:33:41 -070089import android.view.View.OnLayoutChangeListener;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070090import android.view.ViewGroup;
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -070091import android.view.ViewParent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070092import android.widget.ImageView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070093import android.widget.TextView;
Jeff Sharkey873daa32013-08-18 17:38:20 -070094import android.widget.Toast;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070095
Steve McKay351a7492015-08-04 10:11:01 -070096import com.android.documentsui.BaseActivity.DocumentContext;
Steve McKayd0a2a2c2015-03-25 14:35:33 -070097import com.android.documentsui.BaseActivity.State;
Steve McKayef280152015-06-11 10:10:49 -070098import com.android.documentsui.MultiSelectManager.Selection;
Jeff Sharkey753a3ae2013-10-22 17:09:44 -070099import com.android.documentsui.ProviderExecutor.Preemptable;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700100import com.android.documentsui.RecentsProvider.StateColumns;
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700101import com.android.documentsui.model.DocumentInfo;
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +0900102import com.android.documentsui.model.DocumentStack;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700103import com.android.documentsui.model.RootInfo;
Steve McKay1f199482015-05-20 15:58:42 -0700104import com.android.internal.util.Preconditions;
Steve McKayfad3d4a2015-09-22 15:09:21 -0700105
Steve McKayfefcd702015-08-20 16:19:38 +0000106import com.google.common.collect.Lists;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700107
108import java.util.ArrayList;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -0700109import java.util.Collections;
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700110import java.util.List;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700111
112/**
113 * Display the documents inside a single directory.
114 */
115public class DirectoryFragment extends Fragment {
116
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700117 public static final int TYPE_NORMAL = 1;
118 public static final int TYPE_SEARCH = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700119 public static final int TYPE_RECENT_OPEN = 3;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700120
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700121 public static final int ANIM_NONE = 1;
122 public static final int ANIM_SIDE = 2;
123 public static final int ANIM_DOWN = 3;
124 public static final int ANIM_UP = 4;
125
Ben Kwaf5858932015-04-07 15:43:39 -0700126 public static final int REQUEST_COPY_DESTINATION = 1;
127
Steve McKayef280152015-06-11 10:10:49 -0700128 private static final int LOADER_ID = 42;
129 private static final boolean DEBUG = false;
Steve McKay8e258c62015-05-06 14:27:57 -0700130 private static final boolean DEBUG_ENABLE_DND = false;
131
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700132 private static final String EXTRA_TYPE = "type";
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700133 private static final String EXTRA_ROOT = "root";
134 private static final String EXTRA_DOC = "doc";
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700135 private static final String EXTRA_QUERY = "query";
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700136 private static final String EXTRA_IGNORE_STATE = "ignoreState";
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700137
Ben Kwa7461a952015-09-01 11:03:01 -0700138 private Model mModel;
Ben Kwa379e1762015-09-21 10:49:52 -0700139 private Model.UpdateListener mModelUpdateListener = new ModelUpdateListener();
Ben Kwa24be5d32015-08-27 16:04:46 -0700140
Steve McKayef280152015-06-11 10:10:49 -0700141 private final Handler mHandler = new Handler(Looper.getMainLooper());
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700142
Steve McKayef280152015-06-11 10:10:49 -0700143 private View mEmptyView;
144 private RecyclerView mRecView;
145
146 private int mType = TYPE_NORMAL;
147 private String mStateKey;
148
149 private int mLastMode = MODE_UNKNOWN;
150 private int mLastSortOrder = SORT_ORDER_UNKNOWN;
151 private boolean mLastShowSize;
152 private boolean mHideGridTitles;
153 private boolean mSvelteRecents;
154 private Point mThumbSize;
155 private DocumentsAdapter mAdapter;
156 private LoaderCallbacks<DirectoryResult> mCallbacks;
Steve McKay1f199482015-05-20 15:58:42 -0700157 private FragmentTuner mFragmentTuner;
158 private DocumentClipper mClipper;
Steve McKayef280152015-06-11 10:10:49 -0700159 // These are lazily initialized.
Steve McKayd57f5fa2015-07-23 16:33:41 -0700160 private LinearLayoutManager mListLayout;
161 private GridLayoutManager mGridLayout;
Steve McKayd57f5fa2015-07-23 16:33:41 -0700162 private int mColumnCount = 1; // This will get updated when layout changes.
Steve McKay1f199482015-05-20 15:58:42 -0700163
Ben Kwac42fa402015-09-16 08:04:37 -0700164 private MessageBar mMessageBar;
Ben Kwa379e1762015-09-21 10:49:52 -0700165 private View mProgressBar;
Ben Kwac42fa402015-09-16 08:04:37 -0700166
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700167 public static void showNormal(FragmentManager fm, RootInfo root, DocumentInfo doc, int anim) {
168 show(fm, TYPE_NORMAL, root, doc, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700169 }
170
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700171 public static void showSearch(FragmentManager fm, RootInfo root, String query, int anim) {
172 show(fm, TYPE_SEARCH, root, null, query, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700173 }
174
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700175 public static void showRecentsOpen(FragmentManager fm, int anim) {
176 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700177 }
178
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700179 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc,
180 String query, int anim) {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700181 final Bundle args = new Bundle();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700182 args.putInt(EXTRA_TYPE, type);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700183 args.putParcelable(EXTRA_ROOT, root);
184 args.putParcelable(EXTRA_DOC, doc);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700185 args.putString(EXTRA_QUERY, query);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700186
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700187 final FragmentTransaction ft = fm.beginTransaction();
188 switch (anim) {
189 case ANIM_SIDE:
190 args.putBoolean(EXTRA_IGNORE_STATE, true);
191 break;
192 case ANIM_DOWN:
193 args.putBoolean(EXTRA_IGNORE_STATE, true);
194 ft.setCustomAnimations(R.animator.dir_down, R.animator.dir_frozen);
195 break;
196 case ANIM_UP:
197 ft.setCustomAnimations(R.animator.dir_frozen, R.animator.dir_up);
198 break;
199 }
200
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700201 final DirectoryFragment fragment = new DirectoryFragment();
202 fragment.setArguments(args);
203
Jeff Sharkey76112212013-08-06 11:26:10 -0700204 ft.replace(R.id.container_directory, fragment);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700205 ft.commitAllowingStateLoss();
206 }
207
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700208 private static String buildStateKey(RootInfo root, DocumentInfo doc) {
209 final StringBuilder builder = new StringBuilder();
210 builder.append(root != null ? root.authority : "null").append(';');
211 builder.append(root != null ? root.rootId : "null").append(';');
212 builder.append(doc != null ? doc.documentId : "null");
213 return builder.toString();
214 }
215
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700216 public static DirectoryFragment get(FragmentManager fm) {
217 // TODO: deal with multiple directories shown at once
Jeff Sharkey76112212013-08-06 11:26:10 -0700218 return (DirectoryFragment) fm.findFragmentById(R.id.container_directory);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700219 }
220
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700221 @Override
222 public View onCreateView(
223 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
224 final Context context = inflater.getContext();
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700225 final Resources res = context.getResources();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700226 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
227
Ben Kwac42fa402015-09-16 08:04:37 -0700228 mMessageBar = MessageBar.create(getChildFragmentManager());
Ben Kwa379e1762015-09-21 10:49:52 -0700229 mProgressBar = view.findViewById(R.id.progressbar);
Ben Kwac42fa402015-09-16 08:04:37 -0700230
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700231 mEmptyView = view.findViewById(android.R.id.empty);
232
Steve McKayef280152015-06-11 10:10:49 -0700233 mRecView = (RecyclerView) view.findViewById(R.id.recyclerView);
234 mRecView.setRecyclerListener(
235 new RecyclerListener() {
236 @Override
237 public void onViewRecycled(ViewHolder holder) {
238 cancelThumbnailTask(holder.itemView);
239 }
240 });
Steve McKay8e258c62015-05-06 14:27:57 -0700241
Steve McKayd57f5fa2015-07-23 16:33:41 -0700242 // TODO: Rather than update columns on layout changes, push this
243 // code (or something like it) into GridLayoutManager.
244 mRecView.addOnLayoutChangeListener(
245 new OnLayoutChangeListener() {
246
247 @Override
248 public void onLayoutChange(
249 View v, int left, int top, int right, int bottom, int oldLeft,
250 int oldTop, int oldRight, int oldBottom) {
Steve McKayfefcd702015-08-20 16:19:38 +0000251 mColumnCount = calculateColumnCount();
Steve McKayd57f5fa2015-07-23 16:33:41 -0700252 if (mGridLayout != null) {
253 mGridLayout.setSpanCount(mColumnCount);
254 }
255 }
256 });
257
258 // TODO: Add a divider between views (which might use RecyclerView.ItemDecoration).
Steve McKay8e258c62015-05-06 14:27:57 -0700259 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -0700260 setupDragAndDropOnDirectoryView(mRecView);
Steve McKay8e258c62015-05-06 14:27:57 -0700261 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700262
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700263 return view;
264 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700265
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700266 @Override
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700267 public void onDestroyView() {
268 super.onDestroyView();
269
270 // Cancel any outstanding thumbnail requests
Steve McKayef280152015-06-11 10:10:49 -0700271 final int count = mRecView.getChildCount();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700272 for (int i = 0; i < count; i++) {
Steve McKayef280152015-06-11 10:10:49 -0700273 final View view = mRecView.getChildAt(i);
274 cancelThumbnailTask(view);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700275 }
Jeff Sharkeyfaaeb392013-10-04 14:44:56 -0700276
Steve McKayef280152015-06-11 10:10:49 -0700277 // Clear any outstanding selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700278 mModel.clearSelection();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700279 }
280
281 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700282 public void onActivityCreated(Bundle savedInstanceState) {
283 super.onActivityCreated(savedInstanceState);
284
285 final Context context = getActivity();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700286 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700287
Jeff Sharkey9656a532013-09-13 13:42:19 -0700288 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
289 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
290
Steve McKayef280152015-06-11 10:10:49 -0700291 mAdapter = new DocumentsAdapter(context);
292 mRecView.setAdapter(mAdapter);
293
294 GestureDetector.SimpleOnGestureListener listener =
295 new GestureDetector.SimpleOnGestureListener() {
296 @Override
297 public boolean onSingleTapUp(MotionEvent e) {
298 return DirectoryFragment.this.onSingleTapUp(e);
299 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700300 @Override
301 public boolean onDoubleTap(MotionEvent e) {
302 Log.d(TAG, "Handling double tap.");
303 return DirectoryFragment.this.onDoubleTap(e);
304 }
Steve McKayef280152015-06-11 10:10:49 -0700305 };
306
Ben Kwa24be5d32015-08-27 16:04:46 -0700307 // TODO: instead of inserting the view into the constructor, extract listener-creation code
308 // and set the listener on the view after the fact. Then the view doesn't need to be passed
309 // into the selection manager which is passed into the model.
310 MultiSelectManager selMgr= new MultiSelectManager(
Steve McKay57394872015-08-12 14:48:34 -0700311 mRecView,
312 listener,
313 state.allowMultiple
314 ? MultiSelectManager.MODE_MULTIPLE
315 : MultiSelectManager.MODE_SINGLE);
Ben Kwa24be5d32015-08-27 16:04:46 -0700316 selMgr.addCallback(new SelectionModeListener());
Ben Kwa7461a952015-09-01 11:03:01 -0700317
Ben Kwa379e1762015-09-21 10:49:52 -0700318 mModel = new Model(context, selMgr, mAdapter);
319 mModel.addUpdateListener(mModelUpdateListener);
Steve McKayef280152015-06-11 10:10:49 -0700320
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700321 mType = getArguments().getInt(EXTRA_TYPE);
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700322 mStateKey = buildStateKey(root, doc);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700323
Steve McKay1f199482015-05-20 15:58:42 -0700324 mFragmentTuner = pickFragmentTuner(state);
325 mClipper = new DocumentClipper(context);
326
Jeff Sharkey9656a532013-09-13 13:42:19 -0700327 if (mType == TYPE_RECENT_OPEN) {
328 // Hide titles when showing recents for picking images/videos
329 mHideGridTitles = MimePredicate.mimeMatches(
330 MimePredicate.VISUAL_MIMES, state.acceptMimes);
331 } else {
332 mHideGridTitles = (doc != null) && doc.isGridTitlesHidden();
333 }
334
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700335 final ActivityManager am = (ActivityManager) context.getSystemService(
336 Context.ACTIVITY_SERVICE);
337 mSvelteRecents = am.isLowRamDevice() && (mType == TYPE_RECENT_OPEN);
338
Jeff Sharkey46899c82013-08-18 22:26:48 -0700339 mCallbacks = new LoaderCallbacks<DirectoryResult>() {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700340 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700341 public Loader<DirectoryResult> onCreateLoader(int id, Bundle args) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700342 final String query = getArguments().getString(EXTRA_QUERY);
Jeff Sharkey46165b52013-07-31 20:53:22 -0700343
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700344 Uri contentsUri;
345 switch (mType) {
346 case TYPE_NORMAL:
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700347 contentsUri = DocumentsContract.buildChildDocumentsUri(
348 doc.authority, doc.documentId);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700349 if (state.action == ACTION_MANAGE) {
350 contentsUri = DocumentsContract.setManageMode(contentsUri);
351 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700352 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700353 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700354 case TYPE_SEARCH:
355 contentsUri = DocumentsContract.buildSearchDocumentsUri(
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700356 root.authority, root.rootId, query);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700357 if (state.action == ACTION_MANAGE) {
358 contentsUri = DocumentsContract.setManageMode(contentsUri);
359 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700360 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700361 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700362 case TYPE_RECENT_OPEN:
Jeff Sharkey1c903cc2013-09-02 17:19:40 -0700363 final RootsCache roots = DocumentsApplication.getRootsCache(context);
Jeff Sharkey8b997042013-09-19 15:25:56 -0700364 return new RecentLoader(context, roots, state);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700365 default:
366 throw new IllegalStateException("Unknown type " + mType);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700367 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700368 }
369
370 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700371 public void onLoadFinished(Loader<DirectoryResult> loader, DirectoryResult result) {
Makoto Onuki77778752015-07-01 14:55:14 -0700372 if (result == null || result.exception != null) {
373 // onBackPressed does a fragment transaction, which can't be done inside
374 // onLoadFinished
375 mHandler.post(new Runnable() {
376 @Override
377 public void run() {
378 final Activity activity = getActivity();
379 if (activity != null) {
380 activity.onBackPressed();
381 }
382 }
383 });
384 return;
385 }
386
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700387 if (!isAdded()) return;
388
Ben Kwa24be5d32015-08-27 16:04:46 -0700389 mModel.update(result);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700390
391 // Push latest state up to UI
392 // TODO: if mode change was racing with us, don't overwrite it
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700393 if (result.mode != MODE_UNKNOWN) {
394 state.derivedMode = result.mode;
395 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700396 state.derivedSortOrder = result.sortOrder;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700397 ((BaseActivity) context).onStateChanged();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700398
399 updateDisplayState();
400
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700401 // When launched into empty recents, show drawer
Ben Kwa24be5d32015-08-27 16:04:46 -0700402 if (mType == TYPE_RECENT_OPEN && mModel.isEmpty() && !state.stackTouched &&
Steve McKayb68dd222015-04-20 17:18:15 -0700403 context instanceof DocumentsActivity) {
404 ((DocumentsActivity) context).setRootsDrawerOpen(true);
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700405 }
406
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700407 // Restore any previous instance state
408 final SparseArray<Parcelable> container = state.dirState.remove(mStateKey);
409 if (container != null && !getArguments().getBoolean(EXTRA_IGNORE_STATE, false)) {
410 getView().restoreHierarchyState(container);
411 } else if (mLastSortOrder != state.derivedSortOrder) {
Steve McKayef280152015-06-11 10:10:49 -0700412 mRecView.smoothScrollToPosition(0);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700413 }
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700414
415 mLastSortOrder = state.derivedSortOrder;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700416 }
417
418 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700419 public void onLoaderReset(Loader<DirectoryResult> loader) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700420 mModel.update(null);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700421 }
422 };
423
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700424 // Kick off loader at least once
Steve McKayef280152015-06-11 10:10:49 -0700425 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700426
Kyle Horimoto426bd0d2015-07-29 15:33:49 -0700427 mFragmentTuner.afterActivityCreated(this);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700428 updateDisplayState();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700429 }
430
Jeff Sharkey42d26792013-09-06 13:22:09 -0700431 @Override
Ben Kwaf5858932015-04-07 15:43:39 -0700432 public void onActivityResult(int requestCode, int resultCode, Intent data) {
Ben Kwaf5858932015-04-07 15:43:39 -0700433 // There's only one request code right now. Replace this with a switch statement or
434 // something more scalable when more codes are added.
435 if (requestCode != REQUEST_COPY_DESTINATION) {
436 return;
437 }
438 if (resultCode == Activity.RESULT_CANCELED || data == null) {
439 // User pressed the back button or otherwise cancelled the destination pick. Don't
440 // proceed with the copy.
441 return;
442 }
443
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +0900444 CopyService.start(getActivity(), getDisplayState(this).selectedDocumentsForCopy,
Ben Kwacb4461f2015-05-05 11:50:11 -0700445 (DocumentStack) data.getParcelableExtra(CopyService.EXTRA_STACK),
446 data.getIntExtra(CopyService.EXTRA_TRANSFER_MODE, CopyService.TRANSFER_MODE_NONE));
Ben Kwaf5858932015-04-07 15:43:39 -0700447 }
448
Steve McKayef280152015-06-11 10:10:49 -0700449 private int getEventAdapterPosition(MotionEvent e) {
450 View view = mRecView.findChildViewUnder(e.getX(), e.getY());
451 return view != null ? mRecView.getChildAdapterPosition(view) : RecyclerView.NO_POSITION;
452 }
453
454 private boolean onSingleTapUp(MotionEvent e) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700455 if (Events.isTouchEvent(e) && mModel.getSelection().isEmpty()) {
Steve McKay93d8ef42015-07-30 12:27:44 -0700456 int position = getEventAdapterPosition(e);
457 if (position != RecyclerView.NO_POSITION) {
458 return handleViewItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700459 }
460 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700461 return false;
462 }
Steve McKayef280152015-06-11 10:10:49 -0700463
Steve McKay93d8ef42015-07-30 12:27:44 -0700464 protected boolean onDoubleTap(MotionEvent e) {
465 if (Events.isMouseEvent(e)) {
466 Log.d(TAG, "Handling double tap from mouse.");
467 int position = getEventAdapterPosition(e);
468 if (position != RecyclerView.NO_POSITION) {
469 return handleViewItem(position);
470 }
471 }
472 return false;
473 }
474
475 private boolean handleViewItem(int position) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700476 final Cursor cursor = mModel.getItem(position);
Steve McKay93d8ef42015-07-30 12:27:44 -0700477 checkNotNull(cursor, "Cursor cannot be null.");
478 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
479 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
480 if (isDocumentEnabled(docMimeType, docFlags)) {
481 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Ben Kwa24be5d32015-08-27 16:04:46 -0700482 ((BaseActivity) getActivity()).onDocumentPicked(doc, mModel);
483 mModel.clearSelection();
Steve McKay93d8ef42015-07-30 12:27:44 -0700484 return true;
485 }
Steve McKayef280152015-06-11 10:10:49 -0700486 return false;
487 }
488
Ben Kwaf5858932015-04-07 15:43:39 -0700489 @Override
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700490 public void onStop() {
491 super.onStop();
492
493 // Remember last scroll location
494 final SparseArray<Parcelable> container = new SparseArray<Parcelable>();
495 getView().saveHierarchyState(container);
496 final State state = getDisplayState(this);
497 state.dirState.put(mStateKey, container);
498 }
499
500 @Override
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700501 public void onResume() {
502 super.onResume();
Jeff Sharkey42d26792013-09-06 13:22:09 -0700503 updateDisplayState();
504 }
505
Jeff Sharkeye8d13ea2014-08-08 15:10:03 -0700506 public void onDisplayStateChanged() {
507 updateDisplayState();
508 }
509
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700510 public void onUserSortOrderChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700511 // Sort order change always triggers reload; we'll trigger state change
512 // on the flip side.
Steve McKayef280152015-06-11 10:10:49 -0700513 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700514 }
515
516 public void onUserModeChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700517 final ContentResolver resolver = getActivity().getContentResolver();
518 final State state = getDisplayState(this);
519
520 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
521 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
522
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700523 if (root != null && doc != null) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700524 final Uri stateUri = RecentsProvider.buildState(
525 root.authority, root.rootId, doc.documentId);
526 final ContentValues values = new ContentValues();
527 values.put(StateColumns.MODE, state.userMode);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700528
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700529 new AsyncTask<Void, Void, Void>() {
530 @Override
531 protected Void doInBackground(Void... params) {
532 resolver.insert(stateUri, values);
533 return null;
534 }
535 }.execute();
536 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700537
538 // Mode change is just visual change; no need to kick loader, and
539 // deliver change event immediately.
540 state.derivedMode = state.userMode;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700541 ((BaseActivity) getActivity()).onStateChanged();
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700542
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700543 updateDisplayState();
544 }
545
546 private void updateDisplayState() {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700547 final State state = getDisplayState(this);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700548
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700549 if (mLastMode == state.derivedMode && mLastShowSize == state.showSize) return;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700550 mLastMode = state.derivedMode;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700551 mLastShowSize = state.showSize;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700552
Steve McKayef280152015-06-11 10:10:49 -0700553 updateLayout(state.derivedMode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700554
Steve McKayef280152015-06-11 10:10:49 -0700555 mRecView.setAdapter(mAdapter);
556 }
557
558 /**
559 * Returns a {@code LayoutManager} for {@code mode}, lazily initializing
560 * classes as needed.
561 */
562 private void updateLayout(int mode) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700563 final int thumbSize;
Steve McKayef280152015-06-11 10:10:49 -0700564
565 final LayoutManager layout;
566 switch (mode) {
567 case MODE_GRID:
Steve McKayef280152015-06-11 10:10:49 -0700568 thumbSize = getResources().getDimensionPixelSize(R.dimen.grid_width);
Steve McKaya9be7182015-07-22 16:03:35 -0700569 if (mGridLayout == null) {
Steve McKayd57f5fa2015-07-23 16:33:41 -0700570 mGridLayout = new GridLayoutManager(getContext(), mColumnCount );
Steve McKaya9be7182015-07-22 16:03:35 -0700571 }
Steve McKayef280152015-06-11 10:10:49 -0700572 layout = mGridLayout;
573 break;
574 case MODE_LIST:
Steve McKaya9be7182015-07-22 16:03:35 -0700575 thumbSize = getResources().getDimensionPixelSize(R.dimen.icon_size);
Steve McKayef280152015-06-11 10:10:49 -0700576 if (mListLayout == null) {
577 mListLayout = new LinearLayoutManager(getContext());
578 }
Steve McKayef280152015-06-11 10:10:49 -0700579 layout = mListLayout;
580 break;
581 case MODE_UNKNOWN:
582 default:
583 throw new IllegalArgumentException("Unsupported layout mode: " + mode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700584 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700585
Steve McKayef280152015-06-11 10:10:49 -0700586 mRecView.setLayoutManager(layout);
Kyle Horimoto2da6e4a2015-08-27 16:44:00 -0700587 // TODO: Once b/23691541 is resolved, use a listener within MultiSelectManager instead of
588 // imperatively calling this function.
Steve McKay9058e042015-09-01 12:31:24 -0700589 mModel.mSelectionManager.handleLayoutChanged();
Steve McKayef280152015-06-11 10:10:49 -0700590 // setting layout manager automatically invalidates existing ViewHolders.
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700591 mThumbSize = new Point(thumbSize, thumbSize);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700592 }
593
Steve McKayfefcd702015-08-20 16:19:38 +0000594 private int calculateColumnCount() {
595 int cellWidth = getResources().getDimensionPixelSize(R.dimen.grid_width);
596 int cellMargin = 2 * getResources().getDimensionPixelSize(R.dimen.grid_item_margin);
Steve McKayd57f5fa2015-07-23 16:33:41 -0700597 int viewPadding = mRecView.getPaddingLeft() + mRecView.getPaddingRight();
Steve McKayfefcd702015-08-20 16:19:38 +0000598
Steve McKayd57f5fa2015-07-23 16:33:41 -0700599 checkState(mRecView.getWidth() > 0);
600 int columnCount = Math.max(1,
Steve McKayfefcd702015-08-20 16:19:38 +0000601 (mRecView.getWidth() - viewPadding) / (cellWidth + cellMargin));
602
Steve McKayd57f5fa2015-07-23 16:33:41 -0700603 return columnCount;
604 }
605
Steve McKayef280152015-06-11 10:10:49 -0700606 /**
607 * Manages the integration between our ActionMode and MultiSelectManager, initiating
608 * ActionMode when there is a selection, canceling it when there is no selection,
609 * and clearing selection when action mode is explicitly exited by the user.
610 */
611 private final class SelectionModeListener
612 implements MultiSelectManager.Callback, ActionMode.Callback {
613
614 private Selection mSelected = new Selection();
615 private ActionMode mActionMode;
Steve McKay4f4232d2015-07-22 12:13:46 -0700616 private int mNoDeleteCount = 0;
617 private Menu mMenu;
Steve McKayef280152015-06-11 10:10:49 -0700618
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700619 @Override
Steve McKayef280152015-06-11 10:10:49 -0700620 public boolean onBeforeItemStateChange(int position, boolean selected) {
Ben Kwac42fa402015-09-16 08:04:37 -0700621 // Directories cannot be checked
Steve McKayef280152015-06-11 10:10:49 -0700622 if (selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700623 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700624 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700625 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
626 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
Steve McKayef280152015-06-11 10:10:49 -0700627 return isDocumentEnabled(docMimeType, docFlags);
628 }
629 return true;
630 }
631
632 @Override
633 public void onItemStateChanged(int position, boolean selected) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700634
Ben Kwa24be5d32015-08-27 16:04:46 -0700635 final Cursor cursor = mModel.getItem(position);
Steve McKay4f4232d2015-07-22 12:13:46 -0700636 checkNotNull(cursor, "Cursor cannot be null.");
637
638 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
639 if ((docFlags & Document.FLAG_SUPPORTS_DELETE) == 0) {
640 mNoDeleteCount += selected ? 1 : -1;
641 }
Steve McKay57394872015-08-12 14:48:34 -0700642 }
Steve McKay4f4232d2015-07-22 12:13:46 -0700643
Steve McKay57394872015-08-12 14:48:34 -0700644 @Override
645 public void onSelectionChanged() {
Ben Kwa24be5d32015-08-27 16:04:46 -0700646 mModel.getSelection(mSelected);
Ben Kwafe18c1b2015-09-11 15:40:18 -0700647 TypedValue color = new TypedValue();
Steve McKay4f4232d2015-07-22 12:13:46 -0700648 if (mSelected.size() > 0) {
Steve McKayef280152015-06-11 10:10:49 -0700649 if (DEBUG) Log.d(TAG, "Maybe starting action mode.");
650 if (mActionMode == null) {
651 if (DEBUG) Log.d(TAG, "Yeah. Starting action mode.");
652 mActionMode = getActivity().startActionMode(this);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700653 }
Ben Kwafe18c1b2015-09-11 15:40:18 -0700654 getActivity().getTheme().resolveAttribute(
655 R.attr.colorActionMode, color, true);
Steve McKay4f4232d2015-07-22 12:13:46 -0700656 updateActionMenu();
657 } else {
658 if (DEBUG) Log.d(TAG, "Finishing action mode.");
659 if (mActionMode != null) {
660 mActionMode.finish();
661 }
Ben Kwa0574b182015-09-08 07:31:19 -0700662 getActivity().getTheme().resolveAttribute(
663 android.R.attr.colorPrimaryDark, color, true);
Jeff Sharkeyf339f252013-08-15 16:17:41 -0700664 }
Ben Kwafe18c1b2015-09-11 15:40:18 -0700665 getActivity().getWindow().setStatusBarColor(color.data);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700666
Steve McKayef280152015-06-11 10:10:49 -0700667 if (mActionMode != null) {
668 mActionMode.setTitle(TextUtils.formatSelectedCount(mSelected.size()));
669 }
670 }
671
672 // Called when the user exits the action mode
673 @Override
674 public void onDestroyActionMode(ActionMode mode) {
675 if (DEBUG) Log.d(TAG, "Handling action mode destroyed.");
676 mActionMode = null;
677 // clear selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700678 mModel.clearSelection();
Steve McKay4f4232d2015-07-22 12:13:46 -0700679 mSelected.clear();
680 mNoDeleteCount = 0;
Steve McKayef280152015-06-11 10:10:49 -0700681 }
682
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700683 @Override
684 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
685 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
Ben Kwa24be5d32015-08-27 16:04:46 -0700686 mode.setTitle(TextUtils.formatSelectedCount(mModel.getSelection().size()));
687 return mModel.getSelection().size() > 0;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700688 }
689
690 @Override
691 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700692 mMenu = menu;
693 updateActionMenu();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700694 return true;
695 }
696
Steve McKay4f4232d2015-07-22 12:13:46 -0700697 private void updateActionMenu() {
698 checkNotNull(mMenu);
699 // Delegate update logic to our owning action, since specialized logic is desired.
700 mFragmentTuner.updateActionMenu(mMenu, mType, mNoDeleteCount == 0);
701 }
702
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700703 @Override
Steve McKayef280152015-06-11 10:10:49 -0700704 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
Steve McKay1f199482015-05-20 15:58:42 -0700705
Ben Kwa24be5d32015-08-27 16:04:46 -0700706 Selection selection = mModel.getSelection(new Selection());
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700707
Jeff Sharkey873daa32013-08-18 17:38:20 -0700708 final int id = item.getItemId();
709 if (id == R.id.menu_open) {
Steve McKayef280152015-06-11 10:10:49 -0700710 openDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700711 mode.finish();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700712 return true;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700713
714 } else if (id == R.id.menu_share) {
Steve McKayef280152015-06-11 10:10:49 -0700715 shareDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700716 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700717 return true;
718
719 } else if (id == R.id.menu_delete) {
Steve McKayef280152015-06-11 10:10:49 -0700720 deleteDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700721 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700722 return true;
723
Steve McKay1f199482015-05-20 15:58:42 -0700724 } else if (id == R.id.menu_copy_to) {
Steve McKayef280152015-06-11 10:10:49 -0700725 transferDocuments(selection, CopyService.TRANSFER_MODE_COPY);
Ben Kwacb4461f2015-05-05 11:50:11 -0700726 mode.finish();
727 return true;
728
Steve McKay1f199482015-05-20 15:58:42 -0700729 } else if (id == R.id.menu_move_to) {
Steve McKayef280152015-06-11 10:10:49 -0700730 transferDocuments(selection, CopyService.TRANSFER_MODE_MOVE);
Ben Kwa41b26c12015-03-31 10:11:43 -0700731 mode.finish();
732 return true;
733
Steve McKay1f199482015-05-20 15:58:42 -0700734 } else if (id == R.id.menu_copy_to_clipboard) {
Steve McKayef280152015-06-11 10:10:49 -0700735 copySelectionToClipboard(selection);
Steve McKay1f199482015-05-20 15:58:42 -0700736 mode.finish();
737 return true;
738
Ben Kwa512a6ba2015-03-31 08:15:21 -0700739 } else if (id == R.id.menu_select_all) {
Steve McKay0599a442015-05-05 14:50:00 -0700740 selectAllFiles();
Ben Kwa512a6ba2015-03-31 08:15:21 -0700741 return true;
742
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700743 } else {
744 return false;
745 }
746 }
Steve McKayef280152015-06-11 10:10:49 -0700747 }
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700748
Steve McKayef280152015-06-11 10:10:49 -0700749 private static void cancelThumbnailTask(View view) {
750 final ImageView iconThumb = (ImageView) view.findViewById(R.id.icon_thumb);
751 if (iconThumb != null) {
752 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
753 if (oldTask != null) {
754 oldTask.preempt();
755 iconThumb.setTag(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700756 }
757 }
Steve McKayef280152015-06-11 10:10:49 -0700758 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700759
Steve McKayef280152015-06-11 10:10:49 -0700760 private void openDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700761 new GetDocumentsTask() {
762 @Override
763 void onDocumentsReady(List<DocumentInfo> docs) {
Steve McKay0fbfc652015-08-20 16:48:49 -0700764 // TODO: Implement support in Files activity for opening multiple docs.
Steve McKay9276f3b2015-05-27 16:11:42 -0700765 BaseActivity.get(DirectoryFragment.this).onDocumentsPicked(docs);
Ben Kwaf527c632015-04-08 15:03:35 -0700766 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700767 }.execute(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700768 }
769
Steve McKayef280152015-06-11 10:10:49 -0700770 private void shareDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700771 new GetDocumentsTask() {
772 @Override
773 void onDocumentsReady(List<DocumentInfo> docs) {
774 Intent intent;
775
776 // Filter out directories - those can't be shared.
Steve McKayfefcd702015-08-20 16:19:38 +0000777 List<DocumentInfo> docsForSend = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700778 for (DocumentInfo doc: docs) {
779 if (!Document.MIME_TYPE_DIR.equals(doc.mimeType)) {
780 docsForSend.add(doc);
781 }
782 }
783
784 if (docsForSend.size() == 1) {
785 final DocumentInfo doc = docsForSend.get(0);
786
787 intent = new Intent(Intent.ACTION_SEND);
788 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
789 intent.addCategory(Intent.CATEGORY_DEFAULT);
790 intent.setType(doc.mimeType);
791 intent.putExtra(Intent.EXTRA_STREAM, doc.derivedUri);
792
793 } else if (docsForSend.size() > 1) {
794 intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
795 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
796 intent.addCategory(Intent.CATEGORY_DEFAULT);
797
Steve McKayfefcd702015-08-20 16:19:38 +0000798 final ArrayList<String> mimeTypes = new ArrayList<>();
799 final ArrayList<Uri> uris = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700800 for (DocumentInfo doc : docsForSend) {
801 mimeTypes.add(doc.mimeType);
802 uris.add(doc.derivedUri);
803 }
804
805 intent.setType(findCommonMimeType(mimeTypes));
806 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
807
808 } else {
809 return;
810 }
811
812 intent = Intent.createChooser(intent, getActivity().getText(R.string.share_via));
813 startActivity(intent);
814 }
815 }.execute(selected);
816 }
817
Steve McKayef280152015-06-11 10:10:49 -0700818 private void deleteDocuments(final Selection selected) {
Ben Kwa91923182015-08-27 16:06:33 -0700819 Context context = getActivity();
820 ContentResolver resolver = context.getContentResolver();
821 String message = Shared.getQuantityString(context, R.plurals.deleting, selected.size());
Jeff Sharkey873daa32013-08-18 17:38:20 -0700822
Ben Kwa91923182015-08-27 16:06:33 -0700823 mModel.markForDeletion(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700824
Ben Kwa91923182015-08-27 16:06:33 -0700825 Activity activity = getActivity();
826 Snackbar.make(this.getView(), message, Snackbar.LENGTH_LONG)
827 .setAction(
828 R.string.undo,
829 new android.view.View.OnClickListener() {
830 @Override
831 public void onClick(View view) {}
832 })
833 .setCallback(
834 new Snackbar.Callback() {
835 @Override
836 public void onDismissed(Snackbar snackbar, int event) {
837 if (event == Snackbar.Callback.DISMISS_EVENT_ACTION) {
838 mModel.undoDeletion();
839 } else {
Ben Kwa83cedf22015-09-11 15:15:45 -0700840 mModel.finalizeDeletion(
841 new Runnable() {
842 @Override
843 public void run() {
844 Snackbar.make(
845 DirectoryFragment.this.getView(),
846 R.string.toast_failed_delete,
847 Snackbar.LENGTH_LONG)
848 .show();
849
850 }
851 });
Ben Kwa91923182015-08-27 16:06:33 -0700852 }
Ben Kwa91923182015-08-27 16:06:33 -0700853 }
854 })
855 .show();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700856 }
857
Steve McKayef280152015-06-11 10:10:49 -0700858 private void transferDocuments(final Selection selected, final int mode) {
Ben Kwaf5858932015-04-07 15:43:39 -0700859 // Pop up a dialog to pick a destination. This is inadequate but works for now.
860 // TODO: Implement a picker that is to spec.
Daichi Hironocaadd412015-04-10 15:50:38 +0900861 final Intent intent = new Intent(
Daichi Hirono22574ed2015-04-15 13:41:18 +0900862 BaseActivity.DocumentsIntent.ACTION_OPEN_COPY_DESTINATION,
Daichi Hironocaadd412015-04-10 15:50:38 +0900863 Uri.EMPTY,
864 getActivity(),
865 DocumentsActivity.class);
Steve McKay9276f3b2015-05-27 16:11:42 -0700866
867 new GetDocumentsTask() {
868 @Override
869 void onDocumentsReady(List<DocumentInfo> docs) {
870 getDisplayState(DirectoryFragment.this).selectedDocumentsForCopy = docs;
871
872 boolean directoryCopy = false;
873 for (DocumentInfo info : docs) {
874 if (Document.MIME_TYPE_DIR.equals(info.mimeType)) {
875 directoryCopy = true;
876 break;
877 }
878 }
879 intent.putExtra(BaseActivity.DocumentsIntent.EXTRA_DIRECTORY_COPY, directoryCopy);
880 intent.putExtra(CopyService.EXTRA_TRANSFER_MODE, mode);
881 startActivityForResult(intent, REQUEST_COPY_DESTINATION);
Daichi Hironof2a822d2015-04-14 17:12:54 +0900882 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700883 }.execute(selected);
Ben Kwa41b26c12015-03-31 10:11:43 -0700884 }
885
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700886 private static State getDisplayState(Fragment fragment) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700887 return ((BaseActivity) fragment.getActivity()).getDisplayState();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700888 }
889
Steve McKayef280152015-06-11 10:10:49 -0700890 // Provide a reference to the views for each data item
891 // Complex data items may need more than one view per item, and
892 // you provide access to all the views for a data item in a view holder
893 private static final class DocumentHolder extends RecyclerView.ViewHolder {
894 // each data item is just a string in this case
895 public View view;
896 public String docId; // The stable document id.
897 public DocumentHolder(View view) {
898 super(view);
899 this.view = view;
900 }
901 }
902
Ben Kwa379e1762015-09-21 10:49:52 -0700903 private final class DocumentsAdapter extends RecyclerView.Adapter<DocumentHolder> {
Steve McKayef280152015-06-11 10:10:49 -0700904
905 private final Context mContext;
906 private final LayoutInflater mInflater;
Steve McKayef280152015-06-11 10:10:49 -0700907
Steve McKayef280152015-06-11 10:10:49 -0700908 public DocumentsAdapter(Context context) {
909 mContext = context;
910 mInflater = LayoutInflater.from(context);
911 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700912
Ben Kwac42fa402015-09-16 08:04:37 -0700913 @Override
Steve McKayef280152015-06-11 10:10:49 -0700914 public DocumentHolder onCreateViewHolder(ViewGroup parent, int viewType) {
915 final State state = getDisplayState(DirectoryFragment.this);
916 final LayoutInflater inflater = LayoutInflater.from(getContext());
917 switch (state.derivedMode) {
918 case MODE_GRID:
919 return new DocumentHolder(inflater.inflate(R.layout.item_doc_grid, parent, false));
920 case MODE_LIST:
921 return new DocumentHolder(inflater.inflate(R.layout.item_doc_list, parent, false));
922 case MODE_UNKNOWN:
923 default:
924 throw new IllegalStateException("Unsupported layout mode.");
Jeff Sharkey20b32272013-09-03 15:25:52 -0700925 }
926 }
927
Steve McKayef280152015-06-11 10:10:49 -0700928 @Override
929 public void onBindViewHolder(DocumentHolder holder, int position) {
930
931 final Context context = getContext();
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700932 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkey9656a532013-09-13 13:42:19 -0700933 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700934 final RootsCache roots = DocumentsApplication.getRootsCache(context);
935 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
936 context, mThumbSize);
937
Ben Kwa24be5d32015-08-27 16:04:46 -0700938 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700939 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700940
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700941 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
942 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700943 final String docId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
944 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
945 final String docDisplayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
946 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
947 final int docIcon = getCursorInt(cursor, Document.COLUMN_ICON);
948 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
949 final String docSummary = getCursorString(cursor, Document.COLUMN_SUMMARY);
950 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700951
Steve McKayef280152015-06-11 10:10:49 -0700952 holder.docId = docId;
953 final View itemView = holder.view;
Ben Kwa24be5d32015-08-27 16:04:46 -0700954 itemView.setActivated(mModel.isSelected(position));
Jeff Sharkey9656a532013-09-13 13:42:19 -0700955
Steve McKayef280152015-06-11 10:10:49 -0700956 final View line1 = itemView.findViewById(R.id.line1);
957 final View line2 = itemView.findViewById(R.id.line2);
958
959 final ImageView iconMime = (ImageView) itemView.findViewById(R.id.icon_mime);
960 final ImageView iconThumb = (ImageView) itemView.findViewById(R.id.icon_thumb);
961 final TextView title = (TextView) itemView.findViewById(android.R.id.title);
962 final ImageView icon1 = (ImageView) itemView.findViewById(android.R.id.icon1);
963 final ImageView icon2 = (ImageView) itemView.findViewById(android.R.id.icon2);
964 final TextView summary = (TextView) itemView.findViewById(android.R.id.summary);
965 final TextView date = (TextView) itemView.findViewById(R.id.date);
966 final TextView size = (TextView) itemView.findViewById(R.id.size);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700967
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700968 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700969 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700970 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700971 iconThumb.setTag(null);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700972 }
973
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700974 iconMime.animate().cancel();
975 iconThumb.animate().cancel();
976
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700977 final boolean supportsThumbnail = (docFlags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700978 final boolean allowThumbnail = (state.derivedMode == MODE_GRID)
Jeff Sharkey9656a532013-09-13 13:42:19 -0700979 || MimePredicate.mimeMatches(MimePredicate.VISUAL_MIMES, docMimeType);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700980 final boolean showThumbnail = supportsThumbnail && allowThumbnail && !mSvelteRecents;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700981
Jeff Sharkey7e544612014-08-29 15:38:27 -0700982 final boolean enabled = isDocumentEnabled(docMimeType, docFlags);
983 final float iconAlpha = (state.derivedMode == MODE_LIST && !enabled) ? 0.5f : 1f;
984
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700985 boolean cacheHit = false;
Jeff Sharkey9656a532013-09-13 13:42:19 -0700986 if (showThumbnail) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700987 final Uri uri = DocumentsContract.buildDocumentUri(docAuthority, docId);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700988 final Bitmap cachedResult = thumbs.get(uri);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700989 if (cachedResult != null) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700990 iconThumb.setImageBitmap(cachedResult);
991 cacheHit = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700992 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700993 iconThumb.setImageDrawable(null);
Steve McKayef280152015-06-11 10:10:49 -0700994 // TODO: Hang this off DocumentHolder?
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700995 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
Jeff Sharkey7e544612014-08-29 15:38:27 -0700996 uri, iconMime, iconThumb, mThumbSize, iconAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700997 iconThumb.setTag(task);
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700998 ProviderExecutor.forAuthority(docAuthority).execute(task);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700999 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001000 }
1001
1002 // Always throw MIME icon into place, even when a thumbnail is being
1003 // loaded in background.
1004 if (cacheHit) {
1005 iconMime.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001006 iconMime.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001007 iconThumb.setAlpha(1f);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001008 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001009 iconMime.setAlpha(1f);
1010 iconThumb.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001011 iconThumb.setImageDrawable(null);
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001012 iconMime.setImageDrawable(
Steve McKayef280152015-06-11 10:10:49 -07001013 getDocumentIcon(mContext, docAuthority, docId, docMimeType, docIcon, state));
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001014 }
1015
Jeff Sharkey9656a532013-09-13 13:42:19 -07001016 boolean hasLine1 = false;
Jeff Sharkey42d26792013-09-06 13:22:09 -07001017 boolean hasLine2 = false;
1018
Jeff Sharkey9656a532013-09-13 13:42:19 -07001019 final boolean hideTitle = (state.derivedMode == MODE_GRID) && mHideGridTitles;
1020 if (!hideTitle) {
1021 title.setText(docDisplayName);
1022 hasLine1 = true;
1023 }
1024
1025 Drawable iconDrawable = null;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001026 if (mType == TYPE_RECENT_OPEN) {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001027 // We've already had to enumerate roots before any results can
1028 // be shown, so this will never block.
1029 final RootInfo root = roots.getRootBlocking(docAuthority, docRootId);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001030 if (state.derivedMode == MODE_GRID) {
Steve McKayef280152015-06-11 10:10:49 -07001031 iconDrawable = root.loadGridIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001032 } else {
Steve McKayef280152015-06-11 10:10:49 -07001033 iconDrawable = root.loadIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001034 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001035
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001036 if (summary != null) {
1037 final boolean alwaysShowSummary = getResources()
1038 .getBoolean(R.bool.always_show_summary);
1039 if (alwaysShowSummary) {
1040 summary.setText(root.getDirectoryString());
1041 summary.setVisibility(View.VISIBLE);
1042 hasLine2 = true;
1043 } else {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001044 if (iconDrawable != null && roots.isIconUniqueBlocking(root)) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001045 // No summary needed if icon speaks for itself
1046 summary.setVisibility(View.INVISIBLE);
1047 } else {
1048 summary.setText(root.getDirectoryString());
1049 summary.setVisibility(View.VISIBLE);
1050 summary.setTextAlignment(TextView.TEXT_ALIGNMENT_TEXT_END);
1051 hasLine2 = true;
1052 }
1053 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001054 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001055 } else {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001056 // Directories showing thumbnails in grid mode get a little icon
1057 // hint to remind user they're a directory.
1058 if (Document.MIME_TYPE_DIR.equals(docMimeType) && state.derivedMode == MODE_GRID
1059 && showThumbnail) {
Steve McKayef280152015-06-11 10:10:49 -07001060 iconDrawable = IconUtils.applyTintAttr(mContext, R.drawable.ic_doc_folder,
Jeff Sharkey34c54092014-08-08 13:08:56 -07001061 android.R.attr.textColorPrimaryInverse);
Jeff Sharkey9656a532013-09-13 13:42:19 -07001062 }
1063
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001064 if (summary != null) {
1065 if (docSummary != null) {
1066 summary.setText(docSummary);
1067 summary.setVisibility(View.VISIBLE);
1068 hasLine2 = true;
1069 } else {
1070 summary.setVisibility(View.INVISIBLE);
1071 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001072 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001073 }
1074
Jeff Sharkey9656a532013-09-13 13:42:19 -07001075 if (icon1 != null) icon1.setVisibility(View.GONE);
1076 if (icon2 != null) icon2.setVisibility(View.GONE);
1077
1078 if (iconDrawable != null) {
1079 if (hasLine1) {
1080 icon1.setVisibility(View.VISIBLE);
1081 icon1.setImageDrawable(iconDrawable);
1082 } else {
1083 icon2.setVisibility(View.VISIBLE);
1084 icon2.setImageDrawable(iconDrawable);
1085 }
1086 }
1087
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001088 if (docLastModified == -1) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001089 date.setText(null);
1090 } else {
Steve McKayef280152015-06-11 10:10:49 -07001091 date.setText(formatTime(mContext, docLastModified));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001092 hasLine2 = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001093 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001094
1095 if (state.showSize) {
1096 size.setVisibility(View.VISIBLE);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001097 if (Document.MIME_TYPE_DIR.equals(docMimeType) || docSize == -1) {
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001098 size.setText(null);
1099 } else {
Steve McKayef280152015-06-11 10:10:49 -07001100 size.setText(Formatter.formatFileSize(mContext, docSize));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001101 hasLine2 = true;
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001102 }
1103 } else {
1104 size.setVisibility(View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001105 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001106
Jeff Sharkey9656a532013-09-13 13:42:19 -07001107 if (line1 != null) {
1108 line1.setVisibility(hasLine1 ? View.VISIBLE : View.GONE);
1109 }
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001110 if (line2 != null) {
1111 line2.setVisibility(hasLine2 ? View.VISIBLE : View.GONE);
1112 }
Jeff Sharkey42d26792013-09-06 13:22:09 -07001113
Steve McKayef280152015-06-11 10:10:49 -07001114 setEnabledRecursive(itemView, enabled);
Jeff Sharkey7e544612014-08-29 15:38:27 -07001115
1116 iconMime.setAlpha(iconAlpha);
1117 iconThumb.setAlpha(iconAlpha);
1118 if (icon1 != null) icon1.setAlpha(iconAlpha);
1119 if (icon2 != null) icon2.setAlpha(iconAlpha);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001120
Steve McKay8e258c62015-05-06 14:27:57 -07001121 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -07001122 setupDragAndDropOnDocumentView(itemView, cursor);
Steve McKay8e258c62015-05-06 14:27:57 -07001123 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001124 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001125
Steve McKay351a7492015-08-04 10:11:01 -07001126 @Override
Steve McKayef280152015-06-11 10:10:49 -07001127 public int getItemCount() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001128 return mModel.getItemCount();
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001129 }
1130
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001131 }
1132
1133 private static String formatTime(Context context, long when) {
1134 // TODO: DateUtils should make this easier
1135 Time then = new Time();
1136 then.set(when);
1137 Time now = new Time();
1138 now.setToNow();
1139
1140 int flags = DateUtils.FORMAT_NO_NOON | DateUtils.FORMAT_NO_MIDNIGHT
1141 | DateUtils.FORMAT_ABBREV_ALL;
1142
1143 if (then.year != now.year) {
1144 flags |= DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_DATE;
1145 } else if (then.yearDay != now.yearDay) {
1146 flags |= DateUtils.FORMAT_SHOW_DATE;
1147 } else {
1148 flags |= DateUtils.FORMAT_SHOW_TIME;
1149 }
1150
1151 return DateUtils.formatDateTime(context, when, flags);
1152 }
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001153
1154 private String findCommonMimeType(List<String> mimeTypes) {
1155 String[] commonType = mimeTypes.get(0).split("/");
1156 if (commonType.length != 2) {
1157 return "*/*";
1158 }
1159
1160 for (int i = 1; i < mimeTypes.size(); i++) {
1161 String[] type = mimeTypes.get(i).split("/");
1162 if (type.length != 2) continue;
1163
1164 if (!commonType[1].equals(type[1])) {
1165 commonType[1] = "*";
1166 }
1167
1168 if (!commonType[0].equals(type[0])) {
1169 commonType[0] = "*";
1170 commonType[1] = "*";
1171 break;
1172 }
1173 }
1174
1175 return commonType[0] + "/" + commonType[1];
1176 }
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001177
1178 private void setEnabledRecursive(View v, boolean enabled) {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001179 if (v == null) return;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001180 if (v.isEnabled() == enabled) return;
1181 v.setEnabled(enabled);
1182
1183 if (v instanceof ViewGroup) {
1184 final ViewGroup vg = (ViewGroup) v;
1185 for (int i = vg.getChildCount() - 1; i >= 0; i--) {
1186 setEnabledRecursive(vg.getChildAt(i), enabled);
1187 }
1188 }
1189 }
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001190
1191 private boolean isDocumentEnabled(String docMimeType, int docFlags) {
1192 final State state = getDisplayState(DirectoryFragment.this);
1193
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001194 // Directories are always enabled
1195 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1196 return true;
1197 }
1198
Jeff Sharkey783ebc22013-09-26 19:42:52 -07001199 // Read-only files are disabled when creating
1200 if (state.action == ACTION_CREATE && (docFlags & Document.FLAG_SUPPORTS_WRITE) == 0) {
1201 return false;
1202 }
1203
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001204 return MimePredicate.mimeMatches(state.acceptMimes, docMimeType);
1205 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001206
Steve McKay1f199482015-05-20 15:58:42 -07001207 private void copyFromClipboard() {
1208 new AsyncTask<Void, Void, List<DocumentInfo>>() {
1209
1210 @Override
1211 protected List<DocumentInfo> doInBackground(Void... params) {
1212 return mClipper.getClippedDocuments();
1213 }
1214
1215 @Override
1216 protected void onPostExecute(List<DocumentInfo> docs) {
1217 DocumentInfo destination =
1218 ((BaseActivity) getActivity()).getCurrentDirectory();
1219 copyDocuments(docs, destination);
1220 }
1221 }.execute();
Steve McKay0599a442015-05-05 14:50:00 -07001222 }
1223
Steve McKay1f199482015-05-20 15:58:42 -07001224 private void copyFromClipData(final ClipData clipData, final DocumentInfo destination) {
Steve McKayef280152015-06-11 10:10:49 -07001225 checkNotNull(clipData);
Steve McKay1f199482015-05-20 15:58:42 -07001226 new AsyncTask<Void, Void, List<DocumentInfo>>() {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001227
Steve McKay1f199482015-05-20 15:58:42 -07001228 @Override
1229 protected List<DocumentInfo> doInBackground(Void... params) {
1230 return mClipper.getDocumentsFromClipData(clipData);
1231 }
1232
1233 @Override
1234 protected void onPostExecute(List<DocumentInfo> docs) {
1235 copyDocuments(docs, destination);
1236 }
1237 }.execute();
1238 }
1239
1240 private void copyDocuments(final List<DocumentInfo> docs, final DocumentInfo destination) {
1241 if (!canCopy(docs, destination)) {
1242 Toast.makeText(
1243 getActivity(),
1244 R.string.clipboard_files_cannot_paste, Toast.LENGTH_SHORT).show();
Steve McKay0599a442015-05-05 14:50:00 -07001245 return;
1246 }
1247
Steve McKay1f199482015-05-20 15:58:42 -07001248 if (docs.isEmpty()) {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001249 return;
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001250 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001251
Steve McKay1f199482015-05-20 15:58:42 -07001252 final DocumentStack curStack = getDisplayState(DirectoryFragment.this).stack;
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001253 DocumentStack tmpStack = new DocumentStack();
Steve McKay1f199482015-05-20 15:58:42 -07001254 if (destination != null) {
1255 tmpStack.push(destination);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001256 tmpStack.addAll(curStack);
1257 } else {
1258 tmpStack = curStack;
1259 }
1260
Steve McKay1f199482015-05-20 15:58:42 -07001261 CopyService.start(getActivity(), docs, tmpStack, CopyService.TRANSFER_MODE_COPY);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001262 }
1263
1264 private ClipData getClipDataFromDocuments(List<DocumentInfo> docs) {
1265 Context context = getActivity();
1266 final ContentResolver resolver = context.getContentResolver();
1267 ClipData clipData = null;
1268 for (DocumentInfo doc : docs) {
1269 final Uri uri = DocumentsContract.buildDocumentUri(doc.authority, doc.documentId);
1270 if (clipData == null) {
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001271 // TODO: figure out what this string should be.
1272 // Currently it is not displayed anywhere in the UI, but this might change.
1273 final String label = "";
1274 clipData = ClipData.newUri(resolver, label, uri);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001275 } else {
1276 // TODO: update list of mime types in ClipData.
1277 clipData.addItem(new ClipData.Item(uri));
1278 }
1279 }
1280 return clipData;
1281 }
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001282
Steve McKay1f199482015-05-20 15:58:42 -07001283 void copySelectedToClipboard() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001284 Selection sel = mModel.getSelection(new Selection());
Steve McKayef280152015-06-11 10:10:49 -07001285 copySelectionToClipboard(sel);
Steve McKay9276f3b2015-05-27 16:11:42 -07001286 }
Steve McKay0599a442015-05-05 14:50:00 -07001287
Steve McKayef280152015-06-11 10:10:49 -07001288 void copySelectionToClipboard(Selection items) {
Steve McKay9276f3b2015-05-27 16:11:42 -07001289 new GetDocumentsTask() {
1290 @Override
1291 void onDocumentsReady(List<DocumentInfo> docs) {
1292 mClipper.clipDocuments(docs);
Steve McKay1f199482015-05-20 15:58:42 -07001293 Activity activity = getActivity();
1294 Toast.makeText(activity,
1295 activity.getResources().getQuantityString(
1296 R.plurals.clipboard_files_clipped, docs.size(), docs.size()),
1297 Toast.LENGTH_SHORT).show();
Steve McKay9276f3b2015-05-27 16:11:42 -07001298 }
Steve McKayef280152015-06-11 10:10:49 -07001299 }.execute(items);
Steve McKay0599a442015-05-05 14:50:00 -07001300 }
1301
1302 void pasteFromClipboard() {
Steve McKay1f199482015-05-20 15:58:42 -07001303 copyFromClipboard();
1304 getActivity().invalidateOptionsMenu();
Steve McKay0599a442015-05-05 14:50:00 -07001305 }
1306
Steve McKay0599a442015-05-05 14:50:00 -07001307 /**
1308 * Returns true if the list of files can be copied to destination. Note that this
1309 * is a policy check only. Currently the method does not attempt to verify
1310 * available space or any other environmental aspects possibly resulting in
1311 * failure to copy.
1312 *
1313 * @return true if the list of files can be copied to destination.
1314 */
1315 boolean canCopy(List<DocumentInfo> files, DocumentInfo dest) {
Ben Kwa91923182015-08-27 16:06:33 -07001316 BaseActivity activity = (BaseActivity) getActivity();
Steve McKay0599a442015-05-05 14:50:00 -07001317
1318 final RootInfo root = activity.getCurrentRoot();
1319
1320 // Can't copy folders to Downloads.
1321 if (root.isDownloads()) {
1322 for (DocumentInfo docs : files) {
1323 if (docs.isDirectory()) {
1324 return false;
1325 }
1326 }
1327 }
1328
1329 return dest != null && dest.isDirectory() && dest.isCreateSupported();
1330 }
1331
1332 void selectAllFiles() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001333 boolean changed = mModel.selectAll();
Steve McKay9459a7c2015-07-24 13:14:20 -07001334 if (changed) {
1335 updateDisplayState();
1336 }
Steve McKay0599a442015-05-05 14:50:00 -07001337 }
1338
Steve McKayef280152015-06-11 10:10:49 -07001339 private void setupDragAndDropOnDirectoryView(View view) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001340 // Listen for drops on non-directory items and empty space.
1341 view.setOnDragListener(mOnDragListener);
1342 }
1343
1344 private void setupDragAndDropOnDocumentView(View view, Cursor cursor) {
1345 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
1346 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1347 // Make a directory item a drop target. Drop on non-directories and empty space
1348 // is handled at the list/grid view level.
1349 view.setOnDragListener(mOnDragListener);
1350 }
1351
1352 // Temporary: attaching the listener to the title only.
1353 // Attaching to the entire item conflicts with the item long click handler responsible
1354 // for item selection.
1355 final View title = view.findViewById(android.R.id.title);
1356 title.setOnLongClickListener(mLongClickListener);
1357 }
1358
1359 private View.OnDragListener mOnDragListener = new View.OnDragListener() {
1360 @Override
1361 public boolean onDrag(View v, DragEvent event) {
1362 switch (event.getAction()) {
1363 case DragEvent.ACTION_DRAG_STARTED:
1364 // TODO: Check if the event contains droppable data.
1365 return true;
1366
1367 // TODO: Highlight potential drop target directory?
1368 // TODO: Expand drop target directory on hover?
1369 case DragEvent.ACTION_DRAG_ENTERED:
1370 case DragEvent.ACTION_DRAG_LOCATION:
1371 case DragEvent.ACTION_DRAG_EXITED:
1372 case DragEvent.ACTION_DRAG_ENDED:
1373 return true;
1374
1375 case DragEvent.ACTION_DROP:
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001376 int dstPosition = mRecView.getChildAdapterPosition(getContainingItemView(v));
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001377 DocumentInfo dstDir = null;
1378 if (dstPosition != android.widget.AdapterView.INVALID_POSITION) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001379 Cursor dstCursor = mModel.getItem(dstPosition);
Steve McKayef280152015-06-11 10:10:49 -07001380 checkNotNull(dstCursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001381 dstDir = DocumentInfo.fromDirectoryCursor(dstCursor);
1382 // TODO: Do not drop into the directory where the documents came from.
1383 }
1384 copyFromClipData(event.getClipData(), dstDir);
1385 return true;
1386 }
1387 return false;
1388 }
1389 };
1390
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001391 private View getContainingItemView(View view) {
1392 while (true) {
1393 if (view.getLayoutParams() instanceof RecyclerView.LayoutParams) {
1394 return view;
1395 }
1396 ViewParent parent = view.getParent();
1397 if (parent == null || !(parent instanceof View)) {
1398 return null;
1399 }
1400 view = (View) parent;
1401 }
1402 }
1403
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001404 private View.OnLongClickListener mLongClickListener = new View.OnLongClickListener() {
1405 @Override
1406 public boolean onLongClick(View v) {
1407 final List<DocumentInfo> docs = getDraggableDocuments(v);
1408 if (docs.isEmpty()) {
1409 return false;
1410 }
1411 v.startDrag(
1412 getClipDataFromDocuments(docs),
1413 new DrawableShadowBuilder(getDragShadowIcon(docs)),
1414 null,
Vladislav Kaznacheeve3ce8a92015-07-15 18:04:04 -07001415 View.DRAG_FLAG_GLOBAL | View.DRAG_FLAG_GLOBAL_URI_READ |
1416 View.DRAG_FLAG_GLOBAL_URI_WRITE
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001417 );
1418 return true;
1419 }
1420 };
1421
1422 private List<DocumentInfo> getDraggableDocuments(View currentItemView) {
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001423 int position = mRecView.getChildAdapterPosition(getContainingItemView(currentItemView));
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001424 if (position == android.widget.AdapterView.INVALID_POSITION) {
1425 return Collections.EMPTY_LIST;
1426 }
1427
Ben Kwa24be5d32015-08-27 16:04:46 -07001428 final List<DocumentInfo> selectedDocs = mModel.getSelectedDocuments();
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001429 if (!selectedDocs.isEmpty()) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001430 if (!mModel.isSelected(position)) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001431 // There is a selection that does not include the current item, drag nothing.
1432 return Collections.EMPTY_LIST;
1433 }
1434 return selectedDocs;
1435 }
1436
Ben Kwa24be5d32015-08-27 16:04:46 -07001437 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -07001438 checkNotNull(cursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001439 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Steve McKayfefcd702015-08-20 16:19:38 +00001440
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001441 return Lists.newArrayList(doc);
1442 }
1443
1444 private Drawable getDragShadowIcon(List<DocumentInfo> docs) {
1445 if (docs.size() == 1) {
1446 final DocumentInfo doc = docs.get(0);
1447 return getDocumentIcon(getActivity(), doc.authority, doc.documentId,
1448 doc.mimeType, doc.icon, getDisplayState(this));
1449 }
1450 return getActivity().getDrawable(R.drawable.ic_doc_generic);
1451 }
1452
1453 public static Drawable getDocumentIcon(Context context, String docAuthority, String docId,
1454 String docMimeType, int docIcon, State state) {
1455 if (docIcon != 0) {
1456 return IconUtils.loadPackageIcon(context, docAuthority, docIcon);
1457 } else {
1458 return IconUtils.loadMimeIcon(context, docMimeType, docAuthority, docId,
1459 state.derivedMode);
1460 }
1461 }
1462
Steve McKayef280152015-06-11 10:10:49 -07001463 private static class ThumbnailAsyncTask extends AsyncTask<Uri, Void, Bitmap>
1464 implements Preemptable {
1465 private final Uri mUri;
1466 private final ImageView mIconMime;
1467 private final ImageView mIconThumb;
1468 private final Point mThumbSize;
1469 private final float mTargetAlpha;
1470 private final CancellationSignal mSignal;
1471
1472 public ThumbnailAsyncTask(Uri uri, ImageView iconMime, ImageView iconThumb, Point thumbSize,
1473 float targetAlpha) {
1474 mUri = uri;
1475 mIconMime = iconMime;
1476 mIconThumb = iconThumb;
1477 mThumbSize = thumbSize;
1478 mTargetAlpha = targetAlpha;
1479 mSignal = new CancellationSignal();
1480 }
1481
1482 @Override
1483 public void preempt() {
1484 cancel(false);
1485 mSignal.cancel();
1486 }
1487
1488 @Override
1489 protected Bitmap doInBackground(Uri... params) {
1490 if (isCancelled()) return null;
1491
1492 final Context context = mIconThumb.getContext();
1493 final ContentResolver resolver = context.getContentResolver();
1494
1495 ContentProviderClient client = null;
1496 Bitmap result = null;
1497 try {
1498 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1499 resolver, mUri.getAuthority());
1500 result = DocumentsContract.getDocumentThumbnail(client, mUri, mThumbSize, mSignal);
1501 if (result != null) {
1502 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1503 context, mThumbSize);
1504 thumbs.put(mUri, result);
1505 }
1506 } catch (Exception e) {
1507 if (!(e instanceof OperationCanceledException)) {
1508 Log.w(TAG, "Failed to load thumbnail for " + mUri + ": " + e);
1509 }
1510 } finally {
1511 ContentProviderClient.releaseQuietly(client);
1512 }
1513 return result;
1514 }
1515
1516 @Override
1517 protected void onPostExecute(Bitmap result) {
1518 if (mIconThumb.getTag() == this && result != null) {
1519 mIconThumb.setTag(null);
1520 mIconThumb.setImageBitmap(result);
1521
1522 mIconMime.setAlpha(mTargetAlpha);
1523 mIconMime.animate().alpha(0f).start();
1524 mIconThumb.setAlpha(0f);
1525 mIconThumb.animate().alpha(mTargetAlpha).start();
1526 }
1527 }
1528 }
1529
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001530 private class DrawableShadowBuilder extends View.DragShadowBuilder {
1531
1532 private final Drawable mShadow;
1533
1534 private final int mShadowDimension;
1535
1536 public DrawableShadowBuilder(Drawable shadow) {
1537 mShadow = shadow;
1538 mShadowDimension = getResources().getDimensionPixelSize(
1539 R.dimen.drag_shadow_size);
1540 mShadow.setBounds(0, 0, mShadowDimension, mShadowDimension);
1541 }
1542
Ben Kwa24be5d32015-08-27 16:04:46 -07001543 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001544 public void onProvideShadowMetrics(
1545 Point shadowSize, Point shadowTouchPoint) {
1546 shadowSize.set(mShadowDimension, mShadowDimension);
1547 shadowTouchPoint.set(mShadowDimension / 2, mShadowDimension / 2);
1548 }
1549
Ben Kwa24be5d32015-08-27 16:04:46 -07001550 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001551 public void onDrawShadow(Canvas canvas) {
1552 mShadow.draw(canvas);
1553 }
1554 }
Steve McKay1f199482015-05-20 15:58:42 -07001555
1556 private FragmentTuner pickFragmentTuner(final State state) {
1557 return state.action == ACTION_BROWSE_ALL
Steve McKay0fbfc652015-08-20 16:48:49 -07001558 ? new FilesTuner()
Steve McKay1f199482015-05-20 15:58:42 -07001559 : new DefaultTuner(state);
1560 }
1561
1562 /**
1563 * Interface for specializing the Fragment for the "host" Activity.
1564 * Feel free to expand the role of this class to handle other specializations.
1565 */
1566 private interface FragmentTuner {
Steve McKay4f4232d2015-07-22 12:13:46 -07001567 void updateActionMenu(Menu menu, int dirType, boolean canDelete);
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001568 void afterActivityCreated(DirectoryFragment fragment);
Steve McKay1f199482015-05-20 15:58:42 -07001569 }
1570
1571 /**
Steve McKay9276f3b2015-05-27 16:11:42 -07001572 * Abstract task providing support for loading documents *off*
1573 * the main thread. And if it isn't obvious, creating a list
1574 * of documents (especially large lists) can be pretty expensive.
1575 */
1576 private abstract class GetDocumentsTask
Steve McKayef280152015-06-11 10:10:49 -07001577 extends AsyncTask<Selection, Void, List<DocumentInfo>> {
Steve McKay9276f3b2015-05-27 16:11:42 -07001578 @Override
Steve McKayef280152015-06-11 10:10:49 -07001579 protected final List<DocumentInfo> doInBackground(Selection... selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001580 return mModel.getDocuments(selected[0]);
Steve McKay9276f3b2015-05-27 16:11:42 -07001581 }
1582
1583 @Override
1584 protected final void onPostExecute(List<DocumentInfo> docs) {
1585 onDocumentsReady(docs);
1586 }
1587
1588 abstract void onDocumentsReady(List<DocumentInfo> docs);
1589 }
1590
1591 /**
Steve McKay1f199482015-05-20 15:58:42 -07001592 * Provides support for Platform specific specializations of DirectoryFragment.
1593 */
1594 private static final class DefaultTuner implements FragmentTuner {
1595
1596 private final State mState;
1597
1598 public DefaultTuner(State state) {
1599 mState = state;
1600 }
1601
1602 @Override
Steve McKay4f4232d2015-07-22 12:13:46 -07001603 public void updateActionMenu(Menu menu, int dirType, boolean canDelete) {
Steve McKay1f199482015-05-20 15:58:42 -07001604 Preconditions.checkState(mState.action != ACTION_BROWSE_ALL);
1605
1606 final MenuItem open = menu.findItem(R.id.menu_open);
1607 final MenuItem share = menu.findItem(R.id.menu_share);
1608 final MenuItem delete = menu.findItem(R.id.menu_delete);
1609 final MenuItem copyTo = menu.findItem(R.id.menu_copy_to);
1610 final MenuItem moveTo = menu.findItem(R.id.menu_move_to);
1611 final MenuItem copyToClipboard = menu.findItem(R.id.menu_copy_to_clipboard);
1612
1613 final boolean manageOrBrowse = (mState.action == ACTION_MANAGE
1614 || mState.action == ACTION_BROWSE);
1615
1616 open.setVisible(!manageOrBrowse);
1617 share.setVisible(manageOrBrowse);
Steve McKay4f4232d2015-07-22 12:13:46 -07001618 delete.setVisible(manageOrBrowse && canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001619 // Disable copying from the Recents view.
1620 copyTo.setVisible(manageOrBrowse && dirType != TYPE_RECENT_OPEN);
1621 moveTo.setVisible(SystemProperties.getBoolean("debug.documentsui.enable_move", false));
1622
Steve McKay0fbfc652015-08-20 16:48:49 -07001623 // Only shown in files mode.
Steve McKay1f199482015-05-20 15:58:42 -07001624 copyToClipboard.setVisible(false);
1625 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001626
1627 @Override
1628 public void afterActivityCreated(DirectoryFragment fragment) {}
Steve McKay1f199482015-05-20 15:58:42 -07001629 }
1630
1631 /**
Steve McKay0fbfc652015-08-20 16:48:49 -07001632 * Provides support for Files activity specific specializations of DirectoryFragment.
Steve McKay1f199482015-05-20 15:58:42 -07001633 */
Steve McKay0fbfc652015-08-20 16:48:49 -07001634 private static final class FilesTuner implements FragmentTuner {
Steve McKay1f199482015-05-20 15:58:42 -07001635 @Override
Steve McKay4f4232d2015-07-22 12:13:46 -07001636 public void updateActionMenu(Menu menu, int dirType, boolean canDelete) {
Steve McKay1f199482015-05-20 15:58:42 -07001637 menu.findItem(R.id.menu_share).setVisible(true);
Steve McKay4f4232d2015-07-22 12:13:46 -07001638 menu.findItem(R.id.menu_delete).setVisible(canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001639 menu.findItem(R.id.menu_copy_to_clipboard).setVisible(true);
1640
1641 menu.findItem(R.id.menu_open).setVisible(false);
1642 menu.findItem(R.id.menu_copy_to).setVisible(false);
1643 menu.findItem(R.id.menu_move_to).setVisible(false);
1644 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001645
1646 @Override
Kyle Horimoto62a7fd02015-08-18 13:25:29 -07001647 public void afterActivityCreated(DirectoryFragment fragment) {}
Steve McKay1f199482015-05-20 15:58:42 -07001648 }
Ben Kwa24be5d32015-08-27 16:04:46 -07001649
1650 /**
1651 * The data model for the current loaded directory.
1652 */
Ben Kwa7461a952015-09-01 11:03:01 -07001653 @VisibleForTesting
1654 public static final class Model implements DocumentContext {
Ben Kwa24be5d32015-08-27 16:04:46 -07001655 private MultiSelectManager mSelectionManager;
Ben Kwa379e1762015-09-21 10:49:52 -07001656 private RecyclerView.Adapter<?> mViewAdapter;
Ben Kwa7461a952015-09-01 11:03:01 -07001657 private Context mContext;
Ben Kwa24be5d32015-08-27 16:04:46 -07001658 private int mCursorCount;
1659 private boolean mIsLoading;
Ben Kwa7461a952015-09-01 11:03:01 -07001660 private SparseBooleanArray mMarkedForDeletion = new SparseBooleanArray();
1661 private UpdateListener mUpdateListener;
Ben Kwa24be5d32015-08-27 16:04:46 -07001662 @Nullable private Cursor mCursor;
1663 @Nullable private String info;
1664 @Nullable private String error;
Ben Kwa7461a952015-09-01 11:03:01 -07001665
Ben Kwa379e1762015-09-21 10:49:52 -07001666 Model(Context context, MultiSelectManager selectionManager,
1667 RecyclerView.Adapter<?> viewAdapter) {
Ben Kwa7461a952015-09-01 11:03:01 -07001668 mContext = context;
1669 mSelectionManager = selectionManager;
Ben Kwa379e1762015-09-21 10:49:52 -07001670 mViewAdapter = viewAdapter;
Ben Kwa24be5d32015-08-27 16:04:46 -07001671 }
1672
1673 /**
1674 * Selects all files in the current directory.
1675 * @return true if the selection state changed for any files.
1676 */
1677 boolean selectAll() {
1678 return mSelectionManager.setItemsSelected(0, mCursorCount, true);
1679 }
1680
1681 /**
1682 * Clones the current selection into the given Selection object.
1683 * @param selection
1684 * @return The selection that was passed in, for convenience.
1685 */
1686 Selection getSelection(Selection selection) {
1687 return mSelectionManager.getSelection(selection);
1688 }
1689
1690 /**
1691 * @return The current selection (the live instance, not a copy).
1692 */
1693 Selection getSelection() {
1694 return mSelectionManager.getSelection();
1695 }
1696
1697 boolean isSelected(int position) {
1698 return mSelectionManager.getSelection().contains(position);
1699 }
1700
1701 void clearSelection() {
1702 mSelectionManager.clearSelection();
1703 }
1704
1705 void update(DirectoryResult result) {
1706 if (DEBUG) Log.i(TAG, "Updating model with new result set.");
1707
1708 if (result == null) {
1709 mCursor = null;
1710 mCursorCount = 0;
1711 info = null;
1712 error = null;
1713 mIsLoading = false;
Ben Kwa83cedf22015-09-11 15:15:45 -07001714 mUpdateListener.onModelUpdate(this);
Ben Kwa24be5d32015-08-27 16:04:46 -07001715 return;
1716 }
1717
1718 if (result.exception != null) {
1719 Log.e(TAG, "Error while loading directory contents", result.exception);
Ben Kwa83cedf22015-09-11 15:15:45 -07001720 mUpdateListener.onModelUpdateFailed(result.exception);
Ben Kwa24be5d32015-08-27 16:04:46 -07001721 return;
1722 }
1723
1724 mCursor = result.cursor;
1725 mCursorCount = mCursor.getCount();
1726
1727 final Bundle extras = mCursor.getExtras();
1728 if (extras != null) {
1729 info = extras.getString(DocumentsContract.EXTRA_INFO);
1730 error = extras.getString(DocumentsContract.EXTRA_ERROR);
1731 mIsLoading = extras.getBoolean(DocumentsContract.EXTRA_LOADING, false);
1732 }
Ben Kwa7461a952015-09-01 11:03:01 -07001733
Ben Kwa83cedf22015-09-11 15:15:45 -07001734 mUpdateListener.onModelUpdate(this);
Ben Kwa24be5d32015-08-27 16:04:46 -07001735 }
1736
Ben Kwa7461a952015-09-01 11:03:01 -07001737 int getItemCount() {
Ben Kwa91923182015-08-27 16:06:33 -07001738 return mCursorCount - mMarkedForDeletion.size();
Ben Kwa24be5d32015-08-27 16:04:46 -07001739 }
1740
Ben Kwa7461a952015-09-01 11:03:01 -07001741 Cursor getItem(int position) {
Ben Kwa91923182015-08-27 16:06:33 -07001742 // Items marked for deletion are masked out of the UI. To do this, for every marked
1743 // item whose position is less than the requested item position, advance the requested
1744 // position by 1.
1745 final int originalPos = position;
1746 final int size = mMarkedForDeletion.size();
Ben Kwa0d0daff2015-09-09 13:49:07 -07001747 for (int i = 0; i < size; ++i) {
Ben Kwa91923182015-08-27 16:06:33 -07001748 // It'd be more concise, but less efficient, to iterate over positions while calling
1749 // mMarkedForDeletion.get. Instead, iterate over deleted entries.
1750 if (mMarkedForDeletion.keyAt(i) <= position && mMarkedForDeletion.valueAt(i)) {
1751 ++position;
1752 }
1753 }
1754
1755 if (DEBUG) {
1756 Log.d(TAG, "Item position adjusted for deletion. Original: " + originalPos
1757 + " Adjusted: " + position);
1758 }
1759
Ben Kwa24be5d32015-08-27 16:04:46 -07001760 if (position >= mCursorCount) {
1761 throw new IndexOutOfBoundsException("Attempt to retrieve " + position + " of " +
1762 mCursorCount + " items");
1763 }
1764
1765 mCursor.moveToPosition(position);
1766 return mCursor;
1767 }
1768
1769 private boolean isEmpty() {
1770 return mCursorCount == 0;
1771 }
1772
1773 private boolean isLoading() {
1774 return mIsLoading;
1775 }
1776
1777 private List<DocumentInfo> getSelectedDocuments() {
1778 Selection sel = getSelection(new Selection());
1779 return getDocuments(sel);
1780 }
1781
Ben Kwa7461a952015-09-01 11:03:01 -07001782 List<DocumentInfo> getDocuments(Selection items) {
Ben Kwa91923182015-08-27 16:06:33 -07001783 final int size = (items != null) ? items.size() : 0;
Ben Kwa24be5d32015-08-27 16:04:46 -07001784
Ben Kwa91923182015-08-27 16:06:33 -07001785 final List<DocumentInfo> docs = new ArrayList<>(size);
Ben Kwa24be5d32015-08-27 16:04:46 -07001786 for (int i = 0; i < size; i++) {
1787 final Cursor cursor = getItem(items.get(i));
1788 checkNotNull(cursor, "Cursor cannot be null.");
1789 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
1790 docs.add(doc);
1791 }
1792 return docs;
1793 }
1794
1795 @Override
1796 public Cursor getCursor() {
1797 if (Looper.myLooper() != Looper.getMainLooper()) {
1798 throw new IllegalStateException("Can't call getCursor from non-main thread.");
1799 }
1800 return mCursor;
1801 }
Ben Kwa91923182015-08-27 16:06:33 -07001802
Ben Kwa7461a952015-09-01 11:03:01 -07001803 List<DocumentInfo> getDocumentsMarkedForDeletion() {
Ben Kwa91923182015-08-27 16:06:33 -07001804 final int size = mMarkedForDeletion.size();
1805 List<DocumentInfo> docs = new ArrayList<>(size);
1806
1807 for (int i = 0; i < size; ++i) {
1808 final int position = mMarkedForDeletion.keyAt(i);
1809 checkState(position < mCursorCount);
1810 mCursor.moveToPosition(position);
1811 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(mCursor);
1812 docs.add(doc);
1813 }
1814 return docs;
1815 }
1816
1817 /**
1818 * Marks the given files for deletion. This will remove them from the UI. Clients must then
1819 * call either {@link #undoDeletion()} or {@link #finalizeDeletion()} to cancel or confirm
1820 * the deletion, respectively. Only one deletion operation is allowed at a time.
1821 *
1822 * @param selected A selection representing the files to delete.
1823 */
Ben Kwa7461a952015-09-01 11:03:01 -07001824 void markForDeletion(Selection selected) {
Ben Kwa91923182015-08-27 16:06:33 -07001825 // Only one deletion operation at a time.
1826 checkState(mMarkedForDeletion.size() == 0);
1827 // There should never be more to delete than what exists.
1828 checkState(mCursorCount >= selected.size());
1829
1830 final int size = selected.size();
1831 for (int i = 0; i < size; ++i) {
1832 int position = selected.get(i);
1833 if (DEBUG) Log.d(TAG, "Marked position " + position + " for deletion");
1834 mMarkedForDeletion.append(position, true);
Ben Kwa379e1762015-09-21 10:49:52 -07001835 mViewAdapter.notifyItemRemoved(position);
Ben Kwa91923182015-08-27 16:06:33 -07001836 }
1837 }
1838
1839 /**
1840 * Cancels an ongoing deletion operation. All files currently marked for deletion will be
1841 * unmarked, and restored in the UI. See {@link #markForDeletion(Selection)}.
1842 */
Ben Kwa7461a952015-09-01 11:03:01 -07001843 void undoDeletion() {
Ben Kwa91923182015-08-27 16:06:33 -07001844 // Iterate over deleted items, temporarily marking them false in the deletion list, and
1845 // re-adding them to the UI.
1846 final int size = mMarkedForDeletion.size();
1847 for (int i = 0; i < size; ++i) {
1848 final int position = mMarkedForDeletion.keyAt(i);
1849 mMarkedForDeletion.put(position, false);
Ben Kwa379e1762015-09-21 10:49:52 -07001850 mViewAdapter.notifyItemInserted(position);
Ben Kwa91923182015-08-27 16:06:33 -07001851 }
1852
1853 // Then, clear the deletion list.
1854 mMarkedForDeletion.clear();
1855 }
1856
1857 /**
1858 * Finalizes an ongoing deletion operation. All files currently marked for deletion will be
1859 * deleted. See {@link #markForDeletion(Selection)}.
Ben Kwa7461a952015-09-01 11:03:01 -07001860 *
1861 * @param view The view which will be used to interact with the user (e.g. surfacing
1862 * snackbars) for errors, info, etc.
Ben Kwa91923182015-08-27 16:06:33 -07001863 */
Ben Kwa83cedf22015-09-11 15:15:45 -07001864 void finalizeDeletion(Runnable errorCallback) {
Ben Kwa7461a952015-09-01 11:03:01 -07001865 final ContentResolver resolver = mContext.getContentResolver();
Ben Kwa83cedf22015-09-11 15:15:45 -07001866 DeleteFilesTask task = new DeleteFilesTask(resolver, errorCallback);
Ben Kwa7461a952015-09-01 11:03:01 -07001867 task.execute();
Ben Kwa91923182015-08-27 16:06:33 -07001868 }
1869
1870 /**
1871 * A Task which collects the DocumentInfo for documents that have been marked for deletion,
1872 * and actually deletes them.
1873 */
1874 private class DeleteFilesTask extends AsyncTask<Void, Void, List<DocumentInfo>> {
1875 private ContentResolver mResolver;
Ben Kwa7461a952015-09-01 11:03:01 -07001876 private Runnable mErrorCallback;
Ben Kwa91923182015-08-27 16:06:33 -07001877
Ben Kwa7461a952015-09-01 11:03:01 -07001878 /**
1879 * @param resolver A ContentResolver for performing the actual file deletions.
1880 * @param errorCallback A Runnable that is executed in the event that one or more errors
1881 * occured while copying files. Execution will occur on the UI thread.
1882 */
1883 public DeleteFilesTask(ContentResolver resolver, Runnable errorCallback) {
Ben Kwa91923182015-08-27 16:06:33 -07001884 mResolver = resolver;
Ben Kwa7461a952015-09-01 11:03:01 -07001885 mErrorCallback = errorCallback;
Ben Kwa91923182015-08-27 16:06:33 -07001886 }
1887
1888 @Override
1889 protected List<DocumentInfo> doInBackground(Void... params) {
1890 return getDocumentsMarkedForDeletion();
1891 }
1892
1893 @Override
1894 protected void onPostExecute(List<DocumentInfo> docs) {
1895 boolean hadTrouble = false;
1896 for (DocumentInfo doc : docs) {
1897 if (!doc.isDeleteSupported()) {
1898 Log.w(TAG, doc + " could not be deleted. Skipping...");
1899 hadTrouble = true;
1900 continue;
1901 }
1902
1903 ContentProviderClient client = null;
1904 try {
1905 if (DEBUG) Log.d(TAG, "Deleting: " + doc.displayName);
1906 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1907 mResolver, doc.derivedUri.getAuthority());
1908 DocumentsContract.deleteDocument(client, doc.derivedUri);
1909 } catch (Exception e) {
1910 Log.w(TAG, "Failed to delete " + doc);
1911 hadTrouble = true;
1912 } finally {
1913 ContentProviderClient.releaseQuietly(client);
1914 }
1915 }
1916
1917 if (hadTrouble) {
Ben Kwa7461a952015-09-01 11:03:01 -07001918 // TODO show which files failed? b/23720103
1919 mErrorCallback.run();
Ben Kwa91923182015-08-27 16:06:33 -07001920 if (DEBUG) Log.d(TAG, "Deletion task completed. Some deletions failed.");
1921 } else {
1922 if (DEBUG) Log.d(TAG, "Deletion task completed successfully.");
1923 }
1924 mMarkedForDeletion.clear();
1925 }
1926 }
Ben Kwa7461a952015-09-01 11:03:01 -07001927
1928 void addUpdateListener(UpdateListener listener) {
1929 checkState(mUpdateListener == null);
1930 mUpdateListener = listener;
1931 }
1932
Ben Kwa379e1762015-09-21 10:49:52 -07001933 static class UpdateListener {
Ben Kwa7461a952015-09-01 11:03:01 -07001934 /**
1935 * Called when a successful update has occurred.
1936 */
Ben Kwa379e1762015-09-21 10:49:52 -07001937 void onModelUpdate(Model model) {}
Ben Kwa7461a952015-09-01 11:03:01 -07001938
1939 /**
1940 * Called when an update has been attempted but failed.
1941 */
Ben Kwa379e1762015-09-21 10:49:52 -07001942 void onModelUpdateFailed(Exception e) {}
1943 }
1944 }
Ben Kwa7461a952015-09-01 11:03:01 -07001945
Ben Kwa379e1762015-09-21 10:49:52 -07001946 private class ModelUpdateListener extends Model.UpdateListener {
1947 @Override
1948 public void onModelUpdate(Model model) {
1949 if (model.info != null || model.error != null) {
1950 mMessageBar.setInfo(model.info);
1951 mMessageBar.setError(model.error);
1952 mMessageBar.show();
1953 }
Ben Kwa7461a952015-09-01 11:03:01 -07001954
Ben Kwa379e1762015-09-21 10:49:52 -07001955 mProgressBar.setVisibility(model.isLoading() ? View.VISIBLE : View.GONE);
1956
1957 if (model.isEmpty()) {
1958 mEmptyView.setVisibility(View.VISIBLE);
1959 mRecView.setVisibility(View.GONE);
1960 } else {
1961 mEmptyView.setVisibility(View.GONE);
1962 mRecView.setVisibility(View.VISIBLE);
1963 }
1964
1965 mAdapter.notifyDataSetChanged();
1966 }
1967
1968 @Override
1969 public void onModelUpdateFailed(Exception e) {
1970 // TODO: deal with catastrophic update failures
1971 String error = getString(R.string.query_error);
1972 mAdapter.notifyDataSetChanged();
Ben Kwa7461a952015-09-01 11:03:01 -07001973 }
Ben Kwa24be5d32015-08-27 16:04:46 -07001974 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001975}