/* -*- 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/. */ #ifndef mozilla_dom_bluetooth_bluetoothadapter_h__ #define mozilla_dom_bluetooth_bluetoothadapter_h__ #include "mozilla/Attributes.h" #include "mozilla/DOMEventTargetHelper.h" #include "mozilla/dom/BluetoothAdapter2Binding.h" #include "mozilla/dom/Promise.h" #include "BluetoothCommon.h" #include "nsCOMPtr.h" namespace mozilla { namespace dom { class DOMRequest; struct MediaMetaData; struct MediaPlayStatus; } } BEGIN_BLUETOOTH_NAMESPACE class BluetoothDevice; class BluetoothDiscoveryHandle; class BluetoothSignal; class BluetoothNamedValue; class BluetoothPairingListener; class BluetoothValue; class BluetoothAdapter : public DOMEventTargetHelper , public BluetoothSignalObserver { public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(BluetoothAdapter, DOMEventTargetHelper) static already_AddRefed Create(nsPIDOMWindow* aOwner, const BluetoothValue& aValue); void Notify(const BluetoothSignal& aParam); void SetPropertyByValue(const BluetoothNamedValue& aValue); virtual void DisconnectFromOwner() MOZ_OVERRIDE; BluetoothAdapterState State() const { return mState; } void GetAddress(nsString& aAddress) const { aAddress = mAddress; } void GetName(nsString& aName) const { aName = mName; } bool Discovering() const { return mDiscovering; } bool Discoverable() const { return mDiscoverable; } BluetoothPairingListener* PairingReqs() const { return mPairingReqs; } /** * Update this adapter's discovery handle in use (mDiscoveryHandleInUse). * * |mDiscoveryHandleInUse| is set to the latest discovery handle when adapter * just starts discovery, and is reset to nullptr when discovery is stopped * by some adapter. * * @param aDiscoveryHandle [in] the discovery handle to set. */ void SetDiscoveryHandleInUse(BluetoothDiscoveryHandle* aDiscoveryHandle); already_AddRefed SetName(const nsAString& aName, ErrorResult& aRv); already_AddRefed SetDiscoverable(bool aDiscoverable, ErrorResult& aRv); already_AddRefed StartDiscovery(ErrorResult& aRv); already_AddRefed StopDiscovery(ErrorResult& aRv); already_AddRefed Pair(const nsAString& aDeviceAddress, ErrorResult& aRv); already_AddRefed Unpair(const nsAString& aDeviceAddress, ErrorResult& aRv); already_AddRefed GetPairedDevices(ErrorResult& aRv); already_AddRefed EnableDisable(bool aEnable, ErrorResult& aRv); already_AddRefed Enable(ErrorResult& aRv); already_AddRefed Disable(ErrorResult& aRv); already_AddRefed Connect(BluetoothDevice& aDevice, const Optional& aServiceUuid, ErrorResult& aRv); already_AddRefed Disconnect(BluetoothDevice& aDevice, const Optional& aServiceUuid, ErrorResult& aRv); already_AddRefed GetConnectedDevices(uint16_t aServiceUuid, ErrorResult& aRv); already_AddRefed SendFile(const nsAString& aDeviceAddress, nsIDOMBlob* aBlob, ErrorResult& aRv); already_AddRefed StopSendingFile(const nsAString& aDeviceAddress, ErrorResult& aRv); already_AddRefed ConfirmReceivingFile(const nsAString& aDeviceAddress, bool aConfirmation, ErrorResult& aRv); already_AddRefed ConnectSco(ErrorResult& aRv); already_AddRefed DisconnectSco(ErrorResult& aRv); already_AddRefed IsScoConnected(ErrorResult& aRv); already_AddRefed AnswerWaitingCall(ErrorResult& aRv); already_AddRefed IgnoreWaitingCall(ErrorResult& aRv); already_AddRefed ToggleCalls(ErrorResult& aRv); already_AddRefed SendMediaMetaData(const MediaMetaData& aMediaMetaData, ErrorResult& aRv); already_AddRefed SendMediaPlayStatus(const MediaPlayStatus& aMediaPlayStatus, ErrorResult& aRv); IMPL_EVENT_HANDLER(a2dpstatuschanged); IMPL_EVENT_HANDLER(hfpstatuschanged); IMPL_EVENT_HANDLER(pairedstatuschanged); IMPL_EVENT_HANDLER(requestmediaplaystatus); IMPL_EVENT_HANDLER(scostatuschanged); IMPL_EVENT_HANDLER(attributechanged); nsPIDOMWindow* GetParentObject() const { return GetOwner(); } virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE; private: BluetoothAdapter(nsPIDOMWindow* aOwner, const BluetoothValue& aValue); ~BluetoothAdapter(); already_AddRefed PairUnpair(bool aPair, const nsAString& aDeviceAddress, ErrorResult& aRv); bool IsAdapterAttributeChanged(BluetoothAdapterAttribute aType, const BluetoothValue& aValue); void HandleAdapterStateChanged(); void HandlePropertyChanged(const BluetoothValue& aValue); void DispatchAttributeEvent(const nsTArray& aTypes); BluetoothAdapterAttribute ConvertStringToAdapterAttribute(const nsAString& aString); void GetPairedDeviceProperties(const nsTArray& aDeviceAddresses); void HandleDeviceFound(const BluetoothValue& aValue); void HandlePairingRequest(const BluetoothValue& aValue); /** * mDevices holds references of all created device objects. * It is an empty array when the adapter state is disabled. * * Devices will be appended when * 1) Enabling BT: Paired devices reported by stack. * 2) Discovering: Discovered devices during discovery operation. * A device won't be appended if a device object with the same * address already exists. * * Devices will be removed when * 1) Starting discovery: All unpaired devices will be removed before this * adapter starts a new discovery. * 2) Disabling BT: All devices will be removed. */ nsTArray > mDevices; nsRefPtr mDiscoveryHandleInUse; nsRefPtr mPairingReqs; BluetoothAdapterState mState; nsString mAddress; nsString mName; bool mDiscoverable; bool mDiscovering; }; END_BLUETOOTH_NAMESPACE #endif