// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_WIN_H_ #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_WIN_H_ #include #include #include #include "base/containers/hash_tables.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_vector.h" #include "base/memory/weak_ptr.h" #include "base/threading/thread_checker.h" #include "device/bluetooth/bluetooth_adapter.h" #include "device/bluetooth/bluetooth_task_manager_win.h" namespace base { class SequencedTaskRunner; class Thread; } // namespace base namespace device { class BluetoothAdapterWinTest; class BluetoothDevice; class BluetoothSocketThread; class BluetoothAdapterWin : public BluetoothAdapter, public BluetoothTaskManagerWin::Observer { public: static base::WeakPtr CreateAdapter( const InitCallback& init_callback); // BluetoothAdapter: virtual void AddObserver(BluetoothAdapter::Observer* observer) OVERRIDE; virtual void RemoveObserver(BluetoothAdapter::Observer* observer) OVERRIDE; virtual std::string GetAddress() const OVERRIDE; virtual std::string GetName() const OVERRIDE; virtual void SetName(const std::string& name, const base::Closure& callback, const ErrorCallback& error_callback) OVERRIDE; virtual bool IsInitialized() const OVERRIDE; virtual bool IsPresent() const OVERRIDE; virtual bool IsPowered() const OVERRIDE; virtual void SetPowered( bool discoverable, const base::Closure& callback, const ErrorCallback& error_callback) OVERRIDE; virtual bool IsDiscoverable() const OVERRIDE; virtual void SetDiscoverable( bool discoverable, const base::Closure& callback, const ErrorCallback& error_callback) OVERRIDE; virtual bool IsDiscovering() const OVERRIDE; virtual void CreateRfcommService( const BluetoothUUID& uuid, const ServiceOptions& options, const CreateServiceCallback& callback, const CreateServiceErrorCallback& error_callback) OVERRIDE; virtual void CreateL2capService( const BluetoothUUID& uuid, const ServiceOptions& options, const CreateServiceCallback& callback, const CreateServiceErrorCallback& error_callback) OVERRIDE; // BluetoothTaskManagerWin::Observer override virtual void AdapterStateChanged( const BluetoothTaskManagerWin::AdapterState& state) OVERRIDE; virtual void DiscoveryStarted(bool success) OVERRIDE; virtual void DiscoveryStopped() OVERRIDE; virtual void DevicesPolled(const ScopedVector< BluetoothTaskManagerWin::DeviceState>& devices) OVERRIDE; const scoped_refptr& ui_task_runner() const { return ui_task_runner_; } const scoped_refptr& socket_thread() const { return socket_thread_; } protected: // BluetoothAdapter: virtual void RemovePairingDelegateInternal( device::BluetoothDevice::PairingDelegate* pairing_delegate) OVERRIDE; private: friend class BluetoothAdapterWinTest; enum DiscoveryStatus { NOT_DISCOVERING, DISCOVERY_STARTING, DISCOVERING, DISCOVERY_STOPPING }; explicit BluetoothAdapterWin(const InitCallback& init_callback); virtual ~BluetoothAdapterWin(); // BluetoothAdapter: virtual void AddDiscoverySession( const base::Closure& callback, const ErrorCallback& error_callback) OVERRIDE; virtual void RemoveDiscoverySession( const base::Closure& callback, const ErrorCallback& error_callback) OVERRIDE; void Init(); void InitForTest( scoped_refptr ui_task_runner, scoped_refptr bluetooth_task_runner); void MaybePostStartDiscoveryTask(); void MaybePostStopDiscoveryTask(); InitCallback init_callback_; std::string address_; std::string name_; bool initialized_; bool powered_; DiscoveryStatus discovery_status_; base::hash_set discovered_devices_; std::vector > on_start_discovery_callbacks_; std::vector on_stop_discovery_callbacks_; size_t num_discovery_listeners_; scoped_refptr ui_task_runner_; scoped_refptr socket_thread_; scoped_refptr task_manager_; base::ThreadChecker thread_checker_; // List of observers interested in event notifications from us. ObserverList observers_; // NOTE: This should remain the last member so it'll be destroyed and // invalidate its weak pointers before any other members are destroyed. base::WeakPtrFactory weak_ptr_factory_; DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterWin); }; } // namespace device #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_WIN_H_