2013-11-13 08:51:23 +00: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/. */
|
|
|
|
|
2014-09-21 07:24:42 +00:00
|
|
|
#include "mozilla/dom/MobileConnectionArray.h"
|
2013-11-13 08:51:23 +00:00
|
|
|
#include "mozilla/dom/MozMobileConnectionArrayBinding.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
2014-09-21 07:24:43 +00:00
|
|
|
#include "nsServiceManagerUtils.h"
|
2013-11-13 08:51:23 +00:00
|
|
|
|
2014-09-21 07:24:44 +00:00
|
|
|
// Service instantiation
|
|
|
|
#include "ipc/MobileConnectionIPCService.h"
|
|
|
|
#if defined(MOZ_WIDGET_GONK) && defined(MOZ_B2G_RIL)
|
|
|
|
#include "nsIGonkMobileConnectionService.h"
|
|
|
|
#endif
|
|
|
|
#include "nsXULAppAPI.h" // For XRE_GetProcessType()
|
|
|
|
|
2014-01-02 03:06:17 +00:00
|
|
|
using namespace mozilla::dom;
|
2013-11-13 08:51:23 +00:00
|
|
|
|
2014-08-07 04:21:29 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(MobileConnectionArray,
|
|
|
|
mWindow,
|
|
|
|
mMobileConnections)
|
2013-11-13 08:51:23 +00:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(MobileConnectionArray)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(MobileConnectionArray)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(MobileConnectionArray)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
MobileConnectionArray::MobileConnectionArray(nsPIDOMWindow* aWindow)
|
2014-09-21 07:24:43 +00:00
|
|
|
: mLengthInitialized(false)
|
2014-05-05 06:36:20 +00:00
|
|
|
, mWindow(aWindow)
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MobileConnectionArray::~MobileConnectionArray()
|
2013-12-09 01:59:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-11-13 08:51:23 +00:00
|
|
|
nsPIDOMWindow*
|
|
|
|
MobileConnectionArray::GetParentObject() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mWindow);
|
|
|
|
return mWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 14:13:33 +00:00
|
|
|
MobileConnectionArray::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-11-13 08:51:23 +00: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 14:13:33 +00:00
|
|
|
return MozMobileConnectionArrayBinding::Wrap(aCx, this, aGivenProto);
|
2013-11-13 08:51:23 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 06:36:20 +00:00
|
|
|
MobileConnection*
|
2014-01-14 06:17:35 +00:00
|
|
|
MobileConnectionArray::Item(uint32_t aIndex)
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
|
|
|
bool unused;
|
|
|
|
return IndexedGetter(aIndex, unused);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
2014-09-21 07:24:43 +00:00
|
|
|
MobileConnectionArray::Length()
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
2014-09-21 07:24:43 +00:00
|
|
|
if (!mLengthInitialized) {
|
|
|
|
mLengthInitialized = true;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIMobileConnectionService> service =
|
|
|
|
do_GetService(NS_MOBILE_CONNECTION_SERVICE_CONTRACTID);
|
|
|
|
NS_ENSURE_TRUE(service, 0);
|
|
|
|
|
|
|
|
uint32_t length = 0;
|
|
|
|
nsresult rv = service->GetNumItems(&length);
|
|
|
|
NS_ENSURE_SUCCESS(rv, 0);
|
|
|
|
|
|
|
|
mMobileConnections.SetLength(length);
|
|
|
|
}
|
|
|
|
|
2013-11-13 08:51:23 +00:00
|
|
|
return mMobileConnections.Length();
|
|
|
|
}
|
|
|
|
|
2014-05-05 06:36:20 +00:00
|
|
|
MobileConnection*
|
2014-01-14 06:17:35 +00:00
|
|
|
MobileConnectionArray::IndexedGetter(uint32_t aIndex, bool& aFound)
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
2014-09-21 07:24:43 +00:00
|
|
|
|
|
|
|
aFound = aIndex < Length();
|
|
|
|
if (!aFound) {
|
|
|
|
return nullptr;
|
2014-01-14 06:17:35 +00:00
|
|
|
}
|
|
|
|
|
2014-09-21 07:24:43 +00:00
|
|
|
if (!mMobileConnections[aIndex]) {
|
|
|
|
mMobileConnections[aIndex] = new MobileConnection(mWindow, aIndex);
|
|
|
|
}
|
2013-11-13 08:51:23 +00:00
|
|
|
|
2014-09-21 07:24:43 +00:00
|
|
|
return mMobileConnections[aIndex];
|
2013-12-09 01:59:17 +00:00
|
|
|
}
|
2014-09-21 07:24:44 +00:00
|
|
|
|
|
|
|
already_AddRefed<nsIMobileConnectionService>
|
|
|
|
NS_CreateMobileConnectionService()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMobileConnectionService> service;
|
|
|
|
|
2015-07-04 01:29:00 +00:00
|
|
|
if (XRE_IsContentProcess()) {
|
2014-09-21 07:24:44 +00:00
|
|
|
service = new mozilla::dom::mobileconnection::MobileConnectionIPCService();
|
|
|
|
} else {
|
|
|
|
#if defined(MOZ_WIDGET_GONK) && defined(MOZ_B2G_RIL)
|
2014-10-16 01:57:38 +00:00
|
|
|
service = do_GetService(GONK_MOBILECONNECTION_SERVICE_CONTRACTID);
|
2014-09-21 07:24:44 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return service.forget();
|
|
|
|
}
|