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*
|
2014-04-08 22:27:18 +00:00
|
|
|
MobileConnectionArray::WrapObject(JSContext* aCx)
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return MozMobileConnectionArrayBinding::Wrap(aCx, this);
|
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;
|
|
|
|
|
|
|
|
if (XRE_GetProcessType() == GeckoProcessType_Content) {
|
|
|
|
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();
|
|
|
|
}
|