2014-08-21 13:15:18 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/Promise.h"
|
|
|
|
#include "mozilla/dom/TVManagerBinding.h"
|
2014-08-22 08:08:34 +04:00
|
|
|
#include "mozilla/dom/TVServiceCallbacks.h"
|
|
|
|
#include "mozilla/dom/TVServiceFactory.h"
|
|
|
|
#include "mozilla/dom/TVTuner.h"
|
|
|
|
#include "nsITVService.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
2014-08-21 13:15:18 +04:00
|
|
|
#include "TVManager.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-08-22 08:08:34 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(TVManager, DOMEventTargetHelper, mTVService,
|
|
|
|
mTuners, mPendingGetTunersPromises)
|
2014-08-21 13:15:18 +04:00
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(TVManager, DOMEventTargetHelper)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(TVManager, DOMEventTargetHelper)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(TVManager)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
|
|
|
|
|
|
|
|
TVManager::TVManager(nsPIDOMWindow* aWindow)
|
|
|
|
: DOMEventTargetHelper(aWindow)
|
2014-08-22 08:08:34 +04:00
|
|
|
, mIsReady(false)
|
2014-08-21 13:15:18 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TVManager::~TVManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-22 08:08:34 +04:00
|
|
|
/* static */ already_AddRefed<TVManager>
|
|
|
|
TVManager::Create(nsPIDOMWindow* aWindow)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TVManager> manager = new TVManager(aWindow);
|
2014-08-22 08:08:34 +04:00
|
|
|
return (manager->Init()) ? manager.forget() : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TVManager::Init()
|
|
|
|
{
|
|
|
|
mTVService = TVServiceFactory::AutoCreateTVService();
|
|
|
|
NS_ENSURE_TRUE(mTVService, false);
|
|
|
|
|
|
|
|
nsCOMPtr<nsITVServiceCallback> callback = new TVServiceTunerGetterCallback(this);
|
|
|
|
nsresult rv = mTVService->GetTuners(callback);
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:15:18 +04:00
|
|
|
/* virtual */ JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
TVManager::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2014-08-21 13:15:18 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return TVManagerBinding::Wrap(aCx, this, aGivenProto);
|
2014-08-21 13:15:18 +04:00
|
|
|
}
|
|
|
|
|
2014-08-22 08:08:34 +04:00
|
|
|
nsresult
|
2015-10-18 08:24:48 +03:00
|
|
|
TVManager::SetTuners(const nsTArray<RefPtr<TVTuner>>& aTuners)
|
2014-08-22 08:08:34 +04:00
|
|
|
{
|
|
|
|
// Should be called only when TV Manager hasn't been ready yet.
|
|
|
|
if (mIsReady) {
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mTuners = aTuners;
|
|
|
|
mIsReady = true;
|
|
|
|
|
|
|
|
// Resolve pending promises.
|
|
|
|
uint32_t length = mPendingGetTunersPromises.Length();
|
|
|
|
for(uint32_t i = 0; i < length; i++) {
|
|
|
|
mPendingGetTunersPromises[i]->MaybeResolve(mTuners);
|
|
|
|
}
|
|
|
|
mPendingGetTunersPromises.Clear();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TVManager::RejectPendingGetTunersPromises(nsresult aRv)
|
|
|
|
{
|
|
|
|
// Reject pending promises.
|
|
|
|
uint32_t length = mPendingGetTunersPromises.Length();
|
|
|
|
for(uint32_t i = 0; i < length; i++) {
|
|
|
|
mPendingGetTunersPromises[i]->MaybeReject(aRv);
|
|
|
|
}
|
|
|
|
mPendingGetTunersPromises.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
TVManager::DispatchTVEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
return DispatchTrustedEvent(aEvent);
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:15:18 +04:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
TVManager::GetTuners(ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(GetOwner());
|
|
|
|
MOZ_ASSERT(global);
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Promise> promise = Promise::Create(global, aRv);
|
2014-08-22 08:08:34 +04:00
|
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
2014-08-21 13:15:18 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-08-22 08:08:34 +04:00
|
|
|
// Keep track of the promise when the manager hasn't been ready yet.
|
|
|
|
if (mIsReady) {
|
|
|
|
promise->MaybeResolve(mTuners);
|
|
|
|
} else {
|
|
|
|
mPendingGetTunersPromises.AppendElement(promise);
|
|
|
|
}
|
2014-08-21 13:15:18 +04:00
|
|
|
|
|
|
|
return promise.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|