blob: 2ecbdf615b0ea6a5143d1c2c1e84552924fc326f [file] [log] [blame]
Steve McKay7a3b88c2015-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 McKayaa15dae2016-02-09 16:17:24 -080019import static com.android.documentsui.Shared.DEBUG;
20
Steve McKay3eb2d072016-01-25 19:00:22 -080021import android.annotation.IntDef;
Steve McKay7a3b88c2015-09-23 17:21:40 -070022import android.content.Intent;
23import android.os.Parcel;
24import android.os.Parcelable;
Steve McKayaa15dae2016-02-09 16:17:24 -080025import android.util.Log;
Steve McKay7a3b88c2015-09-23 17:21:40 -070026import android.util.SparseArray;
27
Steve McKaye852d932016-02-08 19:09:42 -080028import com.android.documentsui.dirlist.MultiSelectManager.Selection;
Steve McKay7a3b88c2015-09-23 17:21:40 -070029import com.android.documentsui.model.DocumentInfo;
30import com.android.documentsui.model.DocumentStack;
31import com.android.documentsui.model.DurableUtils;
Daichi Hirono3b36c5a2016-01-07 15:29:12 +090032import com.android.documentsui.model.RootInfo;
Steve McKayb83976072016-02-18 11:32:26 -080033import com.android.documentsui.services.FileOperationService;
Steve McKaya6bbeab2016-02-17 15:02:01 -080034import com.android.documentsui.services.FileOperationService.OpType;
Steve McKay7a3b88c2015-09-23 17:21:40 -070035
Steve McKay3eb2d072016-01-25 19:00:22 -080036import java.lang.annotation.Retention;
37import java.lang.annotation.RetentionPolicy;
Steve McKay7a3b88c2015-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 McKay3eb2d072016-01-25 19:00:22 -080043
Steve McKayaa15dae2016-02-09 16:17:24 -080044 private static final String TAG = "State";
45
Steve McKay3eb2d072016-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 McKay7a3b88c2015-09-23 17:21:40 -070070 public int action;
71 public String[] acceptMimes;
72
Steve McKay3eb2d072016-01-25 19:00:22 -080073 /** Derived from local preferences */
74 public @ViewMode int derivedMode = MODE_GRID;
Steve McKay7a3b88c2015-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 McKay9f9d5b42015-09-23 15:44:24 -070082 public boolean forceSize;
Steve McKay7a3b88c2015-09-23 17:21:40 -070083 public boolean showSize;
Steve McKay9f9d5b42015-09-23 15:44:24 -070084 public boolean localOnly;
85 public boolean forceAdvanced;
86 public boolean showAdvanced;
Steve McKay9f9d5b42015-09-23 15:44:24 -070087 public boolean restored;
Steve McKaya6bbeab2016-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 McKay9f9d5b42015-09-23 15:44:24 -070092 public boolean directoryCopy;
Tomasz Mikolajewskia8057a92015-11-16 11:41:28 +090093 public boolean openableOnly;
Steve McKaya6bbeab2016-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 McKayb83976072016-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 McKaya6bbeab2016-02-17 15:02:01 -080099 */
Steve McKayb83976072016-02-18 11:32:26 -0800100 public @OpType int copyOperationSubType = FileOperationService.OPERATION_UNKNOWN;
Steve McKay7a3b88c2015-09-23 17:21:40 -0700101
102 /** Current user navigation stack; empty implies recents. */
103 public DocumentStack stack = new DocumentStack();
Steve McKay3eb2d072016-01-25 19:00:22 -0800104 private boolean mStackTouched;
Steve McKayaa15dae2016-02-09 16:17:24 -0800105 private boolean mInitialRootChanged;
106 private boolean mInitialDocChanged;
Steve McKay3eb2d072016-01-25 19:00:22 -0800107
Steve McKay7a3b88c2015-09-23 17:21:40 -0700108 /** Instance state for every shown directory */
109 public HashMap<String, SparseArray<Parcelable>> dirState = new HashMap<>();
110
Steve McKaye852d932016-02-08 19:09:42 -0800111 /** UI selection */
112 public Selection selectedDocuments = new Selection();
113
Steve McKay7a3b88c2015-09-23 17:21:40 -0700114 /** Currently copying file */
Steve McKaye852d932016-02-08 19:09:42 -0800115 public List<DocumentInfo> selectedDocumentsForCopy = new ArrayList<>();
Steve McKay7a3b88c2015-09-23 17:21:40 -0700116
117 /** Name of the package that started DocsUI */
118 public List<String> excludedAuthorities = new ArrayList<>();
119
Steve McKay7a3b88c2015-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 Hirono3b36c5a2016-01-07 15:29:12 +0900129 public void onRootChanged(RootInfo root) {
Steve McKayaa15dae2016-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 Hirono3b36c5a2016-01-07 15:29:12 +0900134 stack.root = root;
135 stack.clear();
136 mStackTouched = true;
137 }
138
139 public void pushDocument(DocumentInfo info) {
Steve McKayaa15dae2016-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 Hirono7f34b202016-01-08 12:22:09 +0900144 stack.push(info);
Daichi Hirono3b36c5a2016-01-07 15:29:12 +0900145 mStackTouched = true;
146 }
147
148 public void popDocument() {
Steve McKayaa15dae2016-02-09 16:17:24 -0800149 if (DEBUG) Log.d(TAG, "Popping doc off stack.");
Daichi Hirono3b36c5a2016-01-07 15:29:12 +0900150 stack.pop();
151 mStackTouched = true;
152 }
153
154 public void setStack(DocumentStack stack) {
Steve McKayaa15dae2016-02-09 16:17:24 -0800155 if (DEBUG) Log.d(TAG, "Setting the whole darn stack to: " + stack);
Daichi Hirono3b36c5a2016-01-07 15:29:12 +0900156 this.stack = stack;
157 mStackTouched = true;
158 }
159
160 public boolean hasLocationChanged() {
161 return mStackTouched;
162 }
163
Aga Wronskad4b17532016-02-12 09:15:32 -0800164 public boolean initialLocationHasChanged() {
Steve McKayaa15dae2016-02-09 16:17:24 -0800165 return mInitialRootChanged || mInitialDocChanged;
166 }
167
Steve McKay7a3b88c2015-09-23 17:21:40 -0700168 @Override
169 public int describeContents() {
170 return 0;
171 }
172
173 @Override
174 public void writeToParcel(Parcel out, int flags) {
175 out.writeInt(action);
Steve McKay7a3b88c2015-09-23 17:21:40 -0700176 out.writeStringArray(acceptMimes);
177 out.writeInt(userSortOrder);
178 out.writeInt(allowMultiple ? 1 : 0);
179 out.writeInt(forceSize ? 1 : 0);
180 out.writeInt(showSize ? 1 : 0);
181 out.writeInt(localOnly ? 1 : 0);
182 out.writeInt(forceAdvanced ? 1 : 0);
183 out.writeInt(showAdvanced ? 1 : 0);
Steve McKay7a3b88c2015-09-23 17:21:40 -0700184 out.writeInt(restored ? 1 : 0);
185 DurableUtils.writeToParcel(out, stack);
Steve McKay7a3b88c2015-09-23 17:21:40 -0700186 out.writeMap(dirState);
Steve McKaye852d932016-02-08 19:09:42 -0800187 out.writeParcelable(selectedDocuments, 0);
Steve McKay7a3b88c2015-09-23 17:21:40 -0700188 out.writeList(selectedDocumentsForCopy);
189 out.writeList(excludedAuthorities);
Tomasz Mikolajewskia8057a92015-11-16 11:41:28 +0900190 out.writeInt(openableOnly ? 1 : 0);
Daichi Hirono3b36c5a2016-01-07 15:29:12 +0900191 out.writeInt(mStackTouched ? 1 : 0);
Steve McKayaa15dae2016-02-09 16:17:24 -0800192 out.writeInt(mInitialRootChanged ? 1 : 0);
193 out.writeInt(mInitialDocChanged ? 1 : 0);
Steve McKay7a3b88c2015-09-23 17:21:40 -0700194 }
195
Jeff Sharkeyba9a4b32016-02-05 17:13:16 -0700196 public static final ClassLoaderCreator<State> CREATOR = new ClassLoaderCreator<State>() {
Steve McKay7a3b88c2015-09-23 17:21:40 -0700197 @Override
198 public State createFromParcel(Parcel in) {
Jeff Sharkeyba9a4b32016-02-05 17:13:16 -0700199 return createFromParcel(in, null);
200 }
201
202 @Override
203 public State createFromParcel(Parcel in, ClassLoader loader) {
Steve McKay7a3b88c2015-09-23 17:21:40 -0700204 final State state = new State();
205 state.action = in.readInt();
Steve McKay7a3b88c2015-09-23 17:21:40 -0700206 state.acceptMimes = in.readStringArray();
207 state.userSortOrder = in.readInt();
208 state.allowMultiple = in.readInt() != 0;
209 state.forceSize = in.readInt() != 0;
210 state.showSize = in.readInt() != 0;
211 state.localOnly = in.readInt() != 0;
212 state.forceAdvanced = in.readInt() != 0;
213 state.showAdvanced = in.readInt() != 0;
Steve McKay7a3b88c2015-09-23 17:21:40 -0700214 state.restored = in.readInt() != 0;
215 DurableUtils.readFromParcel(in, state.stack);
Jeff Sharkeyba9a4b32016-02-05 17:13:16 -0700216 in.readMap(state.dirState, loader);
Steve McKaye852d932016-02-08 19:09:42 -0800217 state.selectedDocuments = in.readParcelable(loader);
Jeff Sharkeyba9a4b32016-02-05 17:13:16 -0700218 in.readList(state.selectedDocumentsForCopy, loader);
219 in.readList(state.excludedAuthorities, loader);
Tomasz Mikolajewskia8057a92015-11-16 11:41:28 +0900220 state.openableOnly = in.readInt() != 0;
Daichi Hirono3b36c5a2016-01-07 15:29:12 +0900221 state.mStackTouched = in.readInt() != 0;
Steve McKayaa15dae2016-02-09 16:17:24 -0800222 state.mInitialRootChanged = in.readInt() != 0;
223 state.mInitialDocChanged = in.readInt() != 0;
Steve McKay7a3b88c2015-09-23 17:21:40 -0700224 return state;
225 }
226
227 @Override
228 public State[] newArray(int size) {
229 return new State[size];
230 }
231 };
Ben Kwa84cebbe2015-09-25 14:48:29 -0700232}