OSDN Git Service

Minimum viable Android M runtime permissions handling for H.
[android-x86/packages-apps-Camera2.git] / src / com / android / camera / CameraActivity.java
1 /*
2  * Copyright (C) 2012 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
18 package com.android.camera;
19
20 import android.Manifest;
21 import android.animation.Animator;
22 import android.app.ActionBar;
23 import android.app.Activity;
24 import android.app.Dialog;
25 import android.content.ActivityNotFoundException;
26 import android.content.BroadcastReceiver;
27 import android.content.ContentResolver;
28 import android.content.Context;
29 import android.content.Intent;
30 import android.content.IntentFilter;
31 import android.content.pm.ActivityInfo;
32 import android.content.pm.PackageManager;
33 import android.content.res.Configuration;
34 import android.graphics.Bitmap;
35 import android.graphics.Matrix;
36 import android.graphics.RectF;
37 import android.graphics.SurfaceTexture;
38 import android.graphics.drawable.ColorDrawable;
39 import android.graphics.drawable.Drawable;
40 import android.net.Uri;
41 import android.nfc.NfcAdapter;
42 import android.nfc.NfcAdapter.CreateBeamUrisCallback;
43 import android.nfc.NfcEvent;
44 import android.os.AsyncTask;
45 import android.os.Build;
46 import android.os.Bundle;
47 import android.os.Handler;
48 import android.os.Looper;
49 import android.os.Message;
50 import android.provider.MediaStore;
51 import android.provider.Settings;
52 import android.text.TextUtils;
53 import android.util.CameraPerformanceTracker;
54 import android.view.ContextMenu;
55 import android.view.ContextMenu.ContextMenuInfo;
56 import android.view.KeyEvent;
57 import android.view.Menu;
58 import android.view.MenuInflater;
59 import android.view.MenuItem;
60 import android.view.MotionEvent;
61 import android.view.View;
62 import android.view.View.OnSystemUiVisibilityChangeListener;
63 import android.view.ViewGroup;
64 import android.view.Window;
65 import android.view.WindowManager;
66 import android.widget.FrameLayout;
67 import android.widget.ImageView;
68 import android.widget.ShareActionProvider;
69
70 import com.android.camera.app.AppController;
71 import com.android.camera.app.CameraAppUI;
72 import com.android.camera.app.CameraController;
73 import com.android.camera.app.CameraProvider;
74 import com.android.camera.app.CameraServices;
75 import com.android.camera.app.CameraServicesImpl;
76 import com.android.camera.app.FirstRunDialog;
77 import com.android.camera.app.LocationManager;
78 import com.android.camera.app.MemoryManager;
79 import com.android.camera.app.MemoryQuery;
80 import com.android.camera.app.ModuleManager;
81 import com.android.camera.app.ModuleManager.ModuleAgent;
82 import com.android.camera.app.ModuleManagerImpl;
83 import com.android.camera.app.MotionManager;
84 import com.android.camera.app.OrientationManager;
85 import com.android.camera.app.OrientationManagerImpl;
86 import com.android.camera.data.CameraFilmstripDataAdapter;
87 import com.android.camera.data.FilmstripContentObserver;
88 import com.android.camera.data.FilmstripItem;
89 import com.android.camera.data.FilmstripItemData;
90 import com.android.camera.data.FilmstripItemType;
91 import com.android.camera.data.FilmstripItemUtils;
92 import com.android.camera.data.FixedLastProxyAdapter;
93 import com.android.camera.data.GlideFilmstripManager;
94 import com.android.camera.data.LocalFilmstripDataAdapter;
95 import com.android.camera.data.LocalFilmstripDataAdapter.FilmstripItemListener;
96 import com.android.camera.data.MediaDetails;
97 import com.android.camera.data.MetadataLoader;
98 import com.android.camera.data.PhotoDataFactory;
99 import com.android.camera.data.PhotoItem;
100 import com.android.camera.data.PhotoItemFactory;
101 import com.android.camera.data.PlaceholderItem;
102 import com.android.camera.data.SessionItem;
103 import com.android.camera.data.VideoDataFactory;
104 import com.android.camera.data.VideoItemFactory;
105 import com.android.camera.debug.Log;
106 import com.android.camera.device.ActiveCameraDeviceTracker;
107 import com.android.camera.device.CameraId;
108 import com.android.camera.filmstrip.FilmstripContentPanel;
109 import com.android.camera.filmstrip.FilmstripController;
110 import com.android.camera.module.ModuleController;
111 import com.android.camera.module.ModulesInfo;
112 import com.android.camera.one.OneCameraException;
113 import com.android.camera.one.OneCameraManager;
114 import com.android.camera.one.OneCameraModule;
115 import com.android.camera.one.OneCameraOpener;
116 import com.android.camera.one.config.OneCameraFeatureConfig;
117 import com.android.camera.one.config.OneCameraFeatureConfigCreator;
118 import com.android.camera.session.CaptureSession;
119 import com.android.camera.session.CaptureSessionManager;
120 import com.android.camera.session.CaptureSessionManager.SessionListener;
121 import com.android.camera.settings.AppUpgrader;
122 import com.android.camera.settings.CameraSettingsActivity;
123 import com.android.camera.settings.Keys;
124 import com.android.camera.settings.PictureSizeLoader;
125 import com.android.camera.settings.ResolutionSetting;
126 import com.android.camera.settings.ResolutionUtil;
127 import com.android.camera.settings.SettingsManager;
128 import com.android.camera.stats.UsageStatistics;
129 import com.android.camera.stats.profiler.Profile;
130 import com.android.camera.stats.profiler.Profiler;
131 import com.android.camera.stats.profiler.Profilers;
132 import com.android.camera.tinyplanet.TinyPlanetFragment;
133 import com.android.camera.ui.AbstractTutorialOverlay;
134 import com.android.camera.ui.DetailsDialog;
135 import com.android.camera.ui.MainActivityLayout;
136 import com.android.camera.ui.ModeListView;
137 import com.android.camera.ui.ModeListView.ModeListVisibilityChangedListener;
138 import com.android.camera.ui.PreviewStatusListener;
139 import com.android.camera.util.ApiHelper;
140 import com.android.camera.util.Callback;
141 import com.android.camera.util.CameraUtil;
142 import com.android.camera.util.GalleryHelper;
143 import com.android.camera.util.GcamHelper;
144 import com.android.camera.util.GoogleHelpHelper;
145 import com.android.camera.util.IntentHelper;
146 import com.android.camera.util.PhotoSphereHelper.PanoramaViewHelper;
147 import com.android.camera.util.QuickActivity;
148 import com.android.camera.util.ReleaseHelper;
149 import com.android.camera.widget.FilmstripView;
150 import com.android.camera.widget.Preloader;
151 import com.android.camera2.R;
152 import com.android.ex.camera2.portability.CameraAgent;
153 import com.android.ex.camera2.portability.CameraAgentFactory;
154 import com.android.ex.camera2.portability.CameraExceptionHandler;
155 import com.android.ex.camera2.portability.CameraSettings;
156 import com.bumptech.glide.Glide;
157 import com.bumptech.glide.GlideBuilder;
158 import com.bumptech.glide.MemoryCategory;
159 import com.bumptech.glide.load.DecodeFormat;
160 import com.bumptech.glide.load.engine.executor.FifoPriorityThreadPoolExecutor;
161
162 import com.google.common.base.Optional;
163 import com.google.common.logging.eventprotos;
164 import com.google.common.logging.eventprotos.ForegroundEvent.ForegroundSource;
165 import com.google.common.logging.eventprotos.MediaInteraction;
166 import com.google.common.logging.eventprotos.NavigationChange;
167
168 import java.io.File;
169 import java.lang.ref.WeakReference;
170 import java.util.ArrayList;
171 import java.util.HashMap;
172 import java.util.List;
173
174 public class CameraActivity extends QuickActivity
175         implements AppController, CameraAgent.CameraOpenCallback,
176         ShareActionProvider.OnShareTargetSelectedListener {
177
178     private static final Log.Tag TAG = new Log.Tag("CameraActivity");
179
180     private static final String INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE =
181             "android.media.action.STILL_IMAGE_CAMERA_SECURE";
182     public static final String ACTION_IMAGE_CAPTURE_SECURE =
183             "android.media.action.IMAGE_CAPTURE_SECURE";
184
185     // The intent extra for camera from secure lock screen. True if the gallery
186     // should only show newly captured pictures. sSecureAlbumId does not
187     // increment. This is used when switching between camera, camcorder, and
188     // panorama. If the extra is not set, it is in the normal camera mode.
189     public static final String SECURE_CAMERA_EXTRA = "secure_camera";
190
191     private static final int MSG_CLEAR_SCREEN_ON_FLAG = 2;
192     private static final long SCREEN_DELAY_MS = 2 * 60 * 1000; // 2 mins.
193     /** Load metadata for 10 items ahead of our current. */
194     private static final int FILMSTRIP_PRELOAD_AHEAD_ITEMS = 10;
195     private static final int PERMISSIONS_ACTIVITY_REQUEST_CODE = 1;
196     private static final int PERMISSIONS_RESULT_CODE_OK = 0;
197     private static final int PERMISSIONS_RESULT_CODE_FAILED = 1;
198
199     /** Should be used wherever a context is needed. */
200     private Context mAppContext;
201
202     /**
203      * Camera fatal error handling:
204      * 1) Present error dialog to guide users to exit the app.
205      * 2) If users hit home button, onPause should just call finish() to exit the app.
206      */
207     private boolean mCameraFatalError = false;
208
209     /**
210      * Whether onResume should reset the view to the preview.
211      */
212     private boolean mResetToPreviewOnResume = true;
213
214     /**
215      * This data adapter is used by FilmStripView.
216      */
217     private VideoItemFactory mVideoItemFactory;
218     private PhotoItemFactory mPhotoItemFactory;
219     private LocalFilmstripDataAdapter mDataAdapter;
220
221     private ActiveCameraDeviceTracker mActiveCameraDeviceTracker;
222     private OneCameraOpener mOneCameraOpener;
223     private OneCameraManager mOneCameraManager;
224     private SettingsManager mSettingsManager;
225     private ResolutionSetting mResolutionSetting;
226     private ModeListView mModeListView;
227     private boolean mModeListVisible = false;
228     private int mCurrentModeIndex;
229     private CameraModule mCurrentModule;
230     private ModuleManagerImpl mModuleManager;
231     private FrameLayout mAboveFilmstripControlLayout;
232     private FilmstripController mFilmstripController;
233     private boolean mFilmstripVisible;
234     /** Whether the filmstrip fully covers the preview. */
235     private boolean mFilmstripCoversPreview = false;
236     private int mResultCodeForTesting;
237     private Intent mResultDataForTesting;
238     private OnScreenHint mStorageHint;
239     private final Object mStorageSpaceLock = new Object();
240     private long mStorageSpaceBytes = Storage.LOW_STORAGE_THRESHOLD_BYTES;
241     private boolean mAutoRotateScreen;
242     private boolean mSecureCamera;
243     private OrientationManagerImpl mOrientationManager;
244     private LocationManager mLocationManager;
245     private ButtonManager mButtonManager;
246     private Handler mMainHandler;
247     private PanoramaViewHelper mPanoramaViewHelper;
248     private ActionBar mActionBar;
249     private ViewGroup mUndoDeletionBar;
250     private boolean mIsUndoingDeletion = false;
251     private boolean mIsActivityRunning = false;
252     private FatalErrorHandler mFatalErrorHandler;
253     private boolean mHasCriticalPermissions;
254
255     private final Uri[] mNfcPushUris = new Uri[1];
256
257     private FilmstripContentObserver mLocalImagesObserver;
258     private FilmstripContentObserver mLocalVideosObserver;
259
260     private boolean mPendingDeletion = false;
261
262     private CameraController mCameraController;
263     private boolean mPaused;
264     private CameraAppUI mCameraAppUI;
265
266     private Intent mGalleryIntent;
267     private long mOnCreateTime;
268
269     private Menu mActionBarMenu;
270     private Preloader<Integer, AsyncTask> mPreloader;
271
272     /** Can be used to play custom sounds. */
273     private SoundPlayer mSoundPlayer;
274
275     /** Holds configuration for various OneCamera features. */
276     private OneCameraFeatureConfig mFeatureConfig;
277
278     private static final int LIGHTS_OUT_DELAY_MS = 4000;
279     private final int BASE_SYS_UI_VISIBILITY =
280             View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
281             | View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
282     private final Runnable mLightsOutRunnable = new Runnable() {
283         @Override
284         public void run() {
285             getWindow().getDecorView().setSystemUiVisibility(
286                     BASE_SYS_UI_VISIBILITY | View.SYSTEM_UI_FLAG_LOW_PROFILE);
287         }
288     };
289     private MemoryManager mMemoryManager;
290     private MotionManager mMotionManager;
291     private final Profiler mProfiler = Profilers.instance().guard();
292
293     /** First run dialog */
294     private FirstRunDialog mFirstRunDialog;
295
296     @Override
297     public CameraAppUI getCameraAppUI() {
298         return mCameraAppUI;
299     }
300
301     @Override
302     public ModuleManager getModuleManager() {
303         return mModuleManager;
304     }
305
306     /**
307      * Close activity when secure app passes lock screen or screen turns
308      * off.
309      */
310     private final BroadcastReceiver mShutdownReceiver = new BroadcastReceiver() {
311         @Override
312         public void onReceive(Context context, Intent intent) {
313             finish();
314         }
315     };
316
317     /**
318      * Whether the screen is kept turned on.
319      */
320     private boolean mKeepScreenOn;
321     private int mLastLayoutOrientation;
322     private final CameraAppUI.BottomPanel.Listener mMyFilmstripBottomControlListener =
323             new CameraAppUI.BottomPanel.Listener() {
324
325                 /**
326                  * If the current photo is a photo sphere, this will launch the
327                  * Photo Sphere panorama viewer.
328                  */
329                 @Override
330                 public void onExternalViewer() {
331                     if (mPanoramaViewHelper == null) {
332                         return;
333                     }
334                     final FilmstripItem data = getCurrentLocalData();
335                     if (data == null) {
336                         Log.w(TAG, "Cannot open null data.");
337                         return;
338                     }
339                     final Uri contentUri = data.getData().getUri();
340                     if (contentUri == Uri.EMPTY) {
341                         Log.w(TAG, "Cannot open empty URL.");
342                         return;
343                     }
344
345                     if (data.getMetadata().isUsePanoramaViewer()) {
346                         mPanoramaViewHelper.showPanorama(CameraActivity.this, contentUri);
347                     } else if (data.getMetadata().isHasRgbzData()) {
348                         mPanoramaViewHelper.showRgbz(contentUri);
349                         if (mSettingsManager.getBoolean(SettingsManager.SCOPE_GLOBAL,
350                                 Keys.KEY_SHOULD_SHOW_REFOCUS_VIEWER_CLING)) {
351                             mSettingsManager.set(SettingsManager.SCOPE_GLOBAL,
352                                     Keys.KEY_SHOULD_SHOW_REFOCUS_VIEWER_CLING, false);
353                             mCameraAppUI.clearClingForViewer(
354                                     CameraAppUI.BottomPanel.VIEWER_REFOCUS);
355                         }
356                     }
357                 }
358
359                 @Override
360                 public void onEdit() {
361                     FilmstripItem data = getCurrentLocalData();
362                     if (data == null) {
363                         Log.w(TAG, "Cannot edit null data.");
364                         return;
365                     }
366                     final int currentDataId = getCurrentDataId();
367                     UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(
368                                 currentDataId),
369                             MediaInteraction.InteractionType.EDIT,
370                             NavigationChange.InteractionCause.BUTTON,
371                             fileAgeFromAdapterAtIndex(currentDataId));
372                     launchEditor(data);
373                 }
374
375                 @Override
376                 public void onTinyPlanet() {
377                     FilmstripItem data = getCurrentLocalData();
378                     if (data == null) {
379                         Log.w(TAG, "Cannot edit tiny planet on null data.");
380                         return;
381                     }
382                     launchTinyPlanetEditor(data);
383                 }
384
385                 @Override
386                 public void onDelete() {
387                     final int currentDataId = getCurrentDataId();
388                     UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(
389                                 currentDataId),
390                             MediaInteraction.InteractionType.DELETE,
391                             NavigationChange.InteractionCause.BUTTON,
392                             fileAgeFromAdapterAtIndex(currentDataId));
393                     removeItemAt(currentDataId);
394                 }
395
396                 @Override
397                 public void onShare() {
398                     final FilmstripItem data = getCurrentLocalData();
399                     if (data == null) {
400                         Log.w(TAG, "Cannot share null data.");
401                         return;
402                     }
403
404                     final int currentDataId = getCurrentDataId();
405                     UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(
406                                 currentDataId),
407                             MediaInteraction.InteractionType.SHARE,
408                             NavigationChange.InteractionCause.BUTTON,
409                             fileAgeFromAdapterAtIndex(currentDataId));
410                     // If applicable, show release information before this item
411                     // is shared.
412                     if (ReleaseHelper.shouldShowReleaseInfoDialogOnShare(data)) {
413                         ReleaseHelper.showReleaseInfoDialog(CameraActivity.this,
414                                 new Callback<Void>() {
415                                     @Override
416                                     public void onCallback(Void result) {
417                                         share(data);
418                                     }
419                                 });
420                     } else {
421                         share(data);
422                     }
423                 }
424
425                 private void share(FilmstripItem data) {
426                     Intent shareIntent = getShareIntentByData(data);
427                     if (shareIntent != null) {
428                         try {
429                             launchActivityByIntent(shareIntent);
430                             mCameraAppUI.getFilmstripBottomControls().setShareEnabled(false);
431                         } catch (ActivityNotFoundException ex) {
432                             // Nothing.
433                         }
434                     }
435                 }
436
437                 private int getCurrentDataId() {
438                     return mFilmstripController.getCurrentAdapterIndex();
439                 }
440
441                 private FilmstripItem getCurrentLocalData() {
442                     return mDataAdapter.getItemAt(getCurrentDataId());
443                 }
444
445                 /**
446                  * Sets up the share intent and NFC properly according to the
447                  * data.
448                  *
449                  * @param item The data to be shared.
450                  */
451                 private Intent getShareIntentByData(final FilmstripItem item) {
452                     Intent intent = null;
453                     final Uri contentUri = item.getData().getUri();
454                     final String msgShareTo = getResources().getString(R.string.share_to);
455
456                     if (item.getMetadata().isPanorama360() &&
457                           item.getData().getUri() != Uri.EMPTY) {
458                         intent = new Intent(Intent.ACTION_SEND);
459                         intent.setType(FilmstripItemData.MIME_TYPE_PHOTOSPHERE);
460                         intent.putExtra(Intent.EXTRA_STREAM, contentUri);
461                     } else if (item.getAttributes().canShare()) {
462                         final String mimeType = item.getData().getMimeType();
463                         intent = getShareIntentFromType(mimeType);
464                         if (intent != null) {
465                             intent.putExtra(Intent.EXTRA_STREAM, contentUri);
466                             intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
467                         }
468                         intent = Intent.createChooser(intent, msgShareTo);
469                     }
470                     return intent;
471                 }
472
473                 /**
474                  * Get the share intent according to the mimeType
475                  *
476                  * @param mimeType The mimeType of current data.
477                  * @return the video/image's ShareIntent or null if mimeType is
478                  *         invalid.
479                  */
480                 private Intent getShareIntentFromType(String mimeType) {
481                     // Lazily create the intent object.
482                     Intent intent = new Intent(Intent.ACTION_SEND);
483                     if (mimeType.startsWith("video/")) {
484                         intent.setType("video/*");
485                     } else {
486                         if (mimeType.startsWith("image/")) {
487                             intent.setType("image/*");
488                         } else {
489                             Log.w(TAG, "unsupported mimeType " + mimeType);
490                         }
491                     }
492                     return intent;
493                 }
494
495                 @Override
496                 public void onProgressErrorClicked() {
497                     FilmstripItem data = getCurrentLocalData();
498                     getServices().getCaptureSessionManager().removeErrorMessage(
499                             data.getData().getUri());
500                     updateBottomControlsByData(data);
501                 }
502             };
503
504     @Override
505     public void onCameraOpened(CameraAgent.CameraProxy camera) {
506         Log.v(TAG, "onCameraOpened");
507         if (mPaused) {
508             // We've paused, but just asynchronously opened the camera. Close it
509             // because we should be releasing the camera when paused to allow
510             // other apps to access it.
511             Log.v(TAG, "received onCameraOpened but activity is paused, closing Camera");
512             mCameraController.closeCamera(false);
513             return;
514         }
515
516         if (!mModuleManager.getModuleAgent(mCurrentModeIndex).requestAppForCamera()) {
517             // We shouldn't be here. Just close the camera and leave.
518             mCameraController.closeCamera(false);
519             throw new IllegalStateException("Camera opened but the module shouldn't be " +
520                     "requesting");
521         }
522         if (mCurrentModule != null) {
523             resetExposureCompensationToDefault(camera);
524             try {
525                 mCurrentModule.onCameraAvailable(camera);
526             } catch (RuntimeException ex) {
527                 Log.e(TAG, "Error connecting to camera", ex);
528                 mFatalErrorHandler.onCameraOpenFailure();
529             }
530         } else {
531             Log.v(TAG, "mCurrentModule null, not invoking onCameraAvailable");
532         }
533         Log.v(TAG, "invoking onChangeCamera");
534         mCameraAppUI.onChangeCamera();
535     }
536
537     private void resetExposureCompensationToDefault(CameraAgent.CameraProxy camera) {
538         // Reset the exposure compensation before handing the camera to module.
539         CameraSettings cameraSettings = camera.getSettings();
540         cameraSettings.setExposureCompensationIndex(0);
541         camera.applySettings(cameraSettings);
542     }
543
544     @Override
545     public void onCameraDisabled(int cameraId) {
546         Log.w(TAG, "Camera disabled: " + cameraId);
547         mFatalErrorHandler.onCameraDisabledFailure();
548     }
549
550     @Override
551     public void onDeviceOpenFailure(int cameraId, String info) {
552         Log.w(TAG, "Camera open failure: " + info);
553         mFatalErrorHandler.onCameraOpenFailure();
554     }
555
556     @Override
557     public void onDeviceOpenedAlready(int cameraId, String info) {
558         Log.w(TAG, "Camera open already: " + cameraId + "," + info);
559         mFatalErrorHandler.onGenericCameraAccessFailure();
560     }
561
562     @Override
563     public void onReconnectionFailure(CameraAgent mgr, String info) {
564         Log.w(TAG, "Camera reconnection failure:" + info);
565         mFatalErrorHandler.onCameraReconnectFailure();
566     }
567
568     private static class MainHandler extends Handler {
569         final WeakReference<CameraActivity> mActivity;
570
571         public MainHandler(CameraActivity activity, Looper looper) {
572             super(looper);
573             mActivity = new WeakReference<CameraActivity>(activity);
574         }
575
576         @Override
577         public void handleMessage(Message msg) {
578             CameraActivity activity = mActivity.get();
579             if (activity == null) {
580                 return;
581             }
582             switch (msg.what) {
583
584                 case MSG_CLEAR_SCREEN_ON_FLAG: {
585                     if (!activity.mPaused) {
586                         activity.getWindow().clearFlags(
587                                 WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
588                     }
589                     break;
590                 }
591             }
592         }
593     }
594
595     private String fileNameFromAdapterAtIndex(int index) {
596         final FilmstripItem filmstripItem = mDataAdapter.getItemAt(index);
597         if (filmstripItem == null) {
598             return "";
599         }
600
601         File localFile = new File(filmstripItem.getData().getFilePath());
602         return localFile.getName();
603     }
604
605     private float fileAgeFromAdapterAtIndex(int index) {
606         final FilmstripItem filmstripItem = mDataAdapter.getItemAt(index);
607         if (filmstripItem == null) {
608             return 0;
609         }
610
611         File localFile = new File(filmstripItem.getData().getFilePath());
612         return 0.001f * (System.currentTimeMillis() - localFile.lastModified());
613     }
614
615     private final FilmstripContentPanel.Listener mFilmstripListener =
616             new FilmstripContentPanel.Listener() {
617
618                 @Override
619                 public void onSwipeOut() {
620                 }
621
622                 @Override
623                 public void onSwipeOutBegin() {
624                     mActionBar.hide();
625                     mCameraAppUI.hideBottomControls();
626                     mFilmstripCoversPreview = false;
627                     updatePreviewVisibility();
628                 }
629
630                 @Override
631                 public void onFilmstripHidden() {
632                     mFilmstripVisible = false;
633                     UsageStatistics.instance().changeScreen(currentUserInterfaceMode(),
634                             NavigationChange.InteractionCause.SWIPE_RIGHT);
635                     CameraActivity.this.setFilmstripUiVisibility(false);
636                     // When the user hide the filmstrip (either swipe out or
637                     // tap on back key) we move to the first item so next time
638                     // when the user swipe in the filmstrip, the most recent
639                     // one is shown.
640                     mFilmstripController.goToFirstItem();
641                 }
642
643                 @Override
644                 public void onFilmstripShown() {
645                     mFilmstripVisible = true;
646                     mCameraAppUI.hideCaptureIndicator();
647                     UsageStatistics.instance().changeScreen(currentUserInterfaceMode(),
648                             NavigationChange.InteractionCause.SWIPE_LEFT);
649                     updateUiByData(mFilmstripController.getCurrentAdapterIndex());
650                 }
651
652                 @Override
653                 public void onFocusedDataLongPressed(int adapterIndex) {
654                     // Do nothing.
655                 }
656
657                 @Override
658                 public void onFocusedDataPromoted(int adapterIndex) {
659                     UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(
660                                 adapterIndex),
661                             MediaInteraction.InteractionType.DELETE,
662                             NavigationChange.InteractionCause.SWIPE_UP, fileAgeFromAdapterAtIndex(
663                                 adapterIndex));
664                     removeItemAt(adapterIndex);
665                 }
666
667                 @Override
668                 public void onFocusedDataDemoted(int adapterIndex) {
669                     UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(
670                                 adapterIndex),
671                             MediaInteraction.InteractionType.DELETE,
672                             NavigationChange.InteractionCause.SWIPE_DOWN,
673                             fileAgeFromAdapterAtIndex(adapterIndex));
674                     removeItemAt(adapterIndex);
675                 }
676
677                 @Override
678                 public void onEnterFullScreenUiShown(int adapterIndex) {
679                     if (mFilmstripVisible) {
680                         CameraActivity.this.setFilmstripUiVisibility(true);
681                     }
682                 }
683
684                 @Override
685                 public void onLeaveFullScreenUiShown(int adapterIndex) {
686                     // Do nothing.
687                 }
688
689                 @Override
690                 public void onEnterFullScreenUiHidden(int adapterIndex) {
691                     if (mFilmstripVisible) {
692                         CameraActivity.this.setFilmstripUiVisibility(false);
693                     }
694                 }
695
696                 @Override
697                 public void onLeaveFullScreenUiHidden(int adapterIndex) {
698                     // Do nothing.
699                 }
700
701                 @Override
702                 public void onEnterFilmstrip(int adapterIndex) {
703                     if (mFilmstripVisible) {
704                         CameraActivity.this.setFilmstripUiVisibility(true);
705                     }
706                 }
707
708                 @Override
709                 public void onLeaveFilmstrip(int adapterIndex) {
710                     // Do nothing.
711                 }
712
713                 @Override
714                 public void onDataReloaded() {
715                     if (!mFilmstripVisible) {
716                         return;
717                     }
718                     updateUiByData(mFilmstripController.getCurrentAdapterIndex());
719                 }
720
721                 @Override
722                 public void onDataUpdated(int adapterIndex) {
723                     if (!mFilmstripVisible) {
724                         return;
725                     }
726                     updateUiByData(mFilmstripController.getCurrentAdapterIndex());
727                 }
728
729                 @Override
730                 public void onEnterZoomView(int adapterIndex) {
731                     if (mFilmstripVisible) {
732                         CameraActivity.this.setFilmstripUiVisibility(false);
733                     }
734                 }
735
736                 @Override
737                 public void onZoomAtIndexChanged(int adapterIndex, float zoom) {
738                     final FilmstripItem filmstripItem = mDataAdapter.getItemAt(adapterIndex);
739                     long ageMillis = System.currentTimeMillis()
740                           - filmstripItem.getData().getLastModifiedDate().getTime();
741
742                     // Do not log if items is to old or does not have a path (which is
743                     // being used as a key).
744                     if (TextUtils.isEmpty(filmstripItem.getData().getFilePath()) ||
745                             ageMillis > UsageStatistics.VIEW_TIMEOUT_MILLIS) {
746                         return;
747                     }
748                     File localFile = new File(filmstripItem.getData().getFilePath());
749                     UsageStatistics.instance().mediaView(localFile.getName(),
750                           filmstripItem.getData().getLastModifiedDate().getTime(), zoom);
751                }
752
753                 @Override
754                 public void onDataFocusChanged(final int prevIndex, final int newIndex) {
755                     if (!mFilmstripVisible) {
756                         return;
757                     }
758                     // TODO: This callback is UI event callback, should always
759                     // happen on UI thread. Find the reason for this
760                     // runOnUiThread() and fix it.
761                     runOnUiThread(new Runnable() {
762                         @Override
763                         public void run() {
764                             updateUiByData(newIndex);
765                         }
766                     });
767                 }
768
769                 @Override
770                 public void onScroll(int firstVisiblePosition, int visibleItemCount, int totalItemCount) {
771                     mPreloader.onScroll(null /*absListView*/, firstVisiblePosition, visibleItemCount, totalItemCount);
772                 }
773             };
774
775     private final FilmstripItemListener mFilmstripItemListener =
776             new FilmstripItemListener() {
777                 @Override
778                 public void onMetadataUpdated(List<Integer> indexes) {
779                     if (mPaused) {
780                         // Callback after the activity is paused.
781                         return;
782                     }
783                     int currentIndex = mFilmstripController.getCurrentAdapterIndex();
784                     for (Integer index : indexes) {
785                         if (index == currentIndex) {
786                             updateUiByData(index);
787                             // Currently we have only 1 data can be matched.
788                             // No need to look for more, break.
789                             break;
790                         }
791                     }
792                 }
793             };
794
795     public void gotoGallery() {
796         UsageStatistics.instance().changeScreen(NavigationChange.Mode.FILMSTRIP,
797                 NavigationChange.InteractionCause.BUTTON);
798
799         mFilmstripController.goToNextItem();
800     }
801
802     /**
803      * If 'visible' is false, this hides the action bar. Also maintains
804      * lights-out at all times.
805      *
806      * @param visible is false, this hides the action bar and filmstrip bottom
807      *            controls.
808      */
809     private void setFilmstripUiVisibility(boolean visible) {
810         mLightsOutRunnable.run();
811         mCameraAppUI.getFilmstripBottomControls().setVisible(visible);
812         if (visible != mActionBar.isShowing()) {
813             if (visible) {
814                 mActionBar.show();
815                 mCameraAppUI.showBottomControls();
816             } else {
817                 mActionBar.hide();
818                 mCameraAppUI.hideBottomControls();
819             }
820         }
821         mFilmstripCoversPreview = visible;
822         updatePreviewVisibility();
823     }
824
825     private void hideSessionProgress() {
826         mCameraAppUI.getFilmstripBottomControls().hideProgress();
827     }
828
829     private void showSessionProgress(int messageId) {
830         CameraAppUI.BottomPanel controls = mCameraAppUI.getFilmstripBottomControls();
831         controls.setProgressText(messageId > 0 ? getString(messageId) : "");
832         controls.hideControls();
833         controls.hideProgressError();
834         controls.showProgress();
835     }
836
837     private void showProcessError(int messageId) {
838         mCameraAppUI.getFilmstripBottomControls().showProgressError(
839                 messageId > 0 ? getString(messageId) : "");
840     }
841
842     private void updateSessionProgress(int progress) {
843         mCameraAppUI.getFilmstripBottomControls().setProgress(progress);
844     }
845
846     private void updateSessionProgressText(int messageId) {
847         mCameraAppUI.getFilmstripBottomControls().setProgressText(
848                 messageId > 0 ? getString(messageId) : "");
849     }
850
851     private void setupNfcBeamPush() {
852         NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mAppContext);
853         if (adapter == null) {
854             return;
855         }
856
857         if (!ApiHelper.HAS_SET_BEAM_PUSH_URIS) {
858             // Disable beaming
859             adapter.setNdefPushMessage(null, CameraActivity.this);
860             return;
861         }
862
863         adapter.setBeamPushUris(null, CameraActivity.this);
864         adapter.setBeamPushUrisCallback(new CreateBeamUrisCallback() {
865             @Override
866             public Uri[] createBeamUris(NfcEvent event) {
867                 return mNfcPushUris;
868             }
869         }, CameraActivity.this);
870     }
871
872     @Override
873     public boolean onShareTargetSelected(ShareActionProvider shareActionProvider, Intent intent) {
874         int currentIndex = mFilmstripController.getCurrentAdapterIndex();
875         if (currentIndex < 0) {
876             return false;
877         }
878         UsageStatistics.instance().mediaInteraction(fileNameFromAdapterAtIndex(currentIndex),
879                 MediaInteraction.InteractionType.SHARE,
880                 NavigationChange.InteractionCause.BUTTON, fileAgeFromAdapterAtIndex(currentIndex));
881         // TODO add intent.getComponent().getPackageName()
882         return true;
883     }
884
885     // Note: All callbacks come back on the main thread.
886     private final SessionListener mSessionListener =
887             new SessionListener() {
888                 @Override
889                 public void onSessionQueued(final Uri uri) {
890                     Log.v(TAG, "onSessionQueued: " + uri);
891                     if (!Storage.isSessionUri(uri)) {
892                         return;
893                     }
894                     Optional<SessionItem> newData = SessionItem.create(getApplicationContext(), uri);
895                     if (newData.isPresent()) {
896                         mDataAdapter.addOrUpdate(newData.get());
897                     }
898                 }
899
900                 @Override
901                 public void onSessionUpdated(Uri uri) {
902                     Log.v(TAG, "onSessionUpdated: " + uri);
903                     mDataAdapter.refresh(uri);
904                 }
905
906                 @Override
907                 public void onSessionDone(final Uri sessionUri) {
908                     Log.v(TAG, "onSessionDone:" + sessionUri);
909                     Uri contentUri = Storage.getContentUriForSessionUri(sessionUri);
910                     if (contentUri == null) {
911                         mDataAdapter.refresh(sessionUri);
912                         return;
913                     }
914                     PhotoItem newData = mPhotoItemFactory.queryContentUri(contentUri);
915
916                     // This can be null if e.g. a session is canceled (e.g.
917                     // through discard panorama). It might be worth adding
918                     // onSessionCanceled or the like this interface.
919                     if (newData == null) {
920                         Log.i(TAG, "onSessionDone: Could not find LocalData for URI: " + contentUri);
921                         return;
922                     }
923
924                     final int pos = mDataAdapter.findByContentUri(sessionUri);
925                     if (pos == -1) {
926                         // We do not have a placeholder for this image, perhaps
927                         // due to the activity crashing or being killed.
928                         mDataAdapter.addOrUpdate(newData);
929                     } else {
930                         // Make the PhotoItem aware of the session placeholder, to
931                         // allow it to make a smooth transition to its content if it
932                         // the session item is currently visible.
933                         FilmstripItem oldSessionData = mDataAdapter.getFilmstripItemAt(pos);
934                         if (mCameraAppUI.getFilmstripVisibility() == View.VISIBLE
935                                 && mFilmstripController.isVisible(oldSessionData)) {
936                             Log.v(TAG, "session item visible, setting transition placeholder");
937                             newData.setSessionPlaceholderBitmap(
938                                     Storage.getPlaceholderForSession(sessionUri));
939                         }
940                         mDataAdapter.updateItemAt(pos, newData);
941                     }
942                 }
943
944                 @Override
945                 public void onSessionProgress(final Uri uri, final int progress) {
946                     if (progress < 0) {
947                         // Do nothing, there is no task for this URI.
948                         return;
949                     }
950                     int currentIndex = mFilmstripController.getCurrentAdapterIndex();
951                     if (currentIndex == -1) {
952                         return;
953                     }
954                     if (uri.equals(
955                             mDataAdapter.getItemAt(currentIndex).getData().getUri())) {
956                         updateSessionProgress(progress);
957                     }
958                 }
959
960                 @Override
961                 public void onSessionProgressText(final Uri uri, final int messageId) {
962                     int currentIndex = mFilmstripController.getCurrentAdapterIndex();
963                     if (currentIndex == -1) {
964                         return;
965                     }
966                     if (uri.equals(
967                             mDataAdapter.getItemAt(currentIndex).getData().getUri())) {
968                         updateSessionProgressText(messageId);
969                     }
970                 }
971
972                 @Override
973                 public void onSessionCaptureIndicatorUpdate(Bitmap indicator, int rotationDegrees) {
974                     // Don't show capture indicator in Photo Sphere.
975                     final int photosphereModuleId = getApplicationContext().getResources()
976                             .getInteger(
977                                     R.integer.camera_mode_photosphere);
978                     if (mCurrentModeIndex == photosphereModuleId) {
979                         return;
980                     }
981                     indicateCapture(indicator, rotationDegrees);
982                 }
983
984                 @Override
985                 public void onSessionFailed(Uri uri, int failureMessageId,
986                         boolean removeFromFilmstrip) {
987                     Log.v(TAG, "onSessionFailed:" + uri);
988
989                     int failedIndex = mDataAdapter.findByContentUri(uri);
990                     int currentIndex = mFilmstripController.getCurrentAdapterIndex();
991
992                     if (currentIndex == failedIndex) {
993                         updateSessionProgress(0);
994                         showProcessError(failureMessageId);
995                         mDataAdapter.refresh(uri);
996                     }
997                     if (removeFromFilmstrip) {
998                         mFatalErrorHandler.onMediaStorageFailure();
999                         mDataAdapter.removeAt(failedIndex);
1000                     }
1001                 }
1002
1003                 @Override
1004                 public void onSessionCanceled(Uri uri) {
1005                     Log.v(TAG, "onSessionCanceled:" + uri);
1006                     int failedIndex = mDataAdapter.findByContentUri(uri);
1007                     mDataAdapter.removeAt(failedIndex);
1008                 }
1009
1010                 @Override
1011                 public void onSessionThumbnailUpdate(Bitmap bitmap) {
1012                 }
1013
1014                 @Override
1015                 public void onSessionPictureDataUpdate(byte[] pictureData, int orientation) {
1016                 }
1017             };
1018
1019     @Override
1020     public Context getAndroidContext() {
1021         return mAppContext;
1022     }
1023
1024     @Override
1025     public OneCameraFeatureConfig getCameraFeatureConfig() {
1026         return mFeatureConfig;
1027     }
1028
1029     @Override
1030     public Dialog createDialog() {
1031         return new Dialog(this, android.R.style.Theme_Black_NoTitleBar_Fullscreen);
1032     }
1033
1034     @Override
1035     public void launchActivityByIntent(Intent intent) {
1036         // Starting from L, we prefer not to start edit activity within camera's task.
1037         mResetToPreviewOnResume = false;
1038         intent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
1039
1040         startActivity(intent);
1041     }
1042
1043     @Override
1044     public int getCurrentModuleIndex() {
1045         return mCurrentModeIndex;
1046     }
1047
1048     @Override
1049     public String getModuleScope() {
1050         ModuleAgent agent = mModuleManager.getModuleAgent(mCurrentModeIndex);
1051         return SettingsManager.getModuleSettingScope(agent.getScopeNamespace());
1052     }
1053
1054     @Override
1055     public String getCameraScope() {
1056         // if an unopen camera i.e. negative ID is returned, which we've observed in
1057         // some automated scenarios, just return it as a valid separate scope
1058         // this could cause user issues, so log a stack trace noting the call path
1059         // which resulted in this scenario.
1060
1061         CameraId cameraId =  mCameraController.getCurrentCameraId();
1062
1063         if(cameraId == null) {
1064             Log.e(TAG,  "Retrieving Camera Setting Scope with -1");
1065             return SettingsManager.getCameraSettingScope("-1");
1066         }
1067
1068         return SettingsManager.getCameraSettingScope(cameraId.getValue());
1069     }
1070
1071     @Override
1072     public ModuleController getCurrentModuleController() {
1073         return mCurrentModule;
1074     }
1075
1076     @Override
1077     public int getQuickSwitchToModuleId(int currentModuleIndex) {
1078         return mModuleManager.getQuickSwitchToModuleId(currentModuleIndex, mSettingsManager,
1079                 mAppContext);
1080     }
1081
1082     @Override
1083     public SurfaceTexture getPreviewBuffer() {
1084         // TODO: implement this
1085         return null;
1086     }
1087
1088     @Override
1089     public void onPreviewReadyToStart() {
1090         mCameraAppUI.onPreviewReadyToStart();
1091     }
1092
1093     @Override
1094     public void onPreviewStarted() {
1095         mCameraAppUI.onPreviewStarted();
1096     }
1097
1098     @Override
1099     public void addPreviewAreaSizeChangedListener(
1100             PreviewStatusListener.PreviewAreaChangedListener listener) {
1101         mCameraAppUI.addPreviewAreaChangedListener(listener);
1102     }
1103
1104     @Override
1105     public void removePreviewAreaSizeChangedListener(
1106             PreviewStatusListener.PreviewAreaChangedListener listener) {
1107         mCameraAppUI.removePreviewAreaChangedListener(listener);
1108     }
1109
1110     @Override
1111     public void setupOneShotPreviewListener() {
1112         mCameraController.setOneShotPreviewCallback(mMainHandler,
1113                 new CameraAgent.CameraPreviewDataCallback() {
1114                     @Override
1115                     public void onPreviewFrame(byte[] data, CameraAgent.CameraProxy camera) {
1116                         mCurrentModule.onPreviewInitialDataReceived();
1117                         mCameraAppUI.onNewPreviewFrame();
1118                     }
1119                 }
1120         );
1121     }
1122
1123     @Override
1124     public void updatePreviewAspectRatio(float aspectRatio) {
1125         mCameraAppUI.updatePreviewAspectRatio(aspectRatio);
1126     }
1127
1128     @Override
1129     public void updatePreviewTransformFullscreen(Matrix matrix, float aspectRatio) {
1130         mCameraAppUI.updatePreviewTransformFullscreen(matrix, aspectRatio);
1131     }
1132
1133     @Override
1134     public RectF getFullscreenRect() {
1135         return mCameraAppUI.getFullscreenRect();
1136     }
1137
1138     @Override
1139     public void updatePreviewTransform(Matrix matrix) {
1140         mCameraAppUI.updatePreviewTransform(matrix);
1141     }
1142
1143     @Override
1144     public void setPreviewStatusListener(PreviewStatusListener previewStatusListener) {
1145         mCameraAppUI.setPreviewStatusListener(previewStatusListener);
1146     }
1147
1148     @Override
1149     public FrameLayout getModuleLayoutRoot() {
1150         return mCameraAppUI.getModuleRootView();
1151     }
1152
1153     @Override
1154     public void setShutterEventsListener(ShutterEventsListener listener) {
1155         // TODO: implement this
1156     }
1157
1158     @Override
1159     public void setShutterEnabled(boolean enabled) {
1160         mCameraAppUI.setShutterButtonEnabled(enabled);
1161     }
1162
1163     @Override
1164     public boolean isShutterEnabled() {
1165         return mCameraAppUI.isShutterButtonEnabled();
1166     }
1167
1168     @Override
1169     public void startFlashAnimation(boolean shortFlash) {
1170         mCameraAppUI.startFlashAnimation(shortFlash);
1171     }
1172
1173     @Override
1174     public void startPreCaptureAnimation() {
1175         // TODO: implement this
1176     }
1177
1178     @Override
1179     public void cancelPreCaptureAnimation() {
1180         // TODO: implement this
1181     }
1182
1183     @Override
1184     public void startPostCaptureAnimation() {
1185         // TODO: implement this
1186     }
1187
1188     @Override
1189     public void startPostCaptureAnimation(Bitmap thumbnail) {
1190         // TODO: implement this
1191     }
1192
1193     @Override
1194     public void cancelPostCaptureAnimation() {
1195         // TODO: implement this
1196     }
1197
1198     @Override
1199     public OrientationManager getOrientationManager() {
1200         return mOrientationManager;
1201     }
1202
1203     @Override
1204     public LocationManager getLocationManager() {
1205         return mLocationManager;
1206     }
1207
1208     @Override
1209     public void lockOrientation() {
1210         if (mOrientationManager != null) {
1211             mOrientationManager.lockOrientation();
1212         }
1213     }
1214
1215     @Override
1216     public void unlockOrientation() {
1217         if (mOrientationManager != null) {
1218             mOrientationManager.unlockOrientation();
1219         }
1220     }
1221
1222     /**
1223      * If not in filmstrip, this shows the capture indicator.
1224      */
1225     private void indicateCapture(final Bitmap indicator, final int rotationDegrees) {
1226         if (mFilmstripVisible) {
1227             return;
1228         }
1229
1230         // Don't show capture indicator in Photo Sphere.
1231         // TODO: Don't reach into resources to figure out the current mode.
1232         final int photosphereModuleId = getApplicationContext().getResources().getInteger(
1233                 R.integer.camera_mode_photosphere);
1234         if (mCurrentModeIndex == photosphereModuleId) {
1235             return;
1236         }
1237
1238         mMainHandler.post(new Runnable() {
1239             @Override
1240             public void run() {
1241                 mCameraAppUI.startCaptureIndicatorRevealAnimation(mCurrentModule
1242                         .getPeekAccessibilityString());
1243                 mCameraAppUI.updateCaptureIndicatorThumbnail(indicator, rotationDegrees);
1244             }
1245         });
1246     }
1247
1248     @Override
1249     public void notifyNewMedia(Uri uri) {
1250         // TODO: This method is running on the main thread. Also we should get
1251         // rid of that AsyncTask.
1252
1253         updateStorageSpaceAndHint(null);
1254         ContentResolver cr = getContentResolver();
1255         String mimeType = cr.getType(uri);
1256         FilmstripItem newData = null;
1257         if (FilmstripItemUtils.isMimeTypeVideo(mimeType)) {
1258             sendBroadcast(new Intent(CameraUtil.ACTION_NEW_VIDEO, uri));
1259             newData = mVideoItemFactory.queryContentUri(uri);
1260             if (newData == null) {
1261                 Log.e(TAG, "Can't find video data in content resolver:" + uri);
1262                 return;
1263             }
1264         } else if (FilmstripItemUtils.isMimeTypeImage(mimeType)) {
1265             CameraUtil.broadcastNewPicture(mAppContext, uri);
1266             newData = mPhotoItemFactory.queryContentUri(uri);
1267             if (newData == null) {
1268                 Log.e(TAG, "Can't find photo data in content resolver:" + uri);
1269                 return;
1270             }
1271         } else {
1272             Log.w(TAG, "Unknown new media with MIME type:" + mimeType + ", uri:" + uri);
1273             return;
1274         }
1275
1276         // We are preloading the metadata for new video since we need the
1277         // rotation info for the thumbnail.
1278         new AsyncTask<FilmstripItem, Void, FilmstripItem>() {
1279             @Override
1280             protected FilmstripItem doInBackground(FilmstripItem... params) {
1281                 FilmstripItem data = params[0];
1282                 MetadataLoader.loadMetadata(getAndroidContext(), data);
1283                 return data;
1284             }
1285
1286             @Override
1287             protected void onPostExecute(final FilmstripItem data) {
1288                 // TODO: Figure out why sometimes the data is aleady there.
1289                 mDataAdapter.addOrUpdate(data);
1290
1291                 // Legacy modules don't use CaptureSession, so we show the capture indicator when
1292                 // the item was safed.
1293                 if (mCurrentModule instanceof PhotoModule ||
1294                         mCurrentModule instanceof VideoModule) {
1295                     AsyncTask.THREAD_POOL_EXECUTOR.execute(new Runnable() {
1296                         @Override
1297                         public void run() {
1298                             final Optional<Bitmap> bitmap = data.generateThumbnail(
1299                                     mAboveFilmstripControlLayout.getWidth(),
1300                                     mAboveFilmstripControlLayout.getMeasuredHeight());
1301                             if (bitmap.isPresent()) {
1302                                 indicateCapture(bitmap.get(), 0);
1303                             }
1304                         }
1305                     });
1306                 }
1307             }
1308         }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, newData);
1309     }
1310
1311     @Override
1312     public void enableKeepScreenOn(boolean enabled) {
1313         if (mPaused) {
1314             return;
1315         }
1316
1317         mKeepScreenOn = enabled;
1318         if (mKeepScreenOn) {
1319             mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
1320             getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
1321         } else {
1322             keepScreenOnForAWhile();
1323         }
1324     }
1325
1326     @Override
1327     public CameraProvider getCameraProvider() {
1328         return mCameraController;
1329     }
1330
1331     @Override
1332     public OneCameraOpener getCameraOpener() {
1333         return mOneCameraOpener;
1334     }
1335
1336     private void removeItemAt(int index) {
1337         mDataAdapter.removeAt(index);
1338         if (mDataAdapter.getTotalNumber() > 1) {
1339             showUndoDeletionBar();
1340         } else {
1341             // If camera preview is the only view left in filmstrip,
1342             // no need to show undo bar.
1343             mPendingDeletion = true;
1344             performDeletion();
1345             if (mFilmstripVisible) {
1346                 mCameraAppUI.getFilmstripContentPanel().animateHide();
1347             }
1348         }
1349     }
1350
1351     @Override
1352     public boolean onOptionsItemSelected(MenuItem item) {
1353         // Handle presses on the action bar items
1354         switch (item.getItemId()) {
1355             case android.R.id.home:
1356                 onBackPressed();
1357                 return true;
1358             case R.id.action_details:
1359                 showDetailsDialog(mFilmstripController.getCurrentAdapterIndex());
1360                 return true;
1361             case R.id.action_help_and_feedback:
1362                 mResetToPreviewOnResume = false;
1363                 new GoogleHelpHelper(this).launchGoogleHelp();
1364                 return true;
1365             default:
1366                 return super.onOptionsItemSelected(item);
1367         }
1368     }
1369
1370     private boolean isCaptureIntent() {
1371         if (MediaStore.ACTION_VIDEO_CAPTURE.equals(getIntent().getAction())
1372                 || MediaStore.ACTION_IMAGE_CAPTURE.equals(getIntent().getAction())
1373                 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(getIntent().getAction())) {
1374             return true;
1375         } else {
1376             return false;
1377         }
1378     }
1379
1380     /**
1381      * Note: Make sure this callback is unregistered properly when the activity
1382      * is destroyed since we're otherwise leaking the Activity reference.
1383      */
1384     private final CameraExceptionHandler.CameraExceptionCallback mCameraExceptionCallback
1385         = new CameraExceptionHandler.CameraExceptionCallback() {
1386                 @Override
1387                 public void onCameraError(int errorCode) {
1388                     // Not a fatal error. only do Log.e().
1389                     Log.e(TAG, "Camera error callback. error=" + errorCode);
1390                 }
1391                 @Override
1392                 public void onCameraException(
1393                         RuntimeException ex, String commandHistory, int action, int state) {
1394                     Log.e(TAG, "Camera Exception", ex);
1395                     UsageStatistics.instance().cameraFailure(
1396                             eventprotos.CameraFailure.FailureReason.API_RUNTIME_EXCEPTION,
1397                             commandHistory, action, state);
1398                     onFatalError();
1399                 }
1400                 @Override
1401                 public void onDispatchThreadException(RuntimeException ex) {
1402                     Log.e(TAG, "DispatchThread Exception", ex);
1403                     UsageStatistics.instance().cameraFailure(
1404                             eventprotos.CameraFailure.FailureReason.API_TIMEOUT,
1405                             null, UsageStatistics.NONE, UsageStatistics.NONE);
1406                     onFatalError();
1407                 }
1408                 private void onFatalError() {
1409                     if (mCameraFatalError) {
1410                         return;
1411                     }
1412                     mCameraFatalError = true;
1413
1414                     // If the activity receives exception during onPause, just exit the app.
1415                     if (mPaused && !isFinishing()) {
1416                         Log.e(TAG, "Fatal error during onPause, call Activity.finish()");
1417                         finish();
1418                     } else {
1419                         mFatalErrorHandler.handleFatalError(FatalErrorHandler.Reason.CANNOT_CONNECT_TO_CAMERA);
1420                     }
1421                 }
1422             };
1423
1424     @Override
1425     public void onNewIntentTasks(Intent intent) {
1426         onModeSelected(getModeIndex());
1427     }
1428
1429     @Override
1430     public void onCreateTasks(Bundle state) {
1431         Profile profile = mProfiler.create("CameraActivity.onCreateTasks").start();
1432         CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_START);
1433         mOnCreateTime = System.currentTimeMillis();
1434         mAppContext = getApplicationContext();
1435         mMainHandler = new MainHandler(this, getMainLooper());
1436         mLocationManager = new LocationManager(mAppContext);
1437         mOrientationManager = new OrientationManagerImpl(this, mMainHandler);
1438         mSettingsManager = getServices().getSettingsManager();
1439         mSoundPlayer = new SoundPlayer(mAppContext);
1440         mFeatureConfig = OneCameraFeatureConfigCreator.createDefault(getContentResolver(),
1441                 getServices().getMemoryManager());
1442         mFatalErrorHandler = new FatalErrorHandlerImpl(this);
1443         checkPermissions();
1444         profile.mark();
1445         if (!Glide.isSetup()) {
1446             Context context = getAndroidContext();
1447             Glide.setup(new GlideBuilder(context)
1448                 .setDecodeFormat(DecodeFormat.ALWAYS_ARGB_8888)
1449                 .setResizeService(new FifoPriorityThreadPoolExecutor(2)));
1450
1451             Glide glide = Glide.get(context);
1452
1453             // As a camera we will use a large amount of memory
1454             // for displaying images.
1455             glide.setMemoryCategory(MemoryCategory.HIGH);
1456         }
1457         profile.mark("Glide.setup");
1458
1459         mActiveCameraDeviceTracker = ActiveCameraDeviceTracker.instance();
1460         try {
1461             mOneCameraOpener = OneCameraModule.provideOneCameraOpener(
1462                     mFeatureConfig,
1463                     mAppContext,
1464                     mActiveCameraDeviceTracker,
1465                     ResolutionUtil.getDisplayMetrics(this));
1466             mOneCameraManager = OneCameraModule.provideOneCameraManager();
1467         } catch (OneCameraException e) {
1468             // Log error and continue start process while showing error dialog..
1469             Log.e(TAG, "Creating camera manager failed.", e);
1470             mFatalErrorHandler.onGenericCameraAccessFailure();
1471         }
1472         profile.mark("OneCameraManager.get");
1473
1474         try {
1475             mCameraController = new CameraController(mAppContext, this, mMainHandler,
1476                     CameraAgentFactory.getAndroidCameraAgent(mAppContext,
1477                             CameraAgentFactory.CameraApi.API_1),
1478                     CameraAgentFactory.getAndroidCameraAgent(mAppContext,
1479                             CameraAgentFactory.CameraApi.AUTO),
1480                     mActiveCameraDeviceTracker);
1481             mCameraController.setCameraExceptionHandler(
1482                     new CameraExceptionHandler(mCameraExceptionCallback, mMainHandler));
1483         } catch (AssertionError e) {
1484             Log.e(TAG, "Creating camera controller failed.", e);
1485             mFatalErrorHandler.onGenericCameraAccessFailure();
1486         }
1487
1488         // TODO: Try to move all the resources allocation to happen as soon as
1489         // possible so we can call module.init() at the earliest time.
1490         mModuleManager = new ModuleManagerImpl();
1491
1492         ModulesInfo.setupModules(mAppContext, mModuleManager, mFeatureConfig);
1493
1494         AppUpgrader appUpgrader = new AppUpgrader(this);
1495         appUpgrader.upgrade(mSettingsManager);
1496
1497         // Make sure the picture sizes are correctly cached for the current OS
1498         // version.
1499         profile.mark();
1500         try {
1501             (new PictureSizeLoader(mAppContext)).computePictureSizes();
1502         } catch (AssertionError e) {
1503             Log.e(TAG, "Creating camera controller failed.", e);
1504             mFatalErrorHandler.onGenericCameraAccessFailure();
1505         }
1506         profile.mark("computePictureSizes");
1507         Keys.setDefaults(mSettingsManager, mAppContext);
1508
1509         mResolutionSetting = new ResolutionSetting(mSettingsManager, mOneCameraManager,
1510                 getContentResolver());
1511
1512         getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
1513         // We suppress this flag via theme when drawing the system preview
1514         // background, but once we create activity here, reactivate to the
1515         // default value. The default is important for L, we don't want to
1516         // change app behavior, just starting background drawable layout.
1517         if (ApiHelper.isLOrHigher()) {
1518             getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1519         }
1520
1521         profile.mark();
1522         setContentView(R.layout.activity_main);
1523         profile.mark("setContentView()");
1524         // A window background is set in styles.xml for the system to show a
1525         // drawable background with gray color and camera icon before the
1526         // activity is created. We set the background to null here to prevent
1527         // overdraw, all views must take care of drawing backgrounds if
1528         // necessary. This call to setBackgroundDrawable must occur after
1529         // setContentView, otherwise a background may be set again from the
1530         // style.
1531         getWindow().setBackgroundDrawable(null);
1532
1533         mActionBar = getActionBar();
1534         // set actionbar background to 100% or 50% transparent
1535         if (ApiHelper.isLOrHigher()) {
1536             mActionBar.setBackgroundDrawable(new ColorDrawable(0x00000000));
1537         } else {
1538             mActionBar.setBackgroundDrawable(new ColorDrawable(0x80000000));
1539         }
1540
1541         mModeListView = (ModeListView) findViewById(R.id.mode_list_layout);
1542         mModeListView.init(mModuleManager.getSupportedModeIndexList());
1543         if (ApiHelper.HAS_ROTATION_ANIMATION) {
1544             setRotationAnimation();
1545         }
1546         mModeListView.setVisibilityChangedListener(new ModeListVisibilityChangedListener() {
1547             @Override
1548             public void onVisibilityChanged(boolean visible) {
1549                 mModeListVisible = visible;
1550                 mCameraAppUI.setShutterButtonImportantToA11y(!visible);
1551                 updatePreviewVisibility();
1552             }
1553         });
1554
1555         // Check if this is in the secure camera mode.
1556         Intent intent = getIntent();
1557         String action = intent.getAction();
1558         if (INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE.equals(action)
1559                 || ACTION_IMAGE_CAPTURE_SECURE.equals(action)) {
1560             mSecureCamera = true;
1561         } else {
1562             mSecureCamera = intent.getBooleanExtra(SECURE_CAMERA_EXTRA, false);
1563         }
1564
1565         if (mSecureCamera) {
1566             // Change the window flags so that secure camera can show when
1567             // locked
1568             Window win = getWindow();
1569             WindowManager.LayoutParams params = win.getAttributes();
1570             params.flags |= WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
1571             win.setAttributes(params);
1572
1573             // Filter for screen off so that we can finish secure camera
1574             // activity when screen is off.
1575             IntentFilter filter_screen_off = new IntentFilter(Intent.ACTION_SCREEN_OFF);
1576             registerReceiver(mShutdownReceiver, filter_screen_off);
1577
1578             // Filter for phone unlock so that we can finish secure camera
1579             // via this UI path:
1580             //    1. from secure lock screen, user starts secure camera
1581             //    2. user presses home button
1582             //    3. user unlocks phone
1583             IntentFilter filter_user_unlock = new IntentFilter(Intent.ACTION_USER_PRESENT);
1584             registerReceiver(mShutdownReceiver, filter_user_unlock);
1585         }
1586         mCameraAppUI = new CameraAppUI(this,
1587                 (MainActivityLayout) findViewById(R.id.activity_root_view), isCaptureIntent());
1588
1589         mCameraAppUI.setFilmstripBottomControlsListener(mMyFilmstripBottomControlListener);
1590
1591         mAboveFilmstripControlLayout =
1592                 (FrameLayout) findViewById(R.id.camera_filmstrip_content_layout);
1593
1594         // Add the session listener so we can track the session progress
1595         // updates.
1596         getServices().getCaptureSessionManager().addSessionListener(mSessionListener);
1597         mFilmstripController = ((FilmstripView) findViewById(R.id.filmstrip_view)).getController();
1598         mFilmstripController.setImageGap(
1599                 getResources().getDimensionPixelSize(R.dimen.camera_film_strip_gap));
1600         profile.mark("Configure Camera UI");
1601
1602         mPanoramaViewHelper = new PanoramaViewHelper(this);
1603         mPanoramaViewHelper.onCreate();
1604
1605         ContentResolver appContentResolver = mAppContext.getContentResolver();
1606         GlideFilmstripManager glideManager = new GlideFilmstripManager(mAppContext);
1607         mPhotoItemFactory = new PhotoItemFactory(mAppContext, glideManager, appContentResolver,
1608               new PhotoDataFactory());
1609         mVideoItemFactory = new VideoItemFactory(mAppContext, glideManager, appContentResolver,
1610               new VideoDataFactory());
1611         mCameraAppUI.getFilmstripContentPanel().setFilmstripListener(mFilmstripListener);
1612         if (mSettingsManager.getBoolean(SettingsManager.SCOPE_GLOBAL,
1613                                         Keys.KEY_SHOULD_SHOW_REFOCUS_VIEWER_CLING)) {
1614             mCameraAppUI.setupClingForViewer(CameraAppUI.BottomPanel.VIEWER_REFOCUS);
1615         }
1616
1617         setModuleFromModeIndex(getModeIndex());
1618
1619         profile.mark();
1620         mCameraAppUI.prepareModuleUI();
1621         profile.mark("Init Current Module UI");
1622         mCurrentModule.init(this, isSecureCamera(), isCaptureIntent());
1623         profile.mark("Init CurrentModule");
1624
1625         setupNfcBeamPush();
1626
1627         mLocalImagesObserver = new FilmstripContentObserver();
1628         mLocalVideosObserver = new FilmstripContentObserver();
1629
1630         getContentResolver().registerContentObserver(
1631                 MediaStore.Images.Media.EXTERNAL_CONTENT_URI, true,
1632                 mLocalImagesObserver);
1633         getContentResolver().registerContentObserver(
1634               MediaStore.Video.Media.EXTERNAL_CONTENT_URI, true,
1635               mLocalVideosObserver);
1636
1637         mMemoryManager = getServices().getMemoryManager();
1638
1639         AsyncTask.THREAD_POOL_EXECUTOR.execute(new Runnable() {
1640             @Override
1641             public void run() {
1642                 HashMap memoryData = mMemoryManager.queryMemory();
1643                 UsageStatistics.instance().reportMemoryConsumed(memoryData,
1644                       MemoryQuery.REPORT_LABEL_LAUNCH);
1645             }
1646         });
1647
1648         mMotionManager = getServices().getMotionManager();
1649
1650         mFirstRunDialog = new FirstRunDialog(this,
1651               getAndroidContext(),
1652               mResolutionSetting,
1653               mSettingsManager,
1654               mOneCameraManager,
1655               new FirstRunDialog.FirstRunDialogListener() {
1656             @Override
1657             public void onFirstRunStateReady() {
1658                 // Run normal resume tasks.
1659                 resume();
1660             }
1661
1662             @Override
1663             public void onFirstRunDialogCancelled() {
1664                 // App isn't functional until users finish first run dialog.
1665                 // We need to finish here since users hit back button during
1666                 // first run dialog (b/19593942).
1667                 finish();
1668             }
1669
1670             @Override
1671             public void onCameraAccessException() {
1672                 mFatalErrorHandler.onGenericCameraAccessFailure();
1673             }
1674         });
1675         profile.stop();
1676     }
1677
1678     /**
1679      * Get the current mode index from the Intent or from persistent
1680      * settings.
1681      */
1682     private int getModeIndex() {
1683         int modeIndex = -1;
1684         int photoIndex = getResources().getInteger(R.integer.camera_mode_photo);
1685         int videoIndex = getResources().getInteger(R.integer.camera_mode_video);
1686         int gcamIndex = getResources().getInteger(R.integer.camera_mode_gcam);
1687         int captureIntentIndex =
1688                 getResources().getInteger(R.integer.camera_mode_capture_intent);
1689         String intentAction = getIntent().getAction();
1690         if (MediaStore.INTENT_ACTION_VIDEO_CAMERA.equals(intentAction)
1691                 || MediaStore.ACTION_VIDEO_CAPTURE.equals(intentAction)) {
1692             modeIndex = videoIndex;
1693         } else if (MediaStore.ACTION_IMAGE_CAPTURE.equals(intentAction)
1694                 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(intentAction)) {
1695             // Capture intent.
1696             modeIndex = captureIntentIndex;
1697         } else if (MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA.equals(intentAction)
1698                 ||MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE.equals(intentAction)
1699                 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(intentAction)) {
1700             modeIndex = mSettingsManager.getInteger(SettingsManager.SCOPE_GLOBAL,
1701                 Keys.KEY_CAMERA_MODULE_LAST_USED);
1702
1703             // For upgraders who have not seen the aspect ratio selection screen,
1704             // we need to drop them back in the photo module and have them select
1705             // aspect ratio.
1706             // TODO: Move this to SettingsManager as an upgrade procedure.
1707             if (!mSettingsManager.getBoolean(SettingsManager.SCOPE_GLOBAL,
1708                     Keys.KEY_USER_SELECTED_ASPECT_RATIO)) {
1709                 modeIndex = photoIndex;
1710             }
1711         } else {
1712             // If the activity has not been started using an explicit intent,
1713             // read the module index from the last time the user changed modes
1714             modeIndex = mSettingsManager.getInteger(SettingsManager.SCOPE_GLOBAL,
1715                                                     Keys.KEY_STARTUP_MODULE_INDEX);
1716             if ((modeIndex == gcamIndex &&
1717                     !GcamHelper.hasGcamAsSeparateModule(mFeatureConfig)) || modeIndex < 0) {
1718                 modeIndex = photoIndex;
1719             }
1720         }
1721         return modeIndex;
1722     }
1723
1724     /**
1725      * Call this whenever the mode drawer or filmstrip change the visibility
1726      * state.
1727      */
1728     private void updatePreviewVisibility() {
1729         if (mCurrentModule == null) {
1730             return;
1731         }
1732
1733         int visibility = getPreviewVisibility();
1734         mCameraAppUI.onPreviewVisiblityChanged(visibility);
1735         updatePreviewRendering(visibility);
1736         mCurrentModule.onPreviewVisibilityChanged(visibility);
1737     }
1738
1739     private void updatePreviewRendering(int visibility) {
1740         if (visibility == ModuleController.VISIBILITY_HIDDEN) {
1741             mCameraAppUI.pausePreviewRendering();
1742         } else {
1743             mCameraAppUI.resumePreviewRendering();
1744         }
1745     }
1746
1747     private int getPreviewVisibility() {
1748         if (mFilmstripCoversPreview) {
1749             return ModuleController.VISIBILITY_HIDDEN;
1750         } else if (mModeListVisible){
1751             return ModuleController.VISIBILITY_COVERED;
1752         } else {
1753             return ModuleController.VISIBILITY_VISIBLE;
1754         }
1755     }
1756
1757     private void setRotationAnimation() {
1758         int rotationAnimation = WindowManager.LayoutParams.ROTATION_ANIMATION_ROTATE;
1759         rotationAnimation = WindowManager.LayoutParams.ROTATION_ANIMATION_CROSSFADE;
1760         Window win = getWindow();
1761         WindowManager.LayoutParams winParams = win.getAttributes();
1762         winParams.rotationAnimation = rotationAnimation;
1763         win.setAttributes(winParams);
1764     }
1765
1766     @Override
1767     public void onUserInteraction() {
1768         super.onUserInteraction();
1769         if (!isFinishing()) {
1770             keepScreenOnForAWhile();
1771         }
1772     }
1773
1774     @Override
1775     public boolean dispatchTouchEvent(MotionEvent ev) {
1776         boolean result = super.dispatchTouchEvent(ev);
1777         if (ev.getActionMasked() == MotionEvent.ACTION_DOWN) {
1778             // Real deletion is postponed until the next user interaction after
1779             // the gesture that triggers deletion. Until real deletion is
1780             // performed, users can click the undo button to bring back the
1781             // image that they chose to delete.
1782             if (mPendingDeletion && !mIsUndoingDeletion) {
1783                 performDeletion();
1784             }
1785         }
1786         return result;
1787     }
1788
1789     @Override
1790     public void onPauseTasks() {
1791         CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_PAUSE);
1792         Profile profile = mProfiler.create("CameraActivity.onPause").start();
1793
1794         /*
1795          * Save the last module index after all secure camera and icon launches,
1796          * not just on mode switches.
1797          *
1798          * Right now we exclude capture intents from this logic, because we also
1799          * ignore the cross-Activity recovery logic in onStart for capture intents.
1800          */
1801         if (!isCaptureIntent()) {
1802             mSettingsManager.set(SettingsManager.SCOPE_GLOBAL,
1803                                  Keys.KEY_STARTUP_MODULE_INDEX,
1804                 mCurrentModeIndex);
1805         }
1806
1807         mPaused = true;
1808         mCameraAppUI.hideCaptureIndicator();
1809         mFirstRunDialog.dismiss();
1810
1811         // Delete photos that are pending deletion
1812         performDeletion();
1813         mCurrentModule.pause();
1814         mOrientationManager.pause();
1815         mPanoramaViewHelper.onPause();
1816
1817         mLocalImagesObserver.setForegroundChangeListener(null);
1818         mLocalImagesObserver.setActivityPaused(true);
1819         mLocalVideosObserver.setActivityPaused(true);
1820         if (mPreloader != null) {
1821             mPreloader.cancelAllLoads();
1822         }
1823         resetScreenOn();
1824
1825         mMotionManager.stop();
1826
1827         // Always stop recording location when paused. Resume will start
1828         // location recording again if the location setting is on.
1829         mLocationManager.recordLocation(false);
1830
1831         UsageStatistics.instance().backgrounded();
1832
1833         // Camera is in fatal state. A fatal dialog is presented to users, but users just hit home
1834         // button. Let's just kill the process.
1835         if (mCameraFatalError && !isFinishing()) {
1836             Log.v(TAG, "onPause when camera is in fatal state, call Activity.finish()");
1837             finish();
1838         } else {
1839             // Close the camera and wait for the operation done.
1840             Log.v(TAG, "onPause closing camera");
1841             if (mCameraController != null) {
1842                 mCameraController.closeCamera(true);
1843             }
1844         }
1845
1846         profile.stop();
1847     }
1848
1849     @Override
1850     public void onResumeTasks() {
1851         mPaused = false;
1852         if (!mSecureCamera) {
1853             // Show the dialog if necessary. The rest resume logic will be invoked
1854             // at the onFirstRunStateReady() callback.
1855             try {
1856                 mFirstRunDialog.showIfNecessary();
1857             } catch (AssertionError e) {
1858                 Log.e(TAG, "Creating camera controller failed.", e);
1859                 mFatalErrorHandler.onGenericCameraAccessFailure();
1860             }
1861         } else {
1862             // In secure mode from lockscreen, we go straight to camera and will
1863             // show first run dialog next time user enters launcher.
1864             Log.v(TAG, "in secure mode, skipping first run dialog check");
1865             resume();
1866         }
1867     }
1868
1869     /**
1870      * Checks if any of the needed Android runtime permissions are missing.
1871      * If they are, then launch the permissions activity under one of the following conditions:
1872      * a) The permissions dialogs have not run yet. We will ask for permission only once.
1873      * b) If the missing permissions are critical to the app running, we will display a fatal error dialog.
1874      * Critical permissions are: camera, microphone and storage. The app cannot run without them.
1875      * Non-critical permission is location.
1876      */
1877     private void checkPermissions() {
1878
1879         if (checkSelfPermission(Manifest.permission.CAMERA) == PackageManager.PERMISSION_GRANTED &&
1880                 checkSelfPermission(Manifest.permission.RECORD_AUDIO) == PackageManager.PERMISSION_GRANTED &&
1881                 checkSelfPermission(Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
1882             mHasCriticalPermissions = true;
1883         } else {
1884             mHasCriticalPermissions = false;
1885         }
1886
1887         if ((checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED &&
1888                 !mSettingsManager.getBoolean(SettingsManager.SCOPE_GLOBAL, Keys.KEY_HAS_SEEN_PERMISSIONS_DIALOGS)) ||
1889                 !mHasCriticalPermissions) {
1890             Intent intent = new Intent(this, PermissionsActivity.class);
1891             startActivityForResult(intent, PERMISSIONS_ACTIVITY_REQUEST_CODE);
1892         }
1893     }
1894
1895     @Override
1896     protected void onActivityResult(int requestCode, int resultCode, Intent data) {
1897         super.onActivityResult(requestCode, resultCode, data);
1898
1899         // Close the app if critical permissions are missing.
1900         if (requestCode == PERMISSIONS_ACTIVITY_REQUEST_CODE && resultCode == PERMISSIONS_RESULT_CODE_FAILED) {
1901             finish();
1902         }
1903     }
1904
1905     private void preloadFilmstripItems() {
1906         if (mDataAdapter == null) {
1907             mDataAdapter = new CameraFilmstripDataAdapter(mAppContext,
1908                     mPhotoItemFactory, mVideoItemFactory);
1909             mDataAdapter.setLocalDataListener(mFilmstripItemListener);
1910             mPreloader = new Preloader<Integer, AsyncTask>(FILMSTRIP_PRELOAD_AHEAD_ITEMS, mDataAdapter,
1911                     mDataAdapter);
1912             if (!mSecureCamera) {
1913                 mFilmstripController.setDataAdapter(mDataAdapter);
1914                 if (!isCaptureIntent()) {
1915                     mDataAdapter.requestLoad(new Callback<Void>() {
1916                         @Override
1917                         public void onCallback(Void result) {
1918                             fillTemporarySessions();
1919                         }
1920                     });
1921                 }
1922             } else {
1923                 // Put a lock placeholder as the last image by setting its date to
1924                 // 0.
1925                 ImageView v = (ImageView) getLayoutInflater().inflate(
1926                         R.layout.secure_album_placeholder, null);
1927                 v.setTag(R.id.mediadata_tag_viewtype, FilmstripItemType.SECURE_ALBUM_PLACEHOLDER.ordinal());
1928                 v.setOnClickListener(new View.OnClickListener() {
1929                     @Override
1930                     public void onClick(View view) {
1931                         UsageStatistics.instance().changeScreen(NavigationChange.Mode.GALLERY,
1932                                 NavigationChange.InteractionCause.BUTTON);
1933                         startGallery();
1934                         finish();
1935                     }
1936                 });
1937                 v.setContentDescription(getString(R.string.accessibility_unlock_to_camera));
1938                 mDataAdapter = new FixedLastProxyAdapter(
1939                         mAppContext,
1940                         mDataAdapter,
1941                         new PlaceholderItem(
1942                                 v,
1943                                 FilmstripItemType.SECURE_ALBUM_PLACEHOLDER,
1944                                 v.getDrawable().getIntrinsicWidth(),
1945                                 v.getDrawable().getIntrinsicHeight()));
1946                 // Flush out all the original data.
1947                 mDataAdapter.clear();
1948                 mFilmstripController.setDataAdapter(mDataAdapter);
1949             }
1950         }
1951     }
1952
1953     private void resume() {
1954         Profile profile = mProfiler.create("CameraActivity.resume").start();
1955         CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_RESUME);
1956         Log.v(TAG, "Build info: " + Build.DISPLAY);
1957         if (!mHasCriticalPermissions) {
1958             Log.v(TAG, "Missing critical permissions.");
1959             return;
1960         }
1961         preloadFilmstripItems();
1962         updateStorageSpaceAndHint(null);
1963
1964         mLastLayoutOrientation = getResources().getConfiguration().orientation;
1965
1966         // TODO: Handle this in OrientationManager.
1967         // Auto-rotate off
1968         if (Settings.System.getInt(getContentResolver(),
1969                 Settings.System.ACCELEROMETER_ROTATION, 0) == 0) {
1970             setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
1971             mAutoRotateScreen = false;
1972         } else {
1973             setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR);
1974             mAutoRotateScreen = true;
1975         }
1976
1977         // Foreground event logging.  ACTION_STILL_IMAGE_CAMERA and
1978         // INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE are double logged due to
1979         // lockscreen onResume->onPause->onResume sequence.
1980         int source;
1981         String action = getIntent().getAction();
1982         if (action == null) {
1983             source = ForegroundSource.UNKNOWN_SOURCE;
1984         } else {
1985             switch (action) {
1986                 case MediaStore.ACTION_IMAGE_CAPTURE:
1987                     source = ForegroundSource.ACTION_IMAGE_CAPTURE;
1988                     break;
1989                 case MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA:
1990                     // was UNKNOWN_SOURCE in Fishlake.
1991                     source = ForegroundSource.ACTION_STILL_IMAGE_CAMERA;
1992                     break;
1993                 case MediaStore.INTENT_ACTION_VIDEO_CAMERA:
1994                     // was UNKNOWN_SOURCE in Fishlake.
1995                     source = ForegroundSource.ACTION_VIDEO_CAMERA;
1996                     break;
1997                 case MediaStore.ACTION_VIDEO_CAPTURE:
1998                     source = ForegroundSource.ACTION_VIDEO_CAPTURE;
1999                     break;
2000                 case MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE:
2001                     // was ACTION_IMAGE_CAPTURE_SECURE in Fishlake.
2002                     source = ForegroundSource.ACTION_STILL_IMAGE_CAMERA_SECURE;
2003                     break;
2004                 case MediaStore.ACTION_IMAGE_CAPTURE_SECURE:
2005                     source = ForegroundSource.ACTION_IMAGE_CAPTURE_SECURE;
2006                     break;
2007                 case Intent.ACTION_MAIN:
2008                     source = ForegroundSource.ACTION_MAIN;
2009                     break;
2010                 default:
2011                     source = ForegroundSource.UNKNOWN_SOURCE;
2012                     break;
2013             }
2014         }
2015         UsageStatistics.instance().foregrounded(source, currentUserInterfaceMode(),
2016                 isKeyguardSecure(), isKeyguardLocked(),
2017                 mStartupOnCreate, mExecutionStartNanoTime);
2018
2019         mGalleryIntent = IntentHelper.getGalleryIntent(mAppContext);
2020         if (ApiHelper.isLOrHigher()) {
2021             // hide the up affordance for L devices, it's not very Materially
2022             mActionBar.setDisplayShowHomeEnabled(false);
2023         }
2024
2025         mOrientationManager.resume();
2026
2027         mCurrentModule.hardResetSettings(mSettingsManager);
2028
2029         profile.mark();
2030         mCurrentModule.resume();
2031         UsageStatistics.instance().changeScreen(currentUserInterfaceMode(),
2032                 NavigationChange.InteractionCause.BUTTON);
2033         setSwipingEnabled(true);
2034         profile.mark("mCurrentModule.resume");
2035
2036         if (!mResetToPreviewOnResume) {
2037             FilmstripItem item = mDataAdapter.getItemAt(
2038                   mFilmstripController.getCurrentAdapterIndex());
2039             if (item != null) {
2040                 mDataAdapter.refresh(item.getData().getUri());
2041             }
2042         }
2043
2044         // The share button might be disabled to avoid double tapping.
2045         mCameraAppUI.getFilmstripBottomControls().setShareEnabled(true);
2046         // Default is showing the preview, unless disabled by explicitly
2047         // starting an activity we want to return from to the filmstrip rather
2048         // than the preview.
2049         mResetToPreviewOnResume = true;
2050
2051         if (mLocalVideosObserver.isMediaDataChangedDuringPause()
2052                 || mLocalImagesObserver.isMediaDataChangedDuringPause()) {
2053             if (!mSecureCamera) {
2054                 // If it's secure camera, requestLoad() should not be called
2055                 // as it will load all the data.
2056                 if (!mFilmstripVisible) {
2057                     mDataAdapter.requestLoad(new Callback<Void>() {
2058                         @Override
2059                         public void onCallback(Void result) {
2060                             fillTemporarySessions();
2061                         }
2062                     });
2063                 } else {
2064                     mDataAdapter.requestLoadNewPhotos();
2065                 }
2066             }
2067         }
2068         mLocalImagesObserver.setActivityPaused(false);
2069         mLocalVideosObserver.setActivityPaused(false);
2070         if (!mSecureCamera) {
2071             mLocalImagesObserver.setForegroundChangeListener(
2072                     new FilmstripContentObserver.ChangeListener() {
2073                 @Override
2074                 public void onChange() {
2075                     mDataAdapter.requestLoadNewPhotos();
2076                 }
2077             });
2078         }
2079
2080         keepScreenOnForAWhile();
2081
2082         // Lights-out mode at all times.
2083         final View rootView = findViewById(R.id.activity_root_view);
2084         mLightsOutRunnable.run();
2085         getWindow().getDecorView().setOnSystemUiVisibilityChangeListener(
2086               new OnSystemUiVisibilityChangeListener() {
2087                   @Override
2088                   public void onSystemUiVisibilityChange(int visibility) {
2089                       mMainHandler.removeCallbacks(mLightsOutRunnable);
2090                       mMainHandler.postDelayed(mLightsOutRunnable, LIGHTS_OUT_DELAY_MS);
2091                   }
2092               });
2093
2094         profile.mark();
2095         mPanoramaViewHelper.onResume();
2096         profile.mark("mPanoramaViewHelper.onResume()");
2097
2098         ReleaseHelper.showReleaseInfoDialogOnStart(this, mSettingsManager);
2099         // Enable location recording if the setting is on.
2100         final boolean locationRecordingEnabled =
2101                 mSettingsManager.getBoolean(SettingsManager.SCOPE_GLOBAL, Keys.KEY_RECORD_LOCATION);
2102         mLocationManager.recordLocation(locationRecordingEnabled);
2103
2104         final int previewVisibility = getPreviewVisibility();
2105         updatePreviewRendering(previewVisibility);
2106
2107         mMotionManager.start();
2108         profile.stop();
2109     }
2110
2111     private void fillTemporarySessions() {
2112         if (mSecureCamera) {
2113             return;
2114         }
2115         // There might be sessions still in flight (processed by our service).
2116         // Make sure they're added to the filmstrip.
2117         getServices().getCaptureSessionManager().fillTemporarySession(mSessionListener);
2118     }
2119
2120     @Override
2121     public void onStartTasks() {
2122         mIsActivityRunning = true;
2123         mPanoramaViewHelper.onStart();
2124
2125         /*
2126          * If we're starting after launching a different Activity (lockscreen),
2127          * we need to use the last mode used in the other Activity, and
2128          * not the old one from this Activity.
2129          *
2130          * This needs to happen before CameraAppUI.resume() in order to set the
2131          * mode cover icon to the actual last mode used.
2132          *
2133          * Right now we exclude capture intents from this logic.
2134          */
2135         int modeIndex = getModeIndex();
2136         if (!isCaptureIntent() && mCurrentModeIndex != modeIndex) {
2137             onModeSelected(modeIndex);
2138         }
2139
2140         if (mResetToPreviewOnResume) {
2141             mCameraAppUI.resume();
2142             mResetToPreviewOnResume = false;
2143         }
2144     }
2145
2146     @Override
2147     protected void onStopTasks() {
2148         mIsActivityRunning = false;
2149         mPanoramaViewHelper.onStop();
2150
2151         mLocationManager.disconnect();
2152     }
2153
2154     @Override
2155     public void onDestroyTasks() {
2156         if (mSecureCamera) {
2157             unregisterReceiver(mShutdownReceiver);
2158         }
2159
2160         // Ensure anything that checks for "isPaused" returns true.
2161         mPaused = true;
2162
2163         mSettingsManager.removeAllListeners();
2164         if (mCameraController != null) {
2165             mCameraController.removeCallbackReceiver();
2166             mCameraController.setCameraExceptionHandler(null);
2167         }
2168         getContentResolver().unregisterContentObserver(mLocalImagesObserver);
2169         getContentResolver().unregisterContentObserver(mLocalVideosObserver);
2170         getServices().getCaptureSessionManager().removeSessionListener(mSessionListener);
2171         mCameraAppUI.onDestroy();
2172         mModeListView.setVisibilityChangedListener(null);
2173         mCameraController = null;
2174         mSettingsManager = null;
2175         mOrientationManager = null;
2176         mButtonManager = null;
2177         mSoundPlayer.release();
2178         CameraAgentFactory.recycle(CameraAgentFactory.CameraApi.API_1);
2179         CameraAgentFactory.recycle(CameraAgentFactory.CameraApi.AUTO);
2180     }
2181
2182     @Override
2183     public void onConfigurationChanged(Configuration config) {
2184         super.onConfigurationChanged(config);
2185         Log.v(TAG, "onConfigurationChanged");
2186         if (config.orientation == Configuration.ORIENTATION_UNDEFINED) {
2187             return;
2188         }
2189
2190         if (mLastLayoutOrientation != config.orientation) {
2191             mLastLayoutOrientation = config.orientation;
2192             mCurrentModule.onLayoutOrientationChanged(
2193                     mLastLayoutOrientation == Configuration.ORIENTATION_LANDSCAPE);
2194         }
2195     }
2196
2197     @Override
2198     public boolean onKeyDown(int keyCode, KeyEvent event) {
2199         if (!mFilmstripVisible) {
2200             if (mCurrentModule.onKeyDown(keyCode, event)) {
2201                 return true;
2202             }
2203             // Prevent software keyboard or voice search from showing up.
2204             if (keyCode == KeyEvent.KEYCODE_SEARCH
2205                     || keyCode == KeyEvent.KEYCODE_MENU) {
2206                 if (event.isLongPress()) {
2207                     return true;
2208                 }
2209             }
2210         }
2211
2212         return super.onKeyDown(keyCode, event);
2213     }
2214
2215     @Override
2216     public boolean onKeyUp(int keyCode, KeyEvent event) {
2217         if (!mFilmstripVisible) {
2218             // If a module is in the middle of capture, it should
2219             // consume the key event.
2220             if (mCurrentModule.onKeyUp(keyCode, event)) {
2221                 return true;
2222             } else if (keyCode == KeyEvent.KEYCODE_MENU
2223                     || keyCode == KeyEvent.KEYCODE_DPAD_LEFT) {
2224                 // Let the mode list view consume the event.
2225                 mCameraAppUI.openModeList();
2226                 return true;
2227             } else if (keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
2228                 mCameraAppUI.showFilmstrip();
2229                 return true;
2230             }
2231         } else {
2232             if (keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
2233                 mFilmstripController.goToNextItem();
2234                 return true;
2235             } else if (keyCode == KeyEvent.KEYCODE_DPAD_LEFT) {
2236                 boolean wentToPrevious = mFilmstripController.goToPreviousItem();
2237                 if (!wentToPrevious) {
2238                   // at beginning of filmstrip, hide and go back to preview
2239                   mCameraAppUI.hideFilmstrip();
2240                 }
2241                 return true;
2242             }
2243         }
2244         return super.onKeyUp(keyCode, event);
2245     }
2246
2247     @Override
2248     public void onBackPressed() {
2249         if (!mCameraAppUI.onBackPressed()) {
2250             if (!mCurrentModule.onBackPressed()) {
2251                 super.onBackPressed();
2252             }
2253         }
2254     }
2255
2256     @Override
2257     public boolean isAutoRotateScreen() {
2258         // TODO: Move to OrientationManager.
2259         return mAutoRotateScreen;
2260     }
2261
2262     @Override
2263     public boolean onCreateOptionsMenu(Menu menu) {
2264         MenuInflater inflater = getMenuInflater();
2265         inflater.inflate(R.menu.filmstrip_menu, menu);
2266         mActionBarMenu = menu;
2267
2268         // add a button for launching the gallery
2269         if (mGalleryIntent != null) {
2270             CharSequence appName =  IntentHelper.getGalleryAppName(mAppContext, mGalleryIntent);
2271             if (appName != null) {
2272                 MenuItem menuItem = menu.add(appName);
2273                 menuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
2274                 menuItem.setIntent(mGalleryIntent);
2275
2276                 Drawable galleryLogo = IntentHelper.getGalleryIcon(mAppContext, mGalleryIntent);
2277                 if (galleryLogo != null) {
2278                     menuItem.setIcon(galleryLogo);
2279                 }
2280             }
2281         }
2282
2283         return super.onCreateOptionsMenu(menu);
2284     }
2285
2286     @Override
2287     public boolean onPrepareOptionsMenu(Menu menu) {
2288         if (isSecureCamera() && !ApiHelper.isLOrHigher()) {
2289             // Compatibility pre-L: launching new activities right above
2290             // lockscreen does not reliably work, only show help if not secure
2291             menu.removeItem(R.id.action_help_and_feedback);
2292         }
2293
2294         return super.onPrepareOptionsMenu(menu);
2295     }
2296
2297     protected long getStorageSpaceBytes() {
2298         synchronized (mStorageSpaceLock) {
2299             return mStorageSpaceBytes;
2300         }
2301     }
2302
2303     protected interface OnStorageUpdateDoneListener {
2304         public void onStorageUpdateDone(long bytes);
2305     }
2306
2307     protected void updateStorageSpaceAndHint(final OnStorageUpdateDoneListener callback) {
2308         /*
2309          * We execute disk operations on a background thread in order to
2310          * free up the UI thread.  Synchronizing on the lock below ensures
2311          * that when getStorageSpaceBytes is called, the main thread waits
2312          * until this method has completed.
2313          *
2314          * However, .execute() does not ensure this execution block will be
2315          * run right away (.execute() schedules this AsyncTask for sometime
2316          * in the future. executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR)
2317          * tries to execute the task in parellel with other AsyncTasks, but
2318          * there's still no guarantee).
2319          * e.g. don't call this then immediately call getStorageSpaceBytes().
2320          * Instead, pass in an OnStorageUpdateDoneListener.
2321          */
2322         (new AsyncTask<Void, Void, Long>() {
2323             @Override
2324             protected Long doInBackground(Void ... arg) {
2325                 synchronized (mStorageSpaceLock) {
2326                     mStorageSpaceBytes = Storage.getAvailableSpace();
2327                     return mStorageSpaceBytes;
2328                 }
2329             }
2330
2331             @Override
2332             protected void onPostExecute(Long bytes) {
2333                 updateStorageHint(bytes);
2334                 // This callback returns after I/O to check disk, so we could be
2335                 // pausing and shutting down. If so, don't bother invoking.
2336                 if (callback != null && !mPaused) {
2337                     callback.onStorageUpdateDone(bytes);
2338                 } else {
2339                     Log.v(TAG, "ignoring storage callback after activity pause");
2340                 }
2341             }
2342         }).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2343     }
2344
2345     protected void updateStorageHint(long storageSpace) {
2346         if (!mIsActivityRunning) {
2347             return;
2348         }
2349
2350         String message = null;
2351         if (storageSpace == Storage.UNAVAILABLE) {
2352             message = getString(R.string.no_storage);
2353         } else if (storageSpace == Storage.PREPARING) {
2354             message = getString(R.string.preparing_sd);
2355         } else if (storageSpace == Storage.UNKNOWN_SIZE) {
2356             message = getString(R.string.access_sd_fail);
2357         } else if (storageSpace <= Storage.LOW_STORAGE_THRESHOLD_BYTES) {
2358             message = getString(R.string.spaceIsLow_content);
2359         }
2360
2361         if (message != null) {
2362             Log.w(TAG, "Storage warning: " + message);
2363             if (mStorageHint == null) {
2364                 mStorageHint = OnScreenHint.makeText(CameraActivity.this, message);
2365             } else {
2366                 mStorageHint.setText(message);
2367             }
2368             mStorageHint.show();
2369             UsageStatistics.instance().storageWarning(storageSpace);
2370
2371             // Disable all user interactions,
2372             mCameraAppUI.setDisableAllUserInteractions(true);
2373         } else if (mStorageHint != null) {
2374             mStorageHint.cancel();
2375             mStorageHint = null;
2376
2377             // Re-enable all user interactions.
2378             mCameraAppUI.setDisableAllUserInteractions(false);
2379         }
2380     }
2381
2382     protected void setResultEx(int resultCode) {
2383         mResultCodeForTesting = resultCode;
2384         setResult(resultCode);
2385     }
2386
2387     protected void setResultEx(int resultCode, Intent data) {
2388         mResultCodeForTesting = resultCode;
2389         mResultDataForTesting = data;
2390         setResult(resultCode, data);
2391     }
2392
2393     public int getResultCode() {
2394         return mResultCodeForTesting;
2395     }
2396
2397     public Intent getResultData() {
2398         return mResultDataForTesting;
2399     }
2400
2401     public boolean isSecureCamera() {
2402         return mSecureCamera;
2403     }
2404
2405     @Override
2406     public boolean isPaused() {
2407         return mPaused;
2408     }
2409
2410     @Override
2411     public int getPreferredChildModeIndex(int modeIndex) {
2412         if (modeIndex == getResources().getInteger(R.integer.camera_mode_photo)) {
2413             boolean hdrPlusOn = Keys.isHdrPlusOn(mSettingsManager);
2414             if (hdrPlusOn && GcamHelper.hasGcamAsSeparateModule(mFeatureConfig)) {
2415                 modeIndex = getResources().getInteger(R.integer.camera_mode_gcam);
2416             }
2417         }
2418         return modeIndex;
2419     }
2420
2421     @Override
2422     public void onModeSelected(int modeIndex) {
2423         if (mCurrentModeIndex == modeIndex) {
2424             return;
2425         }
2426
2427         CameraPerformanceTracker.onEvent(CameraPerformanceTracker.MODE_SWITCH_START);
2428         // Record last used camera mode for quick switching
2429         if (modeIndex == getResources().getInteger(R.integer.camera_mode_photo)
2430                 || modeIndex == getResources().getInteger(R.integer.camera_mode_gcam)) {
2431             mSettingsManager.set(SettingsManager.SCOPE_GLOBAL,
2432                                  Keys.KEY_CAMERA_MODULE_LAST_USED,
2433                                  modeIndex);
2434         }
2435
2436         closeModule(mCurrentModule);
2437
2438         // Select the correct module index from the mode switcher index.
2439         modeIndex = getPreferredChildModeIndex(modeIndex);
2440         setModuleFromModeIndex(modeIndex);
2441
2442         mCameraAppUI.resetBottomControls(mCurrentModule, modeIndex);
2443         mCameraAppUI.addShutterListener(mCurrentModule);
2444         openModule(mCurrentModule);
2445         // Store the module index so we can use it the next time the Camera
2446         // starts up.
2447         mSettingsManager.set(SettingsManager.SCOPE_GLOBAL,
2448                              Keys.KEY_STARTUP_MODULE_INDEX, modeIndex);
2449     }
2450
2451     /**
2452      * Shows the settings dialog.
2453      */
2454     @Override
2455     public void onSettingsSelected() {
2456         UsageStatistics.instance().controlUsed(
2457                 eventprotos.ControlEvent.ControlType.OVERALL_SETTINGS);
2458         Intent intent = new Intent(this, CameraSettingsActivity.class);
2459         startActivity(intent);
2460     }
2461
2462     @Override
2463     public void freezeScreenUntilPreviewReady() {
2464         mCameraAppUI.freezeScreenUntilPreviewReady();
2465     }
2466
2467     @Override
2468     public int getModuleId(int modeIndex) {
2469         ModuleManagerImpl.ModuleAgent agent = mModuleManager.getModuleAgent(modeIndex);
2470         if (agent == null) {
2471             return -1;
2472         }
2473         return agent.getModuleId();
2474     }
2475
2476     /**
2477      * Sets the mCurrentModuleIndex, creates a new module instance for the given
2478      * index an sets it as mCurrentModule.
2479      */
2480     private void setModuleFromModeIndex(int modeIndex) {
2481         ModuleManagerImpl.ModuleAgent agent = mModuleManager.getModuleAgent(modeIndex);
2482         if (agent == null) {
2483             return;
2484         }
2485         if (!agent.requestAppForCamera()) {
2486             mCameraController.closeCamera(true);
2487         }
2488         mCurrentModeIndex = agent.getModuleId();
2489         mCurrentModule = (CameraModule) agent.createModule(this, getIntent());
2490     }
2491
2492     @Override
2493     public SettingsManager getSettingsManager() {
2494         return mSettingsManager;
2495     }
2496
2497     @Override
2498     public ResolutionSetting getResolutionSetting() {
2499         return mResolutionSetting;
2500     }
2501
2502     @Override
2503     public CameraServices getServices() {
2504         return CameraServicesImpl.instance();
2505     }
2506
2507     @Override
2508     public FatalErrorHandler getFatalErrorHandler() {
2509         return mFatalErrorHandler;
2510     }
2511
2512     public List<String> getSupportedModeNames() {
2513         List<Integer> indices = mModuleManager.getSupportedModeIndexList();
2514         List<String> supported = new ArrayList<String>();
2515
2516         for (Integer modeIndex : indices) {
2517             String name = CameraUtil.getCameraModeText(modeIndex, mAppContext);
2518             if (name != null && !name.equals("")) {
2519                 supported.add(name);
2520             }
2521         }
2522         return supported;
2523     }
2524
2525     @Override
2526     public ButtonManager getButtonManager() {
2527         if (mButtonManager == null) {
2528             mButtonManager = new ButtonManager(this);
2529         }
2530         return mButtonManager;
2531     }
2532
2533     @Override
2534     public SoundPlayer getSoundPlayer() {
2535         return mSoundPlayer;
2536     }
2537
2538     /**
2539      * Launches an ACTION_EDIT intent for the given local data item. If
2540      * 'withTinyPlanet' is set, this will show a disambig dialog first to let
2541      * the user start either the tiny planet editor or another photo editor.
2542      *
2543      * @param data The data item to edit.
2544      */
2545     public void launchEditor(FilmstripItem data) {
2546         Intent intent = new Intent(Intent.ACTION_EDIT)
2547                 .setDataAndType(data.getData().getUri(), data.getData().getMimeType())
2548                 .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
2549         try {
2550             launchActivityByIntent(intent);
2551         } catch (ActivityNotFoundException e) {
2552             final String msgEditWith = getResources().getString(R.string.edit_with);
2553             launchActivityByIntent(Intent.createChooser(intent, msgEditWith));
2554         }
2555     }
2556
2557     @Override
2558     public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
2559         super.onCreateContextMenu(menu, v, menuInfo);
2560
2561         MenuInflater inflater = getMenuInflater();
2562         inflater.inflate(R.menu.filmstrip_context_menu, menu);
2563     }
2564
2565     @Override
2566     public boolean onContextItemSelected(MenuItem item) {
2567         switch (item.getItemId()) {
2568             case R.id.tiny_planet_editor:
2569                 mMyFilmstripBottomControlListener.onTinyPlanet();
2570                 return true;
2571             case R.id.photo_editor:
2572                 mMyFilmstripBottomControlListener.onEdit();
2573                 return true;
2574         }
2575         return false;
2576     }
2577
2578     /**
2579      * Launch the tiny planet editor.
2580      *
2581      * @param data The data must be a 360 degree stereographically mapped
2582      *            panoramic image. It will not be modified, instead a new item
2583      *            with the result will be added to the filmstrip.
2584      */
2585     public void launchTinyPlanetEditor(FilmstripItem data) {
2586         TinyPlanetFragment fragment = new TinyPlanetFragment();
2587         Bundle bundle = new Bundle();
2588         bundle.putString(TinyPlanetFragment.ARGUMENT_URI, data.getData().getUri().toString());
2589         bundle.putString(TinyPlanetFragment.ARGUMENT_TITLE, data.getData().getTitle());
2590         fragment.setArguments(bundle);
2591         fragment.show(getFragmentManager(), "tiny_planet");
2592     }
2593
2594     /**
2595      * Returns what UI mode (capture mode or filmstrip) we are in.
2596      * Returned number one of {@link com.google.common.logging.eventprotos.NavigationChange.Mode}
2597      */
2598     private int currentUserInterfaceMode() {
2599         int mode = NavigationChange.Mode.UNKNOWN_MODE;
2600         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_photo)) {
2601             mode = NavigationChange.Mode.PHOTO_CAPTURE;
2602         }
2603         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_video)) {
2604             mode = NavigationChange.Mode.VIDEO_CAPTURE;
2605         }
2606         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_refocus)) {
2607             mode = NavigationChange.Mode.LENS_BLUR;
2608         }
2609         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_gcam)) {
2610             mode = NavigationChange.Mode.HDR_PLUS;
2611         }
2612         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_photosphere)) {
2613             mode = NavigationChange.Mode.PHOTO_SPHERE;
2614         }
2615         if (mCurrentModeIndex == getResources().getInteger(R.integer.camera_mode_panorama)) {
2616             mode = NavigationChange.Mode.PANORAMA;
2617         }
2618         if (mFilmstripVisible) {
2619             mode = NavigationChange.Mode.FILMSTRIP;
2620         }
2621         return mode;
2622     }
2623
2624     private void openModule(CameraModule module) {
2625         module.init(this, isSecureCamera(), isCaptureIntent());
2626         module.hardResetSettings(mSettingsManager);
2627         // Hide accessibility zoom UI by default. Modules will enable it themselves if required.
2628         getCameraAppUI().hideAccessibilityZoomUI();
2629         if (!mPaused) {
2630             module.resume();
2631             UsageStatistics.instance().changeScreen(currentUserInterfaceMode(),
2632                     NavigationChange.InteractionCause.BUTTON);
2633             updatePreviewVisibility();
2634         }
2635     }
2636
2637     private void closeModule(CameraModule module) {
2638         module.pause();
2639         mCameraAppUI.clearModuleUI();
2640     }
2641
2642     private void performDeletion() {
2643         if (!mPendingDeletion) {
2644             return;
2645         }
2646         hideUndoDeletionBar(false);
2647         mDataAdapter.executeDeletion();
2648     }
2649
2650     public void showUndoDeletionBar() {
2651         if (mPendingDeletion) {
2652             performDeletion();
2653         }
2654         Log.v(TAG, "showing undo bar");
2655         mPendingDeletion = true;
2656         if (mUndoDeletionBar == null) {
2657             ViewGroup v = (ViewGroup) getLayoutInflater().inflate(R.layout.undo_bar,
2658                     mAboveFilmstripControlLayout, true);
2659             mUndoDeletionBar = (ViewGroup) v.findViewById(R.id.camera_undo_deletion_bar);
2660             View button = mUndoDeletionBar.findViewById(R.id.camera_undo_deletion_button);
2661             button.setOnClickListener(new View.OnClickListener() {
2662                 @Override
2663                 public void onClick(View view) {
2664                     mDataAdapter.undoDeletion();
2665                     // Fix for b/21666018: When undoing a delete in Fullscreen
2666                     // mode, just flip
2667                     // back to the filmstrip to force a refresh.
2668                     if (mFilmstripController.inFullScreen()) {
2669                         mFilmstripController.goToFilmstrip();
2670                     }
2671                     hideUndoDeletionBar(true);
2672                 }
2673             });
2674             // Setting undo bar clickable to avoid touch events going through
2675             // the bar to the buttons (eg. edit button, etc) underneath the bar.
2676             mUndoDeletionBar.setClickable(true);
2677             // When there is user interaction going on with the undo button, we
2678             // do not want to hide the undo bar.
2679             button.setOnTouchListener(new View.OnTouchListener() {
2680                 @Override
2681                 public boolean onTouch(View v, MotionEvent event) {
2682                     if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
2683                         mIsUndoingDeletion = true;
2684                     } else if (event.getActionMasked() == MotionEvent.ACTION_UP) {
2685                         mIsUndoingDeletion = false;
2686                     }
2687                     return false;
2688                 }
2689             });
2690         }
2691         mUndoDeletionBar.setAlpha(0f);
2692         mUndoDeletionBar.setVisibility(View.VISIBLE);
2693         mUndoDeletionBar.animate().setDuration(200).alpha(1f).setListener(null).start();
2694     }
2695
2696     private void hideUndoDeletionBar(boolean withAnimation) {
2697         Log.v(TAG, "Hiding undo deletion bar");
2698         mPendingDeletion = false;
2699         if (mUndoDeletionBar != null) {
2700             if (withAnimation) {
2701                 mUndoDeletionBar.animate().setDuration(200).alpha(0f)
2702                         .setListener(new Animator.AnimatorListener() {
2703                             @Override
2704                             public void onAnimationStart(Animator animation) {
2705                                 // Do nothing.
2706                             }
2707
2708                             @Override
2709                             public void onAnimationEnd(Animator animation) {
2710                                 mUndoDeletionBar.setVisibility(View.GONE);
2711                             }
2712
2713                             @Override
2714                             public void onAnimationCancel(Animator animation) {
2715                                 // Do nothing.
2716                             }
2717
2718                             @Override
2719                             public void onAnimationRepeat(Animator animation) {
2720                                 // Do nothing.
2721                             }
2722                         }).start();
2723             } else {
2724                 mUndoDeletionBar.setVisibility(View.GONE);
2725             }
2726         }
2727     }
2728
2729     /**
2730      * Enable/disable swipe-to-filmstrip. Will always disable swipe if in
2731      * capture intent.
2732      *
2733      * @param enable {@code true} to enable swipe.
2734      */
2735     public void setSwipingEnabled(boolean enable) {
2736         // TODO: Bring back the functionality.
2737         if (isCaptureIntent()) {
2738             // lockPreview(true);
2739         } else {
2740             // lockPreview(!enable);
2741         }
2742     }
2743
2744     // Accessor methods for getting latency times used in performance testing
2745     public long getFirstPreviewTime() {
2746         if (mCurrentModule instanceof PhotoModule) {
2747             long coverHiddenTime = getCameraAppUI().getCoverHiddenTime();
2748             if (coverHiddenTime != -1) {
2749                 return coverHiddenTime - mOnCreateTime;
2750             }
2751         }
2752         return -1;
2753     }
2754
2755     public long getAutoFocusTime() {
2756         return (mCurrentModule instanceof PhotoModule) ?
2757                 ((PhotoModule) mCurrentModule).mAutoFocusTime : -1;
2758     }
2759
2760     public long getShutterLag() {
2761         return (mCurrentModule instanceof PhotoModule) ?
2762                 ((PhotoModule) mCurrentModule).mShutterLag : -1;
2763     }
2764
2765     public long getShutterToPictureDisplayedTime() {
2766         return (mCurrentModule instanceof PhotoModule) ?
2767                 ((PhotoModule) mCurrentModule).mShutterToPictureDisplayedTime : -1;
2768     }
2769
2770     public long getPictureDisplayedToJpegCallbackTime() {
2771         return (mCurrentModule instanceof PhotoModule) ?
2772                 ((PhotoModule) mCurrentModule).mPictureDisplayedToJpegCallbackTime : -1;
2773     }
2774
2775     public long getJpegCallbackFinishTime() {
2776         return (mCurrentModule instanceof PhotoModule) ?
2777                 ((PhotoModule) mCurrentModule).mJpegCallbackFinishTime : -1;
2778     }
2779
2780     public long getCaptureStartTime() {
2781         return (mCurrentModule instanceof PhotoModule) ?
2782                 ((PhotoModule) mCurrentModule).mCaptureStartTime : -1;
2783     }
2784
2785     public boolean isRecording() {
2786         return (mCurrentModule instanceof VideoModule) ?
2787                 ((VideoModule) mCurrentModule).isRecording() : false;
2788     }
2789
2790     public CameraAgent.CameraOpenCallback getCameraOpenErrorCallback() {
2791         return mCameraController;
2792     }
2793
2794     // For debugging purposes only.
2795     public CameraModule getCurrentModule() {
2796         return mCurrentModule;
2797     }
2798
2799     @Override
2800     public void showTutorial(AbstractTutorialOverlay tutorial) {
2801         mCameraAppUI.showTutorial(tutorial, getLayoutInflater());
2802     }
2803
2804     @Override
2805     public void finishActivityWithIntentCompleted(Intent resultIntent) {
2806         finishActivityWithIntentResult(Activity.RESULT_OK, resultIntent);
2807     }
2808
2809     @Override
2810     public void finishActivityWithIntentCanceled() {
2811         finishActivityWithIntentResult(Activity.RESULT_CANCELED, new Intent());
2812     }
2813
2814     private void finishActivityWithIntentResult(int resultCode, Intent resultIntent) {
2815         mResultCodeForTesting = resultCode;
2816         mResultDataForTesting = resultIntent;
2817         setResult(resultCode, resultIntent);
2818         finish();
2819     }
2820
2821     private void keepScreenOnForAWhile() {
2822         if (mKeepScreenOn) {
2823             return;
2824         }
2825         mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
2826         getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
2827         mMainHandler.sendEmptyMessageDelayed(MSG_CLEAR_SCREEN_ON_FLAG, SCREEN_DELAY_MS);
2828     }
2829
2830     private void resetScreenOn() {
2831         mKeepScreenOn = false;
2832         mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
2833         getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
2834     }
2835
2836     /**
2837      * @return {@code true} if the Gallery is launched successfully.
2838      */
2839     private boolean startGallery() {
2840         if (mGalleryIntent == null) {
2841             return false;
2842         }
2843         try {
2844             UsageStatistics.instance().changeScreen(NavigationChange.Mode.GALLERY,
2845                     NavigationChange.InteractionCause.BUTTON);
2846             Intent startGalleryIntent = new Intent(mGalleryIntent);
2847             int currentIndex = mFilmstripController.getCurrentAdapterIndex();
2848             FilmstripItem currentFilmstripItem = mDataAdapter.getItemAt(currentIndex);
2849             if (currentFilmstripItem != null) {
2850                 GalleryHelper.setContentUri(startGalleryIntent,
2851                       currentFilmstripItem.getData().getUri());
2852             }
2853             launchActivityByIntent(startGalleryIntent);
2854         } catch (ActivityNotFoundException e) {
2855             Log.w(TAG, "Failed to launch gallery activity, closing");
2856         }
2857         return false;
2858     }
2859
2860     private void setNfcBeamPushUriFromData(FilmstripItem data) {
2861         final Uri uri = data.getData().getUri();
2862         if (uri != Uri.EMPTY) {
2863             mNfcPushUris[0] = uri;
2864         } else {
2865             mNfcPushUris[0] = null;
2866         }
2867     }
2868
2869     /**
2870      * Updates the visibility of the filmstrip bottom controls and action bar.
2871      */
2872     private void updateUiByData(final int index) {
2873         final FilmstripItem currentData = mDataAdapter.getItemAt(index);
2874         if (currentData == null) {
2875             Log.w(TAG, "Current data ID not found.");
2876             hideSessionProgress();
2877             return;
2878         }
2879         updateActionBarMenu(currentData);
2880
2881         /* Bottom controls. */
2882         updateBottomControlsByData(currentData);
2883
2884         if (isSecureCamera()) {
2885             // We cannot show buttons in secure camera since go to other
2886             // activities might create a security hole.
2887             mCameraAppUI.getFilmstripBottomControls().hideControls();
2888             return;
2889         }
2890
2891         setNfcBeamPushUriFromData(currentData);
2892
2893         if (!mDataAdapter.isMetadataUpdatedAt(index)) {
2894             mDataAdapter.updateMetadataAt(index);
2895         }
2896     }
2897
2898     /**
2899      * Updates the bottom controls based on the data.
2900      */
2901     private void updateBottomControlsByData(final FilmstripItem currentData) {
2902
2903         final CameraAppUI.BottomPanel filmstripBottomPanel =
2904                 mCameraAppUI.getFilmstripBottomControls();
2905         filmstripBottomPanel.showControls();
2906         filmstripBottomPanel.setEditButtonVisibility(
2907                 currentData.getAttributes().canEdit());
2908         filmstripBottomPanel.setShareButtonVisibility(
2909               currentData.getAttributes().canShare());
2910         filmstripBottomPanel.setDeleteButtonVisibility(
2911                 currentData.getAttributes().canDelete());
2912
2913         /* Progress bar */
2914
2915         Uri contentUri = currentData.getData().getUri();
2916         CaptureSessionManager sessionManager = getServices()
2917                 .getCaptureSessionManager();
2918
2919         if (sessionManager.hasErrorMessage(contentUri)) {
2920             showProcessError(sessionManager.getErrorMessageId(contentUri));
2921         } else {
2922             filmstripBottomPanel.hideProgressError();
2923             CaptureSession session = sessionManager.getSession(contentUri);
2924
2925             if (session != null) {
2926                 int sessionProgress = session.getProgress();
2927
2928                 if (sessionProgress < 0) {
2929                     hideSessionProgress();
2930                 } else {
2931                     int progressMessageId = session.getProgressMessageId();
2932                     showSessionProgress(progressMessageId);
2933                     updateSessionProgress(sessionProgress);
2934                 }
2935             } else {
2936                 hideSessionProgress();
2937             }
2938         }
2939
2940         /* View button */
2941
2942         // We need to add this to a separate DB.
2943         final int viewButtonVisibility;
2944         if (currentData.getMetadata().isUsePanoramaViewer()) {
2945             viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_PHOTO_SPHERE;
2946         } else if (currentData.getMetadata().isHasRgbzData()) {
2947             viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_REFOCUS;
2948         } else {
2949             viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_NONE;
2950         }
2951
2952         filmstripBottomPanel.setTinyPlanetEnabled(
2953                 currentData.getMetadata().isPanorama360());
2954         filmstripBottomPanel.setViewerButtonVisibility(viewButtonVisibility);
2955     }
2956
2957     private void showDetailsDialog(int index) {
2958         final FilmstripItem data = mDataAdapter.getItemAt(index);
2959         if (data == null) {
2960             return;
2961         }
2962         Optional<MediaDetails> details = data.getMediaDetails();
2963         if (!details.isPresent()) {
2964             return;
2965         }
2966         Dialog detailDialog = DetailsDialog.create(CameraActivity.this, details.get());
2967         detailDialog.show();
2968         UsageStatistics.instance().mediaInteraction(
2969                 fileNameFromAdapterAtIndex(index), MediaInteraction.InteractionType.DETAILS,
2970                 NavigationChange.InteractionCause.BUTTON, fileAgeFromAdapterAtIndex(index));
2971     }
2972
2973     /**
2974      * Show or hide action bar items depending on current data type.
2975      */
2976     private void updateActionBarMenu(FilmstripItem data) {
2977         if (mActionBarMenu == null) {
2978             return;
2979         }
2980
2981         MenuItem detailsMenuItem = mActionBarMenu.findItem(R.id.action_details);
2982         if (detailsMenuItem == null) {
2983             return;
2984         }
2985
2986         boolean showDetails = data.getAttributes().hasDetailedCaptureInfo();
2987         detailsMenuItem.setVisible(showDetails);
2988     }
2989 }