#include "device/bluetooth/dbus/bluetooth_agent_manager_client.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_manager.h"
#include "dbus/object_proxy.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace bluez {
const char BluetoothAgentManagerClient::kNoResponseError[] =
"org.chromium.Error.NoResponse";
class BluetoothAgentManagerClientImpl : public BluetoothAgentManagerClient,
public dbus::ObjectManager::Interface {
public:
BluetoothAgentManagerClientImpl() {}
BluetoothAgentManagerClientImpl(const BluetoothAgentManagerClientImpl&) =
delete;
BluetoothAgentManagerClientImpl& operator=(
const BluetoothAgentManagerClientImpl&) = delete;
~BluetoothAgentManagerClientImpl() override = default;
void AddObserver(BluetoothAgentManagerClient::Observer* observer) override {
DCHECK(observer);
observers_.AddObserver(observer);
}
void RemoveObserver(
BluetoothAgentManagerClient::Observer* observer) override {
DCHECK(observer);
observers_.RemoveObserver(observer);
}
void RegisterAgent(const dbus::ObjectPath& agent_path,
const std::string& capability,
base::OnceClosure callback,
ErrorCallback error_callback) override {
dbus::MethodCall method_call(
bluetooth_agent_manager::kBluetoothAgentManagerInterface,
bluetooth_agent_manager::kRegisterAgent);
dbus::MessageWriter writer(&method_call);
writer.AppendObjectPath(agent_path);
writer.AppendString(capability);
object_proxy_->CallMethodWithErrorResponse(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&BluetoothAgentManagerClientImpl::OnMethodResponse,
weak_ptr_factory_.GetWeakPtr(), std::move(callback),
std::move(error_callback)));
}
void UnregisterAgent(const dbus::ObjectPath& agent_path,
base::OnceClosure callback,
ErrorCallback error_callback) override {
dbus::MethodCall method_call(
bluetooth_agent_manager::kBluetoothAgentManagerInterface,
bluetooth_agent_manager::kUnregisterAgent);
dbus::MessageWriter writer(&method_call);
writer.AppendObjectPath(agent_path);
object_proxy_->CallMethodWithErrorResponse(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&BluetoothAgentManagerClientImpl::OnMethodResponse,
weak_ptr_factory_.GetWeakPtr(), std::move(callback),
std::move(error_callback)));
}
void RequestDefaultAgent(const dbus::ObjectPath& agent_path,
base::OnceClosure callback,
ErrorCallback error_callback) override {
dbus::MethodCall method_call(
bluetooth_agent_manager::kBluetoothAgentManagerInterface,
bluetooth_agent_manager::kRequestDefaultAgent);
dbus::MessageWriter writer(&method_call);
writer.AppendObjectPath(agent_path);
object_proxy_->CallMethodWithErrorResponse(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&BluetoothAgentManagerClientImpl::OnMethodResponse,
weak_ptr_factory_.GetWeakPtr(), std::move(callback),
std::move(error_callback)));
}
protected:
void Init(dbus::Bus* bus,
const std::string& bluetooth_service_name) override {
DCHECK(bus);
object_proxy_ = bus->GetObjectProxy(
bluetooth_service_name,
dbus::ObjectPath(
bluetooth_agent_manager::kBluetoothAgentManagerServicePath));
object_manager_ = bus->GetObjectManager(
bluetooth_service_name,
dbus::ObjectPath(
bluetooth_object_manager::kBluetoothObjectManagerServicePath));
object_manager_->RegisterInterface(
bluetooth_agent_manager::kBluetoothAgentManagerInterface, this);
}
private:
void ObjectAdded(const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
for (auto& observer : observers_)
observer.AgentManagerAdded(object_path);
}
void ObjectRemoved(const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
for (auto& observer : observers_)
observer.AgentManagerRemoved(object_path);
}
dbus::PropertySet* CreateProperties(
dbus::ObjectProxy* object_proxy,
const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
return new dbus::PropertySet(object_proxy, interface_name,
base::DoNothing());
}
void OnMethodResponse(base::OnceClosure callback,
ErrorCallback error_callback,
dbus::Response* response,
dbus::ErrorResponse* error_response) {
if (!response) {
std::string error_name;
std::string error_message;
if (error_response) {
dbus::MessageReader reader(error_response);
error_name = error_response->GetErrorName();
reader.PopString(&error_message);
} else {
error_name = kNoResponseError;
}
std::move(error_callback).Run(error_name, error_message);
return;
}
std::move(callback).Run();
}
raw_ptr<dbus::ObjectProxy> object_proxy_;
raw_ptr<dbus::ObjectManager> object_manager_;
base::ObserverList<BluetoothAgentManagerClient::Observer> observers_;
base::WeakPtrFactory<BluetoothAgentManagerClientImpl> weak_ptr_factory_{this};
};
BluetoothAgentManagerClient::BluetoothAgentManagerClient() = default;
BluetoothAgentManagerClient::~BluetoothAgentManagerClient() = default;
BluetoothAgentManagerClient* BluetoothAgentManagerClient::Create() {
return new BluetoothAgentManagerClientImpl();
}
}