mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=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 "BluetoothRilListener.h"
|
|
|
|
#include "BluetoothHfpManager.h"
|
|
#include "nsRadioInterfaceLayer.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "nsString.h"
|
|
|
|
USING_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothRILTelephonyCallback : public nsIRILTelephonyCallback
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIRILTELEPHONYCALLBACK
|
|
|
|
BluetoothRILTelephonyCallback() { }
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS1(BluetoothRILTelephonyCallback, nsIRILTelephonyCallback)
|
|
|
|
NS_IMETHODIMP
|
|
BluetoothRILTelephonyCallback::CallStateChanged(PRUint32 aCallIndex,
|
|
PRUint16 aCallState,
|
|
const nsAString& aNumber,
|
|
bool aIsActive)
|
|
{
|
|
BluetoothHfpManager* hfp = BluetoothHfpManager::Get();
|
|
hfp->CallStateChanged(aCallIndex, aCallState,
|
|
NS_ConvertUTF16toUTF8(aNumber).get(), aIsActive);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
BluetoothRILTelephonyCallback::EnumerateCallState(PRUint32 aCallIndex,
|
|
PRUint16 aCallState,
|
|
const nsAString_internal& aNumber,
|
|
bool aIsActive,
|
|
bool* aResult)
|
|
{
|
|
*aResult = true;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
BluetoothRILTelephonyCallback::NotifyError(PRInt32 aCallIndex,
|
|
const nsAString& aError)
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
BluetoothRilListener::BluetoothRilListener()
|
|
{
|
|
mRILTelephonyCallback = new BluetoothRILTelephonyCallback();
|
|
}
|
|
|
|
bool
|
|
BluetoothRilListener::StartListening()
|
|
{
|
|
nsCOMPtr<nsIRILContentHelper> ril = do_GetService(NS_RILCONTENTHELPER_CONTRACTID);
|
|
if (!ril) {
|
|
NS_ERROR("No RIL Service!");
|
|
return false;
|
|
}
|
|
|
|
nsresult rv = ril->RegisterTelephonyCallback(mRILTelephonyCallback);
|
|
|
|
return NS_FAILED(rv) ? false : true;
|
|
}
|
|
|
|
bool
|
|
BluetoothRilListener::StopListening()
|
|
{
|
|
nsCOMPtr<nsIRILContentHelper> ril = do_GetService(NS_RILCONTENTHELPER_CONTRACTID);
|
|
if (!ril) {
|
|
NS_ERROR("No RIL Service!");
|
|
return false;
|
|
}
|
|
|
|
nsresult rv = ril->UnregisterTelephonyCallback(mRILTelephonyCallback);
|
|
|
|
return NS_FAILED(rv) ? false : true;
|
|
}
|