blob: 5c530e5ff4c389a102e3074f715318de4344faa8 [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 McKayfefcd702015-08-20 16:19:38 +0000105import com.google.common.collect.Lists;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700106
107import java.util.ArrayList;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -0700108import java.util.Collections;
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700109import java.util.List;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700110
111/**
112 * Display the documents inside a single directory.
113 */
114public class DirectoryFragment extends Fragment {
115
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700116 public static final int TYPE_NORMAL = 1;
117 public static final int TYPE_SEARCH = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700118 public static final int TYPE_RECENT_OPEN = 3;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700119
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700120 public static final int ANIM_NONE = 1;
121 public static final int ANIM_SIDE = 2;
122 public static final int ANIM_DOWN = 3;
123 public static final int ANIM_UP = 4;
124
Ben Kwaf5858932015-04-07 15:43:39 -0700125 public static final int REQUEST_COPY_DESTINATION = 1;
126
Steve McKayef280152015-06-11 10:10:49 -0700127 private static final int LOADER_ID = 42;
128 private static final boolean DEBUG = false;
Steve McKay8e258c62015-05-06 14:27:57 -0700129 private static final boolean DEBUG_ENABLE_DND = false;
130
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700131 private static final String EXTRA_TYPE = "type";
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700132 private static final String EXTRA_ROOT = "root";
133 private static final String EXTRA_DOC = "doc";
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700134 private static final String EXTRA_QUERY = "query";
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700135 private static final String EXTRA_IGNORE_STATE = "ignoreState";
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700136
Ben Kwa7461a952015-09-01 11:03:01 -0700137 private Model mModel;
Ben Kwa24be5d32015-08-27 16:04:46 -0700138
Steve McKayef280152015-06-11 10:10:49 -0700139 private final Handler mHandler = new Handler(Looper.getMainLooper());
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700140
Steve McKayef280152015-06-11 10:10:49 -0700141 private View mEmptyView;
142 private RecyclerView mRecView;
143
144 private int mType = TYPE_NORMAL;
145 private String mStateKey;
146
147 private int mLastMode = MODE_UNKNOWN;
148 private int mLastSortOrder = SORT_ORDER_UNKNOWN;
149 private boolean mLastShowSize;
150 private boolean mHideGridTitles;
151 private boolean mSvelteRecents;
152 private Point mThumbSize;
153 private DocumentsAdapter mAdapter;
154 private LoaderCallbacks<DirectoryResult> mCallbacks;
Steve McKay1f199482015-05-20 15:58:42 -0700155 private FragmentTuner mFragmentTuner;
156 private DocumentClipper mClipper;
Steve McKayef280152015-06-11 10:10:49 -0700157 // These are lazily initialized.
Steve McKayd57f5fa2015-07-23 16:33:41 -0700158 private LinearLayoutManager mListLayout;
159 private GridLayoutManager mGridLayout;
Steve McKayd57f5fa2015-07-23 16:33:41 -0700160 private int mColumnCount = 1; // This will get updated when layout changes.
Steve McKay1f199482015-05-20 15:58:42 -0700161
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700162 public static void showNormal(FragmentManager fm, RootInfo root, DocumentInfo doc, int anim) {
163 show(fm, TYPE_NORMAL, root, doc, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700164 }
165
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700166 public static void showSearch(FragmentManager fm, RootInfo root, String query, int anim) {
167 show(fm, TYPE_SEARCH, root, null, query, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700168 }
169
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700170 public static void showRecentsOpen(FragmentManager fm, int anim) {
171 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700172 }
173
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700174 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc,
175 String query, int anim) {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700176 final Bundle args = new Bundle();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700177 args.putInt(EXTRA_TYPE, type);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700178 args.putParcelable(EXTRA_ROOT, root);
179 args.putParcelable(EXTRA_DOC, doc);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700180 args.putString(EXTRA_QUERY, query);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700181
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700182 final FragmentTransaction ft = fm.beginTransaction();
183 switch (anim) {
184 case ANIM_SIDE:
185 args.putBoolean(EXTRA_IGNORE_STATE, true);
186 break;
187 case ANIM_DOWN:
188 args.putBoolean(EXTRA_IGNORE_STATE, true);
189 ft.setCustomAnimations(R.animator.dir_down, R.animator.dir_frozen);
190 break;
191 case ANIM_UP:
192 ft.setCustomAnimations(R.animator.dir_frozen, R.animator.dir_up);
193 break;
194 }
195
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700196 final DirectoryFragment fragment = new DirectoryFragment();
197 fragment.setArguments(args);
198
Jeff Sharkey76112212013-08-06 11:26:10 -0700199 ft.replace(R.id.container_directory, fragment);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700200 ft.commitAllowingStateLoss();
201 }
202
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700203 private static String buildStateKey(RootInfo root, DocumentInfo doc) {
204 final StringBuilder builder = new StringBuilder();
205 builder.append(root != null ? root.authority : "null").append(';');
206 builder.append(root != null ? root.rootId : "null").append(';');
207 builder.append(doc != null ? doc.documentId : "null");
208 return builder.toString();
209 }
210
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700211 public static DirectoryFragment get(FragmentManager fm) {
212 // TODO: deal with multiple directories shown at once
Jeff Sharkey76112212013-08-06 11:26:10 -0700213 return (DirectoryFragment) fm.findFragmentById(R.id.container_directory);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700214 }
215
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700216 @Override
217 public View onCreateView(
218 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
219 final Context context = inflater.getContext();
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700220 final Resources res = context.getResources();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700221 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
222
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700223 mEmptyView = view.findViewById(android.R.id.empty);
224
Steve McKayef280152015-06-11 10:10:49 -0700225 mRecView = (RecyclerView) view.findViewById(R.id.recyclerView);
226 mRecView.setRecyclerListener(
227 new RecyclerListener() {
228 @Override
229 public void onViewRecycled(ViewHolder holder) {
230 cancelThumbnailTask(holder.itemView);
231 }
232 });
Steve McKay8e258c62015-05-06 14:27:57 -0700233
Steve McKayd57f5fa2015-07-23 16:33:41 -0700234 // TODO: Rather than update columns on layout changes, push this
235 // code (or something like it) into GridLayoutManager.
236 mRecView.addOnLayoutChangeListener(
237 new OnLayoutChangeListener() {
238
239 @Override
240 public void onLayoutChange(
241 View v, int left, int top, int right, int bottom, int oldLeft,
242 int oldTop, int oldRight, int oldBottom) {
Steve McKayfefcd702015-08-20 16:19:38 +0000243 mColumnCount = calculateColumnCount();
Steve McKayd57f5fa2015-07-23 16:33:41 -0700244 if (mGridLayout != null) {
245 mGridLayout.setSpanCount(mColumnCount);
246 }
247 }
248 });
249
250 // TODO: Add a divider between views (which might use RecyclerView.ItemDecoration).
Steve McKay8e258c62015-05-06 14:27:57 -0700251 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -0700252 setupDragAndDropOnDirectoryView(mRecView);
Steve McKay8e258c62015-05-06 14:27:57 -0700253 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700254
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700255 return view;
256 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700257
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700258 @Override
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700259 public void onDestroyView() {
260 super.onDestroyView();
261
262 // Cancel any outstanding thumbnail requests
Steve McKayef280152015-06-11 10:10:49 -0700263 final int count = mRecView.getChildCount();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700264 for (int i = 0; i < count; i++) {
Steve McKayef280152015-06-11 10:10:49 -0700265 final View view = mRecView.getChildAt(i);
266 cancelThumbnailTask(view);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700267 }
Jeff Sharkeyfaaeb392013-10-04 14:44:56 -0700268
Steve McKayef280152015-06-11 10:10:49 -0700269 // Clear any outstanding selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700270 mModel.clearSelection();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700271 }
272
273 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700274 public void onActivityCreated(Bundle savedInstanceState) {
275 super.onActivityCreated(savedInstanceState);
276
277 final Context context = getActivity();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700278 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700279
Jeff Sharkey9656a532013-09-13 13:42:19 -0700280 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
281 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
282
Steve McKayef280152015-06-11 10:10:49 -0700283 mAdapter = new DocumentsAdapter(context);
284 mRecView.setAdapter(mAdapter);
285
286 GestureDetector.SimpleOnGestureListener listener =
287 new GestureDetector.SimpleOnGestureListener() {
288 @Override
289 public boolean onSingleTapUp(MotionEvent e) {
290 return DirectoryFragment.this.onSingleTapUp(e);
291 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700292 @Override
293 public boolean onDoubleTap(MotionEvent e) {
294 Log.d(TAG, "Handling double tap.");
295 return DirectoryFragment.this.onDoubleTap(e);
296 }
Steve McKayef280152015-06-11 10:10:49 -0700297 };
298
Ben Kwa24be5d32015-08-27 16:04:46 -0700299 // TODO: instead of inserting the view into the constructor, extract listener-creation code
300 // and set the listener on the view after the fact. Then the view doesn't need to be passed
301 // into the selection manager which is passed into the model.
302 MultiSelectManager selMgr= new MultiSelectManager(
Steve McKay57394872015-08-12 14:48:34 -0700303 mRecView,
304 listener,
305 state.allowMultiple
306 ? MultiSelectManager.MODE_MULTIPLE
307 : MultiSelectManager.MODE_SINGLE);
Ben Kwa24be5d32015-08-27 16:04:46 -0700308 selMgr.addCallback(new SelectionModeListener());
Ben Kwa7461a952015-09-01 11:03:01 -0700309
310 mModel = new Model(context, selMgr);
Ben Kwa24be5d32015-08-27 16:04:46 -0700311 mModel.setSelectionManager(selMgr);
Ben Kwa7461a952015-09-01 11:03:01 -0700312 mModel.addUpdateListener(mAdapter);
Steve McKayef280152015-06-11 10:10:49 -0700313
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700314 mType = getArguments().getInt(EXTRA_TYPE);
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700315 mStateKey = buildStateKey(root, doc);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700316
Steve McKay1f199482015-05-20 15:58:42 -0700317 mFragmentTuner = pickFragmentTuner(state);
318 mClipper = new DocumentClipper(context);
319
Jeff Sharkey9656a532013-09-13 13:42:19 -0700320 if (mType == TYPE_RECENT_OPEN) {
321 // Hide titles when showing recents for picking images/videos
322 mHideGridTitles = MimePredicate.mimeMatches(
323 MimePredicate.VISUAL_MIMES, state.acceptMimes);
324 } else {
325 mHideGridTitles = (doc != null) && doc.isGridTitlesHidden();
326 }
327
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700328 final ActivityManager am = (ActivityManager) context.getSystemService(
329 Context.ACTIVITY_SERVICE);
330 mSvelteRecents = am.isLowRamDevice() && (mType == TYPE_RECENT_OPEN);
331
Jeff Sharkey46899c82013-08-18 22:26:48 -0700332 mCallbacks = new LoaderCallbacks<DirectoryResult>() {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700333 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700334 public Loader<DirectoryResult> onCreateLoader(int id, Bundle args) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700335 final String query = getArguments().getString(EXTRA_QUERY);
Jeff Sharkey46165b52013-07-31 20:53:22 -0700336
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700337 Uri contentsUri;
338 switch (mType) {
339 case TYPE_NORMAL:
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700340 contentsUri = DocumentsContract.buildChildDocumentsUri(
341 doc.authority, doc.documentId);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700342 if (state.action == ACTION_MANAGE) {
343 contentsUri = DocumentsContract.setManageMode(contentsUri);
344 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700345 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700346 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700347 case TYPE_SEARCH:
348 contentsUri = DocumentsContract.buildSearchDocumentsUri(
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700349 root.authority, root.rootId, query);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700350 if (state.action == ACTION_MANAGE) {
351 contentsUri = DocumentsContract.setManageMode(contentsUri);
352 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700353 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700354 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700355 case TYPE_RECENT_OPEN:
Jeff Sharkey1c903cc2013-09-02 17:19:40 -0700356 final RootsCache roots = DocumentsApplication.getRootsCache(context);
Jeff Sharkey8b997042013-09-19 15:25:56 -0700357 return new RecentLoader(context, roots, state);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700358 default:
359 throw new IllegalStateException("Unknown type " + mType);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700360 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700361 }
362
363 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700364 public void onLoadFinished(Loader<DirectoryResult> loader, DirectoryResult result) {
Makoto Onuki77778752015-07-01 14:55:14 -0700365 if (result == null || result.exception != null) {
366 // onBackPressed does a fragment transaction, which can't be done inside
367 // onLoadFinished
368 mHandler.post(new Runnable() {
369 @Override
370 public void run() {
371 final Activity activity = getActivity();
372 if (activity != null) {
373 activity.onBackPressed();
374 }
375 }
376 });
377 return;
378 }
379
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700380 if (!isAdded()) return;
381
Ben Kwa24be5d32015-08-27 16:04:46 -0700382 mModel.update(result);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700383
384 // Push latest state up to UI
385 // TODO: if mode change was racing with us, don't overwrite it
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700386 if (result.mode != MODE_UNKNOWN) {
387 state.derivedMode = result.mode;
388 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700389 state.derivedSortOrder = result.sortOrder;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700390 ((BaseActivity) context).onStateChanged();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700391
392 updateDisplayState();
393
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700394 // When launched into empty recents, show drawer
Ben Kwa24be5d32015-08-27 16:04:46 -0700395 if (mType == TYPE_RECENT_OPEN && mModel.isEmpty() && !state.stackTouched &&
Steve McKayb68dd222015-04-20 17:18:15 -0700396 context instanceof DocumentsActivity) {
397 ((DocumentsActivity) context).setRootsDrawerOpen(true);
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700398 }
399
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700400 // Restore any previous instance state
401 final SparseArray<Parcelable> container = state.dirState.remove(mStateKey);
402 if (container != null && !getArguments().getBoolean(EXTRA_IGNORE_STATE, false)) {
403 getView().restoreHierarchyState(container);
404 } else if (mLastSortOrder != state.derivedSortOrder) {
Steve McKayef280152015-06-11 10:10:49 -0700405 mRecView.smoothScrollToPosition(0);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700406 }
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700407
408 mLastSortOrder = state.derivedSortOrder;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700409 }
410
411 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700412 public void onLoaderReset(Loader<DirectoryResult> loader) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700413 mModel.update(null);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700414 }
415 };
416
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700417 // Kick off loader at least once
Steve McKayef280152015-06-11 10:10:49 -0700418 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700419
Kyle Horimoto426bd0d2015-07-29 15:33:49 -0700420 mFragmentTuner.afterActivityCreated(this);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700421 updateDisplayState();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700422 }
423
Jeff Sharkey42d26792013-09-06 13:22:09 -0700424 @Override
Ben Kwaf5858932015-04-07 15:43:39 -0700425 public void onActivityResult(int requestCode, int resultCode, Intent data) {
Ben Kwaf5858932015-04-07 15:43:39 -0700426 // There's only one request code right now. Replace this with a switch statement or
427 // something more scalable when more codes are added.
428 if (requestCode != REQUEST_COPY_DESTINATION) {
429 return;
430 }
431 if (resultCode == Activity.RESULT_CANCELED || data == null) {
432 // User pressed the back button or otherwise cancelled the destination pick. Don't
433 // proceed with the copy.
434 return;
435 }
436
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +0900437 CopyService.start(getActivity(), getDisplayState(this).selectedDocumentsForCopy,
Ben Kwacb4461f2015-05-05 11:50:11 -0700438 (DocumentStack) data.getParcelableExtra(CopyService.EXTRA_STACK),
439 data.getIntExtra(CopyService.EXTRA_TRANSFER_MODE, CopyService.TRANSFER_MODE_NONE));
Ben Kwaf5858932015-04-07 15:43:39 -0700440 }
441
Steve McKayef280152015-06-11 10:10:49 -0700442 private int getEventAdapterPosition(MotionEvent e) {
443 View view = mRecView.findChildViewUnder(e.getX(), e.getY());
444 return view != null ? mRecView.getChildAdapterPosition(view) : RecyclerView.NO_POSITION;
445 }
446
447 private boolean onSingleTapUp(MotionEvent e) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700448 if (Events.isTouchEvent(e) && mModel.getSelection().isEmpty()) {
Steve McKay93d8ef42015-07-30 12:27:44 -0700449 int position = getEventAdapterPosition(e);
450 if (position != RecyclerView.NO_POSITION) {
451 return handleViewItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700452 }
453 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700454 return false;
455 }
Steve McKayef280152015-06-11 10:10:49 -0700456
Steve McKay93d8ef42015-07-30 12:27:44 -0700457 protected boolean onDoubleTap(MotionEvent e) {
458 if (Events.isMouseEvent(e)) {
459 Log.d(TAG, "Handling double tap from mouse.");
460 int position = getEventAdapterPosition(e);
461 if (position != RecyclerView.NO_POSITION) {
462 return handleViewItem(position);
463 }
464 }
465 return false;
466 }
467
468 private boolean handleViewItem(int position) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700469 final Cursor cursor = mModel.getItem(position);
Steve McKay93d8ef42015-07-30 12:27:44 -0700470 checkNotNull(cursor, "Cursor cannot be null.");
471 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
472 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
473 if (isDocumentEnabled(docMimeType, docFlags)) {
474 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Ben Kwa24be5d32015-08-27 16:04:46 -0700475 ((BaseActivity) getActivity()).onDocumentPicked(doc, mModel);
476 mModel.clearSelection();
Steve McKay93d8ef42015-07-30 12:27:44 -0700477 return true;
478 }
Steve McKayef280152015-06-11 10:10:49 -0700479 return false;
480 }
481
Ben Kwaf5858932015-04-07 15:43:39 -0700482 @Override
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700483 public void onStop() {
484 super.onStop();
485
486 // Remember last scroll location
487 final SparseArray<Parcelable> container = new SparseArray<Parcelable>();
488 getView().saveHierarchyState(container);
489 final State state = getDisplayState(this);
490 state.dirState.put(mStateKey, container);
491 }
492
493 @Override
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700494 public void onResume() {
495 super.onResume();
Jeff Sharkey42d26792013-09-06 13:22:09 -0700496 updateDisplayState();
497 }
498
Jeff Sharkeye8d13ea2014-08-08 15:10:03 -0700499 public void onDisplayStateChanged() {
500 updateDisplayState();
501 }
502
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700503 public void onUserSortOrderChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700504 // Sort order change always triggers reload; we'll trigger state change
505 // on the flip side.
Steve McKayef280152015-06-11 10:10:49 -0700506 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700507 }
508
509 public void onUserModeChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700510 final ContentResolver resolver = getActivity().getContentResolver();
511 final State state = getDisplayState(this);
512
513 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
514 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
515
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700516 if (root != null && doc != null) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700517 final Uri stateUri = RecentsProvider.buildState(
518 root.authority, root.rootId, doc.documentId);
519 final ContentValues values = new ContentValues();
520 values.put(StateColumns.MODE, state.userMode);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700521
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700522 new AsyncTask<Void, Void, Void>() {
523 @Override
524 protected Void doInBackground(Void... params) {
525 resolver.insert(stateUri, values);
526 return null;
527 }
528 }.execute();
529 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700530
531 // Mode change is just visual change; no need to kick loader, and
532 // deliver change event immediately.
533 state.derivedMode = state.userMode;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700534 ((BaseActivity) getActivity()).onStateChanged();
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700535
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700536 updateDisplayState();
537 }
538
539 private void updateDisplayState() {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700540 final State state = getDisplayState(this);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700541
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700542 if (mLastMode == state.derivedMode && mLastShowSize == state.showSize) return;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700543 mLastMode = state.derivedMode;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700544 mLastShowSize = state.showSize;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700545
Steve McKayef280152015-06-11 10:10:49 -0700546 updateLayout(state.derivedMode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700547
Steve McKayef280152015-06-11 10:10:49 -0700548 mRecView.setAdapter(mAdapter);
549 }
550
551 /**
552 * Returns a {@code LayoutManager} for {@code mode}, lazily initializing
553 * classes as needed.
554 */
555 private void updateLayout(int mode) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700556 final int thumbSize;
Steve McKayef280152015-06-11 10:10:49 -0700557
558 final LayoutManager layout;
559 switch (mode) {
560 case MODE_GRID:
Steve McKayef280152015-06-11 10:10:49 -0700561 thumbSize = getResources().getDimensionPixelSize(R.dimen.grid_width);
Steve McKaya9be7182015-07-22 16:03:35 -0700562 if (mGridLayout == null) {
Steve McKayd57f5fa2015-07-23 16:33:41 -0700563 mGridLayout = new GridLayoutManager(getContext(), mColumnCount );
Steve McKaya9be7182015-07-22 16:03:35 -0700564 }
Steve McKayef280152015-06-11 10:10:49 -0700565 layout = mGridLayout;
566 break;
567 case MODE_LIST:
Steve McKaya9be7182015-07-22 16:03:35 -0700568 thumbSize = getResources().getDimensionPixelSize(R.dimen.icon_size);
Steve McKayef280152015-06-11 10:10:49 -0700569 if (mListLayout == null) {
570 mListLayout = new LinearLayoutManager(getContext());
571 }
Steve McKayef280152015-06-11 10:10:49 -0700572 layout = mListLayout;
573 break;
574 case MODE_UNKNOWN:
575 default:
576 throw new IllegalArgumentException("Unsupported layout mode: " + mode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700577 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700578
Steve McKayef280152015-06-11 10:10:49 -0700579 mRecView.setLayoutManager(layout);
Kyle Horimoto2da6e4a2015-08-27 16:44:00 -0700580 // TODO: Once b/23691541 is resolved, use a listener within MultiSelectManager instead of
581 // imperatively calling this function.
Steve McKay9058e042015-09-01 12:31:24 -0700582 mModel.mSelectionManager.handleLayoutChanged();
Steve McKayef280152015-06-11 10:10:49 -0700583 // setting layout manager automatically invalidates existing ViewHolders.
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700584 mThumbSize = new Point(thumbSize, thumbSize);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700585 }
586
Steve McKayfefcd702015-08-20 16:19:38 +0000587 private int calculateColumnCount() {
588 int cellWidth = getResources().getDimensionPixelSize(R.dimen.grid_width);
589 int cellMargin = 2 * getResources().getDimensionPixelSize(R.dimen.grid_item_margin);
Steve McKayd57f5fa2015-07-23 16:33:41 -0700590 int viewPadding = mRecView.getPaddingLeft() + mRecView.getPaddingRight();
Steve McKayfefcd702015-08-20 16:19:38 +0000591
Steve McKayd57f5fa2015-07-23 16:33:41 -0700592 checkState(mRecView.getWidth() > 0);
593 int columnCount = Math.max(1,
Steve McKayfefcd702015-08-20 16:19:38 +0000594 (mRecView.getWidth() - viewPadding) / (cellWidth + cellMargin));
595
Steve McKayd57f5fa2015-07-23 16:33:41 -0700596 return columnCount;
597 }
598
Steve McKayef280152015-06-11 10:10:49 -0700599 /**
600 * Manages the integration between our ActionMode and MultiSelectManager, initiating
601 * ActionMode when there is a selection, canceling it when there is no selection,
602 * and clearing selection when action mode is explicitly exited by the user.
603 */
604 private final class SelectionModeListener
605 implements MultiSelectManager.Callback, ActionMode.Callback {
606
607 private Selection mSelected = new Selection();
608 private ActionMode mActionMode;
Steve McKay4f4232d2015-07-22 12:13:46 -0700609 private int mNoDeleteCount = 0;
610 private Menu mMenu;
Steve McKayef280152015-06-11 10:10:49 -0700611
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700612 @Override
Steve McKayef280152015-06-11 10:10:49 -0700613 public boolean onBeforeItemStateChange(int position, boolean selected) {
614 // Directories and footer items cannot be checked
615 if (selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700616 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700617 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700618 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
619 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
Steve McKayef280152015-06-11 10:10:49 -0700620 return isDocumentEnabled(docMimeType, docFlags);
621 }
622 return true;
623 }
624
625 @Override
626 public void onItemStateChanged(int position, boolean selected) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700627
Ben Kwa24be5d32015-08-27 16:04:46 -0700628 final Cursor cursor = mModel.getItem(position);
Steve McKay4f4232d2015-07-22 12:13:46 -0700629 checkNotNull(cursor, "Cursor cannot be null.");
630
631 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
632 if ((docFlags & Document.FLAG_SUPPORTS_DELETE) == 0) {
633 mNoDeleteCount += selected ? 1 : -1;
634 }
Steve McKay57394872015-08-12 14:48:34 -0700635 }
Steve McKay4f4232d2015-07-22 12:13:46 -0700636
Steve McKay57394872015-08-12 14:48:34 -0700637 @Override
638 public void onSelectionChanged() {
Ben Kwa24be5d32015-08-27 16:04:46 -0700639 mModel.getSelection(mSelected);
Steve McKay4f4232d2015-07-22 12:13:46 -0700640 if (mSelected.size() > 0) {
Steve McKayef280152015-06-11 10:10:49 -0700641 if (DEBUG) Log.d(TAG, "Maybe starting action mode.");
642 if (mActionMode == null) {
643 if (DEBUG) Log.d(TAG, "Yeah. Starting action mode.");
644 mActionMode = getActivity().startActionMode(this);
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +0900645 getActivity().getWindow().setStatusBarColor(
646 getResources().getColor(R.color.action_mode_status_bar_background));
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700647 }
Steve McKay4f4232d2015-07-22 12:13:46 -0700648 updateActionMenu();
649 } else {
650 if (DEBUG) Log.d(TAG, "Finishing action mode.");
651 if (mActionMode != null) {
652 mActionMode.finish();
653 }
Ben Kwa0574b182015-09-08 07:31:19 -0700654 // Obtain the original status bar color from the theme, and restore it.
655 TypedValue color = new TypedValue();
656 getActivity().getTheme().resolveAttribute(
657 android.R.attr.colorPrimaryDark, color, true);
658 getActivity().getWindow().setStatusBarColor(color.data);
659
Jeff Sharkeyf339f252013-08-15 16:17:41 -0700660 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700661
Steve McKayef280152015-06-11 10:10:49 -0700662 if (mActionMode != null) {
663 mActionMode.setTitle(TextUtils.formatSelectedCount(mSelected.size()));
664 }
665 }
666
667 // Called when the user exits the action mode
668 @Override
669 public void onDestroyActionMode(ActionMode mode) {
670 if (DEBUG) Log.d(TAG, "Handling action mode destroyed.");
671 mActionMode = null;
672 // clear selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700673 mModel.clearSelection();
Steve McKay4f4232d2015-07-22 12:13:46 -0700674 mSelected.clear();
675 mNoDeleteCount = 0;
Steve McKayef280152015-06-11 10:10:49 -0700676 }
677
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700678 @Override
679 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
680 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
Ben Kwa24be5d32015-08-27 16:04:46 -0700681 mode.setTitle(TextUtils.formatSelectedCount(mModel.getSelection().size()));
682 return mModel.getSelection().size() > 0;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700683 }
684
685 @Override
686 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700687 mMenu = menu;
688 updateActionMenu();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700689 return true;
690 }
691
Steve McKay4f4232d2015-07-22 12:13:46 -0700692 private void updateActionMenu() {
693 checkNotNull(mMenu);
694 // Delegate update logic to our owning action, since specialized logic is desired.
695 mFragmentTuner.updateActionMenu(mMenu, mType, mNoDeleteCount == 0);
696 }
697
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700698 @Override
Steve McKayef280152015-06-11 10:10:49 -0700699 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
Steve McKay1f199482015-05-20 15:58:42 -0700700
Ben Kwa24be5d32015-08-27 16:04:46 -0700701 Selection selection = mModel.getSelection(new Selection());
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700702
Jeff Sharkey873daa32013-08-18 17:38:20 -0700703 final int id = item.getItemId();
704 if (id == R.id.menu_open) {
Steve McKayef280152015-06-11 10:10:49 -0700705 openDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700706 mode.finish();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700707 return true;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700708
709 } else if (id == R.id.menu_share) {
Steve McKayef280152015-06-11 10:10:49 -0700710 shareDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700711 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700712 return true;
713
714 } else if (id == R.id.menu_delete) {
Steve McKayef280152015-06-11 10:10:49 -0700715 deleteDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700716 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700717 return true;
718
Steve McKay1f199482015-05-20 15:58:42 -0700719 } else if (id == R.id.menu_copy_to) {
Steve McKayef280152015-06-11 10:10:49 -0700720 transferDocuments(selection, CopyService.TRANSFER_MODE_COPY);
Ben Kwacb4461f2015-05-05 11:50:11 -0700721 mode.finish();
722 return true;
723
Steve McKay1f199482015-05-20 15:58:42 -0700724 } else if (id == R.id.menu_move_to) {
Steve McKayef280152015-06-11 10:10:49 -0700725 transferDocuments(selection, CopyService.TRANSFER_MODE_MOVE);
Ben Kwa41b26c12015-03-31 10:11:43 -0700726 mode.finish();
727 return true;
728
Steve McKay1f199482015-05-20 15:58:42 -0700729 } else if (id == R.id.menu_copy_to_clipboard) {
Steve McKayef280152015-06-11 10:10:49 -0700730 copySelectionToClipboard(selection);
Steve McKay1f199482015-05-20 15:58:42 -0700731 mode.finish();
732 return true;
733
Ben Kwa512a6ba2015-03-31 08:15:21 -0700734 } else if (id == R.id.menu_select_all) {
Steve McKay0599a442015-05-05 14:50:00 -0700735 selectAllFiles();
Ben Kwa512a6ba2015-03-31 08:15:21 -0700736 return true;
737
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700738 } else {
739 return false;
740 }
741 }
Steve McKayef280152015-06-11 10:10:49 -0700742 }
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700743
Steve McKayef280152015-06-11 10:10:49 -0700744 private static void cancelThumbnailTask(View view) {
745 final ImageView iconThumb = (ImageView) view.findViewById(R.id.icon_thumb);
746 if (iconThumb != null) {
747 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
748 if (oldTask != null) {
749 oldTask.preempt();
750 iconThumb.setTag(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700751 }
752 }
Steve McKayef280152015-06-11 10:10:49 -0700753 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700754
Steve McKayef280152015-06-11 10:10:49 -0700755 private void openDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700756 new GetDocumentsTask() {
757 @Override
758 void onDocumentsReady(List<DocumentInfo> docs) {
Steve McKay0fbfc652015-08-20 16:48:49 -0700759 // TODO: Implement support in Files activity for opening multiple docs.
Steve McKay9276f3b2015-05-27 16:11:42 -0700760 BaseActivity.get(DirectoryFragment.this).onDocumentsPicked(docs);
Ben Kwaf527c632015-04-08 15:03:35 -0700761 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700762 }.execute(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700763 }
764
Steve McKayef280152015-06-11 10:10:49 -0700765 private void shareDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700766 new GetDocumentsTask() {
767 @Override
768 void onDocumentsReady(List<DocumentInfo> docs) {
769 Intent intent;
770
771 // Filter out directories - those can't be shared.
Steve McKayfefcd702015-08-20 16:19:38 +0000772 List<DocumentInfo> docsForSend = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700773 for (DocumentInfo doc: docs) {
774 if (!Document.MIME_TYPE_DIR.equals(doc.mimeType)) {
775 docsForSend.add(doc);
776 }
777 }
778
779 if (docsForSend.size() == 1) {
780 final DocumentInfo doc = docsForSend.get(0);
781
782 intent = new Intent(Intent.ACTION_SEND);
783 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
784 intent.addCategory(Intent.CATEGORY_DEFAULT);
785 intent.setType(doc.mimeType);
786 intent.putExtra(Intent.EXTRA_STREAM, doc.derivedUri);
787
788 } else if (docsForSend.size() > 1) {
789 intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
790 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
791 intent.addCategory(Intent.CATEGORY_DEFAULT);
792
Steve McKayfefcd702015-08-20 16:19:38 +0000793 final ArrayList<String> mimeTypes = new ArrayList<>();
794 final ArrayList<Uri> uris = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700795 for (DocumentInfo doc : docsForSend) {
796 mimeTypes.add(doc.mimeType);
797 uris.add(doc.derivedUri);
798 }
799
800 intent.setType(findCommonMimeType(mimeTypes));
801 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
802
803 } else {
804 return;
805 }
806
807 intent = Intent.createChooser(intent, getActivity().getText(R.string.share_via));
808 startActivity(intent);
809 }
810 }.execute(selected);
811 }
812
Steve McKayef280152015-06-11 10:10:49 -0700813 private void deleteDocuments(final Selection selected) {
Ben Kwa91923182015-08-27 16:06:33 -0700814 Context context = getActivity();
815 ContentResolver resolver = context.getContentResolver();
816 String message = Shared.getQuantityString(context, R.plurals.deleting, selected.size());
Jeff Sharkey873daa32013-08-18 17:38:20 -0700817
Ben Kwa91923182015-08-27 16:06:33 -0700818 mModel.markForDeletion(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700819
Ben Kwa91923182015-08-27 16:06:33 -0700820 Activity activity = getActivity();
821 Snackbar.make(this.getView(), message, Snackbar.LENGTH_LONG)
822 .setAction(
823 R.string.undo,
824 new android.view.View.OnClickListener() {
825 @Override
826 public void onClick(View view) {}
827 })
828 .setCallback(
829 new Snackbar.Callback() {
830 @Override
831 public void onDismissed(Snackbar snackbar, int event) {
832 if (event == Snackbar.Callback.DISMISS_EVENT_ACTION) {
833 mModel.undoDeletion();
834 } else {
Ben Kwa83cedf22015-09-11 15:15:45 -0700835 mModel.finalizeDeletion(
836 new Runnable() {
837 @Override
838 public void run() {
839 Snackbar.make(
840 DirectoryFragment.this.getView(),
841 R.string.toast_failed_delete,
842 Snackbar.LENGTH_LONG)
843 .show();
844
845 }
846 });
Ben Kwa91923182015-08-27 16:06:33 -0700847 }
Ben Kwa91923182015-08-27 16:06:33 -0700848 }
849 })
850 .show();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700851 }
852
Steve McKayef280152015-06-11 10:10:49 -0700853 private void transferDocuments(final Selection selected, final int mode) {
Ben Kwaf5858932015-04-07 15:43:39 -0700854 // Pop up a dialog to pick a destination. This is inadequate but works for now.
855 // TODO: Implement a picker that is to spec.
Daichi Hironocaadd412015-04-10 15:50:38 +0900856 final Intent intent = new Intent(
Daichi Hirono22574ed2015-04-15 13:41:18 +0900857 BaseActivity.DocumentsIntent.ACTION_OPEN_COPY_DESTINATION,
Daichi Hironocaadd412015-04-10 15:50:38 +0900858 Uri.EMPTY,
859 getActivity(),
860 DocumentsActivity.class);
Steve McKay9276f3b2015-05-27 16:11:42 -0700861
862 new GetDocumentsTask() {
863 @Override
864 void onDocumentsReady(List<DocumentInfo> docs) {
865 getDisplayState(DirectoryFragment.this).selectedDocumentsForCopy = docs;
866
867 boolean directoryCopy = false;
868 for (DocumentInfo info : docs) {
869 if (Document.MIME_TYPE_DIR.equals(info.mimeType)) {
870 directoryCopy = true;
871 break;
872 }
873 }
874 intent.putExtra(BaseActivity.DocumentsIntent.EXTRA_DIRECTORY_COPY, directoryCopy);
875 intent.putExtra(CopyService.EXTRA_TRANSFER_MODE, mode);
876 startActivityForResult(intent, REQUEST_COPY_DESTINATION);
Daichi Hironof2a822d2015-04-14 17:12:54 +0900877 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700878 }.execute(selected);
Ben Kwa41b26c12015-03-31 10:11:43 -0700879 }
880
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700881 private static State getDisplayState(Fragment fragment) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700882 return ((BaseActivity) fragment.getActivity()).getDisplayState();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700883 }
884
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700885 private static abstract class Footer {
886 private final int mItemViewType;
887
888 public Footer(int itemViewType) {
889 mItemViewType = itemViewType;
890 }
891
892 public abstract View getView(View convertView, ViewGroup parent);
893
894 public int getItemViewType() {
895 return mItemViewType;
896 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700897 }
898
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700899 private class LoadingFooter extends Footer {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700900 public LoadingFooter() {
901 super(1);
902 }
903
Jeff Sharkey20b32272013-09-03 15:25:52 -0700904 @Override
905 public View getView(View convertView, ViewGroup parent) {
906 final Context context = parent.getContext();
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700907 final State state = getDisplayState(DirectoryFragment.this);
908
Jeff Sharkey20b32272013-09-03 15:25:52 -0700909 if (convertView == null) {
910 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700911 if (state.derivedMode == MODE_LIST) {
912 convertView = inflater.inflate(R.layout.item_loading_list, parent, false);
913 } else if (state.derivedMode == MODE_GRID) {
914 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false);
915 } else {
916 throw new IllegalStateException();
917 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700918 }
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700919
Jeff Sharkey20b32272013-09-03 15:25:52 -0700920 return convertView;
921 }
922 }
923
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700924 private class MessageFooter extends Footer {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700925 private final int mIcon;
926 private final String mMessage;
927
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700928 public MessageFooter(int itemViewType, int icon, String message) {
929 super(itemViewType);
Jeff Sharkey20b32272013-09-03 15:25:52 -0700930 mIcon = icon;
931 mMessage = message;
932 }
933
934 @Override
935 public View getView(View convertView, ViewGroup parent) {
936 final Context context = parent.getContext();
937 final State state = getDisplayState(DirectoryFragment.this);
938
939 if (convertView == null) {
940 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700941 if (state.derivedMode == MODE_LIST) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700942 convertView = inflater.inflate(R.layout.item_message_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700943 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700944 convertView = inflater.inflate(R.layout.item_message_grid, parent, false);
945 } else {
946 throw new IllegalStateException();
947 }
948 }
949
950 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
951 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
952 icon.setImageResource(mIcon);
953 title.setText(mMessage);
954 return convertView;
955 }
956 }
957
Steve McKayef280152015-06-11 10:10:49 -0700958 // Provide a reference to the views for each data item
959 // Complex data items may need more than one view per item, and
960 // you provide access to all the views for a data item in a view holder
961 private static final class DocumentHolder extends RecyclerView.ViewHolder {
962 // each data item is just a string in this case
963 public View view;
964 public String docId; // The stable document id.
965 public DocumentHolder(View view) {
966 super(view);
967 this.view = view;
968 }
969 }
970
Ben Kwa7461a952015-09-01 11:03:01 -0700971 private final class DocumentsAdapter extends RecyclerView.Adapter<DocumentHolder>
972 implements Model.UpdateListener {
Steve McKayef280152015-06-11 10:10:49 -0700973
974 private final Context mContext;
975 private final LayoutInflater mInflater;
976 // TODO: Bring back support for footers.
Steve McKayfefcd702015-08-20 16:19:38 +0000977 private final List<Footer> mFooters = new ArrayList<>();
Steve McKayef280152015-06-11 10:10:49 -0700978
Steve McKayef280152015-06-11 10:10:49 -0700979 public DocumentsAdapter(Context context) {
980 mContext = context;
981 mInflater = LayoutInflater.from(context);
982 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700983
Ben Kwa7461a952015-09-01 11:03:01 -0700984 public void onModelUpdate(Model model) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700985 mFooters.clear();
Ben Kwa7461a952015-09-01 11:03:01 -0700986 if (model.info != null) {
987 mFooters.add(new MessageFooter(2, R.drawable.ic_dialog_info, model.info));
Ben Kwa24be5d32015-08-27 16:04:46 -0700988 }
Ben Kwa7461a952015-09-01 11:03:01 -0700989 if (model.error != null) {
990 mFooters.add(new MessageFooter(3, R.drawable.ic_dialog_alert, model.error));
Ben Kwa24be5d32015-08-27 16:04:46 -0700991 }
Ben Kwa7461a952015-09-01 11:03:01 -0700992 if (model.isLoading()) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700993 mFooters.add(new LoadingFooter());
Jeff Sharkey20b32272013-09-03 15:25:52 -0700994 }
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700995
Ben Kwa7461a952015-09-01 11:03:01 -0700996 if (model.isEmpty()) {
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700997 mEmptyView.setVisibility(View.VISIBLE);
998 } else {
999 mEmptyView.setVisibility(View.GONE);
1000 }
1001
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001002 notifyDataSetChanged();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001003 }
1004
Ben Kwa7461a952015-09-01 11:03:01 -07001005 public void onModelUpdateFailed(Exception e) {
1006 String error = getString(R.string.query_error);
1007 mFooters.add(new MessageFooter(3, R.drawable.ic_dialog_alert, error));
1008 notifyDataSetChanged();
1009 }
1010
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001011 @Override
Steve McKayef280152015-06-11 10:10:49 -07001012 public DocumentHolder onCreateViewHolder(ViewGroup parent, int viewType) {
1013 final State state = getDisplayState(DirectoryFragment.this);
1014 final LayoutInflater inflater = LayoutInflater.from(getContext());
1015 switch (state.derivedMode) {
1016 case MODE_GRID:
1017 return new DocumentHolder(inflater.inflate(R.layout.item_doc_grid, parent, false));
1018 case MODE_LIST:
1019 return new DocumentHolder(inflater.inflate(R.layout.item_doc_list, parent, false));
1020 case MODE_UNKNOWN:
1021 default:
1022 throw new IllegalStateException("Unsupported layout mode.");
Jeff Sharkey20b32272013-09-03 15:25:52 -07001023 }
1024 }
1025
Steve McKayef280152015-06-11 10:10:49 -07001026 @Override
1027 public void onBindViewHolder(DocumentHolder holder, int position) {
1028
1029 final Context context = getContext();
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001030 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkey9656a532013-09-13 13:42:19 -07001031 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
Jeff Sharkey873daa32013-08-18 17:38:20 -07001032 final RootsCache roots = DocumentsApplication.getRootsCache(context);
1033 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1034 context, mThumbSize);
1035
Ben Kwa24be5d32015-08-27 16:04:46 -07001036 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -07001037 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001038
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001039 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
1040 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001041 final String docId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
1042 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
1043 final String docDisplayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
1044 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
1045 final int docIcon = getCursorInt(cursor, Document.COLUMN_ICON);
1046 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
1047 final String docSummary = getCursorString(cursor, Document.COLUMN_SUMMARY);
1048 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001049
Steve McKayef280152015-06-11 10:10:49 -07001050 holder.docId = docId;
1051 final View itemView = holder.view;
Ben Kwa24be5d32015-08-27 16:04:46 -07001052 itemView.setActivated(mModel.isSelected(position));
Jeff Sharkey9656a532013-09-13 13:42:19 -07001053
Steve McKayef280152015-06-11 10:10:49 -07001054 final View line1 = itemView.findViewById(R.id.line1);
1055 final View line2 = itemView.findViewById(R.id.line2);
1056
1057 final ImageView iconMime = (ImageView) itemView.findViewById(R.id.icon_mime);
1058 final ImageView iconThumb = (ImageView) itemView.findViewById(R.id.icon_thumb);
1059 final TextView title = (TextView) itemView.findViewById(android.R.id.title);
1060 final ImageView icon1 = (ImageView) itemView.findViewById(android.R.id.icon1);
1061 final ImageView icon2 = (ImageView) itemView.findViewById(android.R.id.icon2);
1062 final TextView summary = (TextView) itemView.findViewById(android.R.id.summary);
1063 final TextView date = (TextView) itemView.findViewById(R.id.date);
1064 final TextView size = (TextView) itemView.findViewById(R.id.size);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001065
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001066 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001067 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001068 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001069 iconThumb.setTag(null);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001070 }
1071
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001072 iconMime.animate().cancel();
1073 iconThumb.animate().cancel();
1074
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001075 final boolean supportsThumbnail = (docFlags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -07001076 final boolean allowThumbnail = (state.derivedMode == MODE_GRID)
Jeff Sharkey9656a532013-09-13 13:42:19 -07001077 || MimePredicate.mimeMatches(MimePredicate.VISUAL_MIMES, docMimeType);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -07001078 final boolean showThumbnail = supportsThumbnail && allowThumbnail && !mSvelteRecents;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001079
Jeff Sharkey7e544612014-08-29 15:38:27 -07001080 final boolean enabled = isDocumentEnabled(docMimeType, docFlags);
1081 final float iconAlpha = (state.derivedMode == MODE_LIST && !enabled) ? 0.5f : 1f;
1082
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001083 boolean cacheHit = false;
Jeff Sharkey9656a532013-09-13 13:42:19 -07001084 if (showThumbnail) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001085 final Uri uri = DocumentsContract.buildDocumentUri(docAuthority, docId);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001086 final Bitmap cachedResult = thumbs.get(uri);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001087 if (cachedResult != null) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001088 iconThumb.setImageBitmap(cachedResult);
1089 cacheHit = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001090 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001091 iconThumb.setImageDrawable(null);
Steve McKayef280152015-06-11 10:10:49 -07001092 // TODO: Hang this off DocumentHolder?
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001093 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
Jeff Sharkey7e544612014-08-29 15:38:27 -07001094 uri, iconMime, iconThumb, mThumbSize, iconAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001095 iconThumb.setTag(task);
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001096 ProviderExecutor.forAuthority(docAuthority).execute(task);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001097 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001098 }
1099
1100 // Always throw MIME icon into place, even when a thumbnail is being
1101 // loaded in background.
1102 if (cacheHit) {
1103 iconMime.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001104 iconMime.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001105 iconThumb.setAlpha(1f);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001106 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001107 iconMime.setAlpha(1f);
1108 iconThumb.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001109 iconThumb.setImageDrawable(null);
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001110 iconMime.setImageDrawable(
Steve McKayef280152015-06-11 10:10:49 -07001111 getDocumentIcon(mContext, docAuthority, docId, docMimeType, docIcon, state));
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001112 }
1113
Jeff Sharkey9656a532013-09-13 13:42:19 -07001114 boolean hasLine1 = false;
Jeff Sharkey42d26792013-09-06 13:22:09 -07001115 boolean hasLine2 = false;
1116
Jeff Sharkey9656a532013-09-13 13:42:19 -07001117 final boolean hideTitle = (state.derivedMode == MODE_GRID) && mHideGridTitles;
1118 if (!hideTitle) {
1119 title.setText(docDisplayName);
1120 hasLine1 = true;
1121 }
1122
1123 Drawable iconDrawable = null;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001124 if (mType == TYPE_RECENT_OPEN) {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001125 // We've already had to enumerate roots before any results can
1126 // be shown, so this will never block.
1127 final RootInfo root = roots.getRootBlocking(docAuthority, docRootId);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001128 if (state.derivedMode == MODE_GRID) {
Steve McKayef280152015-06-11 10:10:49 -07001129 iconDrawable = root.loadGridIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001130 } else {
Steve McKayef280152015-06-11 10:10:49 -07001131 iconDrawable = root.loadIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001132 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001133
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001134 if (summary != null) {
1135 final boolean alwaysShowSummary = getResources()
1136 .getBoolean(R.bool.always_show_summary);
1137 if (alwaysShowSummary) {
1138 summary.setText(root.getDirectoryString());
1139 summary.setVisibility(View.VISIBLE);
1140 hasLine2 = true;
1141 } else {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001142 if (iconDrawable != null && roots.isIconUniqueBlocking(root)) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001143 // No summary needed if icon speaks for itself
1144 summary.setVisibility(View.INVISIBLE);
1145 } else {
1146 summary.setText(root.getDirectoryString());
1147 summary.setVisibility(View.VISIBLE);
1148 summary.setTextAlignment(TextView.TEXT_ALIGNMENT_TEXT_END);
1149 hasLine2 = true;
1150 }
1151 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001152 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001153 } else {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001154 // Directories showing thumbnails in grid mode get a little icon
1155 // hint to remind user they're a directory.
1156 if (Document.MIME_TYPE_DIR.equals(docMimeType) && state.derivedMode == MODE_GRID
1157 && showThumbnail) {
Steve McKayef280152015-06-11 10:10:49 -07001158 iconDrawable = IconUtils.applyTintAttr(mContext, R.drawable.ic_doc_folder,
Jeff Sharkey34c54092014-08-08 13:08:56 -07001159 android.R.attr.textColorPrimaryInverse);
Jeff Sharkey9656a532013-09-13 13:42:19 -07001160 }
1161
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001162 if (summary != null) {
1163 if (docSummary != null) {
1164 summary.setText(docSummary);
1165 summary.setVisibility(View.VISIBLE);
1166 hasLine2 = true;
1167 } else {
1168 summary.setVisibility(View.INVISIBLE);
1169 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001170 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001171 }
1172
Jeff Sharkey9656a532013-09-13 13:42:19 -07001173 if (icon1 != null) icon1.setVisibility(View.GONE);
1174 if (icon2 != null) icon2.setVisibility(View.GONE);
1175
1176 if (iconDrawable != null) {
1177 if (hasLine1) {
1178 icon1.setVisibility(View.VISIBLE);
1179 icon1.setImageDrawable(iconDrawable);
1180 } else {
1181 icon2.setVisibility(View.VISIBLE);
1182 icon2.setImageDrawable(iconDrawable);
1183 }
1184 }
1185
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001186 if (docLastModified == -1) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001187 date.setText(null);
1188 } else {
Steve McKayef280152015-06-11 10:10:49 -07001189 date.setText(formatTime(mContext, docLastModified));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001190 hasLine2 = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001191 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001192
1193 if (state.showSize) {
1194 size.setVisibility(View.VISIBLE);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001195 if (Document.MIME_TYPE_DIR.equals(docMimeType) || docSize == -1) {
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001196 size.setText(null);
1197 } else {
Steve McKayef280152015-06-11 10:10:49 -07001198 size.setText(Formatter.formatFileSize(mContext, docSize));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001199 hasLine2 = true;
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001200 }
1201 } else {
1202 size.setVisibility(View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001203 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001204
Jeff Sharkey9656a532013-09-13 13:42:19 -07001205 if (line1 != null) {
1206 line1.setVisibility(hasLine1 ? View.VISIBLE : View.GONE);
1207 }
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001208 if (line2 != null) {
1209 line2.setVisibility(hasLine2 ? View.VISIBLE : View.GONE);
1210 }
Jeff Sharkey42d26792013-09-06 13:22:09 -07001211
Steve McKayef280152015-06-11 10:10:49 -07001212 setEnabledRecursive(itemView, enabled);
Jeff Sharkey7e544612014-08-29 15:38:27 -07001213
1214 iconMime.setAlpha(iconAlpha);
1215 iconThumb.setAlpha(iconAlpha);
1216 if (icon1 != null) icon1.setAlpha(iconAlpha);
1217 if (icon2 != null) icon2.setAlpha(iconAlpha);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001218
Steve McKay8e258c62015-05-06 14:27:57 -07001219 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -07001220 setupDragAndDropOnDocumentView(itemView, cursor);
Steve McKay8e258c62015-05-06 14:27:57 -07001221 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001222 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001223
Steve McKay351a7492015-08-04 10:11:01 -07001224 @Override
Steve McKayef280152015-06-11 10:10:49 -07001225 public int getItemCount() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001226 return mModel.getItemCount();
Steve McKayef280152015-06-11 10:10:49 -07001227 // return mCursorCount + mFooters.size();
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001228 }
1229
1230 @Override
Jeff Sharkey20b32272013-09-03 15:25:52 -07001231 public int getItemViewType(int position) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001232 final int itemCount = mModel.getItemCount();
1233 if (position < itemCount) {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001234 return 0;
1235 } else {
Ben Kwa24be5d32015-08-27 16:04:46 -07001236 position -= itemCount;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001237 return mFooters.get(position).getItemViewType();
Jeff Sharkey20b32272013-09-03 15:25:52 -07001238 }
1239 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001240 }
1241
1242 private static String formatTime(Context context, long when) {
1243 // TODO: DateUtils should make this easier
1244 Time then = new Time();
1245 then.set(when);
1246 Time now = new Time();
1247 now.setToNow();
1248
1249 int flags = DateUtils.FORMAT_NO_NOON | DateUtils.FORMAT_NO_MIDNIGHT
1250 | DateUtils.FORMAT_ABBREV_ALL;
1251
1252 if (then.year != now.year) {
1253 flags |= DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_DATE;
1254 } else if (then.yearDay != now.yearDay) {
1255 flags |= DateUtils.FORMAT_SHOW_DATE;
1256 } else {
1257 flags |= DateUtils.FORMAT_SHOW_TIME;
1258 }
1259
1260 return DateUtils.formatDateTime(context, when, flags);
1261 }
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001262
1263 private String findCommonMimeType(List<String> mimeTypes) {
1264 String[] commonType = mimeTypes.get(0).split("/");
1265 if (commonType.length != 2) {
1266 return "*/*";
1267 }
1268
1269 for (int i = 1; i < mimeTypes.size(); i++) {
1270 String[] type = mimeTypes.get(i).split("/");
1271 if (type.length != 2) continue;
1272
1273 if (!commonType[1].equals(type[1])) {
1274 commonType[1] = "*";
1275 }
1276
1277 if (!commonType[0].equals(type[0])) {
1278 commonType[0] = "*";
1279 commonType[1] = "*";
1280 break;
1281 }
1282 }
1283
1284 return commonType[0] + "/" + commonType[1];
1285 }
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001286
1287 private void setEnabledRecursive(View v, boolean enabled) {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001288 if (v == null) return;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001289 if (v.isEnabled() == enabled) return;
1290 v.setEnabled(enabled);
1291
1292 if (v instanceof ViewGroup) {
1293 final ViewGroup vg = (ViewGroup) v;
1294 for (int i = vg.getChildCount() - 1; i >= 0; i--) {
1295 setEnabledRecursive(vg.getChildAt(i), enabled);
1296 }
1297 }
1298 }
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001299
1300 private boolean isDocumentEnabled(String docMimeType, int docFlags) {
1301 final State state = getDisplayState(DirectoryFragment.this);
1302
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001303 // Directories are always enabled
1304 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1305 return true;
1306 }
1307
Jeff Sharkey783ebc22013-09-26 19:42:52 -07001308 // Read-only files are disabled when creating
1309 if (state.action == ACTION_CREATE && (docFlags & Document.FLAG_SUPPORTS_WRITE) == 0) {
1310 return false;
1311 }
1312
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001313 return MimePredicate.mimeMatches(state.acceptMimes, docMimeType);
1314 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001315
Steve McKay1f199482015-05-20 15:58:42 -07001316 private void copyFromClipboard() {
1317 new AsyncTask<Void, Void, List<DocumentInfo>>() {
1318
1319 @Override
1320 protected List<DocumentInfo> doInBackground(Void... params) {
1321 return mClipper.getClippedDocuments();
1322 }
1323
1324 @Override
1325 protected void onPostExecute(List<DocumentInfo> docs) {
1326 DocumentInfo destination =
1327 ((BaseActivity) getActivity()).getCurrentDirectory();
1328 copyDocuments(docs, destination);
1329 }
1330 }.execute();
Steve McKay0599a442015-05-05 14:50:00 -07001331 }
1332
Steve McKay1f199482015-05-20 15:58:42 -07001333 private void copyFromClipData(final ClipData clipData, final DocumentInfo destination) {
Steve McKayef280152015-06-11 10:10:49 -07001334 checkNotNull(clipData);
Steve McKay1f199482015-05-20 15:58:42 -07001335 new AsyncTask<Void, Void, List<DocumentInfo>>() {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001336
Steve McKay1f199482015-05-20 15:58:42 -07001337 @Override
1338 protected List<DocumentInfo> doInBackground(Void... params) {
1339 return mClipper.getDocumentsFromClipData(clipData);
1340 }
1341
1342 @Override
1343 protected void onPostExecute(List<DocumentInfo> docs) {
1344 copyDocuments(docs, destination);
1345 }
1346 }.execute();
1347 }
1348
1349 private void copyDocuments(final List<DocumentInfo> docs, final DocumentInfo destination) {
1350 if (!canCopy(docs, destination)) {
1351 Toast.makeText(
1352 getActivity(),
1353 R.string.clipboard_files_cannot_paste, Toast.LENGTH_SHORT).show();
Steve McKay0599a442015-05-05 14:50:00 -07001354 return;
1355 }
1356
Steve McKay1f199482015-05-20 15:58:42 -07001357 if (docs.isEmpty()) {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001358 return;
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001359 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001360
Steve McKay1f199482015-05-20 15:58:42 -07001361 final DocumentStack curStack = getDisplayState(DirectoryFragment.this).stack;
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001362 DocumentStack tmpStack = new DocumentStack();
Steve McKay1f199482015-05-20 15:58:42 -07001363 if (destination != null) {
1364 tmpStack.push(destination);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001365 tmpStack.addAll(curStack);
1366 } else {
1367 tmpStack = curStack;
1368 }
1369
Steve McKay1f199482015-05-20 15:58:42 -07001370 CopyService.start(getActivity(), docs, tmpStack, CopyService.TRANSFER_MODE_COPY);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001371 }
1372
1373 private ClipData getClipDataFromDocuments(List<DocumentInfo> docs) {
1374 Context context = getActivity();
1375 final ContentResolver resolver = context.getContentResolver();
1376 ClipData clipData = null;
1377 for (DocumentInfo doc : docs) {
1378 final Uri uri = DocumentsContract.buildDocumentUri(doc.authority, doc.documentId);
1379 if (clipData == null) {
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001380 // TODO: figure out what this string should be.
1381 // Currently it is not displayed anywhere in the UI, but this might change.
1382 final String label = "";
1383 clipData = ClipData.newUri(resolver, label, uri);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001384 } else {
1385 // TODO: update list of mime types in ClipData.
1386 clipData.addItem(new ClipData.Item(uri));
1387 }
1388 }
1389 return clipData;
1390 }
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001391
Steve McKay1f199482015-05-20 15:58:42 -07001392 void copySelectedToClipboard() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001393 Selection sel = mModel.getSelection(new Selection());
Steve McKayef280152015-06-11 10:10:49 -07001394 copySelectionToClipboard(sel);
Steve McKay9276f3b2015-05-27 16:11:42 -07001395 }
Steve McKay0599a442015-05-05 14:50:00 -07001396
Steve McKayef280152015-06-11 10:10:49 -07001397 void copySelectionToClipboard(Selection items) {
Steve McKay9276f3b2015-05-27 16:11:42 -07001398 new GetDocumentsTask() {
1399 @Override
1400 void onDocumentsReady(List<DocumentInfo> docs) {
1401 mClipper.clipDocuments(docs);
Steve McKay1f199482015-05-20 15:58:42 -07001402 Activity activity = getActivity();
1403 Toast.makeText(activity,
1404 activity.getResources().getQuantityString(
1405 R.plurals.clipboard_files_clipped, docs.size(), docs.size()),
1406 Toast.LENGTH_SHORT).show();
Steve McKay9276f3b2015-05-27 16:11:42 -07001407 }
Steve McKayef280152015-06-11 10:10:49 -07001408 }.execute(items);
Steve McKay0599a442015-05-05 14:50:00 -07001409 }
1410
1411 void pasteFromClipboard() {
Steve McKay1f199482015-05-20 15:58:42 -07001412 copyFromClipboard();
1413 getActivity().invalidateOptionsMenu();
Steve McKay0599a442015-05-05 14:50:00 -07001414 }
1415
Steve McKay0599a442015-05-05 14:50:00 -07001416 /**
1417 * Returns true if the list of files can be copied to destination. Note that this
1418 * is a policy check only. Currently the method does not attempt to verify
1419 * available space or any other environmental aspects possibly resulting in
1420 * failure to copy.
1421 *
1422 * @return true if the list of files can be copied to destination.
1423 */
1424 boolean canCopy(List<DocumentInfo> files, DocumentInfo dest) {
Ben Kwa91923182015-08-27 16:06:33 -07001425 BaseActivity activity = (BaseActivity) getActivity();
Steve McKay0599a442015-05-05 14:50:00 -07001426
1427 final RootInfo root = activity.getCurrentRoot();
1428
1429 // Can't copy folders to Downloads.
1430 if (root.isDownloads()) {
1431 for (DocumentInfo docs : files) {
1432 if (docs.isDirectory()) {
1433 return false;
1434 }
1435 }
1436 }
1437
1438 return dest != null && dest.isDirectory() && dest.isCreateSupported();
1439 }
1440
1441 void selectAllFiles() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001442 boolean changed = mModel.selectAll();
Steve McKay9459a7c2015-07-24 13:14:20 -07001443 if (changed) {
1444 updateDisplayState();
1445 }
Steve McKay0599a442015-05-05 14:50:00 -07001446 }
1447
Steve McKayef280152015-06-11 10:10:49 -07001448 private void setupDragAndDropOnDirectoryView(View view) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001449 // Listen for drops on non-directory items and empty space.
1450 view.setOnDragListener(mOnDragListener);
1451 }
1452
1453 private void setupDragAndDropOnDocumentView(View view, Cursor cursor) {
1454 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
1455 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1456 // Make a directory item a drop target. Drop on non-directories and empty space
1457 // is handled at the list/grid view level.
1458 view.setOnDragListener(mOnDragListener);
1459 }
1460
1461 // Temporary: attaching the listener to the title only.
1462 // Attaching to the entire item conflicts with the item long click handler responsible
1463 // for item selection.
1464 final View title = view.findViewById(android.R.id.title);
1465 title.setOnLongClickListener(mLongClickListener);
1466 }
1467
1468 private View.OnDragListener mOnDragListener = new View.OnDragListener() {
1469 @Override
1470 public boolean onDrag(View v, DragEvent event) {
1471 switch (event.getAction()) {
1472 case DragEvent.ACTION_DRAG_STARTED:
1473 // TODO: Check if the event contains droppable data.
1474 return true;
1475
1476 // TODO: Highlight potential drop target directory?
1477 // TODO: Expand drop target directory on hover?
1478 case DragEvent.ACTION_DRAG_ENTERED:
1479 case DragEvent.ACTION_DRAG_LOCATION:
1480 case DragEvent.ACTION_DRAG_EXITED:
1481 case DragEvent.ACTION_DRAG_ENDED:
1482 return true;
1483
1484 case DragEvent.ACTION_DROP:
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001485 int dstPosition = mRecView.getChildAdapterPosition(getContainingItemView(v));
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001486 DocumentInfo dstDir = null;
1487 if (dstPosition != android.widget.AdapterView.INVALID_POSITION) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001488 Cursor dstCursor = mModel.getItem(dstPosition);
Steve McKayef280152015-06-11 10:10:49 -07001489 checkNotNull(dstCursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001490 dstDir = DocumentInfo.fromDirectoryCursor(dstCursor);
1491 // TODO: Do not drop into the directory where the documents came from.
1492 }
1493 copyFromClipData(event.getClipData(), dstDir);
1494 return true;
1495 }
1496 return false;
1497 }
1498 };
1499
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001500 private View getContainingItemView(View view) {
1501 while (true) {
1502 if (view.getLayoutParams() instanceof RecyclerView.LayoutParams) {
1503 return view;
1504 }
1505 ViewParent parent = view.getParent();
1506 if (parent == null || !(parent instanceof View)) {
1507 return null;
1508 }
1509 view = (View) parent;
1510 }
1511 }
1512
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001513 private View.OnLongClickListener mLongClickListener = new View.OnLongClickListener() {
1514 @Override
1515 public boolean onLongClick(View v) {
1516 final List<DocumentInfo> docs = getDraggableDocuments(v);
1517 if (docs.isEmpty()) {
1518 return false;
1519 }
1520 v.startDrag(
1521 getClipDataFromDocuments(docs),
1522 new DrawableShadowBuilder(getDragShadowIcon(docs)),
1523 null,
1524 View.DRAG_FLAG_GLOBAL
1525 );
1526 return true;
1527 }
1528 };
1529
1530 private List<DocumentInfo> getDraggableDocuments(View currentItemView) {
Vladislav Kaznacheev9400b892015-09-04 09:17:37 -07001531 int position = mRecView.getChildAdapterPosition(getContainingItemView(currentItemView));
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001532 if (position == android.widget.AdapterView.INVALID_POSITION) {
1533 return Collections.EMPTY_LIST;
1534 }
1535
Ben Kwa24be5d32015-08-27 16:04:46 -07001536 final List<DocumentInfo> selectedDocs = mModel.getSelectedDocuments();
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001537 if (!selectedDocs.isEmpty()) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001538 if (!mModel.isSelected(position)) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001539 // There is a selection that does not include the current item, drag nothing.
1540 return Collections.EMPTY_LIST;
1541 }
1542 return selectedDocs;
1543 }
1544
Ben Kwa24be5d32015-08-27 16:04:46 -07001545 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -07001546 checkNotNull(cursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001547 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Steve McKayfefcd702015-08-20 16:19:38 +00001548
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001549 return Lists.newArrayList(doc);
1550 }
1551
1552 private Drawable getDragShadowIcon(List<DocumentInfo> docs) {
1553 if (docs.size() == 1) {
1554 final DocumentInfo doc = docs.get(0);
1555 return getDocumentIcon(getActivity(), doc.authority, doc.documentId,
1556 doc.mimeType, doc.icon, getDisplayState(this));
1557 }
1558 return getActivity().getDrawable(R.drawable.ic_doc_generic);
1559 }
1560
1561 public static Drawable getDocumentIcon(Context context, String docAuthority, String docId,
1562 String docMimeType, int docIcon, State state) {
1563 if (docIcon != 0) {
1564 return IconUtils.loadPackageIcon(context, docAuthority, docIcon);
1565 } else {
1566 return IconUtils.loadMimeIcon(context, docMimeType, docAuthority, docId,
1567 state.derivedMode);
1568 }
1569 }
1570
Steve McKayef280152015-06-11 10:10:49 -07001571 private static class ThumbnailAsyncTask extends AsyncTask<Uri, Void, Bitmap>
1572 implements Preemptable {
1573 private final Uri mUri;
1574 private final ImageView mIconMime;
1575 private final ImageView mIconThumb;
1576 private final Point mThumbSize;
1577 private final float mTargetAlpha;
1578 private final CancellationSignal mSignal;
1579
1580 public ThumbnailAsyncTask(Uri uri, ImageView iconMime, ImageView iconThumb, Point thumbSize,
1581 float targetAlpha) {
1582 mUri = uri;
1583 mIconMime = iconMime;
1584 mIconThumb = iconThumb;
1585 mThumbSize = thumbSize;
1586 mTargetAlpha = targetAlpha;
1587 mSignal = new CancellationSignal();
1588 }
1589
1590 @Override
1591 public void preempt() {
1592 cancel(false);
1593 mSignal.cancel();
1594 }
1595
1596 @Override
1597 protected Bitmap doInBackground(Uri... params) {
1598 if (isCancelled()) return null;
1599
1600 final Context context = mIconThumb.getContext();
1601 final ContentResolver resolver = context.getContentResolver();
1602
1603 ContentProviderClient client = null;
1604 Bitmap result = null;
1605 try {
1606 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1607 resolver, mUri.getAuthority());
1608 result = DocumentsContract.getDocumentThumbnail(client, mUri, mThumbSize, mSignal);
1609 if (result != null) {
1610 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1611 context, mThumbSize);
1612 thumbs.put(mUri, result);
1613 }
1614 } catch (Exception e) {
1615 if (!(e instanceof OperationCanceledException)) {
1616 Log.w(TAG, "Failed to load thumbnail for " + mUri + ": " + e);
1617 }
1618 } finally {
1619 ContentProviderClient.releaseQuietly(client);
1620 }
1621 return result;
1622 }
1623
1624 @Override
1625 protected void onPostExecute(Bitmap result) {
1626 if (mIconThumb.getTag() == this && result != null) {
1627 mIconThumb.setTag(null);
1628 mIconThumb.setImageBitmap(result);
1629
1630 mIconMime.setAlpha(mTargetAlpha);
1631 mIconMime.animate().alpha(0f).start();
1632 mIconThumb.setAlpha(0f);
1633 mIconThumb.animate().alpha(mTargetAlpha).start();
1634 }
1635 }
1636 }
1637
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001638 private class DrawableShadowBuilder extends View.DragShadowBuilder {
1639
1640 private final Drawable mShadow;
1641
1642 private final int mShadowDimension;
1643
1644 public DrawableShadowBuilder(Drawable shadow) {
1645 mShadow = shadow;
1646 mShadowDimension = getResources().getDimensionPixelSize(
1647 R.dimen.drag_shadow_size);
1648 mShadow.setBounds(0, 0, mShadowDimension, mShadowDimension);
1649 }
1650
Ben Kwa24be5d32015-08-27 16:04:46 -07001651 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001652 public void onProvideShadowMetrics(
1653 Point shadowSize, Point shadowTouchPoint) {
1654 shadowSize.set(mShadowDimension, mShadowDimension);
1655 shadowTouchPoint.set(mShadowDimension / 2, mShadowDimension / 2);
1656 }
1657
Ben Kwa24be5d32015-08-27 16:04:46 -07001658 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001659 public void onDrawShadow(Canvas canvas) {
1660 mShadow.draw(canvas);
1661 }
1662 }
Steve McKay1f199482015-05-20 15:58:42 -07001663
1664 private FragmentTuner pickFragmentTuner(final State state) {
1665 return state.action == ACTION_BROWSE_ALL
Steve McKay0fbfc652015-08-20 16:48:49 -07001666 ? new FilesTuner()
Steve McKay1f199482015-05-20 15:58:42 -07001667 : new DefaultTuner(state);
1668 }
1669
1670 /**
1671 * Interface for specializing the Fragment for the "host" Activity.
1672 * Feel free to expand the role of this class to handle other specializations.
1673 */
1674 private interface FragmentTuner {
Steve McKay4f4232d2015-07-22 12:13:46 -07001675 void updateActionMenu(Menu menu, int dirType, boolean canDelete);
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001676 void afterActivityCreated(DirectoryFragment fragment);
Steve McKay1f199482015-05-20 15:58:42 -07001677 }
1678
1679 /**
Steve McKay9276f3b2015-05-27 16:11:42 -07001680 * Abstract task providing support for loading documents *off*
1681 * the main thread. And if it isn't obvious, creating a list
1682 * of documents (especially large lists) can be pretty expensive.
1683 */
1684 private abstract class GetDocumentsTask
Steve McKayef280152015-06-11 10:10:49 -07001685 extends AsyncTask<Selection, Void, List<DocumentInfo>> {
Steve McKay9276f3b2015-05-27 16:11:42 -07001686 @Override
Steve McKayef280152015-06-11 10:10:49 -07001687 protected final List<DocumentInfo> doInBackground(Selection... selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001688 return mModel.getDocuments(selected[0]);
Steve McKay9276f3b2015-05-27 16:11:42 -07001689 }
1690
1691 @Override
1692 protected final void onPostExecute(List<DocumentInfo> docs) {
1693 onDocumentsReady(docs);
1694 }
1695
1696 abstract void onDocumentsReady(List<DocumentInfo> docs);
1697 }
1698
1699 /**
Steve McKay1f199482015-05-20 15:58:42 -07001700 * Provides support for Platform specific specializations of DirectoryFragment.
1701 */
1702 private static final class DefaultTuner implements FragmentTuner {
1703
1704 private final State mState;
1705
1706 public DefaultTuner(State state) {
1707 mState = state;
1708 }
1709
1710 @Override
Steve McKay4f4232d2015-07-22 12:13:46 -07001711 public void updateActionMenu(Menu menu, int dirType, boolean canDelete) {
Steve McKay1f199482015-05-20 15:58:42 -07001712 Preconditions.checkState(mState.action != ACTION_BROWSE_ALL);
1713
1714 final MenuItem open = menu.findItem(R.id.menu_open);
1715 final MenuItem share = menu.findItem(R.id.menu_share);
1716 final MenuItem delete = menu.findItem(R.id.menu_delete);
1717 final MenuItem copyTo = menu.findItem(R.id.menu_copy_to);
1718 final MenuItem moveTo = menu.findItem(R.id.menu_move_to);
1719 final MenuItem copyToClipboard = menu.findItem(R.id.menu_copy_to_clipboard);
1720
1721 final boolean manageOrBrowse = (mState.action == ACTION_MANAGE
1722 || mState.action == ACTION_BROWSE);
1723
1724 open.setVisible(!manageOrBrowse);
1725 share.setVisible(manageOrBrowse);
Steve McKay4f4232d2015-07-22 12:13:46 -07001726 delete.setVisible(manageOrBrowse && canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001727 // Disable copying from the Recents view.
1728 copyTo.setVisible(manageOrBrowse && dirType != TYPE_RECENT_OPEN);
1729 moveTo.setVisible(SystemProperties.getBoolean("debug.documentsui.enable_move", false));
1730
Steve McKay0fbfc652015-08-20 16:48:49 -07001731 // Only shown in files mode.
Steve McKay1f199482015-05-20 15:58:42 -07001732 copyToClipboard.setVisible(false);
1733 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001734
1735 @Override
1736 public void afterActivityCreated(DirectoryFragment fragment) {}
Steve McKay1f199482015-05-20 15:58:42 -07001737 }
1738
1739 /**
Steve McKay0fbfc652015-08-20 16:48:49 -07001740 * Provides support for Files activity specific specializations of DirectoryFragment.
Steve McKay1f199482015-05-20 15:58:42 -07001741 */
Steve McKay0fbfc652015-08-20 16:48:49 -07001742 private static final class FilesTuner implements FragmentTuner {
Steve McKay1f199482015-05-20 15:58:42 -07001743 @Override
Steve McKay4f4232d2015-07-22 12:13:46 -07001744 public void updateActionMenu(Menu menu, int dirType, boolean canDelete) {
Steve McKay1f199482015-05-20 15:58:42 -07001745 menu.findItem(R.id.menu_share).setVisible(true);
Steve McKay4f4232d2015-07-22 12:13:46 -07001746 menu.findItem(R.id.menu_delete).setVisible(canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001747 menu.findItem(R.id.menu_copy_to_clipboard).setVisible(true);
1748
1749 menu.findItem(R.id.menu_open).setVisible(false);
1750 menu.findItem(R.id.menu_copy_to).setVisible(false);
1751 menu.findItem(R.id.menu_move_to).setVisible(false);
1752 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001753
1754 @Override
Kyle Horimoto62a7fd02015-08-18 13:25:29 -07001755 public void afterActivityCreated(DirectoryFragment fragment) {}
Steve McKay1f199482015-05-20 15:58:42 -07001756 }
Ben Kwa24be5d32015-08-27 16:04:46 -07001757
1758 /**
1759 * The data model for the current loaded directory.
1760 */
Ben Kwa7461a952015-09-01 11:03:01 -07001761 @VisibleForTesting
1762 public static final class Model implements DocumentContext {
Ben Kwa24be5d32015-08-27 16:04:46 -07001763 private MultiSelectManager mSelectionManager;
Ben Kwa7461a952015-09-01 11:03:01 -07001764 private Context mContext;
Ben Kwa24be5d32015-08-27 16:04:46 -07001765 private int mCursorCount;
1766 private boolean mIsLoading;
Ben Kwa7461a952015-09-01 11:03:01 -07001767 private SparseBooleanArray mMarkedForDeletion = new SparseBooleanArray();
1768 private UpdateListener mUpdateListener;
Ben Kwa24be5d32015-08-27 16:04:46 -07001769 @Nullable private Cursor mCursor;
1770 @Nullable private String info;
1771 @Nullable private String error;
Ben Kwa7461a952015-09-01 11:03:01 -07001772
1773 Model(Context context, MultiSelectManager selectionManager) {
1774 mContext = context;
1775 mSelectionManager = selectionManager;
1776 }
Ben Kwa24be5d32015-08-27 16:04:46 -07001777
1778 /**
1779 * Sets the selection manager used by the model.
1780 * TODO: the model should instantiate the selection manager. See onActivityCreated.
1781 */
1782 void setSelectionManager(MultiSelectManager mgr) {
1783 mSelectionManager = mgr;
1784 }
1785
1786 /**
1787 * Selects all files in the current directory.
1788 * @return true if the selection state changed for any files.
1789 */
1790 boolean selectAll() {
1791 return mSelectionManager.setItemsSelected(0, mCursorCount, true);
1792 }
1793
1794 /**
1795 * Clones the current selection into the given Selection object.
1796 * @param selection
1797 * @return The selection that was passed in, for convenience.
1798 */
1799 Selection getSelection(Selection selection) {
1800 return mSelectionManager.getSelection(selection);
1801 }
1802
1803 /**
1804 * @return The current selection (the live instance, not a copy).
1805 */
1806 Selection getSelection() {
1807 return mSelectionManager.getSelection();
1808 }
1809
1810 boolean isSelected(int position) {
1811 return mSelectionManager.getSelection().contains(position);
1812 }
1813
1814 void clearSelection() {
1815 mSelectionManager.clearSelection();
1816 }
1817
1818 void update(DirectoryResult result) {
1819 if (DEBUG) Log.i(TAG, "Updating model with new result set.");
1820
1821 if (result == null) {
1822 mCursor = null;
1823 mCursorCount = 0;
1824 info = null;
1825 error = null;
1826 mIsLoading = false;
Ben Kwa83cedf22015-09-11 15:15:45 -07001827 mUpdateListener.onModelUpdate(this);
Ben Kwa24be5d32015-08-27 16:04:46 -07001828 return;
1829 }
1830
1831 if (result.exception != null) {
1832 Log.e(TAG, "Error while loading directory contents", result.exception);
Ben Kwa83cedf22015-09-11 15:15:45 -07001833 mUpdateListener.onModelUpdateFailed(result.exception);
Ben Kwa24be5d32015-08-27 16:04:46 -07001834 return;
1835 }
1836
1837 mCursor = result.cursor;
1838 mCursorCount = mCursor.getCount();
1839
1840 final Bundle extras = mCursor.getExtras();
1841 if (extras != null) {
1842 info = extras.getString(DocumentsContract.EXTRA_INFO);
1843 error = extras.getString(DocumentsContract.EXTRA_ERROR);
1844 mIsLoading = extras.getBoolean(DocumentsContract.EXTRA_LOADING, false);
1845 }
Ben Kwa7461a952015-09-01 11:03:01 -07001846
Ben Kwa83cedf22015-09-11 15:15:45 -07001847 mUpdateListener.onModelUpdate(this);
Ben Kwa24be5d32015-08-27 16:04:46 -07001848 }
1849
Ben Kwa7461a952015-09-01 11:03:01 -07001850 int getItemCount() {
Ben Kwa91923182015-08-27 16:06:33 -07001851 return mCursorCount - mMarkedForDeletion.size();
Ben Kwa24be5d32015-08-27 16:04:46 -07001852 }
1853
Ben Kwa7461a952015-09-01 11:03:01 -07001854 Cursor getItem(int position) {
Ben Kwa91923182015-08-27 16:06:33 -07001855 // Items marked for deletion are masked out of the UI. To do this, for every marked
1856 // item whose position is less than the requested item position, advance the requested
1857 // position by 1.
1858 final int originalPos = position;
1859 final int size = mMarkedForDeletion.size();
1860 for (int i = 0; i <= size; ++i) {
1861 // It'd be more concise, but less efficient, to iterate over positions while calling
1862 // mMarkedForDeletion.get. Instead, iterate over deleted entries.
1863 if (mMarkedForDeletion.keyAt(i) <= position && mMarkedForDeletion.valueAt(i)) {
1864 ++position;
1865 }
1866 }
1867
1868 if (DEBUG) {
1869 Log.d(TAG, "Item position adjusted for deletion. Original: " + originalPos
1870 + " Adjusted: " + position);
1871 }
1872
Ben Kwa24be5d32015-08-27 16:04:46 -07001873 if (position >= mCursorCount) {
1874 throw new IndexOutOfBoundsException("Attempt to retrieve " + position + " of " +
1875 mCursorCount + " items");
1876 }
1877
1878 mCursor.moveToPosition(position);
1879 return mCursor;
1880 }
1881
1882 private boolean isEmpty() {
1883 return mCursorCount == 0;
1884 }
1885
1886 private boolean isLoading() {
1887 return mIsLoading;
1888 }
1889
1890 private List<DocumentInfo> getSelectedDocuments() {
1891 Selection sel = getSelection(new Selection());
1892 return getDocuments(sel);
1893 }
1894
Ben Kwa7461a952015-09-01 11:03:01 -07001895 List<DocumentInfo> getDocuments(Selection items) {
Ben Kwa91923182015-08-27 16:06:33 -07001896 final int size = (items != null) ? items.size() : 0;
Ben Kwa24be5d32015-08-27 16:04:46 -07001897
Ben Kwa91923182015-08-27 16:06:33 -07001898 final List<DocumentInfo> docs = new ArrayList<>(size);
Ben Kwa24be5d32015-08-27 16:04:46 -07001899 for (int i = 0; i < size; i++) {
1900 final Cursor cursor = getItem(items.get(i));
1901 checkNotNull(cursor, "Cursor cannot be null.");
1902 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
1903 docs.add(doc);
1904 }
1905 return docs;
1906 }
1907
1908 @Override
1909 public Cursor getCursor() {
1910 if (Looper.myLooper() != Looper.getMainLooper()) {
1911 throw new IllegalStateException("Can't call getCursor from non-main thread.");
1912 }
1913 return mCursor;
1914 }
Ben Kwa91923182015-08-27 16:06:33 -07001915
Ben Kwa7461a952015-09-01 11:03:01 -07001916 List<DocumentInfo> getDocumentsMarkedForDeletion() {
Ben Kwa91923182015-08-27 16:06:33 -07001917 final int size = mMarkedForDeletion.size();
1918 List<DocumentInfo> docs = new ArrayList<>(size);
1919
1920 for (int i = 0; i < size; ++i) {
1921 final int position = mMarkedForDeletion.keyAt(i);
1922 checkState(position < mCursorCount);
1923 mCursor.moveToPosition(position);
1924 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(mCursor);
1925 docs.add(doc);
1926 }
1927 return docs;
1928 }
1929
1930 /**
1931 * Marks the given files for deletion. This will remove them from the UI. Clients must then
1932 * call either {@link #undoDeletion()} or {@link #finalizeDeletion()} to cancel or confirm
1933 * the deletion, respectively. Only one deletion operation is allowed at a time.
1934 *
1935 * @param selected A selection representing the files to delete.
1936 */
Ben Kwa7461a952015-09-01 11:03:01 -07001937 void markForDeletion(Selection selected) {
Ben Kwa91923182015-08-27 16:06:33 -07001938 // Only one deletion operation at a time.
1939 checkState(mMarkedForDeletion.size() == 0);
1940 // There should never be more to delete than what exists.
1941 checkState(mCursorCount >= selected.size());
1942
1943 final int size = selected.size();
1944 for (int i = 0; i < size; ++i) {
1945 int position = selected.get(i);
1946 if (DEBUG) Log.d(TAG, "Marked position " + position + " for deletion");
1947 mMarkedForDeletion.append(position, true);
Ben Kwa83cedf22015-09-11 15:15:45 -07001948 mUpdateListener.notifyItemRemoved(position);
Ben Kwa91923182015-08-27 16:06:33 -07001949 }
1950 }
1951
1952 /**
1953 * Cancels an ongoing deletion operation. All files currently marked for deletion will be
1954 * unmarked, and restored in the UI. See {@link #markForDeletion(Selection)}.
1955 */
Ben Kwa7461a952015-09-01 11:03:01 -07001956 void undoDeletion() {
Ben Kwa91923182015-08-27 16:06:33 -07001957 // Iterate over deleted items, temporarily marking them false in the deletion list, and
1958 // re-adding them to the UI.
1959 final int size = mMarkedForDeletion.size();
1960 for (int i = 0; i < size; ++i) {
1961 final int position = mMarkedForDeletion.keyAt(i);
1962 mMarkedForDeletion.put(position, false);
Ben Kwa83cedf22015-09-11 15:15:45 -07001963 mUpdateListener.notifyItemInserted(position);
Ben Kwa91923182015-08-27 16:06:33 -07001964 }
1965
1966 // Then, clear the deletion list.
1967 mMarkedForDeletion.clear();
1968 }
1969
1970 /**
1971 * Finalizes an ongoing deletion operation. All files currently marked for deletion will be
1972 * deleted. See {@link #markForDeletion(Selection)}.
Ben Kwa7461a952015-09-01 11:03:01 -07001973 *
1974 * @param view The view which will be used to interact with the user (e.g. surfacing
1975 * snackbars) for errors, info, etc.
Ben Kwa91923182015-08-27 16:06:33 -07001976 */
Ben Kwa83cedf22015-09-11 15:15:45 -07001977 void finalizeDeletion(Runnable errorCallback) {
Ben Kwa7461a952015-09-01 11:03:01 -07001978 final ContentResolver resolver = mContext.getContentResolver();
Ben Kwa83cedf22015-09-11 15:15:45 -07001979 DeleteFilesTask task = new DeleteFilesTask(resolver, errorCallback);
Ben Kwa7461a952015-09-01 11:03:01 -07001980 task.execute();
Ben Kwa91923182015-08-27 16:06:33 -07001981 }
1982
1983 /**
1984 * A Task which collects the DocumentInfo for documents that have been marked for deletion,
1985 * and actually deletes them.
1986 */
1987 private class DeleteFilesTask extends AsyncTask<Void, Void, List<DocumentInfo>> {
1988 private ContentResolver mResolver;
Ben Kwa7461a952015-09-01 11:03:01 -07001989 private Runnable mErrorCallback;
Ben Kwa91923182015-08-27 16:06:33 -07001990
Ben Kwa7461a952015-09-01 11:03:01 -07001991 /**
1992 * @param resolver A ContentResolver for performing the actual file deletions.
1993 * @param errorCallback A Runnable that is executed in the event that one or more errors
1994 * occured while copying files. Execution will occur on the UI thread.
1995 */
1996 public DeleteFilesTask(ContentResolver resolver, Runnable errorCallback) {
Ben Kwa91923182015-08-27 16:06:33 -07001997 mResolver = resolver;
Ben Kwa7461a952015-09-01 11:03:01 -07001998 mErrorCallback = errorCallback;
Ben Kwa91923182015-08-27 16:06:33 -07001999 }
2000
2001 @Override
2002 protected List<DocumentInfo> doInBackground(Void... params) {
2003 return getDocumentsMarkedForDeletion();
2004 }
2005
2006 @Override
2007 protected void onPostExecute(List<DocumentInfo> docs) {
2008 boolean hadTrouble = false;
2009 for (DocumentInfo doc : docs) {
2010 if (!doc.isDeleteSupported()) {
2011 Log.w(TAG, doc + " could not be deleted. Skipping...");
2012 hadTrouble = true;
2013 continue;
2014 }
2015
2016 ContentProviderClient client = null;
2017 try {
2018 if (DEBUG) Log.d(TAG, "Deleting: " + doc.displayName);
2019 client = DocumentsApplication.acquireUnstableProviderOrThrow(
2020 mResolver, doc.derivedUri.getAuthority());
2021 DocumentsContract.deleteDocument(client, doc.derivedUri);
2022 } catch (Exception e) {
2023 Log.w(TAG, "Failed to delete " + doc);
2024 hadTrouble = true;
2025 } finally {
2026 ContentProviderClient.releaseQuietly(client);
2027 }
2028 }
2029
2030 if (hadTrouble) {
Ben Kwa7461a952015-09-01 11:03:01 -07002031 // TODO show which files failed? b/23720103
2032 mErrorCallback.run();
Ben Kwa91923182015-08-27 16:06:33 -07002033 if (DEBUG) Log.d(TAG, "Deletion task completed. Some deletions failed.");
2034 } else {
2035 if (DEBUG) Log.d(TAG, "Deletion task completed successfully.");
2036 }
2037 mMarkedForDeletion.clear();
2038 }
2039 }
Ben Kwa7461a952015-09-01 11:03:01 -07002040
2041 void addUpdateListener(UpdateListener listener) {
2042 checkState(mUpdateListener == null);
2043 mUpdateListener = listener;
2044 }
2045
2046 interface UpdateListener {
2047 /**
2048 * Called when a successful update has occurred.
2049 */
2050 void onModelUpdate(Model model);
2051
2052 /**
2053 * Called when an update has been attempted but failed.
2054 */
2055 void onModelUpdateFailed(Exception e);
2056
2057 /**
2058 * Called when an item has been removed from the model.
2059 */
2060 void notifyItemRemoved(int position);
2061
2062 /**
2063 * Called when an item has been added to the model.
2064 */
2065 void notifyItemInserted(int position);
2066 }
Ben Kwa24be5d32015-08-27 16:04:46 -07002067 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07002068}