OSDN Git Service

am 89127bbe: am 41185c4f: Fix downsampling check in crop.
[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.crop.CropActivity;
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(CropActivity.CROP_ACTION);
241                 ((Activity) mActivity).startActivity(intent);
242                 return;
243             }
244             case R.id.action_edit: {
245                 Intent intent = getIntentBySingleSelectedPath(Intent.ACTION_EDIT)
246                         .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
247                 ((Activity) mActivity).startActivity(Intent.createChooser(intent, null));
248                 return;
249             }
250             case R.id.action_setas: {
251                 Intent intent = getIntentBySingleSelectedPath(Intent.ACTION_ATTACH_DATA)
252                         .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
253                 intent.putExtra("mimeType", intent.getType());
254                 Activity activity = mActivity;
255                 activity.startActivity(Intent.createChooser(
256                         intent, activity.getString(R.string.set_as)));
257                 return;
258             }
259             case R.id.action_delete:
260                 title = R.string.delete;
261                 break;
262             case R.id.action_rotate_cw:
263                 title = R.string.rotate_right;
264                 break;
265             case R.id.action_rotate_ccw:
266                 title = R.string.rotate_left;
267                 break;
268             case R.id.action_show_on_map:
269                 title = R.string.show_on_map;
270                 break;
271             default:
272                 return;
273         }
274         startAction(action, title, listener, waitOnStop, showDialog);
275     }
276
277     private class ConfirmDialogListener implements OnClickListener, OnCancelListener {
278         private final int mActionId;
279         private final ProgressListener mListener;
280
281         public ConfirmDialogListener(int actionId, ProgressListener listener) {
282             mActionId = actionId;
283             mListener = listener;
284         }
285
286         @Override
287         public void onClick(DialogInterface dialog, int which) {
288             if (which == DialogInterface.BUTTON_POSITIVE) {
289                 if (mListener != null) {
290                     mListener.onConfirmDialogDismissed(true);
291                 }
292                 onMenuClicked(mActionId, mListener);
293             } else {
294                 if (mListener != null) {
295                     mListener.onConfirmDialogDismissed(false);
296                 }
297             }
298         }
299
300         @Override
301         public void onCancel(DialogInterface dialog) {
302             if (mListener != null) {
303                 mListener.onConfirmDialogDismissed(false);
304             }
305         }
306     }
307
308     public void onMenuClicked(MenuItem menuItem, String confirmMsg,
309             final ProgressListener listener) {
310         final int action = menuItem.getItemId();
311
312         if (confirmMsg != null) {
313             if (listener != null) listener.onConfirmDialogShown();
314             ConfirmDialogListener cdl = new ConfirmDialogListener(action, listener);
315             new AlertDialog.Builder(mActivity.getAndroidContext())
316                     .setMessage(confirmMsg)
317                     .setOnCancelListener(cdl)
318                     .setPositiveButton(R.string.ok, cdl)
319                     .setNegativeButton(R.string.cancel, cdl)
320                     .create().show();
321         } else {
322             onMenuClicked(action, listener);
323         }
324     }
325
326     public void startAction(int action, int title, ProgressListener listener) {
327         startAction(action, title, listener, false, true);
328     }
329
330     public void startAction(int action, int title, ProgressListener listener,
331             boolean waitOnStop, boolean showDialog) {
332         ArrayList<Path> ids = mSelectionManager.getSelected(false);
333         stopTaskAndDismissDialog();
334
335         Activity activity = mActivity;
336         if (showDialog) {
337             mDialog = createProgressDialog(activity, title, ids.size());
338             mDialog.show();
339         } else {
340             mDialog = null;
341         }
342         MediaOperation operation = new MediaOperation(action, ids, listener);
343         mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
344         mWaitOnStop = waitOnStop;
345     }
346
347     public void startSingleItemAction(int action, Path targetPath) {
348         ArrayList<Path> ids = new ArrayList<Path>(1);
349         ids.add(targetPath);
350         mDialog = null;
351         MediaOperation operation = new MediaOperation(action, ids, null);
352         mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
353         mWaitOnStop = false;
354     }
355
356     public static String getMimeType(int type) {
357         switch (type) {
358             case MediaObject.MEDIA_TYPE_IMAGE :
359                 return GalleryUtils.MIME_TYPE_IMAGE;
360             case MediaObject.MEDIA_TYPE_VIDEO :
361                 return GalleryUtils.MIME_TYPE_VIDEO;
362             default: return GalleryUtils.MIME_TYPE_ALL;
363         }
364     }
365
366     private boolean execute(
367             DataManager manager, JobContext jc, int cmd, Path path) {
368         boolean result = true;
369         Log.v(TAG, "Execute cmd: " + cmd + " for " + path);
370         long startTime = System.currentTimeMillis();
371
372         switch (cmd) {
373             case R.id.action_delete:
374                 manager.delete(path);
375                 break;
376             case R.id.action_rotate_cw:
377                 manager.rotate(path, 90);
378                 break;
379             case R.id.action_rotate_ccw:
380                 manager.rotate(path, -90);
381                 break;
382             case R.id.action_toggle_full_caching: {
383                 MediaObject obj = manager.getMediaObject(path);
384                 int cacheFlag = obj.getCacheFlag();
385                 if (cacheFlag == MediaObject.CACHE_FLAG_FULL) {
386                     cacheFlag = MediaObject.CACHE_FLAG_SCREENNAIL;
387                 } else {
388                     cacheFlag = MediaObject.CACHE_FLAG_FULL;
389                 }
390                 obj.cache(cacheFlag);
391                 break;
392             }
393             case R.id.action_show_on_map: {
394                 MediaItem item = (MediaItem) manager.getMediaObject(path);
395                 double latlng[] = new double[2];
396                 item.getLatLong(latlng);
397                 if (GalleryUtils.isValidLocation(latlng[0], latlng[1])) {
398                     GalleryUtils.showOnMap(mActivity, latlng[0], latlng[1]);
399                 }
400                 break;
401             }
402             default:
403                 throw new AssertionError();
404         }
405         Log.v(TAG, "It takes " + (System.currentTimeMillis() - startTime) +
406                 " ms to execute cmd for " + path);
407         return result;
408     }
409
410     private class MediaOperation implements Job<Void> {
411         private final ArrayList<Path> mItems;
412         private final int mOperation;
413         private final ProgressListener mListener;
414
415         public MediaOperation(int operation, ArrayList<Path> items,
416                 ProgressListener listener) {
417             mOperation = operation;
418             mItems = items;
419             mListener = listener;
420         }
421
422         @Override
423         public Void run(JobContext jc) {
424             int index = 0;
425             DataManager manager = mActivity.getDataManager();
426             int result = EXECUTION_RESULT_SUCCESS;
427             try {
428                 onProgressStart(mListener);
429                 for (Path id : mItems) {
430                     if (jc.isCancelled()) {
431                         result = EXECUTION_RESULT_CANCEL;
432                         break;
433                     }
434                     if (!execute(manager, jc, mOperation, id)) {
435                         result = EXECUTION_RESULT_FAIL;
436                     }
437                     onProgressUpdate(index++, mListener);
438                 }
439             } catch (Throwable th) {
440                 Log.e(TAG, "failed to execute operation " + mOperation
441                         + " : " + th);
442             } finally {
443                onProgressComplete(result, mListener);
444             }
445             return null;
446         }
447     }
448 }