gecko/dom/mobileconnection/MobileConnectionInfo.cpp

204 lines
5.8 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* 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 "MobileConnectionInfo.h"
#include "mozilla/dom/ScriptSettings.h"
#include "jsapi.h"
#define CONVERT_STRING_TO_NULLABLE_ENUM(_string, _enumType, _enum) \
{ \
_enum.SetNull(); \
\
uint32_t i = 0; \
for (const EnumEntry* entry = _enumType##Values::strings; \
entry->value; \
++entry, ++i) { \
if (_string.EqualsASCII(entry->value)) { \
_enum.SetValue(static_cast<_enumType>(i)); \
} \
} \
}
#define CONVERT_NULLABLE_ENUM_TO_STRING(_enumType, _enum, _string) \
{ \
if (_enum.IsNull()) { \
_string.SetIsVoid(true); \
} else { \
uint32_t index = uint32_t(_enum.Value()); \
_string.AssignASCII(_enumType##Values::strings[index].value, \
_enumType##Values::strings[index].length); \
} \
}
using namespace mozilla::dom;
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(MobileConnectionInfo, mWindow,
mNetworkInfo, mCellInfo)
NS_IMPL_CYCLE_COLLECTING_ADDREF(MobileConnectionInfo)
NS_IMPL_CYCLE_COLLECTING_RELEASE(MobileConnectionInfo)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(MobileConnectionInfo)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_ENTRY(nsIMobileConnectionInfo)
NS_INTERFACE_MAP_END
MobileConnectionInfo::MobileConnectionInfo(nsPIDOMWindow* aWindow)
: mConnected(false)
, mEmergencyCallsOnly(false)
, mRoaming(false)
, mWindow(aWindow)
{
SetIsDOMBinding();
}
void
MobileConnectionInfo::Update(nsIMobileConnectionInfo* aInfo)
{
if (!aInfo) {
return;
}
aInfo->GetConnected(&mConnected);
aInfo->GetEmergencyCallsOnly(&mEmergencyCallsOnly);
aInfo->GetRoaming(&mRoaming);
// Update mState
nsAutoString state;
aInfo->GetState(state);
CONVERT_STRING_TO_NULLABLE_ENUM(state, MobileConnectionState, mState);
// Update mType
nsAutoString type;
aInfo->GetType(type);
CONVERT_STRING_TO_NULLABLE_ENUM(type, MobileConnectionType, mType);
// Update mSignalStrength
AutoSafeJSContext cx;
JS::Rooted<JS::Value> signalStrength(cx, JSVAL_VOID);
aInfo->GetSignalStrength(&signalStrength);
if (signalStrength.isNumber()) {
mSignalStrength.SetValue(signalStrength.toNumber());
} else {
mSignalStrength.SetNull();
}
// Update mRelSignalStrength
JS::Rooted<JS::Value> relSignalStrength(cx, JSVAL_VOID);
aInfo->GetRelSignalStrength(&relSignalStrength);
if (relSignalStrength.isNumber()) {
mRelSignalStrength.SetValue(relSignalStrength.toNumber());
} else {
mRelSignalStrength.SetNull();
}
// Update mNetworkInfo
nsCOMPtr<nsIMobileNetworkInfo> networkInfo;
aInfo->GetNetwork(getter_AddRefs(networkInfo));
if (networkInfo) {
if (!mNetworkInfo) {
mNetworkInfo = new MobileNetworkInfo(mWindow);
}
mNetworkInfo->Update(networkInfo);
} else {
mNetworkInfo = nullptr;
}
// Update mCellInfo
nsCOMPtr<nsIMobileCellInfo> cellInfo;
aInfo->GetCell(getter_AddRefs(cellInfo));
if (cellInfo) {
if (!mCellInfo) {
mCellInfo = new MobileCellInfo(mWindow);
}
mCellInfo->Update(cellInfo);
} else {
mCellInfo = nullptr;
}
}
JSObject*
MobileConnectionInfo::WrapObject(JSContext* aCx)
{
return MozMobileConnectionInfoBinding::Wrap(aCx, this);
}
// nsIMobileConnectionInfo
NS_IMETHODIMP
MobileConnectionInfo::GetState(nsAString& aState)
{
CONVERT_NULLABLE_ENUM_TO_STRING(MobileConnectionState, mState, aState);
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetConnected(bool* aConnected)
{
*aConnected = Connected();
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetEmergencyCallsOnly(bool* aEmergencyCallsOnly)
{
*aEmergencyCallsOnly = EmergencyCallsOnly();
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetRoaming(bool* aRoaming)
{
*aRoaming = Roaming();
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetNetwork(nsIMobileNetworkInfo** aInfo)
{
NS_IF_ADDREF(*aInfo = GetNetwork());
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetType(nsAString& aType)
{
CONVERT_NULLABLE_ENUM_TO_STRING(MobileConnectionType, mType, aType);
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetSignalStrength(JS::MutableHandle<JS::Value> aSignal)
{
if (mSignalStrength.IsNull()) {
aSignal.setNull();
} else {
aSignal.setInt32(mSignalStrength.Value());
}
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetRelSignalStrength(JS::MutableHandle<JS::Value> aSignal)
{
if (mRelSignalStrength.IsNull()) {
aSignal.setNull();
} else {
aSignal.setNumber(uint32_t(mRelSignalStrength.Value()));
}
return NS_OK;
}
NS_IMETHODIMP
MobileConnectionInfo::GetCell(nsIMobileCellInfo** aInfo)
{
NS_IF_ADDREF(*aInfo = GetCell());
return NS_OK;
}