Bumping manifests a=b2g-bump
[gecko.git] / dom / bluetooth / BluetoothRilListener.h
blobdb445ce2a7f97ab28bd6df0a3af9fcf75ac2344b
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
24 public:
25 NS_DECL_ISUPPORTS
26 NS_DECL_NSIICCLISTENER
28 IccListener() { }
29 virtual ~IccListener() { }
31 bool Listen(bool aStart);
32 void SetOwner(BluetoothRilListener *aOwner);
34 private:
35 BluetoothRilListener* mOwner;
38 class MobileConnectionListener : public nsIMobileConnectionListener
40 public:
41 NS_DECL_ISUPPORTS
42 NS_DECL_NSIMOBILECONNECTIONLISTENER
44 MobileConnectionListener(uint32_t aClientId)
45 : mClientId(aClientId) { }
46 virtual ~MobileConnectionListener() { }
48 bool Listen(bool aStart);
50 private:
51 uint32_t mClientId;
54 class TelephonyListener : public nsITelephonyListener
56 public:
57 NS_DECL_ISUPPORTS
58 NS_DECL_NSITELEPHONYLISTENER
60 TelephonyListener() { }
61 virtual ~TelephonyListener() { }
63 bool Listen(bool aStart);
66 class BluetoothRilListener
68 public:
69 BluetoothRilListener();
70 ~BluetoothRilListener();
72 /**
73 * Start/Stop listening.
75 * @param aStart [in] whether to start/stop listening
77 bool Listen(bool aStart);
79 /**
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);
87 /**
88 * Enumerate current calls.
90 void EnumerateCalls();
92 /**
93 * The id of client that mobile connection and icc info listeners
94 * are listening to.
96 * mClientId equals to number of total clients (array length of
97 * mobile connection listeners) if there is no available client to listen.
99 uint32_t mClientId;
101 private:
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.
115 void SelectClient();
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
130 #endif