1// Copyright (c) 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chromeos/dbus/fake_bluetooth_agent_manager_client.h"
6
7#include "base/bind.h"
8#include "base/logging.h"
9#include "chromeos/dbus/fake_bluetooth_agent_service_provider.h"
10#include "dbus/object_path.h"
11#include "third_party/cros_system_api/dbus/service_constants.h"
12
13namespace chromeos {
14
15FakeBluetoothAgentManagerClient::FakeBluetoothAgentManagerClient()
16    : service_provider_(NULL) {
17}
18
19FakeBluetoothAgentManagerClient::~FakeBluetoothAgentManagerClient() {
20}
21
22void FakeBluetoothAgentManagerClient::Init(dbus::Bus* bus) {
23}
24
25void FakeBluetoothAgentManagerClient::RegisterAgent(
26    const dbus::ObjectPath& agent_path,
27    const std::string& capability,
28    const base::Closure& callback,
29    const ErrorCallback& error_callback) {
30  VLOG(1) << "RegisterAgent: " << agent_path.value();
31
32  if (service_provider_ == NULL) {
33    error_callback.Run(bluetooth_agent_manager::kErrorInvalidArguments,
34                       "No agent created");
35  } else if (service_provider_->object_path_ != agent_path) {
36    error_callback.Run(bluetooth_agent_manager::kErrorAlreadyExists,
37                       "Agent already registered");
38  } else {
39    callback.Run();
40  }
41}
42
43void FakeBluetoothAgentManagerClient::UnregisterAgent(
44    const dbus::ObjectPath& agent_path,
45    const base::Closure& callback,
46    const ErrorCallback& error_callback) {
47  VLOG(1) << "UnregisterAgent: " << agent_path.value();
48  if (service_provider_ != NULL) {
49    error_callback.Run(bluetooth_agent_manager::kErrorInvalidArguments,
50                       "Agent still registered");
51  } else {
52    callback.Run();
53  }
54}
55
56void FakeBluetoothAgentManagerClient::RequestDefaultAgent(
57    const dbus::ObjectPath& agent_path,
58    const base::Closure& callback,
59    const ErrorCallback& error_callback) {
60  VLOG(1) << "RequestDefaultAgent: " << agent_path.value();
61  callback.Run();
62}
63
64void FakeBluetoothAgentManagerClient::RegisterAgentServiceProvider(
65    FakeBluetoothAgentServiceProvider* service_provider) {
66  service_provider_ = service_provider;
67}
68
69void FakeBluetoothAgentManagerClient::UnregisterAgentServiceProvider(
70    FakeBluetoothAgentServiceProvider* service_provider) {
71  if (service_provider_ == service_provider)
72    service_provider_ = NULL;
73}
74
75FakeBluetoothAgentServiceProvider*
76FakeBluetoothAgentManagerClient::GetAgentServiceProvider() {
77  return service_provider_;
78}
79
80}  // namespace chromeos
81