gecko/dom/mobileconnection/MobileConnectionArray.cpp
Birunthan Mohanathas 5e0c32ca86 Bug 1058101 - Flatten dom/mobileconnection/src/ into parent directory. r=mccr8
--HG--
rename : dom/mobileconnection/src/DOMMMIError.cpp => dom/mobileconnection/DOMMMIError.cpp
rename : dom/mobileconnection/src/DOMMMIError.h => dom/mobileconnection/DOMMMIError.h
rename : dom/mobileconnection/src/MobileCellInfo.cpp => dom/mobileconnection/MobileCellInfo.cpp
rename : dom/mobileconnection/src/MobileCellInfo.h => dom/mobileconnection/MobileCellInfo.h
rename : dom/mobileconnection/src/MobileConnection.cpp => dom/mobileconnection/MobileConnection.cpp
rename : dom/mobileconnection/src/MobileConnection.h => dom/mobileconnection/MobileConnection.h
rename : dom/mobileconnection/src/MobileConnectionArray.cpp => dom/mobileconnection/MobileConnectionArray.cpp
rename : dom/mobileconnection/src/MobileConnectionArray.h => dom/mobileconnection/MobileConnectionArray.h
rename : dom/mobileconnection/src/MobileConnectionInfo.cpp => dom/mobileconnection/MobileConnectionInfo.cpp
rename : dom/mobileconnection/src/MobileConnectionInfo.h => dom/mobileconnection/MobileConnectionInfo.h
rename : dom/mobileconnection/src/MobileNetworkInfo.cpp => dom/mobileconnection/MobileNetworkInfo.cpp
rename : dom/mobileconnection/src/MobileNetworkInfo.h => dom/mobileconnection/MobileNetworkInfo.h
2014-08-27 10:13:29 -07:00

90 lines
2.2 KiB
C++

/* -*- 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"
using namespace mozilla::dom;
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(MobileConnectionArray,
mWindow,
mMobileConnections)
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)
: mInitialized(false)
, mWindow(aWindow)
{
uint32_t numRil = mozilla::Preferences::GetUint("ril.numRadioInterfaces", 1);
MOZ_ASSERT(numRil > 0);
mMobileConnections.SetLength(numRil);
SetIsDOMBinding();
}
MobileConnectionArray::~MobileConnectionArray()
{
}
void
MobileConnectionArray::Init()
{
mInitialized = true;
for (uint32_t id = 0; id < mMobileConnections.Length(); id++) {
nsRefPtr<MobileConnection> mobileConnection = new MobileConnection(mWindow, id);
mMobileConnections[id] = mobileConnection;
}
}
nsPIDOMWindow*
MobileConnectionArray::GetParentObject() const
{
MOZ_ASSERT(mWindow);
return mWindow;
}
JSObject*
MobileConnectionArray::WrapObject(JSContext* aCx)
{
return MozMobileConnectionArrayBinding::Wrap(aCx, this);
}
MobileConnection*
MobileConnectionArray::Item(uint32_t aIndex)
{
bool unused;
return IndexedGetter(aIndex, unused);
}
uint32_t
MobileConnectionArray::Length() const
{
return mMobileConnections.Length();
}
MobileConnection*
MobileConnectionArray::IndexedGetter(uint32_t aIndex, bool& aFound)
{
if (!mInitialized) {
Init();
}
aFound = false;
aFound = aIndex < mMobileConnections.Length();
return aFound ? mMobileConnections[aIndex] : nullptr;
}