2012-07-30 21:59:05 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef DOM_CAMERA_DOMCAMERAMANAGER_H
|
|
|
|
#define DOM_CAMERA_DOMCAMERAMANAGER_H
|
|
|
|
|
2013-05-10 06:25:25 +00:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2012-07-30 21:59:05 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsIThread.h"
|
2012-10-01 00:37:47 +00:00
|
|
|
#include "nsIObserver.h"
|
2012-07-30 21:59:05 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2012-10-01 00:37:47 +00:00
|
|
|
#include "nsHashKeys.h"
|
2013-05-10 06:25:25 +00:00
|
|
|
#include "nsWrapperCache.h"
|
2012-10-01 00:37:47 +00:00
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsClassHashtable.h"
|
2012-07-30 21:59:05 +00:00
|
|
|
#include "nsIDOMCameraManager.h"
|
2012-10-01 00:37:47 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2012-07-31 21:30:53 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-08-23 05:17:11 +00:00
|
|
|
#include "nsPIDOMWindow.h"
|
2012-09-21 10:32:18 +00:00
|
|
|
|
2012-10-01 00:37:47 +00:00
|
|
|
namespace mozilla {
|
2013-05-10 06:25:25 +00:00
|
|
|
class ErrorResult;
|
2012-10-01 00:37:47 +00:00
|
|
|
class nsDOMCameraControl;
|
2013-05-15 11:07:08 +00:00
|
|
|
namespace dom {
|
|
|
|
class CameraSelector;
|
|
|
|
}
|
2012-10-01 00:37:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef nsTArray<nsRefPtr<mozilla::nsDOMCameraControl> > CameraControls;
|
|
|
|
typedef nsClassHashtable<nsUint64HashKey, CameraControls> WindowTable;
|
|
|
|
|
|
|
|
class nsDOMCameraManager MOZ_FINAL
|
2013-05-14 10:59:11 +00:00
|
|
|
: public nsIObserver
|
2012-10-01 00:37:47 +00:00
|
|
|
, public nsSupportsWeakReference
|
2013-05-10 06:25:25 +00:00
|
|
|
, public nsWrapperCache
|
2012-07-30 21:59:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-10-01 00:37:47 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2013-05-10 06:25:25 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsDOMCameraManager,
|
2013-05-14 10:59:11 +00:00
|
|
|
nsIObserver)
|
2012-10-01 00:37:47 +00:00
|
|
|
NS_DECL_NSIOBSERVER
|
2012-07-30 21:59:05 +00:00
|
|
|
|
2013-07-12 14:35:44 +00:00
|
|
|
static bool CheckPermission(nsPIDOMWindow* aWindow);
|
2012-09-21 10:32:18 +00:00
|
|
|
static already_AddRefed<nsDOMCameraManager>
|
2013-07-12 14:35:44 +00:00
|
|
|
CreateInstance(nsPIDOMWindow* aWindow);
|
2012-10-01 00:37:47 +00:00
|
|
|
static bool IsWindowStillActive(uint64_t aWindowId);
|
2012-07-30 21:59:05 +00:00
|
|
|
|
2012-10-01 00:37:47 +00:00
|
|
|
void Register(mozilla::nsDOMCameraControl* aDOMCameraControl);
|
2012-08-22 15:56:38 +00:00
|
|
|
void OnNavigation(uint64_t aWindowId);
|
2012-07-30 21:59:05 +00:00
|
|
|
|
2013-05-02 11:59:58 +00:00
|
|
|
nsresult GetNumberOfCameras(int32_t& aDeviceCount);
|
|
|
|
nsresult GetCameraName(uint32_t aDeviceNum, nsCString& aDeviceName);
|
|
|
|
|
2013-05-10 06:25:25 +00:00
|
|
|
// WebIDL
|
2013-05-15 11:07:08 +00:00
|
|
|
void GetCamera(const mozilla::dom::CameraSelector& aOptions,
|
2013-05-10 06:25:25 +00:00
|
|
|
nsICameraGetCameraCallback* aCallback,
|
|
|
|
const mozilla::dom::Optional<nsICameraErrorCallback*>& ErrorCallback,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
void GetListOfCameras(nsTArray<nsString>& aList, mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
nsPIDOMWindow* GetParentObject() const { return mWindow; }
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
|
|
|
MOZ_OVERRIDE;
|
|
|
|
|
2012-10-01 00:37:47 +00:00
|
|
|
protected:
|
|
|
|
void XpComShutdown();
|
|
|
|
void Shutdown(uint64_t aWindowId);
|
|
|
|
~nsDOMCameraManager();
|
|
|
|
|
2012-07-30 21:59:05 +00:00
|
|
|
private:
|
2013-02-15 08:04:11 +00:00
|
|
|
nsDOMCameraManager() MOZ_DELETE;
|
2013-05-10 06:25:25 +00:00
|
|
|
nsDOMCameraManager(nsPIDOMWindow* aWindow);
|
2012-07-30 21:59:05 +00:00
|
|
|
nsDOMCameraManager(const nsDOMCameraManager&) MOZ_DELETE;
|
|
|
|
nsDOMCameraManager& operator=(const nsDOMCameraManager&) MOZ_DELETE;
|
|
|
|
|
|
|
|
protected:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t mWindowId;
|
2012-07-30 21:59:05 +00:00
|
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
2013-05-10 06:25:25 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2012-10-01 00:37:47 +00:00
|
|
|
/**
|
|
|
|
* 'mActiveWindows' is only ever accessed while in the main thread,
|
|
|
|
* so it is not otherwise protected.
|
|
|
|
*/
|
2013-09-02 08:41:57 +00:00
|
|
|
static WindowTable* sActiveWindows;
|
2012-07-30 21:59:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GetCameraTask : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2012-08-22 15:56:38 +00:00
|
|
|
GetCameraTask(uint32_t aCameraId, nsICameraGetCameraCallback* onSuccess, nsICameraErrorCallback* onError, nsIThread* aCameraThread)
|
2012-07-30 21:59:05 +00:00
|
|
|
: mCameraId(aCameraId)
|
|
|
|
, mOnSuccessCb(onSuccess)
|
|
|
|
, mOnErrorCb(onError)
|
|
|
|
, mCameraThread(aCameraThread)
|
|
|
|
{ }
|
|
|
|
|
2013-06-05 16:15:48 +00:00
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE;
|
2012-07-30 21:59:05 +00:00
|
|
|
|
|
|
|
protected:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mCameraId;
|
2012-07-30 21:59:05 +00:00
|
|
|
nsCOMPtr<nsICameraGetCameraCallback> mOnSuccessCb;
|
|
|
|
nsCOMPtr<nsICameraErrorCallback> mOnErrorCb;
|
|
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOM_CAMERA_DOMCAMERAMANAGER_H
|