/* * Copyright (C) 2012-2014 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef DOM_CAMERA_GONKCAMERACONTROL_H #define DOM_CAMERA_GONKCAMERACONTROL_H #include "base/basictypes.h" #include #include "mozilla/ReentrantMonitor.h" #include "DeviceStorage.h" #include "CameraControlImpl.h" #include "CameraCommon.h" #include "GonkRecorder.h" #include "GonkCameraHwMgr.h" #include "GonkCameraParameters.h" namespace android { class GonkCameraHardware; class MediaProfiles; class GonkRecorder; } namespace mozilla { namespace layers { class TextureClient; class ImageContainer; } class GonkRecorderProfile; class GonkRecorderProfileManager; class nsGonkCameraControl : public CameraControlImpl { public: nsGonkCameraControl(uint32_t aCameraId); void OnAutoFocusComplete(bool aSuccess); void OnFacesDetected(camera_frame_metadata_t* aMetaData); void OnTakePictureComplete(uint8_t* aData, uint32_t aLength); void OnTakePictureError(); void OnRateLimitPreview(bool aLimit); void OnNewPreviewFrame(layers::TextureClient* aBuffer); void OnRecorderEvent(int msg, int ext1, int ext2); void OnSystemError(CameraControlListener::SystemContext aWhere, nsresult aError); // See ICameraControl.h for getter/setter return values. virtual nsresult Set(uint32_t aKey, const nsAString& aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, nsAString& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, double aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, double& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, int32_t aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, int32_t& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, int64_t aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, int64_t& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, bool aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, bool& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, const Size& aValue) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, Size& aValue) MOZ_OVERRIDE; virtual nsresult Set(uint32_t aKey, const nsTArray& aRegions) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, nsTArray& aRegions) MOZ_OVERRIDE; virtual nsresult SetLocation(const Position& aLocation) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, nsTArray& aSizes) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, nsTArray& aValues) MOZ_OVERRIDE; virtual nsresult Get(uint32_t aKey, nsTArray& aValues) MOZ_OVERRIDE; nsresult PushParameters(); nsresult PullParameters(); protected: ~nsGonkCameraControl(); using CameraControlImpl::OnRateLimitPreview; using CameraControlImpl::OnNewPreviewFrame; using CameraControlImpl::OnAutoFocusComplete; using CameraControlImpl::OnFacesDetected; using CameraControlImpl::OnTakePictureComplete; using CameraControlImpl::OnConfigurationChange; using CameraControlImpl::OnUserError; virtual void BeginBatchParameterSet() MOZ_OVERRIDE; virtual void EndBatchParameterSet() MOZ_OVERRIDE; nsresult Initialize(); nsresult SetConfigurationInternal(const Configuration& aConfig); nsresult SetPictureConfiguration(const Configuration& aConfig); nsresult SetVideoConfiguration(const Configuration& aConfig); template nsresult SetAndPush(uint32_t aKey, const T& aValue); // See CameraControlImpl.h for these methods' return values. virtual nsresult StartImpl(const Configuration* aInitialConfig = nullptr) MOZ_OVERRIDE; virtual nsresult SetConfigurationImpl(const Configuration& aConfig) MOZ_OVERRIDE; virtual nsresult StopImpl() MOZ_OVERRIDE; virtual nsresult StartPreviewImpl() MOZ_OVERRIDE; virtual nsresult StopPreviewImpl() MOZ_OVERRIDE; virtual nsresult AutoFocusImpl() MOZ_OVERRIDE; virtual nsresult StartFaceDetectionImpl() MOZ_OVERRIDE; virtual nsresult StopFaceDetectionImpl() MOZ_OVERRIDE; virtual nsresult TakePictureImpl() MOZ_OVERRIDE; virtual nsresult StartRecordingImpl(DeviceStorageFileDescriptor* aFileDescriptor, const StartRecordingOptions* aOptions = nullptr) MOZ_OVERRIDE; virtual nsresult StopRecordingImpl() MOZ_OVERRIDE; virtual nsresult ResumeContinuousFocusImpl() MOZ_OVERRIDE; virtual nsresult PushParametersImpl() MOZ_OVERRIDE; virtual nsresult PullParametersImpl() MOZ_OVERRIDE; virtual already_AddRefed GetRecorderProfileManagerImpl() MOZ_OVERRIDE; already_AddRefed GetGonkRecorderProfileManager(); nsresult SetupRecording(int aFd, int aRotation, uint64_t aMaxFileSizeBytes, uint64_t aMaxVideoLengthMs); nsresult SetupRecordingFlash(bool aAutoEnableLowLightTorch); nsresult SetPreviewSize(const Size& aSize); nsresult SetVideoSize(const Size& aSize); nsresult PausePreview(); nsresult GetSupportedSize(const Size& aSize, const nsTArray& supportedSizes, Size& best); friend class SetPictureSize; friend class SetThumbnailSize; nsresult SetPictureSize(const Size& aSize); nsresult SetPictureSizeImpl(const Size& aSize); nsresult SetThumbnailSize(const Size& aSize); nsresult UpdateThumbnailSize(); nsresult SetThumbnailSizeImpl(const Size& aSize); int32_t RationalizeRotation(int32_t aRotation); android::sp mCameraHw; Size mLastPictureSize; Size mLastThumbnailSize; Size mLastRecorderSize; uint32_t mPreviewFps; bool mResumePreviewAfterTakingPicture; bool mFlashSupported; bool mLuminanceSupported; bool mAutoFlashModeOverridden; bool mSeparateVideoAndPreviewSizesSupported; Atomic mDeferConfigUpdate; GonkCameraParameters mParams; nsRefPtr mImageContainer; android::MediaProfiles* mMediaProfiles; nsRefPtr mRecorder; // Touching mRecorder happens inside this monitor because the destructor // can run on any thread, and we need to be able to clean up properly if // GonkCameraControl goes away. ReentrantMonitor mRecorderMonitor; // Camcorder profile settings for the desired quality level nsRefPtr mProfileManager; nsRefPtr mRecorderProfile; nsRefPtr mVideoFile; nsString mFileFormat; // Guards against calling StartPreviewImpl() while in OnTakePictureComplete(). ReentrantMonitor mReentrantMonitor; private: nsGonkCameraControl(const nsGonkCameraControl&) MOZ_DELETE; nsGonkCameraControl& operator=(const nsGonkCameraControl&) MOZ_DELETE; }; // camera driver callbacks void OnRateLimitPreview(nsGonkCameraControl* gc, bool aLimit); void OnTakePictureComplete(nsGonkCameraControl* gc, uint8_t* aData, uint32_t aLength); void OnTakePictureError(nsGonkCameraControl* gc); void OnAutoFocusComplete(nsGonkCameraControl* gc, bool aSuccess); void OnAutoFocusMoving(nsGonkCameraControl* gc, bool aIsMoving); void OnFacesDetected(nsGonkCameraControl* gc, camera_frame_metadata_t* aMetaData); void OnNewPreviewFrame(nsGonkCameraControl* gc, layers::TextureClient* aBuffer); void OnShutter(nsGonkCameraControl* gc); void OnClosed(nsGonkCameraControl* gc); void OnSystemError(nsGonkCameraControl* gc, CameraControlListener::SystemContext aWhere, int32_t aArg1, int32_t aArg2); } // namespace mozilla #endif // DOM_CAMERA_GONKCAMERACONTROL_H