This source file includes following definitions.
- RegisterAgent
- UnregisterAgent
- RequestDefaultAgent
- Init
- OnSuccess
- OnError
- Create
#include "chromeos/dbus/bluetooth_agent_manager_client.h"
#include "base/bind.h"
#include "base/logging.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_path.h"
#include "dbus/object_proxy.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
const char BluetoothAgentManagerClient::kNoResponseError[] =
"org.chromium.Error.NoResponse";
class BluetoothAgentManagerClientImpl
: public BluetoothAgentManagerClient {
public:
BluetoothAgentManagerClientImpl() : weak_ptr_factory_(this) {}
virtual ~BluetoothAgentManagerClientImpl() {
}
virtual void RegisterAgent(const dbus::ObjectPath& agent_path,
const std::string& capability,
const base::Closure& callback,
const 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_->CallMethodWithErrorCallback(
&method_call,
dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::Bind(&BluetoothAgentManagerClientImpl::OnSuccess,
weak_ptr_factory_.GetWeakPtr(), callback),
base::Bind(&BluetoothAgentManagerClientImpl::OnError,
weak_ptr_factory_.GetWeakPtr(), error_callback));
}
virtual void UnregisterAgent(const dbus::ObjectPath& agent_path,
const base::Closure& callback,
const 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_->CallMethodWithErrorCallback(
&method_call,
dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::Bind(&BluetoothAgentManagerClientImpl::OnSuccess,
weak_ptr_factory_.GetWeakPtr(), callback),
base::Bind(&BluetoothAgentManagerClientImpl::OnError,
weak_ptr_factory_.GetWeakPtr(), error_callback));
}
virtual void RequestDefaultAgent(const dbus::ObjectPath& agent_path,
const base::Closure& callback,
const 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_->CallMethodWithErrorCallback(
&method_call,
dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::Bind(&BluetoothAgentManagerClientImpl::OnSuccess,
weak_ptr_factory_.GetWeakPtr(), callback),
base::Bind(&BluetoothAgentManagerClientImpl::OnError,
weak_ptr_factory_.GetWeakPtr(), error_callback));
}
protected:
virtual void Init(dbus::Bus* bus) OVERRIDE {
DCHECK(bus);
object_proxy_ = bus->GetObjectProxy(
bluetooth_agent_manager::kBluetoothAgentManagerServiceName,
dbus::ObjectPath(
bluetooth_agent_manager::kBluetoothAgentManagerServicePath));
}
private:
void OnSuccess(const base::Closure& callback,
dbus::Response* response) {
DCHECK(response);
callback.Run();
}
void OnError(const ErrorCallback& error_callback,
dbus::ErrorResponse* response) {
std::string error_name;
std::string error_message;
if (response) {
dbus::MessageReader reader(response);
error_name = response->GetErrorName();
reader.PopString(&error_message);
} else {
error_name = kNoResponseError;
error_message = "";
}
error_callback.Run(error_name, error_message);
}
dbus::ObjectProxy* object_proxy_;
base::WeakPtrFactory<BluetoothAgentManagerClientImpl>
weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(BluetoothAgentManagerClientImpl);
};
BluetoothAgentManagerClient::BluetoothAgentManagerClient() {
}
BluetoothAgentManagerClient::~BluetoothAgentManagerClient() {
}
BluetoothAgentManagerClient* BluetoothAgentManagerClient::Create() {
return new BluetoothAgentManagerClientImpl();
}
}