blob: 62f9ea7ed8042a6b0c615b09693fdf1b886b0986 [file] [log] [blame]
Steve McKayf8a5e082015-09-23 17:21:40 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui;
18
Steve McKaycb9eb422016-02-09 16:17:24 -080019import static com.android.documentsui.Shared.DEBUG;
20
Steve McKay7776aa52016-01-25 19:00:22 -080021import android.annotation.IntDef;
Steve McKayf8a5e082015-09-23 17:21:40 -070022import android.content.Intent;
23import android.os.Parcel;
24import android.os.Parcelable;
Steve McKaycb9eb422016-02-09 16:17:24 -080025import android.util.Log;
Steve McKayf8a5e082015-09-23 17:21:40 -070026import android.util.SparseArray;
27
Steve McKay84fa3712016-02-08 19:09:42 -080028import com.android.documentsui.dirlist.MultiSelectManager.Selection;
Steve McKayf8a5e082015-09-23 17:21:40 -070029import com.android.documentsui.model.DocumentInfo;
30import com.android.documentsui.model.DocumentStack;
31import com.android.documentsui.model.DurableUtils;
Daichi Hirono2806beb2016-01-07 15:29:12 +090032import com.android.documentsui.model.RootInfo;
Steve McKayc8bdc7f2016-02-18 11:32:26 -080033import com.android.documentsui.services.FileOperationService;
Steve McKayf1719342016-02-17 15:02:01 -080034import com.android.documentsui.services.FileOperationService.OpType;
Steve McKayf8a5e082015-09-23 17:21:40 -070035
Steve McKay7776aa52016-01-25 19:00:22 -080036import java.lang.annotation.Retention;
37import java.lang.annotation.RetentionPolicy;
Steve McKayf8a5e082015-09-23 17:21:40 -070038import java.util.ArrayList;
39import java.util.HashMap;
40import java.util.List;
41
42public class State implements android.os.Parcelable {
Steve McKay7776aa52016-01-25 19:00:22 -080043
Steve McKaycb9eb422016-02-09 16:17:24 -080044 private static final String TAG = "State";
45
Steve McKay7776aa52016-01-25 19:00:22 -080046 public static final int ACTION_OPEN = 1;
47 public static final int ACTION_CREATE = 2;
48 public static final int ACTION_GET_CONTENT = 3;
49 public static final int ACTION_OPEN_TREE = 4;
50 public static final int ACTION_MANAGE = 5;
51 public static final int ACTION_BROWSE = 6;
52 public static final int ACTION_PICK_COPY_DESTINATION = 8;
53
54 @IntDef(flag = true, value = {
55 MODE_UNKNOWN,
56 MODE_LIST,
57 MODE_GRID
58 })
59 @Retention(RetentionPolicy.SOURCE)
60 public @interface ViewMode {}
61 public static final int MODE_UNKNOWN = 0;
62 public static final int MODE_LIST = 1;
63 public static final int MODE_GRID = 2;
64
65 public static final int SORT_ORDER_UNKNOWN = 0;
66 public static final int SORT_ORDER_DISPLAY_NAME = 1;
67 public static final int SORT_ORDER_LAST_MODIFIED = 2;
68 public static final int SORT_ORDER_SIZE = 3;
69
Steve McKayf8a5e082015-09-23 17:21:40 -070070 public int action;
71 public String[] acceptMimes;
72
Steve McKay7776aa52016-01-25 19:00:22 -080073 /** Derived from local preferences */
74 public @ViewMode int derivedMode = MODE_GRID;
Steve McKayf8a5e082015-09-23 17:21:40 -070075
76 /** Explicit user choice */
77 public int userSortOrder = SORT_ORDER_UNKNOWN;
78 /** Derived after loader */
79 public int derivedSortOrder = SORT_ORDER_DISPLAY_NAME;
80
81 public boolean allowMultiple;
Steve McKayf2c8b0d2015-09-23 15:44:24 -070082 public boolean forceSize;
Steve McKayf8a5e082015-09-23 17:21:40 -070083 public boolean showSize;
Steve McKayf2c8b0d2015-09-23 15:44:24 -070084 public boolean localOnly;
85 public boolean forceAdvanced;
86 public boolean showAdvanced;
Steve McKayf2c8b0d2015-09-23 15:44:24 -070087 public boolean restored;
Steve McKayf1719342016-02-17 15:02:01 -080088
89 // Indicates that a copy operation (or move) includes a directory.
90 // Why? Directory creation isn't supported by some roots (like Downloads).
91 // This allows us to restrict available roots to just those with support.
Steve McKayf2c8b0d2015-09-23 15:44:24 -070092 public boolean directoryCopy;
Tomasz Mikolajewski95d9c252015-11-16 11:41:28 +090093 public boolean openableOnly;
Steve McKayf1719342016-02-17 15:02:01 -080094
95 /**
96 * This is basically a sub-type for the copy operation. It can be either COPY or MOVE.
Steve McKayc8bdc7f2016-02-18 11:32:26 -080097 * The only legal values, if set, are: OPERATION_COPY, OPERATION_MOVE. Other pick
98 * operations don't use this. In those cases OPERATION_UNKNOWN is also legal.
Steve McKayf1719342016-02-17 15:02:01 -080099 */
Steve McKayc8bdc7f2016-02-18 11:32:26 -0800100 public @OpType int copyOperationSubType = FileOperationService.OPERATION_UNKNOWN;
Steve McKayf8a5e082015-09-23 17:21:40 -0700101
102 /** Current user navigation stack; empty implies recents. */
103 public DocumentStack stack = new DocumentStack();
Steve McKay7776aa52016-01-25 19:00:22 -0800104 private boolean mStackTouched;
Steve McKaycb9eb422016-02-09 16:17:24 -0800105 private boolean mInitialRootChanged;
106 private boolean mInitialDocChanged;
Steve McKay7776aa52016-01-25 19:00:22 -0800107
Steve McKayf8a5e082015-09-23 17:21:40 -0700108 /** Instance state for every shown directory */
109 public HashMap<String, SparseArray<Parcelable>> dirState = new HashMap<>();
110
Steve McKay84fa3712016-02-08 19:09:42 -0800111 /** UI selection */
112 public Selection selectedDocuments = new Selection();
113
Steve McKayf8a5e082015-09-23 17:21:40 -0700114 /** Currently copying file */
Steve McKay84fa3712016-02-08 19:09:42 -0800115 public List<DocumentInfo> selectedDocumentsForCopy = new ArrayList<>();
Steve McKayf8a5e082015-09-23 17:21:40 -0700116
117 /** Name of the package that started DocsUI */
118 public List<String> excludedAuthorities = new ArrayList<>();
119
Steve McKayf8a5e082015-09-23 17:21:40 -0700120 public void initAcceptMimes(Intent intent) {
121 if (intent.hasExtra(Intent.EXTRA_MIME_TYPES)) {
122 acceptMimes = intent.getStringArrayExtra(Intent.EXTRA_MIME_TYPES);
123 } else {
124 String glob = intent.getType();
125 acceptMimes = new String[] { glob != null ? glob : "*/*" };
126 }
127 }
128
Daichi Hirono2806beb2016-01-07 15:29:12 +0900129 public void onRootChanged(RootInfo root) {
Steve McKaycb9eb422016-02-09 16:17:24 -0800130 if (DEBUG) Log.d(TAG, "Root changed to: " + root);
131 if (!mInitialRootChanged && stack.root != null && !root.equals(stack.root)) {
132 mInitialRootChanged = true;
133 }
Daichi Hirono2806beb2016-01-07 15:29:12 +0900134 stack.root = root;
135 stack.clear();
136 mStackTouched = true;
137 }
138
139 public void pushDocument(DocumentInfo info) {
Steve McKaycb9eb422016-02-09 16:17:24 -0800140 if (DEBUG) Log.d(TAG, "Adding doc to stack: " + info);
141 if (!mInitialDocChanged && stack.size() > 0 && !info.equals(stack.peek())) {
142 mInitialDocChanged = true;
143 }
Daichi Hirono97c9c1a2016-01-08 12:22:09 +0900144 stack.push(info);
Daichi Hirono2806beb2016-01-07 15:29:12 +0900145 mStackTouched = true;
146 }
147
148 public void popDocument() {
Steve McKaycb9eb422016-02-09 16:17:24 -0800149 if (DEBUG) Log.d(TAG, "Popping doc off stack.");
Daichi Hirono2806beb2016-01-07 15:29:12 +0900150 stack.pop();
151 mStackTouched = true;
152 }
153
154 public void setStack(DocumentStack stack) {
Steve McKaycb9eb422016-02-09 16:17:24 -0800155 if (DEBUG) Log.d(TAG, "Setting the whole darn stack to: " + stack);
Daichi Hirono2806beb2016-01-07 15:29:12 +0900156 this.stack = stack;
157 mStackTouched = true;
158 }
159
Steve McKayfd8425a2016-02-23 14:34:50 -0800160 // This will return true even when the initial location is set.
161 // To get a read on if the user has changed something, use #hasInitialLocationChanged.
Daichi Hirono2806beb2016-01-07 15:29:12 +0900162 public boolean hasLocationChanged() {
163 return mStackTouched;
164 }
165
Steve McKayfd8425a2016-02-23 14:34:50 -0800166 public boolean hasInitialLocationChanged() {
Steve McKaycb9eb422016-02-09 16:17:24 -0800167 return mInitialRootChanged || mInitialDocChanged;
168 }
169
Steve McKayf8a5e082015-09-23 17:21:40 -0700170 @Override
171 public int describeContents() {
172 return 0;
173 }
174
175 @Override
176 public void writeToParcel(Parcel out, int flags) {
177 out.writeInt(action);
Steve McKayf8a5e082015-09-23 17:21:40 -0700178 out.writeStringArray(acceptMimes);
179 out.writeInt(userSortOrder);
180 out.writeInt(allowMultiple ? 1 : 0);
181 out.writeInt(forceSize ? 1 : 0);
182 out.writeInt(showSize ? 1 : 0);
183 out.writeInt(localOnly ? 1 : 0);
184 out.writeInt(forceAdvanced ? 1 : 0);
185 out.writeInt(showAdvanced ? 1 : 0);
Steve McKayf8a5e082015-09-23 17:21:40 -0700186 out.writeInt(restored ? 1 : 0);
187 DurableUtils.writeToParcel(out, stack);
Steve McKayf8a5e082015-09-23 17:21:40 -0700188 out.writeMap(dirState);
Steve McKay84fa3712016-02-08 19:09:42 -0800189 out.writeParcelable(selectedDocuments, 0);
Steve McKayf8a5e082015-09-23 17:21:40 -0700190 out.writeList(selectedDocumentsForCopy);
191 out.writeList(excludedAuthorities);
Tomasz Mikolajewski95d9c252015-11-16 11:41:28 +0900192 out.writeInt(openableOnly ? 1 : 0);
Daichi Hirono2806beb2016-01-07 15:29:12 +0900193 out.writeInt(mStackTouched ? 1 : 0);
Steve McKaycb9eb422016-02-09 16:17:24 -0800194 out.writeInt(mInitialRootChanged ? 1 : 0);
195 out.writeInt(mInitialDocChanged ? 1 : 0);
Steve McKayf8a5e082015-09-23 17:21:40 -0700196 }
197
Jeff Sharkey2584c822016-02-05 17:13:16 -0700198 public static final ClassLoaderCreator<State> CREATOR = new ClassLoaderCreator<State>() {
Steve McKayf8a5e082015-09-23 17:21:40 -0700199 @Override
200 public State createFromParcel(Parcel in) {
Jeff Sharkey2584c822016-02-05 17:13:16 -0700201 return createFromParcel(in, null);
202 }
203
204 @Override
205 public State createFromParcel(Parcel in, ClassLoader loader) {
Steve McKayf8a5e082015-09-23 17:21:40 -0700206 final State state = new State();
207 state.action = in.readInt();
Steve McKayf8a5e082015-09-23 17:21:40 -0700208 state.acceptMimes = in.readStringArray();
209 state.userSortOrder = in.readInt();
210 state.allowMultiple = in.readInt() != 0;
211 state.forceSize = in.readInt() != 0;
212 state.showSize = in.readInt() != 0;
213 state.localOnly = in.readInt() != 0;
214 state.forceAdvanced = in.readInt() != 0;
215 state.showAdvanced = in.readInt() != 0;
Steve McKayf8a5e082015-09-23 17:21:40 -0700216 state.restored = in.readInt() != 0;
217 DurableUtils.readFromParcel(in, state.stack);
Jeff Sharkey2584c822016-02-05 17:13:16 -0700218 in.readMap(state.dirState, loader);
Steve McKay84fa3712016-02-08 19:09:42 -0800219 state.selectedDocuments = in.readParcelable(loader);
Jeff Sharkey2584c822016-02-05 17:13:16 -0700220 in.readList(state.selectedDocumentsForCopy, loader);
221 in.readList(state.excludedAuthorities, loader);
Tomasz Mikolajewski95d9c252015-11-16 11:41:28 +0900222 state.openableOnly = in.readInt() != 0;
Daichi Hirono2806beb2016-01-07 15:29:12 +0900223 state.mStackTouched = in.readInt() != 0;
Steve McKaycb9eb422016-02-09 16:17:24 -0800224 state.mInitialRootChanged = in.readInt() != 0;
225 state.mInitialDocChanged = in.readInt() != 0;
Steve McKayf8a5e082015-09-23 17:21:40 -0700226 return state;
227 }
228
229 @Override
230 public State[] newArray(int size) {
231 return new State[size];
232 }
233 };
Ben Kwaae967802015-09-25 14:48:29 -0700234}