OSDN Git Service

am 5a9716fe: Merge "Fix reset" into gb-ub-photos-bryce
[android-x86/packages-apps-Gallery2.git] / src / com / android / gallery3d / ui / MenuExecutor.java
1 /*
2  * Copyright (C) 2010 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
17 package com.android.gallery3d.ui;
18
19 import android.app.Activity;
20 import android.app.AlertDialog;
21 import android.app.ProgressDialog;
22 import android.content.Context;
23 import android.content.DialogInterface;
24 import android.content.DialogInterface.OnCancelListener;
25 import android.content.DialogInterface.OnClickListener;
26 import android.content.Intent;
27 import android.os.Handler;
28 import android.os.Message;
29 import android.view.Menu;
30 import android.view.MenuItem;
31
32 import com.android.gallery3d.R;
33 import com.android.gallery3d.app.AbstractGalleryActivity;
34 import com.android.gallery3d.common.Utils;
35 import com.android.gallery3d.data.DataManager;
36 import com.android.gallery3d.data.MediaItem;
37 import com.android.gallery3d.data.MediaObject;
38 import com.android.gallery3d.data.Path;
39 import com.android.gallery3d.filtershow.FilterShowActivity;
40 import com.android.gallery3d.util.Future;
41 import com.android.gallery3d.util.GalleryUtils;
42 import com.android.gallery3d.util.ThreadPool.Job;
43 import com.android.gallery3d.util.ThreadPool.JobContext;
44
45 import java.util.ArrayList;
46
47 public class MenuExecutor {
48     @SuppressWarnings("unused")
49     private static final String TAG = "MenuExecutor";
50
51     private static final int MSG_TASK_COMPLETE = 1;
52     private static final int MSG_TASK_UPDATE = 2;
53     private static final int MSG_TASK_START = 3;
54     private static final int MSG_DO_SHARE = 4;
55
56     public static final int EXECUTION_RESULT_SUCCESS = 1;
57     public static final int EXECUTION_RESULT_FAIL = 2;
58     public static final int EXECUTION_RESULT_CANCEL = 3;
59
60     private ProgressDialog mDialog;
61     private Future<?> mTask;
62     // wait the operation to finish when we want to stop it.
63     private boolean mWaitOnStop;
64     private boolean mPaused;
65
66     private final AbstractGalleryActivity mActivity;
67     private final SelectionManager mSelectionManager;
68     private final Handler mHandler;
69
70     private static ProgressDialog createProgressDialog(
71             Context context, int titleId, int progressMax) {
72         ProgressDialog dialog = new ProgressDialog(context);
73         dialog.setTitle(titleId);
74         dialog.setMax(progressMax);
75         dialog.setCancelable(false);
76         dialog.setIndeterminate(false);
77         if (progressMax > 1) {
78             dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
79         }
80         return dialog;
81     }
82
83     public interface ProgressListener {
84         public void onConfirmDialogShown();
85         public void onConfirmDialogDismissed(boolean confirmed);
86         public void onProgressStart();
87         public void onProgressUpdate(int index);
88         public void onProgressComplete(int result);
89     }
90
91     public MenuExecutor(
92             AbstractGalleryActivity activity, SelectionManager selectionManager) {
93         mActivity = Utils.checkNotNull(activity);
94         mSelectionManager = Utils.checkNotNull(selectionManager);
95         mHandler = new SynchronizedHandler(mActivity.getGLRoot()) {
96             @Override
97             public void handleMessage(Message message) {
98                 switch (message.what) {
99                     case MSG_TASK_START: {
100                         if (message.obj != null) {
101                             ProgressListener listener = (ProgressListener) message.obj;
102                             listener.onProgressStart();
103                         }
104                         break;
105                     }
106                     case MSG_TASK_COMPLETE: {
107                         stopTaskAndDismissDialog();
108                         if (message.obj != null) {
109                             ProgressListener listener = (ProgressListener) message.obj;
110                             listener.onProgressComplete(message.arg1);
111                         }
112                         mSelectionManager.leaveSelectionMode();
113                         break;
114                     }
115                     case MSG_TASK_UPDATE: {
116                         if (mDialog != null && !mPaused) mDialog.setProgress(message.arg1);
117                         if (message.obj != null) {
118                             ProgressListener listener = (ProgressListener) message.obj;
119                             listener.onProgressUpdate(message.arg1);
120                         }
121                         break;
122                     }
123                     case MSG_DO_SHARE: {
124                         ((Activity) mActivity).startActivity((Intent) message.obj);
125                         break;
126                     }
127                 }
128             }
129         };
130     }
131
132     private void stopTaskAndDismissDialog() {
133         if (mTask != null) {
134             if (!mWaitOnStop) mTask.cancel();
135             if (mDialog != null && mDialog.isShowing()) mDialog.dismiss();
136             mDialog = null;
137             mTask = null;
138         }
139     }
140
141     public void resume() {
142         mPaused = false;
143         if (mDialog != null) mDialog.show();
144     }
145
146     public void pause() {
147         mPaused = true;
148         if (mDialog != null && mDialog.isShowing()) mDialog.hide();
149     }
150
151     public void destroy() {
152         stopTaskAndDismissDialog();
153     }
154
155     private void onProgressUpdate(int index, ProgressListener listener) {
156         mHandler.sendMessage(
157                 mHandler.obtainMessage(MSG_TASK_UPDATE, index, 0, listener));
158     }
159
160     private void onProgressStart(ProgressListener listener) {
161         mHandler.sendMessage(mHandler.obtainMessage(MSG_TASK_START, listener));
162     }
163
164     private void onProgressComplete(int result, ProgressListener listener) {
165         mHandler.sendMessage(mHandler.obtainMessage(MSG_TASK_COMPLETE, result, 0, listener));
166     }
167
168     public static void updateMenuOperation(Menu menu, int supported) {
169         boolean supportDelete = (supported & MediaObject.SUPPORT_DELETE) != 0;
170         boolean supportRotate = (supported & MediaObject.SUPPORT_ROTATE) != 0;
171         boolean supportCrop = (supported & MediaObject.SUPPORT_CROP) != 0;
172         boolean supportTrim = (supported & MediaObject.SUPPORT_TRIM) != 0;
173         boolean supportMute = (supported & MediaObject.SUPPORT_MUTE) != 0;
174         boolean supportShare = (supported & MediaObject.SUPPORT_SHARE) != 0;
175         boolean supportSetAs = (supported & MediaObject.SUPPORT_SETAS) != 0;
176         boolean supportShowOnMap = (supported & MediaObject.SUPPORT_SHOW_ON_MAP) != 0;
177         boolean supportCache = (supported & MediaObject.SUPPORT_CACHE) != 0;
178         boolean supportEdit = (supported & MediaObject.SUPPORT_EDIT) != 0;
179         boolean supportInfo = (supported & MediaObject.SUPPORT_INFO) != 0;
180
181         setMenuItemVisible(menu, R.id.action_delete, supportDelete);
182         setMenuItemVisible(menu, R.id.action_rotate_ccw, supportRotate);
183         setMenuItemVisible(menu, R.id.action_rotate_cw, supportRotate);
184         setMenuItemVisible(menu, R.id.action_crop, supportCrop);
185         setMenuItemVisible(menu, R.id.action_trim, supportTrim);
186         setMenuItemVisible(menu, R.id.action_mute, supportMute);
187         // Hide panorama until call to updateMenuForPanorama corrects it
188         setMenuItemVisible(menu, R.id.action_share_panorama, false);
189         setMenuItemVisible(menu, R.id.action_share, supportShare);
190         setMenuItemVisible(menu, R.id.action_setas, supportSetAs);
191         setMenuItemVisible(menu, R.id.action_show_on_map, supportShowOnMap);
192         setMenuItemVisible(menu, R.id.action_edit, supportEdit);
193         setMenuItemVisible(menu, R.id.action_simple_edit, supportEdit);
194         setMenuItemVisible(menu, R.id.action_details, supportInfo);
195     }
196
197     public static void updateMenuForPanorama(Menu menu, boolean shareAsPanorama360,
198             boolean disablePanorama360Options) {
199         setMenuItemVisible(menu, R.id.action_share_panorama, shareAsPanorama360);
200         if (disablePanorama360Options) {
201             setMenuItemVisible(menu, R.id.action_rotate_ccw, false);
202             setMenuItemVisible(menu, R.id.action_rotate_cw, false);
203         }
204     }
205
206     private static void setMenuItemVisible(Menu menu, int itemId, boolean visible) {
207         MenuItem item = menu.findItem(itemId);
208         if (item != null) item.setVisible(visible);
209     }
210
211     private Path getSingleSelectedPath() {
212         ArrayList<Path> ids = mSelectionManager.getSelected(true);
213         Utils.assertTrue(ids.size() == 1);
214         return ids.get(0);
215     }
216
217     private Intent getIntentBySingleSelectedPath(String action) {
218         DataManager manager = mActivity.getDataManager();
219         Path path = getSingleSelectedPath();
220         String mimeType = getMimeType(manager.getMediaType(path));
221         return new Intent(action).setDataAndType(manager.getContentUri(path), mimeType);
222     }
223
224     private void onMenuClicked(int action, ProgressListener listener) {
225         onMenuClicked(action, listener, false, true);
226     }
227
228     public void onMenuClicked(int action, ProgressListener listener,
229             boolean waitOnStop, boolean showDialog) {
230         int title;
231         switch (action) {
232             case R.id.action_select_all:
233                 if (mSelectionManager.inSelectAllMode()) {
234                     mSelectionManager.deSelectAll();
235                 } else {
236                     mSelectionManager.selectAll();
237                 }
238                 return;
239             case R.id.action_crop: {
240                 Intent intent = getIntentBySingleSelectedPath(FilterShowActivity.CROP_ACTION)
241                         .setClass((Activity) mActivity, FilterShowActivity.class);
242                 ((Activity) mActivity).startActivity(intent);
243                 return;
244             }
245             case R.id.action_edit: {
246                 Intent intent = getIntentBySingleSelectedPath(Intent.ACTION_EDIT)
247                         .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
248                 ((Activity) mActivity).startActivity(Intent.createChooser(intent, null));
249                 return;
250             }
251             case R.id.action_setas: {
252                 Intent intent = getIntentBySingleSelectedPath(Intent.ACTION_ATTACH_DATA)
253                         .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
254                 intent.putExtra("mimeType", intent.getType());
255                 Activity activity = mActivity;
256                 activity.startActivity(Intent.createChooser(
257                         intent, activity.getString(R.string.set_as)));
258                 return;
259             }
260             case R.id.action_delete:
261                 title = R.string.delete;
262                 break;
263             case R.id.action_rotate_cw:
264                 title = R.string.rotate_right;
265                 break;
266             case R.id.action_rotate_ccw:
267                 title = R.string.rotate_left;
268                 break;
269             case R.id.action_show_on_map:
270                 title = R.string.show_on_map;
271                 break;
272             default:
273                 return;
274         }
275         startAction(action, title, listener, waitOnStop, showDialog);
276     }
277
278     private class ConfirmDialogListener implements OnClickListener, OnCancelListener {
279         private final int mActionId;
280         private final ProgressListener mListener;
281
282         public ConfirmDialogListener(int actionId, ProgressListener listener) {
283             mActionId = actionId;
284             mListener = listener;
285         }
286
287         @Override
288         public void onClick(DialogInterface dialog, int which) {
289             if (which == DialogInterface.BUTTON_POSITIVE) {
290                 if (mListener != null) {
291                     mListener.onConfirmDialogDismissed(true);
292                 }
293                 onMenuClicked(mActionId, mListener);
294             } else {
295                 if (mListener != null) {
296                     mListener.onConfirmDialogDismissed(false);
297                 }
298             }
299         }
300
301         @Override
302         public void onCancel(DialogInterface dialog) {
303             if (mListener != null) {
304                 mListener.onConfirmDialogDismissed(false);
305             }
306         }
307     }
308
309     public void onMenuClicked(MenuItem menuItem, String confirmMsg,
310             final ProgressListener listener) {
311         final int action = menuItem.getItemId();
312
313         if (confirmMsg != null) {
314             if (listener != null) listener.onConfirmDialogShown();
315             ConfirmDialogListener cdl = new ConfirmDialogListener(action, listener);
316             new AlertDialog.Builder(mActivity.getAndroidContext())
317                     .setMessage(confirmMsg)
318                     .setOnCancelListener(cdl)
319                     .setPositiveButton(R.string.ok, cdl)
320                     .setNegativeButton(R.string.cancel, cdl)
321                     .create().show();
322         } else {
323             onMenuClicked(action, listener);
324         }
325     }
326
327     public void startAction(int action, int title, ProgressListener listener) {
328         startAction(action, title, listener, false, true);
329     }
330
331     public void startAction(int action, int title, ProgressListener listener,
332             boolean waitOnStop, boolean showDialog) {
333         ArrayList<Path> ids = mSelectionManager.getSelected(false);
334         stopTaskAndDismissDialog();
335
336         Activity activity = mActivity;
337         if (showDialog) {
338             mDialog = createProgressDialog(activity, title, ids.size());
339             mDialog.show();
340         } else {
341             mDialog = null;
342         }
343         MediaOperation operation = new MediaOperation(action, ids, listener);
344         mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
345         mWaitOnStop = waitOnStop;
346     }
347
348     public void startSingleItemAction(int action, Path targetPath) {
349         ArrayList<Path> ids = new ArrayList<Path>(1);
350         ids.add(targetPath);
351         mDialog = null;
352         MediaOperation operation = new MediaOperation(action, ids, null);
353         mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
354         mWaitOnStop = false;
355     }
356
357     public static String getMimeType(int type) {
358         switch (type) {
359             case MediaObject.MEDIA_TYPE_IMAGE :
360                 return GalleryUtils.MIME_TYPE_IMAGE;
361             case MediaObject.MEDIA_TYPE_VIDEO :
362                 return GalleryUtils.MIME_TYPE_VIDEO;
363             default: return GalleryUtils.MIME_TYPE_ALL;
364         }
365     }
366
367     private boolean execute(
368             DataManager manager, JobContext jc, int cmd, Path path) {
369         boolean result = true;
370         Log.v(TAG, "Execute cmd: " + cmd + " for " + path);
371         long startTime = System.currentTimeMillis();
372
373         switch (cmd) {
374             case R.id.action_delete:
375                 manager.delete(path);
376                 break;
377             case R.id.action_rotate_cw:
378                 manager.rotate(path, 90);
379                 break;
380             case R.id.action_rotate_ccw:
381                 manager.rotate(path, -90);
382                 break;
383             case R.id.action_toggle_full_caching: {
384                 MediaObject obj = manager.getMediaObject(path);
385                 int cacheFlag = obj.getCacheFlag();
386                 if (cacheFlag == MediaObject.CACHE_FLAG_FULL) {
387                     cacheFlag = MediaObject.CACHE_FLAG_SCREENNAIL;
388                 } else {
389                     cacheFlag = MediaObject.CACHE_FLAG_FULL;
390                 }
391                 obj.cache(cacheFlag);
392                 break;
393             }
394             case R.id.action_show_on_map: {
395                 MediaItem item = (MediaItem) manager.getMediaObject(path);
396                 double latlng[] = new double[2];
397                 item.getLatLong(latlng);
398                 if (GalleryUtils.isValidLocation(latlng[0], latlng[1])) {
399                     GalleryUtils.showOnMap(mActivity, latlng[0], latlng[1]);
400                 }
401                 break;
402             }
403             default:
404                 throw new AssertionError();
405         }
406         Log.v(TAG, "It takes " + (System.currentTimeMillis() - startTime) +
407                 " ms to execute cmd for " + path);
408         return result;
409     }
410
411     private class MediaOperation implements Job<Void> {
412         private final ArrayList<Path> mItems;
413         private final int mOperation;
414         private final ProgressListener mListener;
415
416         public MediaOperation(int operation, ArrayList<Path> items,
417                 ProgressListener listener) {
418             mOperation = operation;
419             mItems = items;
420             mListener = listener;
421         }
422
423         @Override
424         public Void run(JobContext jc) {
425             int index = 0;
426             DataManager manager = mActivity.getDataManager();
427             int result = EXECUTION_RESULT_SUCCESS;
428             try {
429                 onProgressStart(mListener);
430                 for (Path id : mItems) {
431                     if (jc.isCancelled()) {
432                         result = EXECUTION_RESULT_CANCEL;
433                         break;
434                     }
435                     if (!execute(manager, jc, mOperation, id)) {
436                         result = EXECUTION_RESULT_FAIL;
437                     }
438                     onProgressUpdate(index++, mListener);
439                 }
440             } catch (Throwable th) {
441                 Log.e(TAG, "failed to execute operation " + mOperation
442                         + " : " + th);
443             } finally {
444                onProgressComplete(result, mListener);
445             }
446             return null;
447         }
448     }
449 }