aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/filemanager/ui/policy/DeleteActionPolicy.java
blob: b869d751b9c2b8d26ec9ad869fbee910c3bb366d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/*
 * Copyright (C) 2012 The CyanogenMod Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.cyanogenmod.filemanager.ui.policy;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.text.Html;
import android.text.Spanned;
import android.view.View;
import android.widget.Toast;

import com.cyanogenmod.filemanager.R;
import com.cyanogenmod.filemanager.console.ExecutionException;
import com.cyanogenmod.filemanager.console.RelaunchableException;
import com.cyanogenmod.filemanager.listeners.OnRequestRefreshListener;
import com.cyanogenmod.filemanager.listeners.OnSelectionListener;
import com.cyanogenmod.filemanager.model.FileSystemObject;
import com.cyanogenmod.filemanager.preferences.Bookmarks;
import com.cyanogenmod.filemanager.ui.widgets.FlingerListView.OnItemFlingerResponder;
import com.cyanogenmod.filemanager.util.CommandHelper;
import com.cyanogenmod.filemanager.util.DialogHelper;
import com.cyanogenmod.filemanager.util.ExceptionUtil;
import com.cyanogenmod.filemanager.util.ExceptionUtil.OnRelaunchCommandResult;
import com.cyanogenmod.filemanager.util.FileHelper;
import com.cyanogenmod.filemanager.util.SnackbarHelper;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;


/**
 * A class with the convenience methods for resolve delete related actions
 */
public final class DeleteActionPolicy extends ActionsPolicy {

    /**
     * Method that remove an existing file system object.
     *
     * @param ctx The current context
     * @param fso The file system object to remove
     * @param onSelectionListener The listener for obtain selection information (required)
     * @param onRequestRefreshListener The listener for request a refresh (optional)
     * @param onItemFlingerResponder The flinger responder, only if the action was initialized
     * by a flinger gesture (optional)
     */
    public static void removeFileSystemObject(
            final Context ctx, final View container, final FileSystemObject fso,
            final OnSelectionListener onSelectionListener,
            final OnRequestRefreshListener onRequestRefreshListener,
            final OnItemFlingerResponder onItemFlingerResponder) {
        // Generate an array and invoke internal method
        List<FileSystemObject> files = new ArrayList<FileSystemObject>(1);
        files.add(fso);
        removeFileSystemObjects(
                ctx, container, files, onSelectionListener,
                onRequestRefreshListener, onItemFlingerResponder);
    }

    /**
     * Method that remove an existing file system object.
     *
     * @param ctx The current context
     * @param files The list of files to remove
     * @param onSelectionListener The listener for obtain selection information (required)
     * @param onRequestRefreshListener The listener for request a refresh (optional)
     * @param onItemFlingerResponder The flinger responder, only if the action was initialized
     * by a flinger gesture (optional)
     */
    public static void removeFileSystemObjects(
            final Context ctx, final View container, final List<FileSystemObject> files,
            final OnSelectionListener onSelectionListener,
            final OnRequestRefreshListener onRequestRefreshListener,
            final OnItemFlingerResponder onItemFlingerResponder) {

        // inform of the number of FSOs that will be deleted
        int numberOfItemsSelected = files.size();
        StringBuilder messageBuilder = new StringBuilder(
            ctx.getResources().getQuantityString(
                R.plurals.deleting_n_items,
                numberOfItemsSelected,
                numberOfItemsSelected
            )
        )
        .append('\n')
        .append(ctx.getString(R.string.actions_ask_undone_operation_msg));

        // Ask the user before remove
        AlertDialog dialog = DialogHelper.createYesNoDialog(
            ctx,
            R.string.confirm_deletion,
            messageBuilder.toString(),
            new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface alertDialog, int which) {
                    if (which == DialogInterface.BUTTON_POSITIVE) {
                        // Remove the items
                        removeFileSystemObjectsInBackground(
                                ctx,
                                container,
                                files,
                                onSelectionListener,
                                onRequestRefreshListener,
                                onItemFlingerResponder);
                    } else {
                        // Flinger operation should be cancelled
                        if (onItemFlingerResponder != null) {
                            onItemFlingerResponder.cancel();
                        }
                    }
                }
            });
        DialogHelper.delegateDialogShow(ctx, dialog);
    }

    /**
     * Method that remove an existing file system object in background.
     *
     * @param ctx The current context
     * @param files The list of files to remove
     * @param onSelectionListener The listener for obtain selection information (optional)
     * @param onRequestRefreshListener The listener for request a refresh (optional)
     * @param onItemFlingerResponder The flinger responder, only if the action was initialized
     * by a flinger gesture (optional)
     * @hide
     */
    static void removeFileSystemObjectsInBackground(
            final Context ctx, final View container, final List<FileSystemObject> files,
            final OnSelectionListener onSelectionListener,
            final OnRequestRefreshListener onRequestRefreshListener,
            final OnItemFlingerResponder onItemFlingerResponder) {
        final AtomicReference<OnRelaunchCommandResult> atomicRelaunchCommandResult =
                new AtomicReference<>();
        final AtomicReference<Runnable> atomicRunnable =
                new AtomicReference<>();
        final Runnable runnable = new Runnable() {
            @Override
            public void run() {
                // Some previous checks prior to execute
                // 1.- Check the operation consistency (only if it is viable)
                if (onSelectionListener != null) {
                    final String currentDirectory = onSelectionListener.onRequestCurrentDir();
                    if (!checkRemoveConsistency(ctx, files, currentDirectory)) {
                        return;
                    }
                }
                // 2.- Sort the items by path to avoid delete parents fso prior to child fso
                final List<FileSystemObject> sortedFsos  = new ArrayList<FileSystemObject>(files);
                Collections.sort(sortedFsos, new Comparator<FileSystemObject>() {
                    @Override
                    public int compare(FileSystemObject lhs, FileSystemObject rhs) {
                        return lhs.compareTo(rhs) * -1; //Reverse
                    }
                });

                // The callable interface
                final BackgroundCallable callable = new BackgroundCallable() {
                    // The current items
                    private int mCurrent = 0;
                    final Context mCtx = ctx;
                    final List<FileSystemObject> mFiles = sortedFsos;
                    final OnRequestRefreshListener mOnRequestRefreshListener = onRequestRefreshListener;

                    final Object mSync = new Object();
                    Throwable mCause;

                    @Override
                    public int getDialogTitle() {
                        return R.string.waiting_dialog_deleting_title;
                    }

                    @Override
                    public String getDialogMessage() {
                        return null;
                    }

                    @Override
                    public DialogType getDialogType() {
                        return DialogType.MESSAGE_PROGRESS_DIALOG;
                    }

                    @Override
                    public int getDialogIcon() {
                        return 0;
                    }

                    @Override
                    public int getDialogColor() {
                        return 0;
                    }

                    @Override
                    public boolean isDialogCancellable() {
                        return false;
                    }

                    @Override
                    public Spanned requestProgress() {
                        FileSystemObject fso = this.mFiles.get(this.mCurrent);

                        // Return the current operation
                        String progress =
                                this.mCtx.getResources().
                                        getString(
                                                R.string.waiting_dialog_deleting_msg,
                                                fso.getFullPath());
                        return Html.fromHtml(progress);
                    }

                    @Override
                    public void onSuccess() {
                        //Operation complete.

                        // Confirms flinger operation
                        if (onItemFlingerResponder != null) {
                            onItemFlingerResponder.accept();
                        }

                        // Remove orphan bookmark paths
                        if (files != null) {
                            for (FileSystemObject fso : files) {
                                Bookmarks.deleteOrphanBookmarks(ctx, fso.getFullPath());
                            }
                        }

                        // Refresh
                        if (this.mOnRequestRefreshListener != null) {
                            // The reference is not the same, so refresh the complete navigation view
                            if (files != null && files.size() == 1) {
                                this.mOnRequestRefreshListener.onRequestRemove(files.get(0), true);
                            } else {
                                this.mOnRequestRefreshListener.onRequestRemove(null, true);
                            }
                        }
                        ActionsPolicy.showOperationSuccessMsg(ctx);
                    }

                    @Override
                    public void onError(Throwable error) {
                        handleError(mCtx, container, atomicRelaunchCommandResult.get());
                    }

                    @Override
                    public void onCancel() {

                    }

                    @Override
                    public void doInBackground(Object... params) throws Throwable {
                        this.mCause = null;

                        // This method expect to receive
                        // 1.- BackgroundAsyncTask
                        BackgroundAsyncTask task = (BackgroundAsyncTask)params[0];

                        int cc = this.mFiles.size();
                        for (int i = 0; i < cc; i++) {
                            FileSystemObject fso = this.mFiles.get(i);

                            doOperation(this.mCtx, fso);

                            // Next file
                            this.mCurrent++;
                            if (this.mCurrent < this.mFiles.size()) {
                                task.onRequestProgress();
                            }
                        }
                    }

                    /**
                     * Method that deletes the file or directory
                     *
                     * @param ctx The current context
                     * @param fso The file or folder to be deleted
                     */
                    private void doOperation(
                            final Context ctx, final FileSystemObject fso) throws Throwable {
                        try {
                            // Remove the item
                            if (FileHelper.isDirectory(fso)) {
                                CommandHelper.deleteDirectory(ctx, fso.getFullPath(), null);
                            } else {
                                CommandHelper.deleteFile(ctx, fso.getFullPath(), null);
                            }
                        } catch (Exception e) {
                            // Need to be relaunched?
                            if (e instanceof RelaunchableException) {
                                OnRelaunchCommandResult rl = new OnRelaunchCommandResult() {
                                    @Override
                                    @SuppressWarnings("unqualified-field-access")
                                    public void onSuccess() {
                                        synchronized (mSync) {
                                            mSync.notify();
                                        }
                                    }

                                    @Override
                                    @SuppressWarnings("unqualified-field-access")
                                    public void onFailed(Throwable cause) {
                                        mCause = cause;
                                        synchronized (mSync) {
                                            mSync.notify();
                                        }
                                    }
                                    @Override
                                    @SuppressWarnings("unqualified-field-access")
                                    public void onCancelled() {
                                        synchronized (mSync) {
                                            mSync.notify();
                                        }
                                    }
                                };

                                // Translate the exception (and wait for the result)
                                handleError(mCtx, container, rl);
                                synchronized (this.mSync) {
                                    this.mSync.wait();
                                }

                                // Persist the exception?
                                if (this.mCause != null) {
                                    // Cancels the flinger
                                    if (onItemFlingerResponder != null) {
                                        onItemFlingerResponder.cancel();
                                    }

                                    // The exception must be elevated
                                    throw this.mCause;
                                }

                            } else {
                                // Cancels the flinger
                                if (onItemFlingerResponder != null) {
                                    onItemFlingerResponder.cancel();
                                }

                                // The exception must be elevated
                                throw e;
                            }
                        }

                        // Check that the operation was completed retrieving the deleted fso
                        boolean failed = false;
                        try {
                            FileSystemObject fso2 =
                                    CommandHelper.getFileInfo(ctx, fso.getFullPath(), false, null);
                            if (fso2 != null) {
                                // Failed. The file still exists
                                failed = true;
                            }

                        } catch (Throwable e) {
                            // Operation complete successfully
                        }
                        if (failed) {
                            // Cancels the flinger
                            if (onItemFlingerResponder != null) {
                                onItemFlingerResponder.cancel();
                            }

                            throw new ExecutionException(
                                    String.format(
                                            "Failed to delete file: %s", fso.getFullPath())); //$NON-NLS-1$
                        }
                    }
                };
                ExceptionUtil.OnRelaunchCommandResult onRelaunchCommandResult =
                        new ExceptionUtil.OnRelaunchCommandResult() {
                            @Override
                            public void onSuccess() {
                                if (atomicRunnable.get() != null) {
                                    atomicRunnable.get().run();
                                }
                            }

                            @Override
                            public void onCancelled() {

                            }

                            @Override
                            public void onFailed(Throwable cause) {

                            }
                        };
                atomicRelaunchCommandResult.set(onRelaunchCommandResult);
                final BackgroundAsyncTask task = new BackgroundAsyncTask(ctx, callable);

                // Execute background task
                task.execute(task);
            }
        };
        atomicRunnable.set(runnable);
        runnable.run();
    }

    /**
     * Method that check the consistency of delete operations.<br/>
     * <br/>
     * The method checks the following rules:<br/>
     * <ul>
     * <li>Any of the files of the move or delete operation can not include the
     * current directory.</li>
     * </ul>
     *
     * @param ctx The current context
     * @param files The list of source/destination files
     * @param currentDirectory The current directory
     * @return boolean If the consistency is validate successfully
     */
    private static boolean checkRemoveConsistency(
            Context ctx, List<FileSystemObject> files, String currentDirectory) {
        int cc = files.size();
        for (int i = 0; i < cc; i++) {
            FileSystemObject fso = files.get(i);

            // 1.- Current directory can't be deleted
            if (currentDirectory.startsWith(fso.getFullPath())) {
                // Operation not allowed
                AlertDialog dialog =
                        DialogHelper.createWarningDialog(
                                ctx,
                                R.string.warning_title,
                                R.string.msgs_unresolved_inconsistencies);
                DialogHelper.delegateDialogShow(ctx, dialog);
                return false;
            }
        }
        return true;
    }

    private static void handleError(final Context context, View container,
            OnRelaunchCommandResult onRelaunchCommandResult) {
            SnackbarHelper.showWithRetry(context, container,
                    context.getString(R.string.snackbar_unable_to_delete),
                    onRelaunchCommandResult);
    }
}