2014-02-19 20:18:52 -08:00
|
|
|
/*
|
2015-03-03 09:37:30 -08:00
|
|
|
* Copyright (C) 2013-2015 Mozilla Foundation
|
2014-02-19 20:18:52 -08:00
|
|
|
*
|
|
|
|
* 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_TESTGONKCAMERAHARDWARE_H
|
|
|
|
#define DOM_CAMERA_TESTGONKCAMERAHARDWARE_H
|
|
|
|
|
|
|
|
#include "GonkCameraHwMgr.h"
|
2015-03-03 09:37:30 -08:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsIDOMEventListener.h"
|
|
|
|
#include "mozilla/CondVar.h"
|
2014-02-19 20:18:52 -08:00
|
|
|
|
2015-03-03 09:37:30 -08:00
|
|
|
namespace mozilla {
|
2014-02-19 20:18:52 -08:00
|
|
|
|
|
|
|
class TestGonkCameraHardware : public android::GonkCameraHardware
|
|
|
|
{
|
|
|
|
public:
|
2015-03-03 09:37:30 -08:00
|
|
|
virtual nsresult Init() MOZ_OVERRIDE;
|
2014-02-19 20:18:52 -08:00
|
|
|
virtual int AutoFocus() MOZ_OVERRIDE;
|
2014-04-09 08:52:10 -07:00
|
|
|
virtual int StartFaceDetection() MOZ_OVERRIDE;
|
|
|
|
virtual int StopFaceDetection() MOZ_OVERRIDE;
|
2014-02-19 20:18:52 -08:00
|
|
|
virtual int TakePicture() MOZ_OVERRIDE;
|
2015-03-03 09:37:30 -08:00
|
|
|
virtual void CancelTakePicture() MOZ_OVERRIDE;
|
2014-02-19 20:18:52 -08:00
|
|
|
virtual int StartPreview() MOZ_OVERRIDE;
|
2015-03-03 09:37:30 -08:00
|
|
|
virtual void StopPreview() MOZ_OVERRIDE;
|
2014-02-19 20:18:52 -08:00
|
|
|
virtual int PushParameters(const mozilla::GonkCameraParameters& aParams) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult PullParameters(mozilla::GonkCameraParameters& aParams) MOZ_OVERRIDE;
|
|
|
|
virtual int StartRecording() MOZ_OVERRIDE;
|
|
|
|
virtual int StopRecording() MOZ_OVERRIDE;
|
|
|
|
virtual int StoreMetaDataInBuffers(bool aEnabled) MOZ_OVERRIDE;
|
2015-03-03 09:37:30 -08:00
|
|
|
virtual int PushParameters(const android::CameraParameters& aParams) MOZ_OVERRIDE;
|
|
|
|
virtual void PullParameters(android::CameraParameters& aParams) MOZ_OVERRIDE;
|
2014-02-19 20:18:52 -08:00
|
|
|
|
|
|
|
TestGonkCameraHardware(mozilla::nsGonkCameraControl* aTarget,
|
|
|
|
uint32_t aCameraId,
|
2015-03-03 09:37:30 -08:00
|
|
|
const android::sp<android::Camera>& aCamera);
|
|
|
|
|
|
|
|
protected:
|
2014-02-19 20:18:52 -08:00
|
|
|
virtual ~TestGonkCameraHardware();
|
|
|
|
|
2015-03-03 09:37:30 -08:00
|
|
|
class ControlMessage;
|
|
|
|
class PushParametersDelegate;
|
|
|
|
class PullParametersDelegate;
|
2014-02-19 20:18:52 -08:00
|
|
|
|
2015-03-03 09:37:30 -08:00
|
|
|
nsresult WaitWhileRunningOnMainThread(nsRefPtr<ControlMessage> aRunnable);
|
2014-02-19 20:18:52 -08:00
|
|
|
|
2015-03-03 09:37:30 -08:00
|
|
|
nsCOMPtr<nsIDOMEventListener> mDomListener;
|
|
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
|
|
|
mozilla::Mutex mMutex;
|
|
|
|
mozilla::CondVar mCondVar;
|
|
|
|
nsresult mStatus;
|
2014-04-09 08:12:25 -07:00
|
|
|
|
2014-02-19 20:18:52 -08:00
|
|
|
private:
|
2015-01-06 15:35:02 -08:00
|
|
|
TestGonkCameraHardware(const TestGonkCameraHardware&) = delete;
|
|
|
|
TestGonkCameraHardware& operator=(const TestGonkCameraHardware&) = delete;
|
2014-02-19 20:18:52 -08:00
|
|
|
};
|
|
|
|
|
2015-03-03 09:37:30 -08:00
|
|
|
} // namespace mozilla
|
2014-02-19 20:18:52 -08:00
|
|
|
|
|
|
|
#endif // DOM_CAMERA_TESTGONKCAMERAHARDWARE_H
|