1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_bluetooth_bluetoothrillistener_h__
8 #define mozilla_dom_bluetooth_bluetoothrillistener_h__
10 #include "BluetoothCommon.h"
12 #include "nsAutoPtr.h"
14 #include "nsIIccProvider.h"
15 #include "nsIMobileConnectionProvider.h"
16 #include "nsITelephonyService.h"
18 BEGIN_BLUETOOTH_NAMESPACE
20 class BluetoothRilListener
;
22 class IccListener
: public nsIIccListener
26 NS_DECL_NSIICCLISTENER
29 virtual ~IccListener() { }
31 bool Listen(bool aStart
);
32 void SetOwner(BluetoothRilListener
*aOwner
);
35 BluetoothRilListener
* mOwner
;
38 class MobileConnectionListener
: public nsIMobileConnectionListener
42 NS_DECL_NSIMOBILECONNECTIONLISTENER
44 MobileConnectionListener(uint32_t aClientId
)
45 : mClientId(aClientId
) { }
46 virtual ~MobileConnectionListener() { }
48 bool Listen(bool aStart
);
54 class TelephonyListener
: public nsITelephonyListener
58 NS_DECL_NSITELEPHONYLISTENER
60 TelephonyListener() { }
61 virtual ~TelephonyListener() { }
63 bool Listen(bool aStart
);
66 class BluetoothRilListener
69 BluetoothRilListener();
70 ~BluetoothRilListener();
73 * Start/Stop listening.
75 * @param aStart [in] whether to start/stop listening
77 bool Listen(bool aStart
);
80 * Be informed that certain client's service has changed.
82 * @param aClientId [in] the client id with service change
83 * @param aRegistered [in] whether changed service is registered
85 void ServiceChanged(uint32_t aClientId
, bool aRegistered
);
88 * Enumerate current calls.
90 void EnumerateCalls();
93 * The id of client that mobile connection and icc info listeners
96 * mClientId equals to number of total clients (array length of
97 * mobile connection listeners) if there is no available client to listen.
103 * Start/Stop listening of mobile connection and icc info.
105 * @param aStart [in] whether to start/stop listening
107 bool ListenMobileConnAndIccInfo(bool aStart
);
110 * Select available client to listen and assign mClientId.
112 * mClientId is assigned to number of total clients (array length of
113 * mobile connection listeners) if there is no available client to listen.
118 * Array of mobile connection listeners.
120 * The length equals to number of total clients.
122 nsTArray
<nsRefPtr
<MobileConnectionListener
> > mMobileConnListeners
;
124 nsRefPtr
<IccListener
> mIccListener
;
125 nsRefPtr
<TelephonyListener
> mTelephonyListener
;
128 END_BLUETOOTH_NAMESPACE