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/. */
|
|
|
|
|
|
|
|
#include "MobileConnectionArray.h"
|
|
|
|
#include "mozilla/dom/MozMobileConnectionArrayBinding.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
2014-01-02 03:06:17 +00:00
|
|
|
using namespace mozilla::dom;
|
2013-11-13 08:51:23 +00:00
|
|
|
|
2013-12-09 01:59:17 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(MobileConnectionArray)
|
2014-05-05 06:36:20 +00:00
|
|
|
|
2013-12-09 01:59:17 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(MobileConnectionArray)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mWindow)
|
|
|
|
// Notify our mobile connections that we're going away.
|
|
|
|
tmp->DropConnections();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
2014-05-05 06:36:20 +00:00
|
|
|
|
2013-12-09 01:59:17 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(MobileConnectionArray)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mWindow)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMobileConnections)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
2014-05-05 06:36:20 +00:00
|
|
|
|
2013-12-09 01:59:17 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(MobileConnectionArray)
|
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-05-05 06:36:20 +00:00
|
|
|
: mInitialized(false)
|
|
|
|
, mWindow(aWindow)
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
2014-01-14 06:17:35 +00:00
|
|
|
uint32_t numRil = mozilla::Preferences::GetUint("ril.numRadioInterfaces", 1);
|
2013-11-13 08:51:23 +00:00
|
|
|
MOZ_ASSERT(numRil > 0);
|
|
|
|
|
2014-02-09 14:00:49 +00:00
|
|
|
mMobileConnections.SetLength(numRil);
|
2013-11-13 08:51:23 +00:00
|
|
|
|
|
|
|
SetIsDOMBinding();
|
|
|
|
}
|
|
|
|
|
|
|
|
MobileConnectionArray::~MobileConnectionArray()
|
2013-12-09 01:59:17 +00:00
|
|
|
{
|
|
|
|
DropConnections();
|
|
|
|
}
|
|
|
|
|
2014-01-14 06:17:35 +00:00
|
|
|
void
|
|
|
|
MobileConnectionArray::Init()
|
|
|
|
{
|
|
|
|
mInitialized = true;
|
|
|
|
|
|
|
|
for (uint32_t id = 0; id < mMobileConnections.Length(); id++) {
|
2014-05-05 06:36:20 +00:00
|
|
|
nsRefPtr<MobileConnection> mobileConnection = new MobileConnection(mWindow, id);
|
2014-01-14 06:17:35 +00:00
|
|
|
mMobileConnections[id] = mobileConnection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 01:59:17 +00:00
|
|
|
void
|
|
|
|
MobileConnectionArray::DropConnections()
|
2013-11-13 08:51:23 +00:00
|
|
|
{
|
2014-01-14 06:17:35 +00:00
|
|
|
if (mInitialized) {
|
|
|
|
for (uint32_t i = 0; i < mMobileConnections.Length(); i++) {
|
|
|
|
mMobileConnections[i]->Shutdown();
|
|
|
|
}
|
2013-11-13 08:51:23 +00:00
|
|
|
}
|
2014-01-14 06:17:35 +00:00
|
|
|
|
2013-11-13 08:51:23 +00:00
|
|
|
mMobileConnections.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
MobileConnectionArray::Length() const
|
|
|
|
{
|
|
|
|
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-01-14 06:17:35 +00:00
|
|
|
if (!mInitialized) {
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2013-11-13 08:51:23 +00:00
|
|
|
aFound = false;
|
|
|
|
aFound = aIndex < mMobileConnections.Length();
|
|
|
|
|
|
|
|
return aFound ? mMobileConnections[aIndex] : nullptr;
|
2013-12-09 01:59:17 +00:00
|
|
|
}
|