blob: 46df4825df2e6f7555efe62cbcbddd4c6c0c928a [file] [log] [blame]
// Copyright 2014 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 EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_PRIVATE_API_H_
#define EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_PRIVATE_API_H_
#include "base/callback_forward.h"
#include "base/macros.h"
#include "device/bluetooth/bluetooth_device.h"
#include "extensions/browser/api/bluetooth/bluetooth_extension_function.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace device {
class BluetoothAdapter;
}
namespace extensions {
// The profile-keyed service that manages the bluetoothPrivate extension API.
class BluetoothPrivateAPI : public BrowserContextKeyedAPI,
public EventRouter::Observer {
public:
static BrowserContextKeyedAPIFactory<BluetoothPrivateAPI>*
GetFactoryInstance();
explicit BluetoothPrivateAPI(content::BrowserContext* context);
~BluetoothPrivateAPI() override;
// KeyedService implementation.
void Shutdown() override;
// EventRouter::Observer implementation.
void OnListenerAdded(const EventListenerInfo& details) override;
void OnListenerRemoved(const EventListenerInfo& details) override;
// BrowserContextKeyedAPI implementation.
static const char* service_name() { return "BluetoothPrivateAPI"; }
static const bool kServiceRedirectedInIncognito = true;
static const bool kServiceIsNULLWhileTesting = true;
private:
friend class BrowserContextKeyedAPIFactory<BluetoothPrivateAPI>;
content::BrowserContext* browser_context_;
};
namespace api {
namespace bluetooth_private {
namespace SetAdapterState {
struct Params;
} // namespace SetAdapterState
namespace SetPairingResponse {
struct Params;
} // namespace SetPairingResponse
namespace DisconnectAll {
struct Params;
} // namespace DisconnectAll
namespace ForgetDevice {
struct Params;
} // namespace ForgetDevice
namespace SetDiscoveryFilter {
struct Params;
} // namespace SetDiscoveryFilter
namespace Connect {
struct Params;
} // namespace Connect
namespace Pair {
struct Params;
} // namespace Pair
namespace RecordPairing {
struct Params;
} // namespace RecordPairing
namespace RecordReconnection {
struct Params;
} // namespace RecordReconnection
namespace RecordDeviceSelection {
struct Params;
} // namespace RecordDeviceSelection
} // namespace bluetooth_private
class BluetoothPrivateSetAdapterStateFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.setAdapterState",
BLUETOOTHPRIVATE_SETADAPTERSTATE)
BluetoothPrivateSetAdapterStateFunction();
private:
~BluetoothPrivateSetAdapterStateFunction() override;
base::OnceClosure CreatePropertySetCallback(const std::string& property_name);
base::OnceClosure CreatePropertyErrorCallback(
const std::string& property_name);
void OnAdapterPropertySet(const std::string& property);
void OnAdapterPropertyError(const std::string& property);
void SendError();
// BluetoothExtensionFunction overrides:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
// Set of expected adapter properties to be changed.
std::set<std::string> pending_properties_;
// Set of adapter properties that were not set successfully.
std::set<std::string> failed_properties_;
// Whether or not the function has finished parsing the arguments and queuing
// up state requests.
bool parsed_ = false;
std::unique_ptr<bluetooth_private::SetAdapterState::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateSetAdapterStateFunction);
};
class BluetoothPrivateSetPairingResponseFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.setPairingResponse",
BLUETOOTHPRIVATE_SETPAIRINGRESPONSE)
BluetoothPrivateSetPairingResponseFunction();
// BluetoothExtensionFunction overrides:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
~BluetoothPrivateSetPairingResponseFunction() override;
std::unique_ptr<bluetooth_private::SetPairingResponse::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateSetPairingResponseFunction);
};
class BluetoothPrivateDisconnectAllFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.disconnectAll",
BLUETOOTHPRIVATE_DISCONNECTALL)
BluetoothPrivateDisconnectAllFunction();
// BluetoothExtensionFunction overrides:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
~BluetoothPrivateDisconnectAllFunction() override;
void OnSuccessCallback();
void OnErrorCallback(scoped_refptr<device::BluetoothAdapter> adapter,
const std::string& device_address);
std::unique_ptr<bluetooth_private::DisconnectAll::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateDisconnectAllFunction);
};
class BluetoothPrivateForgetDeviceFunction : public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.forgetDevice",
BLUETOOTHPRIVATE_FORGETDEVICE)
BluetoothPrivateForgetDeviceFunction();
// BluetoothExtensionFunction overrides:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
~BluetoothPrivateForgetDeviceFunction() override;
void OnSuccessCallback();
void OnErrorCallback(scoped_refptr<device::BluetoothAdapter> adapter,
const std::string& device_address);
std::unique_ptr<bluetooth_private::ForgetDevice::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateForgetDeviceFunction);
};
class BluetoothPrivateSetDiscoveryFilterFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.setDiscoveryFilter",
BLUETOOTHPRIVATE_SETDISCOVERYFILTER)
BluetoothPrivateSetDiscoveryFilterFunction();
protected:
~BluetoothPrivateSetDiscoveryFilterFunction() override;
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
void OnSuccessCallback();
void OnErrorCallback();
std::unique_ptr<bluetooth_private::SetDiscoveryFilter::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateSetDiscoveryFilterFunction);
};
class BluetoothPrivateConnectFunction : public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.connect",
BLUETOOTHPRIVATE_CONNECT)
BluetoothPrivateConnectFunction();
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
~BluetoothPrivateConnectFunction() override;
void OnConnect(
absl::optional<device::BluetoothDevice::ConnectErrorCode> error);
std::unique_ptr<bluetooth_private::Connect::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateConnectFunction);
};
class BluetoothPrivatePairFunction : public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.pair", BLUETOOTHPRIVATE_PAIR)
BluetoothPrivatePairFunction();
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
~BluetoothPrivatePairFunction() override;
void OnPair(
absl::optional<device::BluetoothDevice::ConnectErrorCode> error_code);
std::unique_ptr<bluetooth_private::Pair::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivatePairFunction);
};
class BluetoothPrivateRecordPairingFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.recordPairing",
BLUETOOTHPRIVATE_RECORDPAIRING)
BluetoothPrivateRecordPairingFunction();
protected:
~BluetoothPrivateRecordPairingFunction() override;
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
std::unique_ptr<bluetooth_private::RecordPairing::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateRecordPairingFunction);
};
class BluetoothPrivateRecordReconnectionFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.recordReconnection",
BLUETOOTHPRIVATE_RECORDRECONNECTION)
BluetoothPrivateRecordReconnectionFunction();
protected:
~BluetoothPrivateRecordReconnectionFunction() override;
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
std::unique_ptr<bluetooth_private::RecordReconnection::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateRecordReconnectionFunction);
};
class BluetoothPrivateRecordDeviceSelectionFunction
: public BluetoothExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothPrivate.recordDeviceSelection",
BLUETOOTHPRIVATE_RECORDDEVICESELECTION)
BluetoothPrivateRecordDeviceSelectionFunction();
protected:
~BluetoothPrivateRecordDeviceSelectionFunction() override;
// BluetoothExtensionFunction:
bool CreateParams() override;
void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
std::unique_ptr<bluetooth_private::RecordDeviceSelection::Params> params_;
DISALLOW_COPY_AND_ASSIGN(BluetoothPrivateRecordDeviceSelectionFunction);
};
} // namespace api
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_PRIVATE_API_H_