blob: 080ba6a43d5742466692f0359da88dbff10f218a [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;
Steve McKayef280152015-06-11 10:10:49 -070065import android.support.v7.widget.GridLayoutManager;
66import android.support.v7.widget.LinearLayoutManager;
67import android.support.v7.widget.RecyclerView;
68import android.support.v7.widget.RecyclerView.LayoutManager;
Steve McKayef280152015-06-11 10:10:49 -070069import android.support.v7.widget.RecyclerView.RecyclerListener;
70import android.support.v7.widget.RecyclerView.ViewHolder;
Jeff Sharkey6d579272015-06-11 09:16:19 -070071import android.text.TextUtils;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070072import android.text.format.DateUtils;
Jeff Sharkey2e694f82013-08-06 16:26:14 -070073import android.text.format.Formatter;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070074import android.text.format.Time;
75import android.util.Log;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070076import android.util.SparseArray;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070077import android.view.ActionMode;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -070078import android.view.DragEvent;
Steve McKayef280152015-06-11 10:10:49 -070079import android.view.GestureDetector;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070080import android.view.LayoutInflater;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070081import android.view.Menu;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070082import android.view.MenuItem;
Steve McKayef280152015-06-11 10:10:49 -070083import android.view.MotionEvent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070084import android.view.View;
Steve McKayd57f5fa2015-07-23 16:33:41 -070085import android.view.View.OnLayoutChangeListener;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070086import android.view.ViewGroup;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070087import android.widget.ImageView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070088import android.widget.TextView;
Jeff Sharkey873daa32013-08-18 17:38:20 -070089import android.widget.Toast;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070090
Steve McKay351a7492015-08-04 10:11:01 -070091import com.android.documentsui.BaseActivity.DocumentContext;
Steve McKayd0a2a2c2015-03-25 14:35:33 -070092import com.android.documentsui.BaseActivity.State;
Steve McKayef280152015-06-11 10:10:49 -070093import com.android.documentsui.MultiSelectManager.Selection;
Jeff Sharkey753a3ae2013-10-22 17:09:44 -070094import com.android.documentsui.ProviderExecutor.Preemptable;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070095import com.android.documentsui.RecentsProvider.StateColumns;
Jeff Sharkey724deeb2013-08-31 15:02:20 -070096import com.android.documentsui.model.DocumentInfo;
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +090097import com.android.documentsui.model.DocumentStack;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070098import com.android.documentsui.model.RootInfo;
Steve McKay1f199482015-05-20 15:58:42 -070099import com.android.internal.util.Preconditions;
Steve McKayfefcd702015-08-20 16:19:38 +0000100import com.google.common.collect.Lists;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700101
102import java.util.ArrayList;
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -0700103import java.util.Collections;
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700104import java.util.List;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700105
106/**
107 * Display the documents inside a single directory.
108 */
109public class DirectoryFragment extends Fragment {
110
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700111 public static final int TYPE_NORMAL = 1;
112 public static final int TYPE_SEARCH = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700113 public static final int TYPE_RECENT_OPEN = 3;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700114
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700115 public static final int ANIM_NONE = 1;
116 public static final int ANIM_SIDE = 2;
117 public static final int ANIM_DOWN = 3;
118 public static final int ANIM_UP = 4;
119
Ben Kwaf5858932015-04-07 15:43:39 -0700120 public static final int REQUEST_COPY_DESTINATION = 1;
121
Steve McKayef280152015-06-11 10:10:49 -0700122 private static final int LOADER_ID = 42;
123 private static final boolean DEBUG = false;
Steve McKay8e258c62015-05-06 14:27:57 -0700124 private static final boolean DEBUG_ENABLE_DND = false;
125
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700126 private static final String EXTRA_TYPE = "type";
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700127 private static final String EXTRA_ROOT = "root";
128 private static final String EXTRA_DOC = "doc";
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700129 private static final String EXTRA_QUERY = "query";
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700130 private static final String EXTRA_IGNORE_STATE = "ignoreState";
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700131
Ben Kwa24be5d32015-08-27 16:04:46 -0700132 private final Model mModel = new Model();
133
Steve McKayef280152015-06-11 10:10:49 -0700134 private final Handler mHandler = new Handler(Looper.getMainLooper());
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700135
Steve McKayef280152015-06-11 10:10:49 -0700136 private View mEmptyView;
137 private RecyclerView mRecView;
138
139 private int mType = TYPE_NORMAL;
140 private String mStateKey;
141
142 private int mLastMode = MODE_UNKNOWN;
143 private int mLastSortOrder = SORT_ORDER_UNKNOWN;
144 private boolean mLastShowSize;
145 private boolean mHideGridTitles;
146 private boolean mSvelteRecents;
147 private Point mThumbSize;
148 private DocumentsAdapter mAdapter;
149 private LoaderCallbacks<DirectoryResult> mCallbacks;
Steve McKay1f199482015-05-20 15:58:42 -0700150 private FragmentTuner mFragmentTuner;
151 private DocumentClipper mClipper;
Steve McKayef280152015-06-11 10:10:49 -0700152 // These are lazily initialized.
Steve McKayd57f5fa2015-07-23 16:33:41 -0700153 private LinearLayoutManager mListLayout;
154 private GridLayoutManager mGridLayout;
Steve McKayd57f5fa2015-07-23 16:33:41 -0700155 private int mColumnCount = 1; // This will get updated when layout changes.
Steve McKay1f199482015-05-20 15:58:42 -0700156
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700157 public static void showNormal(FragmentManager fm, RootInfo root, DocumentInfo doc, int anim) {
158 show(fm, TYPE_NORMAL, root, doc, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700159 }
160
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700161 public static void showSearch(FragmentManager fm, RootInfo root, String query, int anim) {
162 show(fm, TYPE_SEARCH, root, null, query, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700163 }
164
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700165 public static void showRecentsOpen(FragmentManager fm, int anim) {
166 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700167 }
168
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700169 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc,
170 String query, int anim) {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700171 final Bundle args = new Bundle();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700172 args.putInt(EXTRA_TYPE, type);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700173 args.putParcelable(EXTRA_ROOT, root);
174 args.putParcelable(EXTRA_DOC, doc);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700175 args.putString(EXTRA_QUERY, query);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700176
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700177 final FragmentTransaction ft = fm.beginTransaction();
178 switch (anim) {
179 case ANIM_SIDE:
180 args.putBoolean(EXTRA_IGNORE_STATE, true);
181 break;
182 case ANIM_DOWN:
183 args.putBoolean(EXTRA_IGNORE_STATE, true);
184 ft.setCustomAnimations(R.animator.dir_down, R.animator.dir_frozen);
185 break;
186 case ANIM_UP:
187 ft.setCustomAnimations(R.animator.dir_frozen, R.animator.dir_up);
188 break;
189 }
190
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700191 final DirectoryFragment fragment = new DirectoryFragment();
192 fragment.setArguments(args);
193
Jeff Sharkey76112212013-08-06 11:26:10 -0700194 ft.replace(R.id.container_directory, fragment);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700195 ft.commitAllowingStateLoss();
196 }
197
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700198 private static String buildStateKey(RootInfo root, DocumentInfo doc) {
199 final StringBuilder builder = new StringBuilder();
200 builder.append(root != null ? root.authority : "null").append(';');
201 builder.append(root != null ? root.rootId : "null").append(';');
202 builder.append(doc != null ? doc.documentId : "null");
203 return builder.toString();
204 }
205
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700206 public static DirectoryFragment get(FragmentManager fm) {
207 // TODO: deal with multiple directories shown at once
Jeff Sharkey76112212013-08-06 11:26:10 -0700208 return (DirectoryFragment) fm.findFragmentById(R.id.container_directory);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700209 }
210
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700211 @Override
212 public View onCreateView(
213 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
214 final Context context = inflater.getContext();
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700215 final Resources res = context.getResources();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700216 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
217
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700218 mEmptyView = view.findViewById(android.R.id.empty);
219
Steve McKayef280152015-06-11 10:10:49 -0700220 mRecView = (RecyclerView) view.findViewById(R.id.recyclerView);
221 mRecView.setRecyclerListener(
222 new RecyclerListener() {
223 @Override
224 public void onViewRecycled(ViewHolder holder) {
225 cancelThumbnailTask(holder.itemView);
226 }
227 });
Steve McKay8e258c62015-05-06 14:27:57 -0700228
Steve McKayd57f5fa2015-07-23 16:33:41 -0700229 // TODO: Rather than update columns on layout changes, push this
230 // code (or something like it) into GridLayoutManager.
231 mRecView.addOnLayoutChangeListener(
232 new OnLayoutChangeListener() {
233
234 @Override
235 public void onLayoutChange(
236 View v, int left, int top, int right, int bottom, int oldLeft,
237 int oldTop, int oldRight, int oldBottom) {
Steve McKayfefcd702015-08-20 16:19:38 +0000238 mColumnCount = calculateColumnCount();
Steve McKayd57f5fa2015-07-23 16:33:41 -0700239 if (mGridLayout != null) {
240 mGridLayout.setSpanCount(mColumnCount);
241 }
242 }
243 });
244
245 // TODO: Add a divider between views (which might use RecyclerView.ItemDecoration).
Steve McKay8e258c62015-05-06 14:27:57 -0700246 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -0700247 setupDragAndDropOnDirectoryView(mRecView);
Steve McKay8e258c62015-05-06 14:27:57 -0700248 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700249
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700250 return view;
251 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700252
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700253 @Override
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700254 public void onDestroyView() {
255 super.onDestroyView();
256
257 // Cancel any outstanding thumbnail requests
Steve McKayef280152015-06-11 10:10:49 -0700258 final int count = mRecView.getChildCount();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700259 for (int i = 0; i < count; i++) {
Steve McKayef280152015-06-11 10:10:49 -0700260 final View view = mRecView.getChildAt(i);
261 cancelThumbnailTask(view);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700262 }
Jeff Sharkeyfaaeb392013-10-04 14:44:56 -0700263
Steve McKayef280152015-06-11 10:10:49 -0700264 // Clear any outstanding selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700265 mModel.clearSelection();
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700266 }
267
268 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700269 public void onActivityCreated(Bundle savedInstanceState) {
270 super.onActivityCreated(savedInstanceState);
271
272 final Context context = getActivity();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700273 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700274
Jeff Sharkey9656a532013-09-13 13:42:19 -0700275 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
276 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
277
Steve McKayef280152015-06-11 10:10:49 -0700278 mAdapter = new DocumentsAdapter(context);
279 mRecView.setAdapter(mAdapter);
280
281 GestureDetector.SimpleOnGestureListener listener =
282 new GestureDetector.SimpleOnGestureListener() {
283 @Override
284 public boolean onSingleTapUp(MotionEvent e) {
285 return DirectoryFragment.this.onSingleTapUp(e);
286 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700287 @Override
288 public boolean onDoubleTap(MotionEvent e) {
289 Log.d(TAG, "Handling double tap.");
290 return DirectoryFragment.this.onDoubleTap(e);
291 }
Steve McKayef280152015-06-11 10:10:49 -0700292 };
293
Ben Kwa24be5d32015-08-27 16:04:46 -0700294 // TODO: instead of inserting the view into the constructor, extract listener-creation code
295 // and set the listener on the view after the fact. Then the view doesn't need to be passed
296 // into the selection manager which is passed into the model.
297 MultiSelectManager selMgr= new MultiSelectManager(
Steve McKay57394872015-08-12 14:48:34 -0700298 mRecView,
299 listener,
300 state.allowMultiple
301 ? MultiSelectManager.MODE_MULTIPLE
302 : MultiSelectManager.MODE_SINGLE);
Ben Kwa24be5d32015-08-27 16:04:46 -0700303 selMgr.addCallback(new SelectionModeListener());
304 mModel.setSelectionManager(selMgr);
Steve McKayef280152015-06-11 10:10:49 -0700305
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700306 mType = getArguments().getInt(EXTRA_TYPE);
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700307 mStateKey = buildStateKey(root, doc);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700308
Steve McKay1f199482015-05-20 15:58:42 -0700309 mFragmentTuner = pickFragmentTuner(state);
310 mClipper = new DocumentClipper(context);
311
Jeff Sharkey9656a532013-09-13 13:42:19 -0700312 if (mType == TYPE_RECENT_OPEN) {
313 // Hide titles when showing recents for picking images/videos
314 mHideGridTitles = MimePredicate.mimeMatches(
315 MimePredicate.VISUAL_MIMES, state.acceptMimes);
316 } else {
317 mHideGridTitles = (doc != null) && doc.isGridTitlesHidden();
318 }
319
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700320 final ActivityManager am = (ActivityManager) context.getSystemService(
321 Context.ACTIVITY_SERVICE);
322 mSvelteRecents = am.isLowRamDevice() && (mType == TYPE_RECENT_OPEN);
323
Jeff Sharkey46899c82013-08-18 22:26:48 -0700324 mCallbacks = new LoaderCallbacks<DirectoryResult>() {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700325 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700326 public Loader<DirectoryResult> onCreateLoader(int id, Bundle args) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700327 final String query = getArguments().getString(EXTRA_QUERY);
Jeff Sharkey46165b52013-07-31 20:53:22 -0700328
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700329 Uri contentsUri;
330 switch (mType) {
331 case TYPE_NORMAL:
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700332 contentsUri = DocumentsContract.buildChildDocumentsUri(
333 doc.authority, doc.documentId);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700334 if (state.action == ACTION_MANAGE) {
335 contentsUri = DocumentsContract.setManageMode(contentsUri);
336 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700337 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700338 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700339 case TYPE_SEARCH:
340 contentsUri = DocumentsContract.buildSearchDocumentsUri(
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700341 root.authority, root.rootId, query);
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_RECENT_OPEN:
Jeff Sharkey1c903cc2013-09-02 17:19:40 -0700348 final RootsCache roots = DocumentsApplication.getRootsCache(context);
Jeff Sharkey8b997042013-09-19 15:25:56 -0700349 return new RecentLoader(context, roots, state);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700350 default:
351 throw new IllegalStateException("Unknown type " + mType);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700352 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700353 }
354
355 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700356 public void onLoadFinished(Loader<DirectoryResult> loader, DirectoryResult result) {
Makoto Onuki77778752015-07-01 14:55:14 -0700357 if (result == null || result.exception != null) {
358 // onBackPressed does a fragment transaction, which can't be done inside
359 // onLoadFinished
360 mHandler.post(new Runnable() {
361 @Override
362 public void run() {
363 final Activity activity = getActivity();
364 if (activity != null) {
365 activity.onBackPressed();
366 }
367 }
368 });
369 return;
370 }
371
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700372 if (!isAdded()) return;
373
Ben Kwa24be5d32015-08-27 16:04:46 -0700374 // TODO: make the adapter listen to the model
375 mModel.update(result);
376 mAdapter.update();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700377
378 // Push latest state up to UI
379 // TODO: if mode change was racing with us, don't overwrite it
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700380 if (result.mode != MODE_UNKNOWN) {
381 state.derivedMode = result.mode;
382 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700383 state.derivedSortOrder = result.sortOrder;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700384 ((BaseActivity) context).onStateChanged();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700385
386 updateDisplayState();
387
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700388 // When launched into empty recents, show drawer
Ben Kwa24be5d32015-08-27 16:04:46 -0700389 if (mType == TYPE_RECENT_OPEN && mModel.isEmpty() && !state.stackTouched &&
Steve McKayb68dd222015-04-20 17:18:15 -0700390 context instanceof DocumentsActivity) {
391 ((DocumentsActivity) context).setRootsDrawerOpen(true);
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700392 }
393
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700394 // Restore any previous instance state
395 final SparseArray<Parcelable> container = state.dirState.remove(mStateKey);
396 if (container != null && !getArguments().getBoolean(EXTRA_IGNORE_STATE, false)) {
397 getView().restoreHierarchyState(container);
398 } else if (mLastSortOrder != state.derivedSortOrder) {
Steve McKayef280152015-06-11 10:10:49 -0700399 mRecView.smoothScrollToPosition(0);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700400 }
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700401
402 mLastSortOrder = state.derivedSortOrder;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700403 }
404
405 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700406 public void onLoaderReset(Loader<DirectoryResult> loader) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700407 // TODO: make the adapter listen to the model.
408 mModel.update(null);
409 mAdapter.update();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700410 }
411 };
412
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700413 // Kick off loader at least once
Steve McKayef280152015-06-11 10:10:49 -0700414 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700415
Kyle Horimoto426bd0d2015-07-29 15:33:49 -0700416 mFragmentTuner.afterActivityCreated(this);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700417 updateDisplayState();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700418 }
419
Jeff Sharkey42d26792013-09-06 13:22:09 -0700420 @Override
Ben Kwaf5858932015-04-07 15:43:39 -0700421 public void onActivityResult(int requestCode, int resultCode, Intent data) {
Ben Kwaf5858932015-04-07 15:43:39 -0700422 // There's only one request code right now. Replace this with a switch statement or
423 // something more scalable when more codes are added.
424 if (requestCode != REQUEST_COPY_DESTINATION) {
425 return;
426 }
427 if (resultCode == Activity.RESULT_CANCELED || data == null) {
428 // User pressed the back button or otherwise cancelled the destination pick. Don't
429 // proceed with the copy.
430 return;
431 }
432
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +0900433 CopyService.start(getActivity(), getDisplayState(this).selectedDocumentsForCopy,
Ben Kwacb4461f2015-05-05 11:50:11 -0700434 (DocumentStack) data.getParcelableExtra(CopyService.EXTRA_STACK),
435 data.getIntExtra(CopyService.EXTRA_TRANSFER_MODE, CopyService.TRANSFER_MODE_NONE));
Ben Kwaf5858932015-04-07 15:43:39 -0700436 }
437
Steve McKayef280152015-06-11 10:10:49 -0700438 private int getEventAdapterPosition(MotionEvent e) {
439 View view = mRecView.findChildViewUnder(e.getX(), e.getY());
440 return view != null ? mRecView.getChildAdapterPosition(view) : RecyclerView.NO_POSITION;
441 }
442
443 private boolean onSingleTapUp(MotionEvent e) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700444 if (Events.isTouchEvent(e) && mModel.getSelection().isEmpty()) {
Steve McKay93d8ef42015-07-30 12:27:44 -0700445 int position = getEventAdapterPosition(e);
446 if (position != RecyclerView.NO_POSITION) {
447 return handleViewItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700448 }
449 }
Steve McKay93d8ef42015-07-30 12:27:44 -0700450 return false;
451 }
Steve McKayef280152015-06-11 10:10:49 -0700452
Steve McKay93d8ef42015-07-30 12:27:44 -0700453 protected boolean onDoubleTap(MotionEvent e) {
454 if (Events.isMouseEvent(e)) {
455 Log.d(TAG, "Handling double tap from mouse.");
456 int position = getEventAdapterPosition(e);
457 if (position != RecyclerView.NO_POSITION) {
458 return handleViewItem(position);
459 }
460 }
461 return false;
462 }
463
464 private boolean handleViewItem(int position) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700465 final Cursor cursor = mModel.getItem(position);
Steve McKay93d8ef42015-07-30 12:27:44 -0700466 checkNotNull(cursor, "Cursor cannot be null.");
467 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
468 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
469 if (isDocumentEnabled(docMimeType, docFlags)) {
470 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Ben Kwa24be5d32015-08-27 16:04:46 -0700471 ((BaseActivity) getActivity()).onDocumentPicked(doc, mModel);
472 mModel.clearSelection();
Steve McKay93d8ef42015-07-30 12:27:44 -0700473 return true;
474 }
Steve McKayef280152015-06-11 10:10:49 -0700475 return false;
476 }
477
Ben Kwaf5858932015-04-07 15:43:39 -0700478 @Override
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700479 public void onStop() {
480 super.onStop();
481
482 // Remember last scroll location
483 final SparseArray<Parcelable> container = new SparseArray<Parcelable>();
484 getView().saveHierarchyState(container);
485 final State state = getDisplayState(this);
486 state.dirState.put(mStateKey, container);
487 }
488
489 @Override
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700490 public void onResume() {
491 super.onResume();
Jeff Sharkey42d26792013-09-06 13:22:09 -0700492 updateDisplayState();
493 }
494
Jeff Sharkeye8d13ea2014-08-08 15:10:03 -0700495 public void onDisplayStateChanged() {
496 updateDisplayState();
497 }
498
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700499 public void onUserSortOrderChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700500 // Sort order change always triggers reload; we'll trigger state change
501 // on the flip side.
Steve McKayef280152015-06-11 10:10:49 -0700502 getLoaderManager().restartLoader(LOADER_ID, null, mCallbacks);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700503 }
504
505 public void onUserModeChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700506 final ContentResolver resolver = getActivity().getContentResolver();
507 final State state = getDisplayState(this);
508
509 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
510 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
511
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700512 if (root != null && doc != null) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700513 final Uri stateUri = RecentsProvider.buildState(
514 root.authority, root.rootId, doc.documentId);
515 final ContentValues values = new ContentValues();
516 values.put(StateColumns.MODE, state.userMode);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700517
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700518 new AsyncTask<Void, Void, Void>() {
519 @Override
520 protected Void doInBackground(Void... params) {
521 resolver.insert(stateUri, values);
522 return null;
523 }
524 }.execute();
525 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700526
527 // Mode change is just visual change; no need to kick loader, and
528 // deliver change event immediately.
529 state.derivedMode = state.userMode;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700530 ((BaseActivity) getActivity()).onStateChanged();
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700531
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700532 updateDisplayState();
533 }
534
535 private void updateDisplayState() {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700536 final State state = getDisplayState(this);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700537
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700538 if (mLastMode == state.derivedMode && mLastShowSize == state.showSize) return;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700539 mLastMode = state.derivedMode;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700540 mLastShowSize = state.showSize;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700541
Steve McKayef280152015-06-11 10:10:49 -0700542 updateLayout(state.derivedMode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700543
Steve McKayef280152015-06-11 10:10:49 -0700544 mRecView.setAdapter(mAdapter);
545 }
546
547 /**
548 * Returns a {@code LayoutManager} for {@code mode}, lazily initializing
549 * classes as needed.
550 */
551 private void updateLayout(int mode) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700552 final int thumbSize;
Steve McKayef280152015-06-11 10:10:49 -0700553
554 final LayoutManager layout;
555 switch (mode) {
556 case MODE_GRID:
Steve McKayef280152015-06-11 10:10:49 -0700557 thumbSize = getResources().getDimensionPixelSize(R.dimen.grid_width);
Steve McKaya9be7182015-07-22 16:03:35 -0700558 if (mGridLayout == null) {
Steve McKayd57f5fa2015-07-23 16:33:41 -0700559 mGridLayout = new GridLayoutManager(getContext(), mColumnCount );
Steve McKaya9be7182015-07-22 16:03:35 -0700560 }
Steve McKayef280152015-06-11 10:10:49 -0700561 layout = mGridLayout;
562 break;
563 case MODE_LIST:
Steve McKaya9be7182015-07-22 16:03:35 -0700564 thumbSize = getResources().getDimensionPixelSize(R.dimen.icon_size);
Steve McKayef280152015-06-11 10:10:49 -0700565 if (mListLayout == null) {
566 mListLayout = new LinearLayoutManager(getContext());
567 }
Steve McKayef280152015-06-11 10:10:49 -0700568 layout = mListLayout;
569 break;
570 case MODE_UNKNOWN:
571 default:
572 throw new IllegalArgumentException("Unsupported layout mode: " + mode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700573 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700574
Steve McKayef280152015-06-11 10:10:49 -0700575 mRecView.setLayoutManager(layout);
576 // setting layout manager automatically invalidates existing ViewHolders.
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700577 mThumbSize = new Point(thumbSize, thumbSize);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700578 }
579
Steve McKayfefcd702015-08-20 16:19:38 +0000580 private int calculateColumnCount() {
581 int cellWidth = getResources().getDimensionPixelSize(R.dimen.grid_width);
582 int cellMargin = 2 * getResources().getDimensionPixelSize(R.dimen.grid_item_margin);
Steve McKayd57f5fa2015-07-23 16:33:41 -0700583 int viewPadding = mRecView.getPaddingLeft() + mRecView.getPaddingRight();
Steve McKayfefcd702015-08-20 16:19:38 +0000584
Steve McKayd57f5fa2015-07-23 16:33:41 -0700585 checkState(mRecView.getWidth() > 0);
586 int columnCount = Math.max(1,
Steve McKayfefcd702015-08-20 16:19:38 +0000587 (mRecView.getWidth() - viewPadding) / (cellWidth + cellMargin));
588
Steve McKayd57f5fa2015-07-23 16:33:41 -0700589 return columnCount;
590 }
591
Steve McKayef280152015-06-11 10:10:49 -0700592 /**
593 * Manages the integration between our ActionMode and MultiSelectManager, initiating
594 * ActionMode when there is a selection, canceling it when there is no selection,
595 * and clearing selection when action mode is explicitly exited by the user.
596 */
597 private final class SelectionModeListener
598 implements MultiSelectManager.Callback, ActionMode.Callback {
599
600 private Selection mSelected = new Selection();
601 private ActionMode mActionMode;
Steve McKay4f4232d2015-07-22 12:13:46 -0700602 private int mNoDeleteCount = 0;
603 private Menu mMenu;
Steve McKayef280152015-06-11 10:10:49 -0700604
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700605 @Override
Steve McKayef280152015-06-11 10:10:49 -0700606 public boolean onBeforeItemStateChange(int position, boolean selected) {
607 // Directories and footer items cannot be checked
608 if (selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -0700609 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -0700610 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700611 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
612 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
Steve McKayef280152015-06-11 10:10:49 -0700613 return isDocumentEnabled(docMimeType, docFlags);
614 }
615 return true;
616 }
617
618 @Override
619 public void onItemStateChanged(int position, boolean selected) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700620
Ben Kwa24be5d32015-08-27 16:04:46 -0700621 final Cursor cursor = mModel.getItem(position);
Steve McKay4f4232d2015-07-22 12:13:46 -0700622 checkNotNull(cursor, "Cursor cannot be null.");
623
624 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
625 if ((docFlags & Document.FLAG_SUPPORTS_DELETE) == 0) {
626 mNoDeleteCount += selected ? 1 : -1;
627 }
Steve McKay57394872015-08-12 14:48:34 -0700628 }
Steve McKay4f4232d2015-07-22 12:13:46 -0700629
Steve McKay57394872015-08-12 14:48:34 -0700630 @Override
631 public void onSelectionChanged() {
Ben Kwa24be5d32015-08-27 16:04:46 -0700632 mModel.getSelection(mSelected);
Steve McKay4f4232d2015-07-22 12:13:46 -0700633 if (mSelected.size() > 0) {
Steve McKayef280152015-06-11 10:10:49 -0700634 if (DEBUG) Log.d(TAG, "Maybe starting action mode.");
635 if (mActionMode == null) {
636 if (DEBUG) Log.d(TAG, "Yeah. Starting action mode.");
637 mActionMode = getActivity().startActionMode(this);
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +0900638 getActivity().getWindow().setStatusBarColor(
639 getResources().getColor(R.color.action_mode_status_bar_background));
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700640 }
Steve McKay4f4232d2015-07-22 12:13:46 -0700641 updateActionMenu();
642 } else {
643 if (DEBUG) Log.d(TAG, "Finishing action mode.");
644 if (mActionMode != null) {
645 mActionMode.finish();
646 }
Tomasz Mikolajewski2b6b0662015-07-28 14:59:00 +0900647 getActivity().getWindow().setStatusBarColor(
648 getResources().getColor(R.color.status_bar_background));
Jeff Sharkeyf339f252013-08-15 16:17:41 -0700649 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700650
Steve McKayef280152015-06-11 10:10:49 -0700651 if (mActionMode != null) {
652 mActionMode.setTitle(TextUtils.formatSelectedCount(mSelected.size()));
653 }
654 }
655
656 // Called when the user exits the action mode
657 @Override
658 public void onDestroyActionMode(ActionMode mode) {
659 if (DEBUG) Log.d(TAG, "Handling action mode destroyed.");
660 mActionMode = null;
661 // clear selection
Ben Kwa24be5d32015-08-27 16:04:46 -0700662 mModel.clearSelection();
Steve McKay4f4232d2015-07-22 12:13:46 -0700663 mSelected.clear();
664 mNoDeleteCount = 0;
Steve McKayef280152015-06-11 10:10:49 -0700665 }
666
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700667 @Override
668 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
669 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
Ben Kwa24be5d32015-08-27 16:04:46 -0700670 mode.setTitle(TextUtils.formatSelectedCount(mModel.getSelection().size()));
671 return mModel.getSelection().size() > 0;
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700672 }
673
674 @Override
675 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Steve McKay4f4232d2015-07-22 12:13:46 -0700676 mMenu = menu;
677 updateActionMenu();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700678 return true;
679 }
680
Steve McKay4f4232d2015-07-22 12:13:46 -0700681 private void updateActionMenu() {
682 checkNotNull(mMenu);
683 // Delegate update logic to our owning action, since specialized logic is desired.
684 mFragmentTuner.updateActionMenu(mMenu, mType, mNoDeleteCount == 0);
685 }
686
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700687 @Override
Steve McKayef280152015-06-11 10:10:49 -0700688 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
Steve McKay1f199482015-05-20 15:58:42 -0700689
Ben Kwa24be5d32015-08-27 16:04:46 -0700690 Selection selection = mModel.getSelection(new Selection());
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700691
Jeff Sharkey873daa32013-08-18 17:38:20 -0700692 final int id = item.getItemId();
693 if (id == R.id.menu_open) {
Steve McKayef280152015-06-11 10:10:49 -0700694 openDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700695 mode.finish();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700696 return true;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700697
698 } else if (id == R.id.menu_share) {
Steve McKayef280152015-06-11 10:10:49 -0700699 shareDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700700 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700701 return true;
702
703 } else if (id == R.id.menu_delete) {
Steve McKayef280152015-06-11 10:10:49 -0700704 deleteDocuments(selection);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700705 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700706 return true;
707
Steve McKay1f199482015-05-20 15:58:42 -0700708 } else if (id == R.id.menu_copy_to) {
Steve McKayef280152015-06-11 10:10:49 -0700709 transferDocuments(selection, CopyService.TRANSFER_MODE_COPY);
Ben Kwacb4461f2015-05-05 11:50:11 -0700710 mode.finish();
711 return true;
712
Steve McKay1f199482015-05-20 15:58:42 -0700713 } else if (id == R.id.menu_move_to) {
Steve McKayef280152015-06-11 10:10:49 -0700714 transferDocuments(selection, CopyService.TRANSFER_MODE_MOVE);
Ben Kwa41b26c12015-03-31 10:11:43 -0700715 mode.finish();
716 return true;
717
Steve McKay1f199482015-05-20 15:58:42 -0700718 } else if (id == R.id.menu_copy_to_clipboard) {
Steve McKayef280152015-06-11 10:10:49 -0700719 copySelectionToClipboard(selection);
Steve McKay1f199482015-05-20 15:58:42 -0700720 mode.finish();
721 return true;
722
Ben Kwa512a6ba2015-03-31 08:15:21 -0700723 } else if (id == R.id.menu_select_all) {
Steve McKay0599a442015-05-05 14:50:00 -0700724 selectAllFiles();
Ben Kwa512a6ba2015-03-31 08:15:21 -0700725 return true;
726
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700727 } else {
728 return false;
729 }
730 }
Steve McKayef280152015-06-11 10:10:49 -0700731 }
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700732
Steve McKayef280152015-06-11 10:10:49 -0700733 private static void cancelThumbnailTask(View view) {
734 final ImageView iconThumb = (ImageView) view.findViewById(R.id.icon_thumb);
735 if (iconThumb != null) {
736 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
737 if (oldTask != null) {
738 oldTask.preempt();
739 iconThumb.setTag(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700740 }
741 }
Steve McKayef280152015-06-11 10:10:49 -0700742 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700743
Steve McKayef280152015-06-11 10:10:49 -0700744 private void openDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700745 new GetDocumentsTask() {
746 @Override
747 void onDocumentsReady(List<DocumentInfo> docs) {
Steve McKay0fbfc652015-08-20 16:48:49 -0700748 // TODO: Implement support in Files activity for opening multiple docs.
Steve McKay9276f3b2015-05-27 16:11:42 -0700749 BaseActivity.get(DirectoryFragment.this).onDocumentsPicked(docs);
Ben Kwaf527c632015-04-08 15:03:35 -0700750 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700751 }.execute(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700752 }
753
Steve McKayef280152015-06-11 10:10:49 -0700754 private void shareDocuments(final Selection selected) {
Steve McKay9276f3b2015-05-27 16:11:42 -0700755 new GetDocumentsTask() {
756 @Override
757 void onDocumentsReady(List<DocumentInfo> docs) {
758 Intent intent;
759
760 // Filter out directories - those can't be shared.
Steve McKayfefcd702015-08-20 16:19:38 +0000761 List<DocumentInfo> docsForSend = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700762 for (DocumentInfo doc: docs) {
763 if (!Document.MIME_TYPE_DIR.equals(doc.mimeType)) {
764 docsForSend.add(doc);
765 }
766 }
767
768 if (docsForSend.size() == 1) {
769 final DocumentInfo doc = docsForSend.get(0);
770
771 intent = new Intent(Intent.ACTION_SEND);
772 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
773 intent.addCategory(Intent.CATEGORY_DEFAULT);
774 intent.setType(doc.mimeType);
775 intent.putExtra(Intent.EXTRA_STREAM, doc.derivedUri);
776
777 } else if (docsForSend.size() > 1) {
778 intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
779 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
780 intent.addCategory(Intent.CATEGORY_DEFAULT);
781
Steve McKayfefcd702015-08-20 16:19:38 +0000782 final ArrayList<String> mimeTypes = new ArrayList<>();
783 final ArrayList<Uri> uris = new ArrayList<>();
Steve McKay9276f3b2015-05-27 16:11:42 -0700784 for (DocumentInfo doc : docsForSend) {
785 mimeTypes.add(doc.mimeType);
786 uris.add(doc.derivedUri);
787 }
788
789 intent.setType(findCommonMimeType(mimeTypes));
790 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
791
792 } else {
793 return;
794 }
795
796 intent = Intent.createChooser(intent, getActivity().getText(R.string.share_via));
797 startActivity(intent);
798 }
799 }.execute(selected);
800 }
801
Steve McKayef280152015-06-11 10:10:49 -0700802 private void deleteDocuments(final Selection selected) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700803 final Context context = getActivity();
804 final ContentResolver resolver = context.getContentResolver();
805
Steve McKay9276f3b2015-05-27 16:11:42 -0700806 new GetDocumentsTask() {
807 @Override
808 void onDocumentsReady(List<DocumentInfo> docs) {
809 boolean hadTrouble = false;
810 for (DocumentInfo doc : docs) {
811 if (!doc.isDeleteSupported()) {
812 Log.w(TAG, "Skipping " + doc);
813 hadTrouble = true;
814 continue;
815 }
Jeff Sharkey873daa32013-08-18 17:38:20 -0700816
Steve McKay9276f3b2015-05-27 16:11:42 -0700817 ContentProviderClient client = null;
818 try {
819 client = DocumentsApplication.acquireUnstableProviderOrThrow(
820 resolver, doc.derivedUri.getAuthority());
821 DocumentsContract.deleteDocument(client, doc.derivedUri);
822 } catch (Exception e) {
823 Log.w(TAG, "Failed to delete " + doc);
824 hadTrouble = true;
825 } finally {
826 ContentProviderClient.releaseQuietly(client);
827 }
828 }
Jeff Sharkey873daa32013-08-18 17:38:20 -0700829
Steve McKay9276f3b2015-05-27 16:11:42 -0700830 if (hadTrouble) {
831 Toast.makeText(
832 context,
833 R.string.toast_failed_delete,
834 Toast.LENGTH_SHORT).show();
835 }
836 }
837 }.execute(selected);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700838 }
839
Steve McKayef280152015-06-11 10:10:49 -0700840 private void transferDocuments(final Selection selected, final int mode) {
Ben Kwaf5858932015-04-07 15:43:39 -0700841 // Pop up a dialog to pick a destination. This is inadequate but works for now.
842 // TODO: Implement a picker that is to spec.
Daichi Hironocaadd412015-04-10 15:50:38 +0900843 final Intent intent = new Intent(
Daichi Hirono22574ed2015-04-15 13:41:18 +0900844 BaseActivity.DocumentsIntent.ACTION_OPEN_COPY_DESTINATION,
Daichi Hironocaadd412015-04-10 15:50:38 +0900845 Uri.EMPTY,
846 getActivity(),
847 DocumentsActivity.class);
Steve McKay9276f3b2015-05-27 16:11:42 -0700848
849 new GetDocumentsTask() {
850 @Override
851 void onDocumentsReady(List<DocumentInfo> docs) {
852 getDisplayState(DirectoryFragment.this).selectedDocumentsForCopy = docs;
853
854 boolean directoryCopy = false;
855 for (DocumentInfo info : docs) {
856 if (Document.MIME_TYPE_DIR.equals(info.mimeType)) {
857 directoryCopy = true;
858 break;
859 }
860 }
861 intent.putExtra(BaseActivity.DocumentsIntent.EXTRA_DIRECTORY_COPY, directoryCopy);
862 intent.putExtra(CopyService.EXTRA_TRANSFER_MODE, mode);
863 startActivityForResult(intent, REQUEST_COPY_DESTINATION);
Daichi Hironof2a822d2015-04-14 17:12:54 +0900864 }
Steve McKay9276f3b2015-05-27 16:11:42 -0700865 }.execute(selected);
Ben Kwa41b26c12015-03-31 10:11:43 -0700866 }
867
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700868 private static State getDisplayState(Fragment fragment) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700869 return ((BaseActivity) fragment.getActivity()).getDisplayState();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700870 }
871
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700872 private static abstract class Footer {
873 private final int mItemViewType;
874
875 public Footer(int itemViewType) {
876 mItemViewType = itemViewType;
877 }
878
879 public abstract View getView(View convertView, ViewGroup parent);
880
881 public int getItemViewType() {
882 return mItemViewType;
883 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700884 }
885
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700886 private class LoadingFooter extends Footer {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700887 public LoadingFooter() {
888 super(1);
889 }
890
Jeff Sharkey20b32272013-09-03 15:25:52 -0700891 @Override
892 public View getView(View convertView, ViewGroup parent) {
893 final Context context = parent.getContext();
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700894 final State state = getDisplayState(DirectoryFragment.this);
895
Jeff Sharkey20b32272013-09-03 15:25:52 -0700896 if (convertView == null) {
897 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700898 if (state.derivedMode == MODE_LIST) {
899 convertView = inflater.inflate(R.layout.item_loading_list, parent, false);
900 } else if (state.derivedMode == MODE_GRID) {
901 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false);
902 } else {
903 throw new IllegalStateException();
904 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700905 }
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700906
Jeff Sharkey20b32272013-09-03 15:25:52 -0700907 return convertView;
908 }
909 }
910
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700911 private class MessageFooter extends Footer {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700912 private final int mIcon;
913 private final String mMessage;
914
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700915 public MessageFooter(int itemViewType, int icon, String message) {
916 super(itemViewType);
Jeff Sharkey20b32272013-09-03 15:25:52 -0700917 mIcon = icon;
918 mMessage = message;
919 }
920
921 @Override
922 public View getView(View convertView, ViewGroup parent) {
923 final Context context = parent.getContext();
924 final State state = getDisplayState(DirectoryFragment.this);
925
926 if (convertView == null) {
927 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700928 if (state.derivedMode == MODE_LIST) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700929 convertView = inflater.inflate(R.layout.item_message_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700930 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700931 convertView = inflater.inflate(R.layout.item_message_grid, parent, false);
932 } else {
933 throw new IllegalStateException();
934 }
935 }
936
937 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
938 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
939 icon.setImageResource(mIcon);
940 title.setText(mMessage);
941 return convertView;
942 }
943 }
944
Steve McKayef280152015-06-11 10:10:49 -0700945 // Provide a reference to the views for each data item
946 // Complex data items may need more than one view per item, and
947 // you provide access to all the views for a data item in a view holder
948 private static final class DocumentHolder extends RecyclerView.ViewHolder {
949 // each data item is just a string in this case
950 public View view;
951 public String docId; // The stable document id.
952 public DocumentHolder(View view) {
953 super(view);
954 this.view = view;
955 }
956 }
957
Ben Kwa24be5d32015-08-27 16:04:46 -0700958 private final class DocumentsAdapter extends RecyclerView.Adapter<DocumentHolder> {
Steve McKayef280152015-06-11 10:10:49 -0700959
960 private final Context mContext;
961 private final LayoutInflater mInflater;
962 // TODO: Bring back support for footers.
Steve McKayfefcd702015-08-20 16:19:38 +0000963 private final List<Footer> mFooters = new ArrayList<>();
Steve McKayef280152015-06-11 10:10:49 -0700964
Steve McKayef280152015-06-11 10:10:49 -0700965 public DocumentsAdapter(Context context) {
966 mContext = context;
967 mInflater = LayoutInflater.from(context);
968 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700969
Ben Kwa24be5d32015-08-27 16:04:46 -0700970 public void update() {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700971 mFooters.clear();
Ben Kwa24be5d32015-08-27 16:04:46 -0700972 if (mModel.info != null) {
973 mFooters.add(new MessageFooter(2, R.drawable.ic_dialog_info, mModel.info));
974 }
975 if (mModel.error != null) {
976 mFooters.add(new MessageFooter(3, R.drawable.ic_dialog_alert, mModel.error));
977 }
978 if (mModel.isLoading()) {
979 mFooters.add(new LoadingFooter());
Jeff Sharkey20b32272013-09-03 15:25:52 -0700980 }
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700981
Ben Kwa24be5d32015-08-27 16:04:46 -0700982 if (mModel.isEmpty()) {
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700983 mEmptyView.setVisibility(View.VISIBLE);
984 } else {
985 mEmptyView.setVisibility(View.GONE);
986 }
987
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700988 notifyDataSetChanged();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700989 }
990
991 @Override
Steve McKayef280152015-06-11 10:10:49 -0700992 public DocumentHolder onCreateViewHolder(ViewGroup parent, int viewType) {
993 final State state = getDisplayState(DirectoryFragment.this);
994 final LayoutInflater inflater = LayoutInflater.from(getContext());
995 switch (state.derivedMode) {
996 case MODE_GRID:
997 return new DocumentHolder(inflater.inflate(R.layout.item_doc_grid, parent, false));
998 case MODE_LIST:
999 return new DocumentHolder(inflater.inflate(R.layout.item_doc_list, parent, false));
1000 case MODE_UNKNOWN:
1001 default:
1002 throw new IllegalStateException("Unsupported layout mode.");
Jeff Sharkey20b32272013-09-03 15:25:52 -07001003 }
1004 }
1005
Steve McKayef280152015-06-11 10:10:49 -07001006 @Override
1007 public void onBindViewHolder(DocumentHolder holder, int position) {
1008
1009 final Context context = getContext();
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001010 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkey9656a532013-09-13 13:42:19 -07001011 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
Jeff Sharkey873daa32013-08-18 17:38:20 -07001012 final RootsCache roots = DocumentsApplication.getRootsCache(context);
1013 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1014 context, mThumbSize);
1015
Ben Kwa24be5d32015-08-27 16:04:46 -07001016 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -07001017 checkNotNull(cursor, "Cursor cannot be null.");
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001018
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001019 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
1020 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001021 final String docId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
1022 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
1023 final String docDisplayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
1024 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
1025 final int docIcon = getCursorInt(cursor, Document.COLUMN_ICON);
1026 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
1027 final String docSummary = getCursorString(cursor, Document.COLUMN_SUMMARY);
1028 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001029
Steve McKayef280152015-06-11 10:10:49 -07001030 holder.docId = docId;
1031 final View itemView = holder.view;
Ben Kwa24be5d32015-08-27 16:04:46 -07001032 itemView.setActivated(mModel.isSelected(position));
Jeff Sharkey9656a532013-09-13 13:42:19 -07001033
Steve McKayef280152015-06-11 10:10:49 -07001034 final View line1 = itemView.findViewById(R.id.line1);
1035 final View line2 = itemView.findViewById(R.id.line2);
1036
1037 final ImageView iconMime = (ImageView) itemView.findViewById(R.id.icon_mime);
1038 final ImageView iconThumb = (ImageView) itemView.findViewById(R.id.icon_thumb);
1039 final TextView title = (TextView) itemView.findViewById(android.R.id.title);
1040 final ImageView icon1 = (ImageView) itemView.findViewById(android.R.id.icon1);
1041 final ImageView icon2 = (ImageView) itemView.findViewById(android.R.id.icon2);
1042 final TextView summary = (TextView) itemView.findViewById(android.R.id.summary);
1043 final TextView date = (TextView) itemView.findViewById(R.id.date);
1044 final TextView size = (TextView) itemView.findViewById(R.id.size);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001045
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001046 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001047 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001048 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001049 iconThumb.setTag(null);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001050 }
1051
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001052 iconMime.animate().cancel();
1053 iconThumb.animate().cancel();
1054
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001055 final boolean supportsThumbnail = (docFlags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -07001056 final boolean allowThumbnail = (state.derivedMode == MODE_GRID)
Jeff Sharkey9656a532013-09-13 13:42:19 -07001057 || MimePredicate.mimeMatches(MimePredicate.VISUAL_MIMES, docMimeType);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -07001058 final boolean showThumbnail = supportsThumbnail && allowThumbnail && !mSvelteRecents;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001059
Jeff Sharkey7e544612014-08-29 15:38:27 -07001060 final boolean enabled = isDocumentEnabled(docMimeType, docFlags);
1061 final float iconAlpha = (state.derivedMode == MODE_LIST && !enabled) ? 0.5f : 1f;
1062
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001063 boolean cacheHit = false;
Jeff Sharkey9656a532013-09-13 13:42:19 -07001064 if (showThumbnail) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001065 final Uri uri = DocumentsContract.buildDocumentUri(docAuthority, docId);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001066 final Bitmap cachedResult = thumbs.get(uri);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001067 if (cachedResult != null) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001068 iconThumb.setImageBitmap(cachedResult);
1069 cacheHit = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001070 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001071 iconThumb.setImageDrawable(null);
Steve McKayef280152015-06-11 10:10:49 -07001072 // TODO: Hang this off DocumentHolder?
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001073 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
Jeff Sharkey7e544612014-08-29 15:38:27 -07001074 uri, iconMime, iconThumb, mThumbSize, iconAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001075 iconThumb.setTag(task);
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001076 ProviderExecutor.forAuthority(docAuthority).execute(task);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001077 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001078 }
1079
1080 // Always throw MIME icon into place, even when a thumbnail is being
1081 // loaded in background.
1082 if (cacheHit) {
1083 iconMime.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001084 iconMime.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001085 iconThumb.setAlpha(1f);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001086 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001087 iconMime.setAlpha(1f);
1088 iconThumb.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -07001089 iconThumb.setImageDrawable(null);
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001090 iconMime.setImageDrawable(
Steve McKayef280152015-06-11 10:10:49 -07001091 getDocumentIcon(mContext, docAuthority, docId, docMimeType, docIcon, state));
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001092 }
1093
Jeff Sharkey9656a532013-09-13 13:42:19 -07001094 boolean hasLine1 = false;
Jeff Sharkey42d26792013-09-06 13:22:09 -07001095 boolean hasLine2 = false;
1096
Jeff Sharkey9656a532013-09-13 13:42:19 -07001097 final boolean hideTitle = (state.derivedMode == MODE_GRID) && mHideGridTitles;
1098 if (!hideTitle) {
1099 title.setText(docDisplayName);
1100 hasLine1 = true;
1101 }
1102
1103 Drawable iconDrawable = null;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001104 if (mType == TYPE_RECENT_OPEN) {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001105 // We've already had to enumerate roots before any results can
1106 // be shown, so this will never block.
1107 final RootInfo root = roots.getRootBlocking(docAuthority, docRootId);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001108 if (state.derivedMode == MODE_GRID) {
Steve McKayef280152015-06-11 10:10:49 -07001109 iconDrawable = root.loadGridIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001110 } else {
Steve McKayef280152015-06-11 10:10:49 -07001111 iconDrawable = root.loadIcon(mContext);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -07001112 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001113
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001114 if (summary != null) {
1115 final boolean alwaysShowSummary = getResources()
1116 .getBoolean(R.bool.always_show_summary);
1117 if (alwaysShowSummary) {
1118 summary.setText(root.getDirectoryString());
1119 summary.setVisibility(View.VISIBLE);
1120 hasLine2 = true;
1121 } else {
Jeff Sharkey8b997042013-09-19 15:25:56 -07001122 if (iconDrawable != null && roots.isIconUniqueBlocking(root)) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001123 // No summary needed if icon speaks for itself
1124 summary.setVisibility(View.INVISIBLE);
1125 } else {
1126 summary.setText(root.getDirectoryString());
1127 summary.setVisibility(View.VISIBLE);
1128 summary.setTextAlignment(TextView.TEXT_ALIGNMENT_TEXT_END);
1129 hasLine2 = true;
1130 }
1131 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001132 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001133 } else {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001134 // Directories showing thumbnails in grid mode get a little icon
1135 // hint to remind user they're a directory.
1136 if (Document.MIME_TYPE_DIR.equals(docMimeType) && state.derivedMode == MODE_GRID
1137 && showThumbnail) {
Steve McKayef280152015-06-11 10:10:49 -07001138 iconDrawable = IconUtils.applyTintAttr(mContext, R.drawable.ic_doc_folder,
Jeff Sharkey34c54092014-08-08 13:08:56 -07001139 android.R.attr.textColorPrimaryInverse);
Jeff Sharkey9656a532013-09-13 13:42:19 -07001140 }
1141
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001142 if (summary != null) {
1143 if (docSummary != null) {
1144 summary.setText(docSummary);
1145 summary.setVisibility(View.VISIBLE);
1146 hasLine2 = true;
1147 } else {
1148 summary.setVisibility(View.INVISIBLE);
1149 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -07001150 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001151 }
1152
Jeff Sharkey9656a532013-09-13 13:42:19 -07001153 if (icon1 != null) icon1.setVisibility(View.GONE);
1154 if (icon2 != null) icon2.setVisibility(View.GONE);
1155
1156 if (iconDrawable != null) {
1157 if (hasLine1) {
1158 icon1.setVisibility(View.VISIBLE);
1159 icon1.setImageDrawable(iconDrawable);
1160 } else {
1161 icon2.setVisibility(View.VISIBLE);
1162 icon2.setImageDrawable(iconDrawable);
1163 }
1164 }
1165
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001166 if (docLastModified == -1) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001167 date.setText(null);
1168 } else {
Steve McKayef280152015-06-11 10:10:49 -07001169 date.setText(formatTime(mContext, docLastModified));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001170 hasLine2 = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001171 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001172
1173 if (state.showSize) {
1174 size.setVisibility(View.VISIBLE);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001175 if (Document.MIME_TYPE_DIR.equals(docMimeType) || docSize == -1) {
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001176 size.setText(null);
1177 } else {
Steve McKayef280152015-06-11 10:10:49 -07001178 size.setText(Formatter.formatFileSize(mContext, docSize));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001179 hasLine2 = true;
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001180 }
1181 } else {
1182 size.setVisibility(View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001183 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001184
Jeff Sharkey9656a532013-09-13 13:42:19 -07001185 if (line1 != null) {
1186 line1.setVisibility(hasLine1 ? View.VISIBLE : View.GONE);
1187 }
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001188 if (line2 != null) {
1189 line2.setVisibility(hasLine2 ? View.VISIBLE : View.GONE);
1190 }
Jeff Sharkey42d26792013-09-06 13:22:09 -07001191
Steve McKayef280152015-06-11 10:10:49 -07001192 setEnabledRecursive(itemView, enabled);
Jeff Sharkey7e544612014-08-29 15:38:27 -07001193
1194 iconMime.setAlpha(iconAlpha);
1195 iconThumb.setAlpha(iconAlpha);
1196 if (icon1 != null) icon1.setAlpha(iconAlpha);
1197 if (icon2 != null) icon2.setAlpha(iconAlpha);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001198
Steve McKay8e258c62015-05-06 14:27:57 -07001199 if (DEBUG_ENABLE_DND) {
Steve McKayef280152015-06-11 10:10:49 -07001200 setupDragAndDropOnDocumentView(itemView, cursor);
Steve McKay8e258c62015-05-06 14:27:57 -07001201 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001202 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001203
Steve McKay351a7492015-08-04 10:11:01 -07001204 @Override
Steve McKayef280152015-06-11 10:10:49 -07001205 public int getItemCount() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001206 return mModel.getItemCount();
Steve McKayef280152015-06-11 10:10:49 -07001207 // return mCursorCount + mFooters.size();
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001208 }
1209
1210 @Override
Jeff Sharkey20b32272013-09-03 15:25:52 -07001211 public int getItemViewType(int position) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001212 final int itemCount = mModel.getItemCount();
1213 if (position < itemCount) {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001214 return 0;
1215 } else {
Ben Kwa24be5d32015-08-27 16:04:46 -07001216 position -= itemCount;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001217 return mFooters.get(position).getItemViewType();
Jeff Sharkey20b32272013-09-03 15:25:52 -07001218 }
1219 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001220 }
1221
1222 private static String formatTime(Context context, long when) {
1223 // TODO: DateUtils should make this easier
1224 Time then = new Time();
1225 then.set(when);
1226 Time now = new Time();
1227 now.setToNow();
1228
1229 int flags = DateUtils.FORMAT_NO_NOON | DateUtils.FORMAT_NO_MIDNIGHT
1230 | DateUtils.FORMAT_ABBREV_ALL;
1231
1232 if (then.year != now.year) {
1233 flags |= DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_DATE;
1234 } else if (then.yearDay != now.yearDay) {
1235 flags |= DateUtils.FORMAT_SHOW_DATE;
1236 } else {
1237 flags |= DateUtils.FORMAT_SHOW_TIME;
1238 }
1239
1240 return DateUtils.formatDateTime(context, when, flags);
1241 }
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001242
1243 private String findCommonMimeType(List<String> mimeTypes) {
1244 String[] commonType = mimeTypes.get(0).split("/");
1245 if (commonType.length != 2) {
1246 return "*/*";
1247 }
1248
1249 for (int i = 1; i < mimeTypes.size(); i++) {
1250 String[] type = mimeTypes.get(i).split("/");
1251 if (type.length != 2) continue;
1252
1253 if (!commonType[1].equals(type[1])) {
1254 commonType[1] = "*";
1255 }
1256
1257 if (!commonType[0].equals(type[0])) {
1258 commonType[0] = "*";
1259 commonType[1] = "*";
1260 break;
1261 }
1262 }
1263
1264 return commonType[0] + "/" + commonType[1];
1265 }
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001266
1267 private void setEnabledRecursive(View v, boolean enabled) {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001268 if (v == null) return;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001269 if (v.isEnabled() == enabled) return;
1270 v.setEnabled(enabled);
1271
1272 if (v instanceof ViewGroup) {
1273 final ViewGroup vg = (ViewGroup) v;
1274 for (int i = vg.getChildCount() - 1; i >= 0; i--) {
1275 setEnabledRecursive(vg.getChildAt(i), enabled);
1276 }
1277 }
1278 }
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001279
1280 private boolean isDocumentEnabled(String docMimeType, int docFlags) {
1281 final State state = getDisplayState(DirectoryFragment.this);
1282
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001283 // Directories are always enabled
1284 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1285 return true;
1286 }
1287
Jeff Sharkey783ebc22013-09-26 19:42:52 -07001288 // Read-only files are disabled when creating
1289 if (state.action == ACTION_CREATE && (docFlags & Document.FLAG_SUPPORTS_WRITE) == 0) {
1290 return false;
1291 }
1292
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001293 return MimePredicate.mimeMatches(state.acceptMimes, docMimeType);
1294 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001295
Steve McKay1f199482015-05-20 15:58:42 -07001296 private void copyFromClipboard() {
1297 new AsyncTask<Void, Void, List<DocumentInfo>>() {
1298
1299 @Override
1300 protected List<DocumentInfo> doInBackground(Void... params) {
1301 return mClipper.getClippedDocuments();
1302 }
1303
1304 @Override
1305 protected void onPostExecute(List<DocumentInfo> docs) {
1306 DocumentInfo destination =
1307 ((BaseActivity) getActivity()).getCurrentDirectory();
1308 copyDocuments(docs, destination);
1309 }
1310 }.execute();
Steve McKay0599a442015-05-05 14:50:00 -07001311 }
1312
Steve McKay1f199482015-05-20 15:58:42 -07001313 private void copyFromClipData(final ClipData clipData, final DocumentInfo destination) {
Steve McKayef280152015-06-11 10:10:49 -07001314 checkNotNull(clipData);
Steve McKay1f199482015-05-20 15:58:42 -07001315 new AsyncTask<Void, Void, List<DocumentInfo>>() {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001316
Steve McKay1f199482015-05-20 15:58:42 -07001317 @Override
1318 protected List<DocumentInfo> doInBackground(Void... params) {
1319 return mClipper.getDocumentsFromClipData(clipData);
1320 }
1321
1322 @Override
1323 protected void onPostExecute(List<DocumentInfo> docs) {
1324 copyDocuments(docs, destination);
1325 }
1326 }.execute();
1327 }
1328
1329 private void copyDocuments(final List<DocumentInfo> docs, final DocumentInfo destination) {
1330 if (!canCopy(docs, destination)) {
1331 Toast.makeText(
1332 getActivity(),
1333 R.string.clipboard_files_cannot_paste, Toast.LENGTH_SHORT).show();
Steve McKay0599a442015-05-05 14:50:00 -07001334 return;
1335 }
1336
Steve McKay1f199482015-05-20 15:58:42 -07001337 if (docs.isEmpty()) {
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001338 return;
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001339 }
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001340
Steve McKay1f199482015-05-20 15:58:42 -07001341 final DocumentStack curStack = getDisplayState(DirectoryFragment.this).stack;
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001342 DocumentStack tmpStack = new DocumentStack();
Steve McKay1f199482015-05-20 15:58:42 -07001343 if (destination != null) {
1344 tmpStack.push(destination);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001345 tmpStack.addAll(curStack);
1346 } else {
1347 tmpStack = curStack;
1348 }
1349
Steve McKay1f199482015-05-20 15:58:42 -07001350 CopyService.start(getActivity(), docs, tmpStack, CopyService.TRANSFER_MODE_COPY);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001351 }
1352
1353 private ClipData getClipDataFromDocuments(List<DocumentInfo> docs) {
1354 Context context = getActivity();
1355 final ContentResolver resolver = context.getContentResolver();
1356 ClipData clipData = null;
1357 for (DocumentInfo doc : docs) {
1358 final Uri uri = DocumentsContract.buildDocumentUri(doc.authority, doc.documentId);
1359 if (clipData == null) {
Vladislav Kaznacheeve16887a2015-05-05 12:09:47 -07001360 // TODO: figure out what this string should be.
1361 // Currently it is not displayed anywhere in the UI, but this might change.
1362 final String label = "";
1363 clipData = ClipData.newUri(resolver, label, uri);
Vladislav Kaznacheev89b90332015-05-01 13:46:57 -07001364 } else {
1365 // TODO: update list of mime types in ClipData.
1366 clipData.addItem(new ClipData.Item(uri));
1367 }
1368 }
1369 return clipData;
1370 }
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001371
Steve McKay1f199482015-05-20 15:58:42 -07001372 void copySelectedToClipboard() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001373 Selection sel = mModel.getSelection(new Selection());
Steve McKayef280152015-06-11 10:10:49 -07001374 copySelectionToClipboard(sel);
Steve McKay9276f3b2015-05-27 16:11:42 -07001375 }
Steve McKay0599a442015-05-05 14:50:00 -07001376
Steve McKayef280152015-06-11 10:10:49 -07001377 void copySelectionToClipboard(Selection items) {
Steve McKay9276f3b2015-05-27 16:11:42 -07001378 new GetDocumentsTask() {
1379 @Override
1380 void onDocumentsReady(List<DocumentInfo> docs) {
1381 mClipper.clipDocuments(docs);
Steve McKay1f199482015-05-20 15:58:42 -07001382 Activity activity = getActivity();
1383 Toast.makeText(activity,
1384 activity.getResources().getQuantityString(
1385 R.plurals.clipboard_files_clipped, docs.size(), docs.size()),
1386 Toast.LENGTH_SHORT).show();
Steve McKay9276f3b2015-05-27 16:11:42 -07001387 }
Steve McKayef280152015-06-11 10:10:49 -07001388 }.execute(items);
Steve McKay0599a442015-05-05 14:50:00 -07001389 }
1390
1391 void pasteFromClipboard() {
Steve McKay1f199482015-05-20 15:58:42 -07001392 copyFromClipboard();
1393 getActivity().invalidateOptionsMenu();
Steve McKay0599a442015-05-05 14:50:00 -07001394 }
1395
Steve McKay0599a442015-05-05 14:50:00 -07001396 /**
1397 * Returns true if the list of files can be copied to destination. Note that this
1398 * is a policy check only. Currently the method does not attempt to verify
1399 * available space or any other environmental aspects possibly resulting in
1400 * failure to copy.
1401 *
1402 * @return true if the list of files can be copied to destination.
1403 */
1404 boolean canCopy(List<DocumentInfo> files, DocumentInfo dest) {
1405 BaseActivity activity = (BaseActivity)getActivity();
1406
1407 final RootInfo root = activity.getCurrentRoot();
1408
1409 // Can't copy folders to Downloads.
1410 if (root.isDownloads()) {
1411 for (DocumentInfo docs : files) {
1412 if (docs.isDirectory()) {
1413 return false;
1414 }
1415 }
1416 }
1417
1418 return dest != null && dest.isDirectory() && dest.isCreateSupported();
1419 }
1420
1421 void selectAllFiles() {
Ben Kwa24be5d32015-08-27 16:04:46 -07001422 boolean changed = mModel.selectAll();
Steve McKay9459a7c2015-07-24 13:14:20 -07001423 if (changed) {
1424 updateDisplayState();
1425 }
Steve McKay0599a442015-05-05 14:50:00 -07001426 }
1427
Steve McKayef280152015-06-11 10:10:49 -07001428 private void setupDragAndDropOnDirectoryView(View view) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001429 // Listen for drops on non-directory items and empty space.
1430 view.setOnDragListener(mOnDragListener);
1431 }
1432
1433 private void setupDragAndDropOnDocumentView(View view, Cursor cursor) {
1434 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
1435 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1436 // Make a directory item a drop target. Drop on non-directories and empty space
1437 // is handled at the list/grid view level.
1438 view.setOnDragListener(mOnDragListener);
1439 }
1440
1441 // Temporary: attaching the listener to the title only.
1442 // Attaching to the entire item conflicts with the item long click handler responsible
1443 // for item selection.
1444 final View title = view.findViewById(android.R.id.title);
1445 title.setOnLongClickListener(mLongClickListener);
1446 }
1447
1448 private View.OnDragListener mOnDragListener = new View.OnDragListener() {
1449 @Override
1450 public boolean onDrag(View v, DragEvent event) {
1451 switch (event.getAction()) {
1452 case DragEvent.ACTION_DRAG_STARTED:
1453 // TODO: Check if the event contains droppable data.
1454 return true;
1455
1456 // TODO: Highlight potential drop target directory?
1457 // TODO: Expand drop target directory on hover?
1458 case DragEvent.ACTION_DRAG_ENTERED:
1459 case DragEvent.ACTION_DRAG_LOCATION:
1460 case DragEvent.ACTION_DRAG_EXITED:
1461 case DragEvent.ACTION_DRAG_ENDED:
1462 return true;
1463
1464 case DragEvent.ACTION_DROP:
Steve McKayef280152015-06-11 10:10:49 -07001465 int dstPosition = mRecView.getChildAdapterPosition(v);
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001466 DocumentInfo dstDir = null;
1467 if (dstPosition != android.widget.AdapterView.INVALID_POSITION) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001468 Cursor dstCursor = mModel.getItem(dstPosition);
Steve McKayef280152015-06-11 10:10:49 -07001469 checkNotNull(dstCursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001470 dstDir = DocumentInfo.fromDirectoryCursor(dstCursor);
1471 // TODO: Do not drop into the directory where the documents came from.
1472 }
1473 copyFromClipData(event.getClipData(), dstDir);
1474 return true;
1475 }
1476 return false;
1477 }
1478 };
1479
1480 private View.OnLongClickListener mLongClickListener = new View.OnLongClickListener() {
1481 @Override
1482 public boolean onLongClick(View v) {
1483 final List<DocumentInfo> docs = getDraggableDocuments(v);
1484 if (docs.isEmpty()) {
1485 return false;
1486 }
1487 v.startDrag(
1488 getClipDataFromDocuments(docs),
1489 new DrawableShadowBuilder(getDragShadowIcon(docs)),
1490 null,
1491 View.DRAG_FLAG_GLOBAL
1492 );
1493 return true;
1494 }
1495 };
1496
1497 private List<DocumentInfo> getDraggableDocuments(View currentItemView) {
Steve McKayef280152015-06-11 10:10:49 -07001498 int position = mRecView.getChildAdapterPosition(currentItemView);
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001499 if (position == android.widget.AdapterView.INVALID_POSITION) {
1500 return Collections.EMPTY_LIST;
1501 }
1502
Ben Kwa24be5d32015-08-27 16:04:46 -07001503 final List<DocumentInfo> selectedDocs = mModel.getSelectedDocuments();
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001504 if (!selectedDocs.isEmpty()) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001505 if (!mModel.isSelected(position)) {
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001506 // There is a selection that does not include the current item, drag nothing.
1507 return Collections.EMPTY_LIST;
1508 }
1509 return selectedDocs;
1510 }
1511
Ben Kwa24be5d32015-08-27 16:04:46 -07001512 final Cursor cursor = mModel.getItem(position);
Steve McKayef280152015-06-11 10:10:49 -07001513 checkNotNull(cursor, "Cursor cannot be null.");
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001514 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Steve McKayfefcd702015-08-20 16:19:38 +00001515
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001516 return Lists.newArrayList(doc);
1517 }
1518
1519 private Drawable getDragShadowIcon(List<DocumentInfo> docs) {
1520 if (docs.size() == 1) {
1521 final DocumentInfo doc = docs.get(0);
1522 return getDocumentIcon(getActivity(), doc.authority, doc.documentId,
1523 doc.mimeType, doc.icon, getDisplayState(this));
1524 }
1525 return getActivity().getDrawable(R.drawable.ic_doc_generic);
1526 }
1527
1528 public static Drawable getDocumentIcon(Context context, String docAuthority, String docId,
1529 String docMimeType, int docIcon, State state) {
1530 if (docIcon != 0) {
1531 return IconUtils.loadPackageIcon(context, docAuthority, docIcon);
1532 } else {
1533 return IconUtils.loadMimeIcon(context, docMimeType, docAuthority, docId,
1534 state.derivedMode);
1535 }
1536 }
1537
Steve McKayef280152015-06-11 10:10:49 -07001538 private static class ThumbnailAsyncTask extends AsyncTask<Uri, Void, Bitmap>
1539 implements Preemptable {
1540 private final Uri mUri;
1541 private final ImageView mIconMime;
1542 private final ImageView mIconThumb;
1543 private final Point mThumbSize;
1544 private final float mTargetAlpha;
1545 private final CancellationSignal mSignal;
1546
1547 public ThumbnailAsyncTask(Uri uri, ImageView iconMime, ImageView iconThumb, Point thumbSize,
1548 float targetAlpha) {
1549 mUri = uri;
1550 mIconMime = iconMime;
1551 mIconThumb = iconThumb;
1552 mThumbSize = thumbSize;
1553 mTargetAlpha = targetAlpha;
1554 mSignal = new CancellationSignal();
1555 }
1556
1557 @Override
1558 public void preempt() {
1559 cancel(false);
1560 mSignal.cancel();
1561 }
1562
1563 @Override
1564 protected Bitmap doInBackground(Uri... params) {
1565 if (isCancelled()) return null;
1566
1567 final Context context = mIconThumb.getContext();
1568 final ContentResolver resolver = context.getContentResolver();
1569
1570 ContentProviderClient client = null;
1571 Bitmap result = null;
1572 try {
1573 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1574 resolver, mUri.getAuthority());
1575 result = DocumentsContract.getDocumentThumbnail(client, mUri, mThumbSize, mSignal);
1576 if (result != null) {
1577 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1578 context, mThumbSize);
1579 thumbs.put(mUri, result);
1580 }
1581 } catch (Exception e) {
1582 if (!(e instanceof OperationCanceledException)) {
1583 Log.w(TAG, "Failed to load thumbnail for " + mUri + ": " + e);
1584 }
1585 } finally {
1586 ContentProviderClient.releaseQuietly(client);
1587 }
1588 return result;
1589 }
1590
1591 @Override
1592 protected void onPostExecute(Bitmap result) {
1593 if (mIconThumb.getTag() == this && result != null) {
1594 mIconThumb.setTag(null);
1595 mIconThumb.setImageBitmap(result);
1596
1597 mIconMime.setAlpha(mTargetAlpha);
1598 mIconMime.animate().alpha(0f).start();
1599 mIconThumb.setAlpha(0f);
1600 mIconThumb.animate().alpha(mTargetAlpha).start();
1601 }
1602 }
1603 }
1604
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001605 private class DrawableShadowBuilder extends View.DragShadowBuilder {
1606
1607 private final Drawable mShadow;
1608
1609 private final int mShadowDimension;
1610
1611 public DrawableShadowBuilder(Drawable shadow) {
1612 mShadow = shadow;
1613 mShadowDimension = getResources().getDimensionPixelSize(
1614 R.dimen.drag_shadow_size);
1615 mShadow.setBounds(0, 0, mShadowDimension, mShadowDimension);
1616 }
1617
Ben Kwa24be5d32015-08-27 16:04:46 -07001618 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001619 public void onProvideShadowMetrics(
1620 Point shadowSize, Point shadowTouchPoint) {
1621 shadowSize.set(mShadowDimension, mShadowDimension);
1622 shadowTouchPoint.set(mShadowDimension / 2, mShadowDimension / 2);
1623 }
1624
Ben Kwa24be5d32015-08-27 16:04:46 -07001625 @Override
Vladislav Kaznacheevb6da7222015-05-01 14:18:57 -07001626 public void onDrawShadow(Canvas canvas) {
1627 mShadow.draw(canvas);
1628 }
1629 }
Steve McKay1f199482015-05-20 15:58:42 -07001630
1631 private FragmentTuner pickFragmentTuner(final State state) {
1632 return state.action == ACTION_BROWSE_ALL
Steve McKay0fbfc652015-08-20 16:48:49 -07001633 ? new FilesTuner()
Steve McKay1f199482015-05-20 15:58:42 -07001634 : new DefaultTuner(state);
1635 }
1636
1637 /**
1638 * Interface for specializing the Fragment for the "host" Activity.
1639 * Feel free to expand the role of this class to handle other specializations.
1640 */
1641 private interface FragmentTuner {
Steve McKay4f4232d2015-07-22 12:13:46 -07001642 void updateActionMenu(Menu menu, int dirType, boolean canDelete);
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001643 void afterActivityCreated(DirectoryFragment fragment);
Steve McKay1f199482015-05-20 15:58:42 -07001644 }
1645
1646 /**
Steve McKay9276f3b2015-05-27 16:11:42 -07001647 * Abstract task providing support for loading documents *off*
1648 * the main thread. And if it isn't obvious, creating a list
1649 * of documents (especially large lists) can be pretty expensive.
1650 */
1651 private abstract class GetDocumentsTask
Steve McKayef280152015-06-11 10:10:49 -07001652 extends AsyncTask<Selection, Void, List<DocumentInfo>> {
Steve McKay9276f3b2015-05-27 16:11:42 -07001653 @Override
Steve McKayef280152015-06-11 10:10:49 -07001654 protected final List<DocumentInfo> doInBackground(Selection... selected) {
Ben Kwa24be5d32015-08-27 16:04:46 -07001655 return mModel.getDocuments(selected[0]);
Steve McKay9276f3b2015-05-27 16:11:42 -07001656 }
1657
1658 @Override
1659 protected final void onPostExecute(List<DocumentInfo> docs) {
1660 onDocumentsReady(docs);
1661 }
1662
1663 abstract void onDocumentsReady(List<DocumentInfo> docs);
1664 }
1665
1666 /**
Steve McKay1f199482015-05-20 15:58:42 -07001667 * Provides support for Platform specific specializations of DirectoryFragment.
1668 */
1669 private static final class DefaultTuner implements FragmentTuner {
1670
1671 private final State mState;
1672
1673 public DefaultTuner(State state) {
1674 mState = state;
1675 }
1676
1677 @Override
Steve McKay4f4232d2015-07-22 12:13:46 -07001678 public void updateActionMenu(Menu menu, int dirType, boolean canDelete) {
Steve McKay1f199482015-05-20 15:58:42 -07001679 Preconditions.checkState(mState.action != ACTION_BROWSE_ALL);
1680
1681 final MenuItem open = menu.findItem(R.id.menu_open);
1682 final MenuItem share = menu.findItem(R.id.menu_share);
1683 final MenuItem delete = menu.findItem(R.id.menu_delete);
1684 final MenuItem copyTo = menu.findItem(R.id.menu_copy_to);
1685 final MenuItem moveTo = menu.findItem(R.id.menu_move_to);
1686 final MenuItem copyToClipboard = menu.findItem(R.id.menu_copy_to_clipboard);
1687
1688 final boolean manageOrBrowse = (mState.action == ACTION_MANAGE
1689 || mState.action == ACTION_BROWSE);
1690
1691 open.setVisible(!manageOrBrowse);
1692 share.setVisible(manageOrBrowse);
Steve McKay4f4232d2015-07-22 12:13:46 -07001693 delete.setVisible(manageOrBrowse && canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001694 // Disable copying from the Recents view.
1695 copyTo.setVisible(manageOrBrowse && dirType != TYPE_RECENT_OPEN);
1696 moveTo.setVisible(SystemProperties.getBoolean("debug.documentsui.enable_move", false));
1697
Steve McKay0fbfc652015-08-20 16:48:49 -07001698 // Only shown in files mode.
Steve McKay1f199482015-05-20 15:58:42 -07001699 copyToClipboard.setVisible(false);
1700 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001701
1702 @Override
1703 public void afterActivityCreated(DirectoryFragment fragment) {}
Steve McKay1f199482015-05-20 15:58:42 -07001704 }
1705
1706 /**
Steve McKay0fbfc652015-08-20 16:48:49 -07001707 * Provides support for Files activity specific specializations of DirectoryFragment.
Steve McKay1f199482015-05-20 15:58:42 -07001708 */
Steve McKay0fbfc652015-08-20 16:48:49 -07001709 private static final class FilesTuner implements FragmentTuner {
Steve McKay1f199482015-05-20 15:58:42 -07001710 @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 menu.findItem(R.id.menu_share).setVisible(true);
Steve McKay4f4232d2015-07-22 12:13:46 -07001713 menu.findItem(R.id.menu_delete).setVisible(canDelete);
Steve McKay1f199482015-05-20 15:58:42 -07001714 menu.findItem(R.id.menu_copy_to_clipboard).setVisible(true);
1715
1716 menu.findItem(R.id.menu_open).setVisible(false);
1717 menu.findItem(R.id.menu_copy_to).setVisible(false);
1718 menu.findItem(R.id.menu_move_to).setVisible(false);
1719 }
Kyle Horimoto426bd0d2015-07-29 15:33:49 -07001720
1721 @Override
1722 public void afterActivityCreated(DirectoryFragment fragment) {
1723 new BandSelectManager(fragment.mRecView, fragment.mSelectionManager);
1724 }
Steve McKay1f199482015-05-20 15:58:42 -07001725 }
Ben Kwa24be5d32015-08-27 16:04:46 -07001726
1727 /**
1728 * The data model for the current loaded directory.
1729 */
1730 private final class Model implements DocumentContext {
1731 private MultiSelectManager mSelectionManager;
1732 private int mCursorCount;
1733 private boolean mIsLoading;
1734 @Nullable private Cursor mCursor;
1735 @Nullable private String info;
1736 @Nullable private String error;
1737
1738 /**
1739 * Sets the selection manager used by the model.
1740 * TODO: the model should instantiate the selection manager. See onActivityCreated.
1741 */
1742 void setSelectionManager(MultiSelectManager mgr) {
1743 mSelectionManager = mgr;
1744 }
1745
1746 /**
1747 * Selects all files in the current directory.
1748 * @return true if the selection state changed for any files.
1749 */
1750 boolean selectAll() {
1751 return mSelectionManager.setItemsSelected(0, mCursorCount, true);
1752 }
1753
1754 /**
1755 * Clones the current selection into the given Selection object.
1756 * @param selection
1757 * @return The selection that was passed in, for convenience.
1758 */
1759 Selection getSelection(Selection selection) {
1760 return mSelectionManager.getSelection(selection);
1761 }
1762
1763 /**
1764 * @return The current selection (the live instance, not a copy).
1765 */
1766 Selection getSelection() {
1767 return mSelectionManager.getSelection();
1768 }
1769
1770 boolean isSelected(int position) {
1771 return mSelectionManager.getSelection().contains(position);
1772 }
1773
1774 void clearSelection() {
1775 mSelectionManager.clearSelection();
1776 }
1777
1778 void update(DirectoryResult result) {
1779 if (DEBUG) Log.i(TAG, "Updating model with new result set.");
1780
1781 if (result == null) {
1782 mCursor = null;
1783 mCursorCount = 0;
1784 info = null;
1785 error = null;
1786 mIsLoading = false;
1787 return;
1788 }
1789
1790 if (result.exception != null) {
1791 Log.e(TAG, "Error while loading directory contents", result.exception);
1792 error = getString(R.string.query_error);
1793 return;
1794 }
1795
1796 mCursor = result.cursor;
1797 mCursorCount = mCursor.getCount();
1798
1799 final Bundle extras = mCursor.getExtras();
1800 if (extras != null) {
1801 info = extras.getString(DocumentsContract.EXTRA_INFO);
1802 error = extras.getString(DocumentsContract.EXTRA_ERROR);
1803 mIsLoading = extras.getBoolean(DocumentsContract.EXTRA_LOADING, false);
1804 }
1805 }
1806
1807 private int getItemCount() {
1808 return mCursorCount;
1809 }
1810
1811 private Cursor getItem(int position) {
1812 if (position >= mCursorCount) {
1813 throw new IndexOutOfBoundsException("Attempt to retrieve " + position + " of " +
1814 mCursorCount + " items");
1815 }
1816
1817 mCursor.moveToPosition(position);
1818 return mCursor;
1819 }
1820
1821 private boolean isEmpty() {
1822 return mCursorCount == 0;
1823 }
1824
1825 private boolean isLoading() {
1826 return mIsLoading;
1827 }
1828
1829 private List<DocumentInfo> getSelectedDocuments() {
1830 Selection sel = getSelection(new Selection());
1831 return getDocuments(sel);
1832 }
1833
1834 private List<DocumentInfo> getDocuments(Selection items) {
1835 if (items == null || items.size() == 0) {
1836 return new ArrayList<>(0);
1837 }
1838
1839 final List<DocumentInfo> docs = new ArrayList<>(items.size());
1840 final int size = items.size();
1841 for (int i = 0; i < size; i++) {
1842 final Cursor cursor = getItem(items.get(i));
1843 checkNotNull(cursor, "Cursor cannot be null.");
1844 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
1845 docs.add(doc);
1846 }
1847 return docs;
1848 }
1849
1850 @Override
1851 public Cursor getCursor() {
1852 if (Looper.myLooper() != Looper.getMainLooper()) {
1853 throw new IllegalStateException("Can't call getCursor from non-main thread.");
1854 }
1855 return mCursor;
1856 }
1857 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001858}