/* -*- 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/. */ #ifndef mozilla_dom_bluetooth_BluetoothRilListener_h #define mozilla_dom_bluetooth_BluetoothRilListener_h #include "BluetoothCommon.h" #include "nsAutoPtr.h" #include "nsIIccService.h" #include "nsIMobileConnectionService.h" #include "nsITelephonyCallInfo.h" #include "nsITelephonyService.h" BEGIN_BLUETOOTH_NAMESPACE class BluetoothRilListener; class IccListener : public nsIIccListener { public: NS_DECL_ISUPPORTS NS_DECL_NSIICCLISTENER IccListener() { } bool Listen(bool aStart); void SetOwner(BluetoothRilListener *aOwner); protected: virtual ~IccListener() { } private: BluetoothRilListener* mOwner; }; class MobileConnectionListener : public nsIMobileConnectionListener { public: NS_DECL_ISUPPORTS NS_DECL_NSIMOBILECONNECTIONLISTENER MobileConnectionListener(uint32_t aClientId) : mClientId(aClientId) { } bool Listen(bool aStart); protected: virtual ~MobileConnectionListener() { } private: uint32_t mClientId; }; class TelephonyListener : public nsITelephonyListener { public: NS_DECL_ISUPPORTS NS_DECL_NSITELEPHONYLISTENER TelephonyListener() { } bool Listen(bool aStart); protected: virtual ~TelephonyListener() { } private: nsresult HandleCallInfo(nsITelephonyCallInfo* aInfo, bool aSend); }; class BluetoothRilListener { public: BluetoothRilListener(); ~BluetoothRilListener(); /** * Start/Stop listening. * * @param aStart [in] whether to start/stop listening */ bool Listen(bool aStart); /** * Be informed that certain client's service has changed. * * @param aClientId [in] the client id with service change * @param aRegistered [in] whether changed service is registered */ void ServiceChanged(uint32_t aClientId, bool aRegistered); /** * Enumerate current calls. */ void EnumerateCalls(); /** * The id of client that mobile connection and icc info listeners * are listening to. * * mClientId equals to number of total clients (array length of * mobile connection listeners) if there is no available client to listen. */ uint32_t mClientId; private: /** * Start/Stop listening of mobile connection and icc info. * * @param aStart [in] whether to start/stop listening */ bool ListenMobileConnAndIccInfo(bool aStart); /** * Select available client to listen and assign mClientId. * * mClientId is assigned to number of total clients (array length of * mobile connection listeners) if there is no available client to listen. */ void SelectClient(); /** * Array of mobile connection listeners. * * The length equals to number of total clients. */ nsTArray > mMobileConnListeners; RefPtr mIccListener; RefPtr mTelephonyListener; }; END_BLUETOOTH_NAMESPACE #endif // mozilla_dom_bluetooth_BluetoothRilListener_h