2012-07-30 14:59:05 -07: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-09 23:25:25 -07:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2012-07-30 14:59:05 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsIThread.h"
|
2012-09-30 17:37:47 -07:00
|
|
|
#include "nsIObserver.h"
|
2012-07-30 14:59:05 -07:00
|
|
|
#include "nsThreadUtils.h"
|
2012-09-30 17:37:47 -07:00
|
|
|
#include "nsHashKeys.h"
|
2013-05-09 23:25:25 -07:00
|
|
|
#include "nsWrapperCache.h"
|
2012-09-30 17:37:47 -07:00
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsClassHashtable.h"
|
2012-07-30 14:59:05 -07:00
|
|
|
#include "nsIDOMCameraManager.h"
|
2012-09-30 17:37:47 -07:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2012-07-31 14:30:53 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-07-30 14:59:05 -07:00
|
|
|
|
2012-09-21 03:32:18 -07:00
|
|
|
class nsPIDOMWindow;
|
|
|
|
|
2012-09-30 17:37:47 -07:00
|
|
|
namespace mozilla {
|
2013-05-09 23:25:25 -07:00
|
|
|
class ErrorResult;
|
2012-09-30 17:37:47 -07:00
|
|
|
class nsDOMCameraControl;
|
2013-05-15 04:07:08 -07:00
|
|
|
namespace dom {
|
|
|
|
class CameraSelector;
|
|
|
|
}
|
2012-09-30 17:37:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef nsTArray<nsRefPtr<mozilla::nsDOMCameraControl> > CameraControls;
|
|
|
|
typedef nsClassHashtable<nsUint64HashKey, CameraControls> WindowTable;
|
|
|
|
|
|
|
|
class nsDOMCameraManager MOZ_FINAL
|
2013-05-14 03:59:11 -07:00
|
|
|
: public nsIObserver
|
2012-09-30 17:37:47 -07:00
|
|
|
, public nsSupportsWeakReference
|
2013-05-09 23:25:25 -07:00
|
|
|
, public nsWrapperCache
|
2012-07-30 14:59:05 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-09-30 17:37:47 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2013-05-09 23:25:25 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsDOMCameraManager,
|
2013-05-14 03:59:11 -07:00
|
|
|
nsIObserver)
|
2012-09-30 17:37:47 -07:00
|
|
|
NS_DECL_NSIOBSERVER
|
2012-07-30 14:59:05 -07:00
|
|
|
|
2012-09-21 03:32:18 -07:00
|
|
|
static already_AddRefed<nsDOMCameraManager>
|
|
|
|
CheckPermissionAndCreateInstance(nsPIDOMWindow* aWindow);
|
2012-09-30 17:37:47 -07:00
|
|
|
static bool IsWindowStillActive(uint64_t aWindowId);
|
2012-07-30 14:59:05 -07:00
|
|
|
|
2012-09-30 17:37:47 -07:00
|
|
|
void Register(mozilla::nsDOMCameraControl* aDOMCameraControl);
|
2012-08-22 08:56:38 -07:00
|
|
|
void OnNavigation(uint64_t aWindowId);
|
2012-07-30 14:59:05 -07:00
|
|
|
|
2013-05-02 04:59:58 -07:00
|
|
|
nsresult GetNumberOfCameras(int32_t& aDeviceCount);
|
|
|
|
nsresult GetCameraName(uint32_t aDeviceNum, nsCString& aDeviceName);
|
|
|
|
|
2013-05-09 23:25:25 -07:00
|
|
|
// WebIDL
|
2013-05-15 04:07:08 -07:00
|
|
|
void GetCamera(const mozilla::dom::CameraSelector& aOptions,
|
2013-05-09 23:25:25 -07: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-09-30 17:37:47 -07:00
|
|
|
protected:
|
|
|
|
void XpComShutdown();
|
|
|
|
void Shutdown(uint64_t aWindowId);
|
|
|
|
~nsDOMCameraManager();
|
|
|
|
|
2012-07-30 14:59:05 -07:00
|
|
|
private:
|
2013-02-15 00:04:11 -08:00
|
|
|
nsDOMCameraManager() MOZ_DELETE;
|
2013-05-09 23:25:25 -07:00
|
|
|
nsDOMCameraManager(nsPIDOMWindow* aWindow);
|
2012-07-30 14:59:05 -07:00
|
|
|
nsDOMCameraManager(const nsDOMCameraManager&) MOZ_DELETE;
|
|
|
|
nsDOMCameraManager& operator=(const nsDOMCameraManager&) MOZ_DELETE;
|
|
|
|
|
|
|
|
protected:
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t mWindowId;
|
2012-07-30 14:59:05 -07:00
|
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
2013-05-09 23:25:25 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2012-09-30 17:37:47 -07:00
|
|
|
/**
|
|
|
|
* 'mActiveWindows' is only ever accessed while in the main thread,
|
|
|
|
* so it is not otherwise protected.
|
|
|
|
*/
|
|
|
|
static WindowTable sActiveWindows;
|
|
|
|
static bool sActiveWindowsInitialized;
|
2012-07-30 14:59:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class GetCameraTask : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
GetCameraTask(uint32_t aCameraId, nsICameraGetCameraCallback* onSuccess, nsICameraErrorCallback* onError, nsIThread* aCameraThread)
|
2012-07-30 14:59:05 -07:00
|
|
|
: mCameraId(aCameraId)
|
|
|
|
, mOnSuccessCb(onSuccess)
|
|
|
|
, mOnErrorCb(onError)
|
|
|
|
, mCameraThread(aCameraThread)
|
|
|
|
{ }
|
|
|
|
|
2013-06-05 09:15:48 -07:00
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE;
|
2012-07-30 14:59:05 -07:00
|
|
|
|
|
|
|
protected:
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mCameraId;
|
2012-07-30 14:59:05 -07:00
|
|
|
nsCOMPtr<nsICameraGetCameraCallback> mOnSuccessCb;
|
|
|
|
nsCOMPtr<nsICameraErrorCallback> mOnErrorCb;
|
|
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOM_CAMERA_DOMCAMERAMANAGER_H
|