blob: f4be9c5252b7136d7e4ae9c29109a4baeea6dc95 [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;
Jeff Sharkey311a7d82015-04-11 21:27:21 -070027import static com.android.documentsui.DocumentsActivity.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;
Ben Kwaf5858932015-04-07 15:43:39 -070031import android.app.Activity;
Jeff Sharkeyf63b7772013-10-01 17:57:41 -070032import android.app.ActivityManager;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070033import android.app.Fragment;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070034import android.app.FragmentManager;
35import android.app.FragmentTransaction;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070036import android.app.LoaderManager.LoaderCallbacks;
Jeff Sharkey3fd11772013-09-30 14:26:27 -070037import android.content.ContentProviderClient;
Jeff Sharkey873daa32013-08-18 17:38:20 -070038import android.content.ContentResolver;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070039import android.content.ContentValues;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070040import android.content.Context;
Jeff Sharkey873daa32013-08-18 17:38:20 -070041import android.content.Intent;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070042import android.content.Loader;
Jeff Sharkey083d7e12014-07-27 21:01:45 -070043import android.content.res.Resources;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070044import android.database.Cursor;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070045import android.graphics.Bitmap;
46import android.graphics.Point;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070047import android.graphics.drawable.Drawable;
Jeff Sharkeydb884f52013-09-21 15:11:19 -070048import android.graphics.drawable.InsetDrawable;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070049import android.net.Uri;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070050import android.os.AsyncTask;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070051import android.os.Bundle;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070052import android.os.CancellationSignal;
Jeff Sharkeye39a89b2013-10-29 11:56:37 -070053import android.os.OperationCanceledException;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070054import android.os.Parcelable;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070055import android.provider.DocumentsContract;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -070056import android.provider.DocumentsContract.Document;
Jeff Sharkey6d579272015-06-11 09:16:19 -070057import android.text.TextUtils;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070058import android.text.format.DateUtils;
Jeff Sharkey2e694f82013-08-06 16:26:14 -070059import android.text.format.Formatter;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -070060import android.text.format.Time;
61import android.util.Log;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -070062import android.util.SparseArray;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070063import android.util.SparseBooleanArray;
64import android.view.ActionMode;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070065import android.view.LayoutInflater;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070066import android.view.Menu;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070067import android.view.MenuItem;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070068import android.view.View;
69import android.view.ViewGroup;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070070import android.widget.AbsListView;
71import android.widget.AbsListView.MultiChoiceModeListener;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -070072import android.widget.AbsListView.RecyclerListener;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070073import android.widget.AdapterView;
74import android.widget.AdapterView.OnItemClickListener;
Jeff Sharkeya5defe32013-08-05 17:56:48 -070075import android.widget.BaseAdapter;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070076import android.widget.GridView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070077import android.widget.ImageView;
78import android.widget.ListView;
79import android.widget.TextView;
Jeff Sharkey873daa32013-08-18 17:38:20 -070080import android.widget.Toast;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -070081
Steve McKayd0a2a2c2015-03-25 14:35:33 -070082import com.android.documentsui.BaseActivity.State;
Jeff Sharkey753a3ae2013-10-22 17:09:44 -070083import com.android.documentsui.ProviderExecutor.Preemptable;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -070084import com.android.documentsui.RecentsProvider.StateColumns;
Jeff Sharkey724deeb2013-08-31 15:02:20 -070085import com.android.documentsui.model.DocumentInfo;
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +090086import com.android.documentsui.model.DocumentStack;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -070087import com.android.documentsui.model.RootInfo;
Jeff Sharkeyc317af82013-07-01 16:56:54 -070088import com.google.android.collect.Lists;
89
90import java.util.ArrayList;
Jeff Sharkeya5defe32013-08-05 17:56:48 -070091import java.util.List;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070092
93/**
94 * Display the documents inside a single directory.
95 */
96public class DirectoryFragment extends Fragment {
97
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -070098 private View mEmptyView;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -070099 private ListView mListView;
100 private GridView mGridView;
101
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700102 private AbsListView mCurrentView;
103
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700104 public static final int TYPE_NORMAL = 1;
105 public static final int TYPE_SEARCH = 2;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700106 public static final int TYPE_RECENT_OPEN = 3;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700107
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700108 public static final int ANIM_NONE = 1;
109 public static final int ANIM_SIDE = 2;
110 public static final int ANIM_DOWN = 3;
111 public static final int ANIM_UP = 4;
112
Ben Kwaf5858932015-04-07 15:43:39 -0700113 public static final int REQUEST_COPY_DESTINATION = 1;
114
Jeff Sharkey5b535922013-08-02 15:55:26 -0700115 private int mType = TYPE_NORMAL;
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700116 private String mStateKey;
Jeff Sharkey5b535922013-08-02 15:55:26 -0700117
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700118 private int mLastMode = MODE_UNKNOWN;
119 private int mLastSortOrder = SORT_ORDER_UNKNOWN;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700120 private boolean mLastShowSize = false;
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700121
Jeff Sharkey9656a532013-09-13 13:42:19 -0700122 private boolean mHideGridTitles = false;
123
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700124 private boolean mSvelteRecents;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700125 private Point mThumbSize;
126
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700127 private DocumentsAdapter mAdapter;
Jeff Sharkey46899c82013-08-18 22:26:48 -0700128 private LoaderCallbacks<DirectoryResult> mCallbacks;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700129
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700130 private static final String EXTRA_TYPE = "type";
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700131 private static final String EXTRA_ROOT = "root";
132 private static final String EXTRA_DOC = "doc";
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700133 private static final String EXTRA_QUERY = "query";
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700134 private static final String EXTRA_IGNORE_STATE = "ignoreState";
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700135
Jeff Sharkeyc0075dc2013-10-25 17:12:49 -0700136 private final int mLoaderId = 42;
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700137
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700138 public static void showNormal(FragmentManager fm, RootInfo root, DocumentInfo doc, int anim) {
139 show(fm, TYPE_NORMAL, root, doc, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700140 }
141
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700142 public static void showSearch(FragmentManager fm, RootInfo root, String query, int anim) {
143 show(fm, TYPE_SEARCH, root, null, query, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700144 }
145
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700146 public static void showRecentsOpen(FragmentManager fm, int anim) {
147 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700148 }
149
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700150 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc,
151 String query, int anim) {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700152 final Bundle args = new Bundle();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700153 args.putInt(EXTRA_TYPE, type);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700154 args.putParcelable(EXTRA_ROOT, root);
155 args.putParcelable(EXTRA_DOC, doc);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700156 args.putString(EXTRA_QUERY, query);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700157
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700158 final FragmentTransaction ft = fm.beginTransaction();
159 switch (anim) {
160 case ANIM_SIDE:
161 args.putBoolean(EXTRA_IGNORE_STATE, true);
162 break;
163 case ANIM_DOWN:
164 args.putBoolean(EXTRA_IGNORE_STATE, true);
165 ft.setCustomAnimations(R.animator.dir_down, R.animator.dir_frozen);
166 break;
167 case ANIM_UP:
168 ft.setCustomAnimations(R.animator.dir_frozen, R.animator.dir_up);
169 break;
170 }
171
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700172 final DirectoryFragment fragment = new DirectoryFragment();
173 fragment.setArguments(args);
174
Jeff Sharkey76112212013-08-06 11:26:10 -0700175 ft.replace(R.id.container_directory, fragment);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700176 ft.commitAllowingStateLoss();
177 }
178
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700179 private static String buildStateKey(RootInfo root, DocumentInfo doc) {
180 final StringBuilder builder = new StringBuilder();
181 builder.append(root != null ? root.authority : "null").append(';');
182 builder.append(root != null ? root.rootId : "null").append(';');
183 builder.append(doc != null ? doc.documentId : "null");
184 return builder.toString();
185 }
186
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700187 public static DirectoryFragment get(FragmentManager fm) {
188 // TODO: deal with multiple directories shown at once
Jeff Sharkey76112212013-08-06 11:26:10 -0700189 return (DirectoryFragment) fm.findFragmentById(R.id.container_directory);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700190 }
191
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700192 @Override
193 public View onCreateView(
194 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
195 final Context context = inflater.getContext();
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700196 final Resources res = context.getResources();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700197 final View view = inflater.inflate(R.layout.fragment_directory, container, false);
198
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700199 mEmptyView = view.findViewById(android.R.id.empty);
200
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700201 mListView = (ListView) view.findViewById(R.id.list);
202 mListView.setOnItemClickListener(mItemListener);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700203 mListView.setMultiChoiceModeListener(mMultiListener);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700204 mListView.setRecyclerListener(mRecycleListener);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700205
Jeff Sharkey083d7e12014-07-27 21:01:45 -0700206 // Indent our list divider to align with text
207 final Drawable divider = mListView.getDivider();
208 final boolean insetLeft = res.getBoolean(R.bool.list_divider_inset_left);
209 final int insetSize = res.getDimensionPixelSize(R.dimen.list_divider_inset);
210 if (insetLeft) {
211 mListView.setDivider(new InsetDrawable(divider, insetSize, 0, 0, 0));
212 } else {
213 mListView.setDivider(new InsetDrawable(divider, 0, 0, insetSize, 0));
214 }
215
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700216 mGridView = (GridView) view.findViewById(R.id.grid);
217 mGridView.setOnItemClickListener(mItemListener);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700218 mGridView.setMultiChoiceModeListener(mMultiListener);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700219 mGridView.setRecyclerListener(mRecycleListener);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700220
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700221 return view;
222 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700223
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700224 @Override
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700225 public void onDestroyView() {
226 super.onDestroyView();
227
228 // Cancel any outstanding thumbnail requests
229 final ViewGroup target = (mListView.getAdapter() != null) ? mListView : mGridView;
230 final int count = target.getChildCount();
231 for (int i = 0; i < count; i++) {
232 final View view = target.getChildAt(i);
233 mRecycleListener.onMovedToScrapHeap(view);
234 }
Jeff Sharkeyfaaeb392013-10-04 14:44:56 -0700235
236 // Tear down any selection in progress
237 mListView.setChoiceMode(AbsListView.CHOICE_MODE_NONE);
238 mGridView.setChoiceMode(AbsListView.CHOICE_MODE_NONE);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700239 }
240
241 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700242 public void onActivityCreated(Bundle savedInstanceState) {
243 super.onActivityCreated(savedInstanceState);
244
245 final Context context = getActivity();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700246 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700247
Jeff Sharkey9656a532013-09-13 13:42:19 -0700248 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
249 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
250
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700251 mAdapter = new DocumentsAdapter();
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700252 mType = getArguments().getInt(EXTRA_TYPE);
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700253 mStateKey = buildStateKey(root, doc);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700254
Jeff Sharkey9656a532013-09-13 13:42:19 -0700255 if (mType == TYPE_RECENT_OPEN) {
256 // Hide titles when showing recents for picking images/videos
257 mHideGridTitles = MimePredicate.mimeMatches(
258 MimePredicate.VISUAL_MIMES, state.acceptMimes);
259 } else {
260 mHideGridTitles = (doc != null) && doc.isGridTitlesHidden();
261 }
262
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700263 final ActivityManager am = (ActivityManager) context.getSystemService(
264 Context.ACTIVITY_SERVICE);
265 mSvelteRecents = am.isLowRamDevice() && (mType == TYPE_RECENT_OPEN);
266
Jeff Sharkey46899c82013-08-18 22:26:48 -0700267 mCallbacks = new LoaderCallbacks<DirectoryResult>() {
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700268 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700269 public Loader<DirectoryResult> onCreateLoader(int id, Bundle args) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700270 final String query = getArguments().getString(EXTRA_QUERY);
Jeff Sharkey46165b52013-07-31 20:53:22 -0700271
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700272 Uri contentsUri;
273 switch (mType) {
274 case TYPE_NORMAL:
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700275 contentsUri = DocumentsContract.buildChildDocumentsUri(
276 doc.authority, doc.documentId);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700277 if (state.action == ACTION_MANAGE) {
278 contentsUri = DocumentsContract.setManageMode(contentsUri);
279 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700280 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700281 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700282 case TYPE_SEARCH:
283 contentsUri = DocumentsContract.buildSearchDocumentsUri(
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700284 root.authority, root.rootId, query);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700285 if (state.action == ACTION_MANAGE) {
286 contentsUri = DocumentsContract.setManageMode(contentsUri);
287 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700288 return new DirectoryLoader(
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700289 context, mType, root, doc, contentsUri, state.userSortOrder);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700290 case TYPE_RECENT_OPEN:
Jeff Sharkey1c903cc2013-09-02 17:19:40 -0700291 final RootsCache roots = DocumentsApplication.getRootsCache(context);
Jeff Sharkey8b997042013-09-19 15:25:56 -0700292 return new RecentLoader(context, roots, state);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700293 default:
294 throw new IllegalStateException("Unknown type " + mType);
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700295 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700296 }
297
298 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700299 public void onLoadFinished(Loader<DirectoryResult> loader, DirectoryResult result) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700300 if (!isAdded()) return;
301
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700302 mAdapter.swapResult(result);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700303
304 // Push latest state up to UI
305 // TODO: if mode change was racing with us, don't overwrite it
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700306 if (result.mode != MODE_UNKNOWN) {
307 state.derivedMode = result.mode;
308 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700309 state.derivedSortOrder = result.sortOrder;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700310 ((BaseActivity) context).onStateChanged();
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700311
312 updateDisplayState();
313
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700314 // When launched into empty recents, show drawer
Steve McKayb68dd222015-04-20 17:18:15 -0700315 if (mType == TYPE_RECENT_OPEN && mAdapter.isEmpty() && !state.stackTouched &&
316 context instanceof DocumentsActivity) {
317 ((DocumentsActivity) context).setRootsDrawerOpen(true);
Jeff Sharkey25f10b32013-10-07 14:08:17 -0700318 }
319
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700320 // Restore any previous instance state
321 final SparseArray<Parcelable> container = state.dirState.remove(mStateKey);
322 if (container != null && !getArguments().getBoolean(EXTRA_IGNORE_STATE, false)) {
323 getView().restoreHierarchyState(container);
324 } else if (mLastSortOrder != state.derivedSortOrder) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700325 mListView.smoothScrollToPosition(0);
326 mGridView.smoothScrollToPosition(0);
327 }
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700328
329 mLastSortOrder = state.derivedSortOrder;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700330 }
331
332 @Override
Jeff Sharkey46899c82013-08-18 22:26:48 -0700333 public void onLoaderReset(Loader<DirectoryResult> loader) {
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700334 mAdapter.swapResult(null);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700335 }
336 };
337
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700338 // Kick off loader at least once
339 getLoaderManager().restartLoader(mLoaderId, null, mCallbacks);
340
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700341 updateDisplayState();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700342 }
343
Jeff Sharkey42d26792013-09-06 13:22:09 -0700344 @Override
Ben Kwaf5858932015-04-07 15:43:39 -0700345 public void onActivityResult(int requestCode, int resultCode, Intent data) {
Ben Kwaf5858932015-04-07 15:43:39 -0700346 // There's only one request code right now. Replace this with a switch statement or
347 // something more scalable when more codes are added.
348 if (requestCode != REQUEST_COPY_DESTINATION) {
349 return;
350 }
351 if (resultCode == Activity.RESULT_CANCELED || data == null) {
352 // User pressed the back button or otherwise cancelled the destination pick. Don't
353 // proceed with the copy.
354 return;
355 }
356
Tomasz Mikolajewski9452c442015-04-14 16:32:41 +0900357 CopyService.start(getActivity(), getDisplayState(this).selectedDocumentsForCopy,
358 (DocumentStack) data.getParcelableExtra(CopyService.EXTRA_STACK));
Ben Kwaf5858932015-04-07 15:43:39 -0700359 }
360
361 @Override
Jeff Sharkeyc8ae7a52013-09-18 16:26:49 -0700362 public void onStop() {
363 super.onStop();
364
365 // Remember last scroll location
366 final SparseArray<Parcelable> container = new SparseArray<Parcelable>();
367 getView().saveHierarchyState(container);
368 final State state = getDisplayState(this);
369 state.dirState.put(mStateKey, container);
370 }
371
372 @Override
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700373 public void onResume() {
374 super.onResume();
Jeff Sharkey42d26792013-09-06 13:22:09 -0700375 updateDisplayState();
376 }
377
Jeff Sharkeye8d13ea2014-08-08 15:10:03 -0700378 public void onDisplayStateChanged() {
379 updateDisplayState();
380 }
381
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700382 public void onUserSortOrderChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700383 // Sort order change always triggers reload; we'll trigger state change
384 // on the flip side.
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700385 getLoaderManager().restartLoader(mLoaderId, null, mCallbacks);
386 }
387
388 public void onUserModeChanged() {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700389 final ContentResolver resolver = getActivity().getContentResolver();
390 final State state = getDisplayState(this);
391
392 final RootInfo root = getArguments().getParcelable(EXTRA_ROOT);
393 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
394
Jeff Sharkey0e8c8712013-09-12 21:59:06 -0700395 if (root != null && doc != null) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700396 final Uri stateUri = RecentsProvider.buildState(
397 root.authority, root.rootId, doc.documentId);
398 final ContentValues values = new ContentValues();
399 values.put(StateColumns.MODE, state.userMode);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700400
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700401 new AsyncTask<Void, Void, Void>() {
402 @Override
403 protected Void doInBackground(Void... params) {
404 resolver.insert(stateUri, values);
405 return null;
406 }
407 }.execute();
408 }
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700409
410 // Mode change is just visual change; no need to kick loader, and
411 // deliver change event immediately.
412 state.derivedMode = state.userMode;
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700413 ((BaseActivity) getActivity()).onStateChanged();
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700414
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700415 updateDisplayState();
416 }
417
418 private void updateDisplayState() {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700419 final State state = getDisplayState(this);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700420
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700421 if (mLastMode == state.derivedMode && mLastShowSize == state.showSize) return;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700422 mLastMode = state.derivedMode;
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700423 mLastShowSize = state.showSize;
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700424
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700425 mListView.setVisibility(state.derivedMode == MODE_LIST ? View.VISIBLE : View.GONE);
426 mGridView.setVisibility(state.derivedMode == MODE_GRID ? View.VISIBLE : View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700427
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700428 final int choiceMode;
Jeff Sharkey3c28b792013-07-01 17:22:02 -0700429 if (state.allowMultiple) {
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700430 choiceMode = ListView.CHOICE_MODE_MULTIPLE_MODAL;
431 } else {
432 choiceMode = ListView.CHOICE_MODE_NONE;
433 }
434
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700435 final int thumbSize;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700436 if (state.derivedMode == MODE_GRID) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700437 thumbSize = getResources().getDimensionPixelSize(R.dimen.grid_width);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700438 mListView.setAdapter(null);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700439 mListView.setChoiceMode(ListView.CHOICE_MODE_NONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700440 mGridView.setAdapter(mAdapter);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700441 mGridView.setColumnWidth(getResources().getDimensionPixelSize(R.dimen.grid_width));
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700442 mGridView.setNumColumns(GridView.AUTO_FIT);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700443 mGridView.setChoiceMode(choiceMode);
444 mCurrentView = mGridView;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700445 } else if (state.derivedMode == MODE_LIST) {
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700446 thumbSize = getResources().getDimensionPixelSize(R.dimen.icon_size);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700447 mGridView.setAdapter(null);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700448 mGridView.setChoiceMode(ListView.CHOICE_MODE_NONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700449 mListView.setAdapter(mAdapter);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700450 mListView.setChoiceMode(choiceMode);
451 mCurrentView = mListView;
Jeff Sharkey3c28b792013-07-01 17:22:02 -0700452 } else {
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700453 throw new IllegalStateException("Unknown state " + state.derivedMode);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700454 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700455
456 mThumbSize = new Point(thumbSize, thumbSize);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700457 }
458
459 private OnItemClickListener mItemListener = new OnItemClickListener() {
460 @Override
461 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700462 final Cursor cursor = mAdapter.getItem(position);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700463 if (cursor != null) {
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700464 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
465 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
466 if (isDocumentEnabled(docMimeType, docFlags)) {
467 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700468 ((BaseActivity) getActivity()).onDocumentPicked(doc);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700469 }
Jeff Sharkeyf339f252013-08-15 16:17:41 -0700470 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700471 }
472 };
473
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700474 private MultiChoiceModeListener mMultiListener = new MultiChoiceModeListener() {
475 @Override
476 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
477 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
Jeff Sharkey6d579272015-06-11 09:16:19 -0700478 mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount()));
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700479 return true;
480 }
481
482 @Override
483 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700484 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700485
486 final MenuItem open = menu.findItem(R.id.menu_open);
487 final MenuItem share = menu.findItem(R.id.menu_share);
488 final MenuItem delete = menu.findItem(R.id.menu_delete);
Ben Kwa41b26c12015-03-31 10:11:43 -0700489 final MenuItem copy = menu.findItem(R.id.menu_copy);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700490
Jeff Sharkey311a7d82015-04-11 21:27:21 -0700491 final boolean manageOrBrowse = (state.action == ACTION_MANAGE
492 || state.action == ACTION_BROWSE || state.action == ACTION_BROWSE_ALL);
493
494 open.setVisible(!manageOrBrowse);
495 share.setVisible(manageOrBrowse);
496 delete.setVisible(manageOrBrowse);
Ben Kwada1cea52015-04-22 10:33:53 -0700497 // Disable copying from the Recents view.
498 copy.setVisible(manageOrBrowse && mType != TYPE_RECENT_OPEN);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700499
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700500 return true;
501 }
502
503 @Override
504 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700505 final SparseBooleanArray checked = mCurrentView.getCheckedItemPositions();
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700506 final ArrayList<DocumentInfo> docs = Lists.newArrayList();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700507 final int size = checked.size();
508 for (int i = 0; i < size; i++) {
509 if (checked.valueAt(i)) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700510 final Cursor cursor = mAdapter.getItem(checked.keyAt(i));
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700511 final DocumentInfo doc = DocumentInfo.fromDirectoryCursor(cursor);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700512 docs.add(doc);
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700513 }
Jeff Sharkey873daa32013-08-18 17:38:20 -0700514 }
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700515
Jeff Sharkey873daa32013-08-18 17:38:20 -0700516 final int id = item.getItemId();
517 if (id == R.id.menu_open) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700518 BaseActivity.get(DirectoryFragment.this).onDocumentsPicked(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700519 mode.finish();
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700520 return true;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700521
522 } else if (id == R.id.menu_share) {
523 onShareDocuments(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700524 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700525 return true;
526
527 } else if (id == R.id.menu_delete) {
528 onDeleteDocuments(docs);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700529 mode.finish();
Jeff Sharkey873daa32013-08-18 17:38:20 -0700530 return true;
531
Ben Kwa41b26c12015-03-31 10:11:43 -0700532 } else if (id == R.id.menu_copy) {
533 onCopyDocuments(docs);
534 mode.finish();
535 return true;
536
Ben Kwa512a6ba2015-03-31 08:15:21 -0700537 } else if (id == R.id.menu_select_all) {
538 int count = mCurrentView.getCount();
539 for (int i = 0; i < count; i++) {
540 mCurrentView.setItemChecked(i, true);
541 }
542 updateDisplayState();
543 return true;
544
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700545 } else {
546 return false;
547 }
548 }
549
550 @Override
551 public void onDestroyActionMode(ActionMode mode) {
552 // ignored
553 }
554
555 @Override
556 public void onItemCheckedStateChanged(
557 ActionMode mode, int position, long id, boolean checked) {
558 if (checked) {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700559 // Directories and footer items cannot be checked
560 boolean valid = false;
561
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700562 final Cursor cursor = mAdapter.getItem(position);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700563 if (cursor != null) {
564 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
Jeff Sharkey7cf49032013-09-26 10:54:16 -0700565 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
Ben Kwaf527c632015-04-08 15:03:35 -0700566 valid = isDocumentEnabled(docMimeType, docFlags);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700567 }
568
569 if (!valid) {
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700570 mCurrentView.setItemChecked(position, false);
571 }
572 }
573
Jeff Sharkey6d579272015-06-11 09:16:19 -0700574 mode.setTitle(TextUtils.formatSelectedCount(mCurrentView.getCheckedItemCount()));
Jeff Sharkeyc317af82013-07-01 16:56:54 -0700575 }
576 };
577
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700578 private RecyclerListener mRecycleListener = new RecyclerListener() {
579 @Override
580 public void onMovedToScrapHeap(View view) {
581 final ImageView iconThumb = (ImageView) view.findViewById(R.id.icon_thumb);
582 if (iconThumb != null) {
583 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
584 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700585 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700586 iconThumb.setTag(null);
587 }
588 }
589 }
590 };
591
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700592 private void onShareDocuments(List<DocumentInfo> docs) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700593 Intent intent;
Ben Kwaf527c632015-04-08 15:03:35 -0700594
595 // Filter out directories - those can't be shared.
596 List<DocumentInfo> docsForSend = Lists.newArrayList();
597 for (DocumentInfo doc: docs) {
598 if (!Document.MIME_TYPE_DIR.equals(doc.mimeType)) {
599 docsForSend.add(doc);
600 }
601 }
602
603 if (docsForSend.size() == 1) {
604 final DocumentInfo doc = docsForSend.get(0);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700605
Jeff Sharkey873daa32013-08-18 17:38:20 -0700606 intent = new Intent(Intent.ACTION_SEND);
607 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
608 intent.addCategory(Intent.CATEGORY_DEFAULT);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700609 intent.setType(doc.mimeType);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700610 intent.putExtra(Intent.EXTRA_STREAM, doc.derivedUri);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700611
Ben Kwaf527c632015-04-08 15:03:35 -0700612 } else if (docsForSend.size() > 1) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700613 intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
614 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
615 intent.addCategory(Intent.CATEGORY_DEFAULT);
616
617 final ArrayList<String> mimeTypes = Lists.newArrayList();
618 final ArrayList<Uri> uris = Lists.newArrayList();
Ben Kwaf527c632015-04-08 15:03:35 -0700619 for (DocumentInfo doc : docsForSend) {
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700620 mimeTypes.add(doc.mimeType);
Jeff Sharkeya4d1f222013-09-07 14:45:03 -0700621 uris.add(doc.derivedUri);
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700622 }
623
624 intent.setType(findCommonMimeType(mimeTypes));
625 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
626
627 } else {
628 return;
Jeff Sharkey873daa32013-08-18 17:38:20 -0700629 }
630
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700631 intent = Intent.createChooser(intent, getActivity().getText(R.string.share_via));
Jeff Sharkey873daa32013-08-18 17:38:20 -0700632 startActivity(intent);
633 }
634
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700635 private void onDeleteDocuments(List<DocumentInfo> docs) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700636 final Context context = getActivity();
637 final ContentResolver resolver = context.getContentResolver();
638
639 boolean hadTrouble = false;
Jeff Sharkey724deeb2013-08-31 15:02:20 -0700640 for (DocumentInfo doc : docs) {
Jeff Sharkey873daa32013-08-18 17:38:20 -0700641 if (!doc.isDeleteSupported()) {
642 Log.w(TAG, "Skipping " + doc);
643 hadTrouble = true;
644 continue;
645 }
646
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700647 ContentProviderClient client = null;
648 try {
649 client = DocumentsApplication.acquireUnstableProviderOrThrow(
650 resolver, doc.derivedUri.getAuthority());
651 DocumentsContract.deleteDocument(client, doc.derivedUri);
652 } catch (Exception e) {
Jeff Sharkey4c5fe522013-09-03 14:17:06 -0700653 Log.w(TAG, "Failed to delete " + doc);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700654 hadTrouble = true;
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700655 } finally {
656 ContentProviderClient.releaseQuietly(client);
Jeff Sharkey873daa32013-08-18 17:38:20 -0700657 }
658 }
659
660 if (hadTrouble) {
661 Toast.makeText(context, R.string.toast_failed_delete, Toast.LENGTH_SHORT).show();
662 }
663 }
664
Ben Kwa41b26c12015-03-31 10:11:43 -0700665 private void onCopyDocuments(List<DocumentInfo> docs) {
Daichi Hironof500ef22015-04-17 16:19:15 +0900666 getDisplayState(this).selectedDocumentsForCopy = docs;
Ben Kwa41b26c12015-03-31 10:11:43 -0700667
Ben Kwaf5858932015-04-07 15:43:39 -0700668 // Pop up a dialog to pick a destination. This is inadequate but works for now.
669 // TODO: Implement a picker that is to spec.
Daichi Hironocaadd412015-04-10 15:50:38 +0900670 final Intent intent = new Intent(
Daichi Hirono22574ed2015-04-15 13:41:18 +0900671 BaseActivity.DocumentsIntent.ACTION_OPEN_COPY_DESTINATION,
Daichi Hironocaadd412015-04-10 15:50:38 +0900672 Uri.EMPTY,
673 getActivity(),
674 DocumentsActivity.class);
Daichi Hironof2a822d2015-04-14 17:12:54 +0900675 boolean directoryCopy = false;
676 for (DocumentInfo info : docs) {
677 if (Document.MIME_TYPE_DIR.equals(info.mimeType)) {
678 directoryCopy = true;
679 break;
680 }
681 }
Daichi Hirono22574ed2015-04-15 13:41:18 +0900682 intent.putExtra(BaseActivity.DocumentsIntent.EXTRA_DIRECTORY_COPY, directoryCopy);
Ben Kwaf5858932015-04-07 15:43:39 -0700683 startActivityForResult(intent, REQUEST_COPY_DESTINATION);
Ben Kwa41b26c12015-03-31 10:11:43 -0700684 }
685
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700686 private static State getDisplayState(Fragment fragment) {
Steve McKayd0a2a2c2015-03-25 14:35:33 -0700687 return ((BaseActivity) fragment.getActivity()).getDisplayState();
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700688 }
689
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700690 private static abstract class Footer {
691 private final int mItemViewType;
692
693 public Footer(int itemViewType) {
694 mItemViewType = itemViewType;
695 }
696
697 public abstract View getView(View convertView, ViewGroup parent);
698
699 public int getItemViewType() {
700 return mItemViewType;
701 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700702 }
703
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700704 private class LoadingFooter extends Footer {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700705 public LoadingFooter() {
706 super(1);
707 }
708
Jeff Sharkey20b32272013-09-03 15:25:52 -0700709 @Override
710 public View getView(View convertView, ViewGroup parent) {
711 final Context context = parent.getContext();
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700712 final State state = getDisplayState(DirectoryFragment.this);
713
Jeff Sharkey20b32272013-09-03 15:25:52 -0700714 if (convertView == null) {
715 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700716 if (state.derivedMode == MODE_LIST) {
717 convertView = inflater.inflate(R.layout.item_loading_list, parent, false);
718 } else if (state.derivedMode == MODE_GRID) {
719 convertView = inflater.inflate(R.layout.item_loading_grid, parent, false);
720 } else {
721 throw new IllegalStateException();
722 }
Jeff Sharkey20b32272013-09-03 15:25:52 -0700723 }
Jeff Sharkey5e1884d2013-09-10 17:56:39 -0700724
Jeff Sharkey20b32272013-09-03 15:25:52 -0700725 return convertView;
726 }
727 }
728
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700729 private class MessageFooter extends Footer {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700730 private final int mIcon;
731 private final String mMessage;
732
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700733 public MessageFooter(int itemViewType, int icon, String message) {
734 super(itemViewType);
Jeff Sharkey20b32272013-09-03 15:25:52 -0700735 mIcon = icon;
736 mMessage = message;
737 }
738
739 @Override
740 public View getView(View convertView, ViewGroup parent) {
741 final Context context = parent.getContext();
742 final State state = getDisplayState(DirectoryFragment.this);
743
744 if (convertView == null) {
745 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700746 if (state.derivedMode == MODE_LIST) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700747 convertView = inflater.inflate(R.layout.item_message_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700748 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700749 convertView = inflater.inflate(R.layout.item_message_grid, parent, false);
750 } else {
751 throw new IllegalStateException();
752 }
753 }
754
755 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
756 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
757 icon.setImageResource(mIcon);
758 title.setText(mMessage);
759 return convertView;
760 }
761 }
762
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700763 private class DocumentsAdapter extends BaseAdapter {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700764 private Cursor mCursor;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700765 private int mCursorCount;
766
767 private List<Footer> mFooters = Lists.newArrayList();
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700768
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700769 public void swapResult(DirectoryResult result) {
770 mCursor = result != null ? result.cursor : null;
771 mCursorCount = mCursor != null ? mCursor.getCount() : 0;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700772
773 mFooters.clear();
774
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700775 final Bundle extras = mCursor != null ? mCursor.getExtras() : null;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700776 if (extras != null) {
777 final String info = extras.getString(DocumentsContract.EXTRA_INFO);
778 if (info != null) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700779 mFooters.add(new MessageFooter(2, R.drawable.ic_dialog_info, info));
Jeff Sharkey20b32272013-09-03 15:25:52 -0700780 }
781 final String error = extras.getString(DocumentsContract.EXTRA_ERROR);
782 if (error != null) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700783 mFooters.add(new MessageFooter(3, R.drawable.ic_dialog_alert, error));
Jeff Sharkey20b32272013-09-03 15:25:52 -0700784 }
785 if (extras.getBoolean(DocumentsContract.EXTRA_LOADING, false)) {
786 mFooters.add(new LoadingFooter());
787 }
788 }
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700789
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700790 if (result != null && result.exception != null) {
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700791 mFooters.add(new MessageFooter(
Jeff Sharkey34c54092014-08-08 13:08:56 -0700792 3, R.drawable.ic_dialog_alert, getString(R.string.query_error)));
Jeff Sharkey3fd11772013-09-30 14:26:27 -0700793 }
794
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700795 if (isEmpty()) {
Jeff Sharkeyc6cbdf12013-08-07 16:22:02 -0700796 mEmptyView.setVisibility(View.VISIBLE);
797 } else {
798 mEmptyView.setVisibility(View.GONE);
799 }
800
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700801 notifyDataSetChanged();
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700802 }
803
804 @Override
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700805 public View getView(int position, View convertView, ViewGroup parent) {
Jeff Sharkey20b32272013-09-03 15:25:52 -0700806 if (position < mCursorCount) {
807 return getDocumentView(position, convertView, parent);
808 } else {
809 position -= mCursorCount;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700810 convertView = mFooters.get(position).getView(convertView, parent);
811 // Only the view itself is disabled; contents inside shouldn't
812 // be dimmed.
813 convertView.setEnabled(false);
814 return convertView;
Jeff Sharkey20b32272013-09-03 15:25:52 -0700815 }
816 }
817
818 private View getDocumentView(int position, View convertView, ViewGroup parent) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700819 final Context context = parent.getContext();
Jeff Sharkeyb3620442013-09-01 18:41:04 -0700820 final State state = getDisplayState(DirectoryFragment.this);
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700821
Jeff Sharkey9656a532013-09-13 13:42:19 -0700822 final DocumentInfo doc = getArguments().getParcelable(EXTRA_DOC);
823
Jeff Sharkey873daa32013-08-18 17:38:20 -0700824 final RootsCache roots = DocumentsApplication.getRootsCache(context);
825 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
826 context, mThumbSize);
827
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700828 if (convertView == null) {
829 final LayoutInflater inflater = LayoutInflater.from(context);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700830 if (state.derivedMode == MODE_LIST) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700831 convertView = inflater.inflate(R.layout.item_doc_list, parent, false);
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700832 } else if (state.derivedMode == MODE_GRID) {
Jeff Sharkeya5defe32013-08-05 17:56:48 -0700833 convertView = inflater.inflate(R.layout.item_doc_grid, parent, false);
834 } else {
835 throw new IllegalStateException();
836 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -0700837 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700838
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700839 final Cursor cursor = getItem(position);
840
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700841 final String docAuthority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
842 final String docRootId = getCursorString(cursor, RootCursorWrapper.COLUMN_ROOT_ID);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700843 final String docId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
844 final String docMimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
845 final String docDisplayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
846 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
847 final int docIcon = getCursorInt(cursor, Document.COLUMN_ICON);
848 final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS);
849 final String docSummary = getCursorString(cursor, Document.COLUMN_SUMMARY);
850 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700851
Jeff Sharkey9656a532013-09-13 13:42:19 -0700852 final View line1 = convertView.findViewById(R.id.line1);
853 final View line2 = convertView.findViewById(R.id.line2);
854
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700855 final ImageView iconMime = (ImageView) convertView.findViewById(R.id.icon_mime);
856 final ImageView iconThumb = (ImageView) convertView.findViewById(R.id.icon_thumb);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700857 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
858 final ImageView icon1 = (ImageView) convertView.findViewById(android.R.id.icon1);
Jeff Sharkey9656a532013-09-13 13:42:19 -0700859 final ImageView icon2 = (ImageView) convertView.findViewById(android.R.id.icon2);
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700860 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
861 final TextView date = (TextView) convertView.findViewById(R.id.date);
862 final TextView size = (TextView) convertView.findViewById(R.id.size);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700863
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700864 final ThumbnailAsyncTask oldTask = (ThumbnailAsyncTask) iconThumb.getTag();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700865 if (oldTask != null) {
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700866 oldTask.preempt();
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700867 iconThumb.setTag(null);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700868 }
869
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700870 iconMime.animate().cancel();
871 iconThumb.animate().cancel();
872
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700873 final boolean supportsThumbnail = (docFlags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
Jeff Sharkeyd10f0492013-09-09 17:35:46 -0700874 final boolean allowThumbnail = (state.derivedMode == MODE_GRID)
Jeff Sharkey9656a532013-09-13 13:42:19 -0700875 || MimePredicate.mimeMatches(MimePredicate.VISUAL_MIMES, docMimeType);
Jeff Sharkeyf63b7772013-10-01 17:57:41 -0700876 final boolean showThumbnail = supportsThumbnail && allowThumbnail && !mSvelteRecents;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -0700877
Jeff Sharkey7e544612014-08-29 15:38:27 -0700878 final boolean enabled = isDocumentEnabled(docMimeType, docFlags);
879 final float iconAlpha = (state.derivedMode == MODE_LIST && !enabled) ? 0.5f : 1f;
880
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700881 boolean cacheHit = false;
Jeff Sharkey9656a532013-09-13 13:42:19 -0700882 if (showThumbnail) {
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700883 final Uri uri = DocumentsContract.buildDocumentUri(docAuthority, docId);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700884 final Bitmap cachedResult = thumbs.get(uri);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700885 if (cachedResult != null) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700886 iconThumb.setImageBitmap(cachedResult);
887 cacheHit = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700888 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700889 iconThumb.setImageDrawable(null);
890 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
Jeff Sharkey7e544612014-08-29 15:38:27 -0700891 uri, iconMime, iconThumb, mThumbSize, iconAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700892 iconThumb.setTag(task);
Jeff Sharkey753a3ae2013-10-22 17:09:44 -0700893 ProviderExecutor.forAuthority(docAuthority).execute(task);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700894 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700895 }
896
897 // Always throw MIME icon into place, even when a thumbnail is being
898 // loaded in background.
899 if (cacheHit) {
900 iconMime.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700901 iconMime.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700902 iconThumb.setAlpha(1f);
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700903 } else {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700904 iconMime.setAlpha(1f);
905 iconThumb.setAlpha(0f);
Jeff Sharkey9dd02622013-09-27 16:44:11 -0700906 iconThumb.setImageDrawable(null);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700907 if (docIcon != 0) {
908 iconMime.setImageDrawable(
909 IconUtils.loadPackageIcon(context, docAuthority, docIcon));
910 } else {
Jeff Sharkey2ceff512013-09-18 18:03:49 -0700911 iconMime.setImageDrawable(IconUtils.loadMimeIcon(
912 context, docMimeType, docAuthority, docId, state.derivedMode));
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700913 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -0700914 }
915
Jeff Sharkey9656a532013-09-13 13:42:19 -0700916 boolean hasLine1 = false;
Jeff Sharkey42d26792013-09-06 13:22:09 -0700917 boolean hasLine2 = false;
918
Jeff Sharkey9656a532013-09-13 13:42:19 -0700919 final boolean hideTitle = (state.derivedMode == MODE_GRID) && mHideGridTitles;
920 if (!hideTitle) {
921 title.setText(docDisplayName);
922 hasLine1 = true;
923 }
924
925 Drawable iconDrawable = null;
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700926 if (mType == TYPE_RECENT_OPEN) {
Jeff Sharkey8b997042013-09-19 15:25:56 -0700927 // We've already had to enumerate roots before any results can
928 // be shown, so this will never block.
929 final RootInfo root = roots.getRootBlocking(docAuthority, docRootId);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -0700930 if (state.derivedMode == MODE_GRID) {
Jeff Sharkey34c54092014-08-08 13:08:56 -0700931 iconDrawable = root.loadGridIcon(context);
Jeff Sharkey93cdbc22014-07-29 17:33:36 -0700932 } else {
933 iconDrawable = root.loadIcon(context);
934 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700935
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700936 if (summary != null) {
937 final boolean alwaysShowSummary = getResources()
938 .getBoolean(R.bool.always_show_summary);
939 if (alwaysShowSummary) {
940 summary.setText(root.getDirectoryString());
941 summary.setVisibility(View.VISIBLE);
942 hasLine2 = true;
943 } else {
Jeff Sharkey8b997042013-09-19 15:25:56 -0700944 if (iconDrawable != null && roots.isIconUniqueBlocking(root)) {
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700945 // No summary needed if icon speaks for itself
946 summary.setVisibility(View.INVISIBLE);
947 } else {
948 summary.setText(root.getDirectoryString());
949 summary.setVisibility(View.VISIBLE);
950 summary.setTextAlignment(TextView.TEXT_ALIGNMENT_TEXT_END);
951 hasLine2 = true;
952 }
953 }
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -0700954 }
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700955 } else {
Jeff Sharkey9656a532013-09-13 13:42:19 -0700956 // Directories showing thumbnails in grid mode get a little icon
957 // hint to remind user they're a directory.
958 if (Document.MIME_TYPE_DIR.equals(docMimeType) && state.derivedMode == MODE_GRID
959 && showThumbnail) {
Jeff Sharkey7e544612014-08-29 15:38:27 -0700960 iconDrawable = IconUtils.applyTintAttr(context, R.drawable.ic_doc_folder,
Jeff Sharkey34c54092014-08-08 13:08:56 -0700961 android.R.attr.textColorPrimaryInverse);
Jeff Sharkey9656a532013-09-13 13:42:19 -0700962 }
963
Jeff Sharkey7d58fc62013-09-12 16:25:02 -0700964 if (summary != null) {
965 if (docSummary != null) {
966 summary.setText(docSummary);
967 summary.setVisibility(View.VISIBLE);
968 hasLine2 = true;
969 } else {
970 summary.setVisibility(View.INVISIBLE);
971 }
Jeff Sharkeyd82b26b2013-09-02 15:07:28 -0700972 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700973 }
974
Jeff Sharkey9656a532013-09-13 13:42:19 -0700975 if (icon1 != null) icon1.setVisibility(View.GONE);
976 if (icon2 != null) icon2.setVisibility(View.GONE);
977
978 if (iconDrawable != null) {
979 if (hasLine1) {
980 icon1.setVisibility(View.VISIBLE);
981 icon1.setImageDrawable(iconDrawable);
982 } else {
983 icon2.setVisibility(View.VISIBLE);
984 icon2.setImageDrawable(iconDrawable);
985 }
986 }
987
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700988 if (docLastModified == -1) {
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700989 date.setText(null);
990 } else {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700991 date.setText(formatTime(context, docLastModified));
Jeff Sharkey42d26792013-09-06 13:22:09 -0700992 hasLine2 = true;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -0700993 }
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700994
995 if (state.showSize) {
996 size.setVisibility(View.VISIBLE);
Jeff Sharkeyac9e6272013-08-31 21:27:44 -0700997 if (Document.MIME_TYPE_DIR.equals(docMimeType) || docSize == -1) {
Jeff Sharkey2e694f82013-08-06 16:26:14 -0700998 size.setText(null);
999 } else {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001000 size.setText(Formatter.formatFileSize(context, docSize));
Jeff Sharkey42d26792013-09-06 13:22:09 -07001001 hasLine2 = true;
Jeff Sharkey2e694f82013-08-06 16:26:14 -07001002 }
1003 } else {
1004 size.setVisibility(View.GONE);
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001005 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001006
Jeff Sharkey9656a532013-09-13 13:42:19 -07001007 if (line1 != null) {
1008 line1.setVisibility(hasLine1 ? View.VISIBLE : View.GONE);
1009 }
Jeff Sharkey7d58fc62013-09-12 16:25:02 -07001010 if (line2 != null) {
1011 line2.setVisibility(hasLine2 ? View.VISIBLE : View.GONE);
1012 }
Jeff Sharkey42d26792013-09-06 13:22:09 -07001013
Jeff Sharkey7e544612014-08-29 15:38:27 -07001014 setEnabledRecursive(convertView, enabled);
1015
1016 iconMime.setAlpha(iconAlpha);
1017 iconThumb.setAlpha(iconAlpha);
1018 if (icon1 != null) icon1.setAlpha(iconAlpha);
1019 if (icon2 != null) icon2.setAlpha(iconAlpha);
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001020
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001021 return convertView;
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001022 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001023
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001024 @Override
1025 public int getCount() {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001026 return mCursorCount + mFooters.size();
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001027 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001028
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001029 @Override
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001030 public Cursor getItem(int position) {
Jeff Sharkey20b32272013-09-03 15:25:52 -07001031 if (position < mCursorCount) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001032 mCursor.moveToPosition(position);
Jeff Sharkey20b32272013-09-03 15:25:52 -07001033 return mCursor;
1034 } else {
1035 return null;
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001036 }
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001037 }
Jeff Sharkey09c10bf2013-06-30 20:02:59 -07001038
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001039 @Override
1040 public long getItemId(int position) {
Jeff Sharkeyac9e6272013-08-31 21:27:44 -07001041 return position;
Jeff Sharkeya5defe32013-08-05 17:56:48 -07001042 }
Jeff Sharkey20b32272013-09-03 15:25:52 -07001043
1044 @Override
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001045 public int getViewTypeCount() {
1046 return 4;
1047 }
1048
1049 @Override
Jeff Sharkey20b32272013-09-03 15:25:52 -07001050 public int getItemViewType(int position) {
1051 if (position < mCursorCount) {
1052 return 0;
1053 } else {
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001054 position -= mCursorCount;
1055 return mFooters.get(position).getItemViewType();
Jeff Sharkey20b32272013-09-03 15:25:52 -07001056 }
1057 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001058 }
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001059
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001060 private static class ThumbnailAsyncTask extends AsyncTask<Uri, Void, Bitmap>
1061 implements Preemptable {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001062 private final Uri mUri;
1063 private final ImageView mIconMime;
1064 private final ImageView mIconThumb;
Jeff Sharkey873daa32013-08-18 17:38:20 -07001065 private final Point mThumbSize;
Jeff Sharkey7e544612014-08-29 15:38:27 -07001066 private final float mTargetAlpha;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001067 private final CancellationSignal mSignal;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001068
Jeff Sharkey7e544612014-08-29 15:38:27 -07001069 public ThumbnailAsyncTask(Uri uri, ImageView iconMime, ImageView iconThumb, Point thumbSize,
1070 float targetAlpha) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001071 mUri = uri;
1072 mIconMime = iconMime;
1073 mIconThumb = iconThumb;
Jeff Sharkey873daa32013-08-18 17:38:20 -07001074 mThumbSize = thumbSize;
Jeff Sharkey7e544612014-08-29 15:38:27 -07001075 mTargetAlpha = targetAlpha;
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001076 mSignal = new CancellationSignal();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001077 }
1078
Jeff Sharkey753a3ae2013-10-22 17:09:44 -07001079 @Override
1080 public void preempt() {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001081 cancel(false);
1082 mSignal.cancel();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001083 }
1084
1085 @Override
1086 protected Bitmap doInBackground(Uri... params) {
Jeff Sharkeyf63b7772013-10-01 17:57:41 -07001087 if (isCancelled()) return null;
1088
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001089 final Context context = mIconThumb.getContext();
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001090 final ContentResolver resolver = context.getContentResolver();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001091
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001092 ContentProviderClient client = null;
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001093 Bitmap result = null;
1094 try {
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001095 client = DocumentsApplication.acquireUnstableProviderOrThrow(
1096 resolver, mUri.getAuthority());
1097 result = DocumentsContract.getDocumentThumbnail(client, mUri, mThumbSize, mSignal);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001098 if (result != null) {
Jeff Sharkey873daa32013-08-18 17:38:20 -07001099 final ThumbnailCache thumbs = DocumentsApplication.getThumbnailsCache(
1100 context, mThumbSize);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001101 thumbs.put(mUri, result);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001102 }
1103 } catch (Exception e) {
Jeff Sharkeye39a89b2013-10-29 11:56:37 -07001104 if (!(e instanceof OperationCanceledException)) {
1105 Log.w(TAG, "Failed to load thumbnail for " + mUri + ": " + e);
1106 }
Jeff Sharkey3fd11772013-09-30 14:26:27 -07001107 } finally {
1108 ContentProviderClient.releaseQuietly(client);
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001109 }
1110 return result;
1111 }
1112
1113 @Override
1114 protected void onPostExecute(Bitmap result) {
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001115 if (mIconThumb.getTag() == this && result != null) {
1116 mIconThumb.setTag(null);
1117 mIconThumb.setImageBitmap(result);
1118
Jeff Sharkey7e544612014-08-29 15:38:27 -07001119 mIconMime.setAlpha(mTargetAlpha);
Jeff Sharkeya35ac2d2013-09-10 12:04:26 -07001120 mIconMime.animate().alpha(0f).start();
1121 mIconThumb.setAlpha(0f);
Jeff Sharkey7e544612014-08-29 15:38:27 -07001122 mIconThumb.animate().alpha(mTargetAlpha).start();
Jeff Sharkey8a8fb672013-05-07 12:41:33 -07001123 }
1124 }
1125 }
1126
1127 private static String formatTime(Context context, long when) {
1128 // TODO: DateUtils should make this easier
1129 Time then = new Time();
1130 then.set(when);
1131 Time now = new Time();
1132 now.setToNow();
1133
1134 int flags = DateUtils.FORMAT_NO_NOON | DateUtils.FORMAT_NO_MIDNIGHT
1135 | DateUtils.FORMAT_ABBREV_ALL;
1136
1137 if (then.year != now.year) {
1138 flags |= DateUtils.FORMAT_SHOW_YEAR | DateUtils.FORMAT_SHOW_DATE;
1139 } else if (then.yearDay != now.yearDay) {
1140 flags |= DateUtils.FORMAT_SHOW_DATE;
1141 } else {
1142 flags |= DateUtils.FORMAT_SHOW_TIME;
1143 }
1144
1145 return DateUtils.formatDateTime(context, when, flags);
1146 }
Jeff Sharkeyb3620442013-09-01 18:41:04 -07001147
1148 private String findCommonMimeType(List<String> mimeTypes) {
1149 String[] commonType = mimeTypes.get(0).split("/");
1150 if (commonType.length != 2) {
1151 return "*/*";
1152 }
1153
1154 for (int i = 1; i < mimeTypes.size(); i++) {
1155 String[] type = mimeTypes.get(i).split("/");
1156 if (type.length != 2) continue;
1157
1158 if (!commonType[1].equals(type[1])) {
1159 commonType[1] = "*";
1160 }
1161
1162 if (!commonType[0].equals(type[0])) {
1163 commonType[0] = "*";
1164 commonType[1] = "*";
1165 break;
1166 }
1167 }
1168
1169 return commonType[0] + "/" + commonType[1];
1170 }
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001171
1172 private void setEnabledRecursive(View v, boolean enabled) {
Jeff Sharkey9656a532013-09-13 13:42:19 -07001173 if (v == null) return;
Jeff Sharkeyaed873d2013-09-09 16:51:06 -07001174 if (v.isEnabled() == enabled) return;
1175 v.setEnabled(enabled);
1176
1177 if (v instanceof ViewGroup) {
1178 final ViewGroup vg = (ViewGroup) v;
1179 for (int i = vg.getChildCount() - 1; i >= 0; i--) {
1180 setEnabledRecursive(vg.getChildAt(i), enabled);
1181 }
1182 }
1183 }
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001184
1185 private boolean isDocumentEnabled(String docMimeType, int docFlags) {
1186 final State state = getDisplayState(DirectoryFragment.this);
1187
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001188 // Directories are always enabled
1189 if (Document.MIME_TYPE_DIR.equals(docMimeType)) {
1190 return true;
1191 }
1192
Jeff Sharkey783ebc22013-09-26 19:42:52 -07001193 // Read-only files are disabled when creating
1194 if (state.action == ACTION_CREATE && (docFlags & Document.FLAG_SUPPORTS_WRITE) == 0) {
1195 return false;
1196 }
1197
Jeff Sharkey7cf49032013-09-26 10:54:16 -07001198 return MimePredicate.mimeMatches(state.acceptMimes, docMimeType);
1199 }
Jeff Sharkeye22d02e2013-04-26 16:54:55 -07001200}