summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/bluetooth_property.cc
blob: 24a19580b7d80df1e03fc699fada74f51ee84d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// 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.

#include "chromeos/dbus/bluetooth_property.h"

#include "base/bind.h"
#include "dbus/message.h"
#include "dbus/object_proxy.h"
#include "third_party/cros_system_api/dbus/service_constants.h"

namespace chromeos {

void BluetoothPropertySet::ConnectSignals() {
  dbus::ObjectProxy* object_proxy = this->object_proxy();
  DCHECK(object_proxy);
  object_proxy->ConnectToSignal(
      interface(),
      bluetooth_common::kPropertyChangedSignal,
      base::Bind(&dbus::PropertySet::ChangedReceived, GetWeakPtr()),
      base::Bind(&dbus::PropertySet::ChangedConnected, GetWeakPtr()));
}

void BluetoothPropertySet::ChangedReceived(dbus::Signal* signal) {
  DCHECK(signal);

  dbus::MessageReader reader(signal);
  UpdatePropertyFromReader(&reader);
}

void BluetoothPropertySet::GetAll() {
  dbus::MethodCall method_call(interface(),
                               bluetooth_common::kGetProperties);

  dbus::ObjectProxy* object_proxy = this->object_proxy();
  DCHECK(object_proxy);
  object_proxy->CallMethod(&method_call,
                           dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
                           base::Bind(&dbus::PropertySet::OnGetAll,
                                      GetWeakPtr()));
}

}