blob: e3de615af07b6d47755afde218f5eda3a334836b [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.
#include "device/bluetooth/bluetooth_remote_gatt_characteristic_chromeos.h"
#include "base/logging.h"
#include "base/strings/stringprintf.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h"
#include "device/bluetooth/bluetooth_remote_gatt_service_chromeos.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
namespace {
// Stream operator for logging vector<uint8>.
std::ostream& operator<<(std::ostream& out, const std::vector<uint8> bytes) {
out << "[";
for (std::vector<uint8>::const_iterator iter = bytes.begin();
iter != bytes.end(); ++iter) {
out << base::StringPrintf("%02X", *iter);
}
return out << "]";
}
} // namespace
BluetoothRemoteGattCharacteristicChromeOS::
BluetoothRemoteGattCharacteristicChromeOS(
BluetoothRemoteGattServiceChromeOS* service,
const dbus::ObjectPath& object_path)
: object_path_(object_path),
service_(service),
weak_ptr_factory_(this) {
VLOG(1) << "Creating remote GATT characteristic with identifier: "
<< GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->
AddObserver(this);
DBusThreadManager::Get()->GetBluetoothGattDescriptorClient()->
AddObserver(this);
// Add all known GATT characteristic descriptors.
const std::vector<dbus::ObjectPath>& gatt_descs =
DBusThreadManager::Get()->GetBluetoothGattDescriptorClient()->
GetDescriptors();
for (std::vector<dbus::ObjectPath>::const_iterator iter = gatt_descs.begin();
iter != gatt_descs.end(); ++iter)
GattDescriptorAdded(*iter);
}
BluetoothRemoteGattCharacteristicChromeOS::
~BluetoothRemoteGattCharacteristicChromeOS() {
DBusThreadManager::Get()->GetBluetoothGattDescriptorClient()->
RemoveObserver(this);
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->
RemoveObserver(this);
// Clean up all the descriptors. There isn't much point in notifying service
// observers for each descriptor that gets removed, so just delete them.
for (DescriptorMap::iterator iter = descriptors_.begin();
iter != descriptors_.end(); ++iter)
delete iter->second;
}
std::string BluetoothRemoteGattCharacteristicChromeOS::GetIdentifier() const {
return object_path_.value();
}
device::BluetoothUUID
BluetoothRemoteGattCharacteristicChromeOS::GetUUID() const {
BluetoothGattCharacteristicClient::Properties* properties =
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->
GetProperties(object_path_);
DCHECK(properties);
return device::BluetoothUUID(properties->uuid.value());
}
bool BluetoothRemoteGattCharacteristicChromeOS::IsLocal() const {
return false;
}
const std::vector<uint8>&
BluetoothRemoteGattCharacteristicChromeOS::GetValue() const {
return cached_value_;
}
device::BluetoothGattService*
BluetoothRemoteGattCharacteristicChromeOS::GetService() const {
return service_;
}
device::BluetoothGattCharacteristic::Properties
BluetoothRemoteGattCharacteristicChromeOS::GetProperties() const {
BluetoothGattCharacteristicClient::Properties* properties =
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->
GetProperties(object_path_);
DCHECK(properties);
Properties props = kPropertyNone;
const std::vector<std::string>& flags = properties->flags.value();
for (std::vector<std::string>::const_iterator iter = flags.begin();
iter != flags.end();
++iter) {
if (*iter == bluetooth_gatt_characteristic::kFlagBroadcast)
props |= kPropertyBroadcast;
if (*iter == bluetooth_gatt_characteristic::kFlagRead)
props |= kPropertyRead;
if (*iter == bluetooth_gatt_characteristic::kFlagWriteWithoutResponse)
props |= kPropertyWriteWithoutResponse;
if (*iter == bluetooth_gatt_characteristic::kFlagWrite)
props |= kPropertyWrite;
if (*iter == bluetooth_gatt_characteristic::kFlagNotify)
props |= kPropertyNotify;
if (*iter == bluetooth_gatt_characteristic::kFlagIndicate)
props |= kPropertyIndicate;
if (*iter == bluetooth_gatt_characteristic::kFlagAuthenticatedSignedWrites)
props |= kPropertyAuthenticatedSignedWrites;
if (*iter == bluetooth_gatt_characteristic::kFlagExtendedProperties)
props |= kPropertyExtendedProperties;
if (*iter == bluetooth_gatt_characteristic::kFlagReliableWrite)
props |= kPropertyReliableWrite;
if (*iter == bluetooth_gatt_characteristic::kFlagWritableAuxiliaries)
props |= kPropertyWritableAuxiliaries;
}
return props;
}
device::BluetoothGattCharacteristic::Permissions
BluetoothRemoteGattCharacteristicChromeOS::GetPermissions() const {
// TODO(armansito): Once BlueZ defines the permissions, return the correct
// values here.
return kPermissionNone;
}
std::vector<device::BluetoothGattDescriptor*>
BluetoothRemoteGattCharacteristicChromeOS::GetDescriptors() const {
std::vector<device::BluetoothGattDescriptor*> descriptors;
for (DescriptorMap::const_iterator iter = descriptors_.begin();
iter != descriptors_.end(); ++iter)
descriptors.push_back(iter->second);
return descriptors;
}
device::BluetoothGattDescriptor*
BluetoothRemoteGattCharacteristicChromeOS::GetDescriptor(
const std::string& identifier) const {
DescriptorMap::const_iterator iter =
descriptors_.find(dbus::ObjectPath(identifier));
if (iter == descriptors_.end())
return NULL;
return iter->second;
}
bool BluetoothRemoteGattCharacteristicChromeOS::AddDescriptor(
device::BluetoothGattDescriptor* descriptor) {
VLOG(1) << "Descriptors cannot be added to a remote GATT characteristic.";
return false;
}
bool BluetoothRemoteGattCharacteristicChromeOS::UpdateValue(
const std::vector<uint8>& value) {
VLOG(1) << "Cannot update the value of a remote GATT characteristic.";
return false;
}
void BluetoothRemoteGattCharacteristicChromeOS::ReadRemoteCharacteristic(
const ValueCallback& callback,
const ErrorCallback& error_callback) {
VLOG(1) << "Sending GATT characteristic read request to characteristic: "
<< GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
<< ".";
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->ReadValue(
object_path_,
base::Bind(&BluetoothRemoteGattCharacteristicChromeOS::OnValueSuccess,
weak_ptr_factory_.GetWeakPtr(),
callback),
base::Bind(&BluetoothRemoteGattCharacteristicChromeOS::OnError,
weak_ptr_factory_.GetWeakPtr(),
error_callback));
}
void BluetoothRemoteGattCharacteristicChromeOS::WriteRemoteCharacteristic(
const std::vector<uint8>& new_value,
const base::Closure& callback,
const ErrorCallback& error_callback) {
VLOG(1) << "Sending GATT characteristic write request to characteristic: "
<< GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
<< ", with value: " << new_value << ".";
DBusThreadManager::Get()->GetBluetoothGattCharacteristicClient()->WriteValue(
object_path_,
new_value,
callback,
base::Bind(&BluetoothRemoteGattCharacteristicChromeOS::OnError,
weak_ptr_factory_.GetWeakPtr(),
error_callback));
}
void BluetoothRemoteGattCharacteristicChromeOS::GattCharacteristicValueUpdated(
const dbus::ObjectPath& object_path,
const std::vector<uint8>& value) {
if (object_path != object_path_)
return;
cached_value_ = value;
VLOG(1) << "GATT characteristic value has changed: " << object_path.value()
<< ": " << value;
DCHECK(service_);
service_->NotifyCharacteristicValueChanged(this, value);
}
void BluetoothRemoteGattCharacteristicChromeOS::GattDescriptorAdded(
const dbus::ObjectPath& object_path) {
if (descriptors_.find(object_path) != descriptors_.end()) {
VLOG(1) << "Remote GATT characteristic descriptor already exists: "
<< object_path.value();
return;
}
BluetoothGattDescriptorClient::Properties* properties =
DBusThreadManager::Get()->GetBluetoothGattDescriptorClient()->
GetProperties(object_path);
DCHECK(properties);
if (properties->characteristic.value() != object_path_) {
VLOG(2) << "Remote GATT descriptor does not belong to this characteristic.";
return;
}
VLOG(1) << "Adding new remote GATT descriptor for GATT characteristic: "
<< GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
BluetoothRemoteGattDescriptorChromeOS* descriptor =
new BluetoothRemoteGattDescriptorChromeOS(this, object_path);
descriptors_[object_path] = descriptor;
DCHECK(descriptor->GetIdentifier() == object_path.value());
DCHECK(descriptor->GetUUID().IsValid());
DCHECK(service_);
service_->NotifyDescriptorAddedOrRemoved(this, descriptor, true /* added */);
service_->NotifyServiceChanged();
}
void BluetoothRemoteGattCharacteristicChromeOS::GattDescriptorRemoved(
const dbus::ObjectPath& object_path) {
DescriptorMap::iterator iter = descriptors_.find(object_path);
if (iter == descriptors_.end()) {
VLOG(2) << "Unknown descriptor removed: " << object_path.value();
return;
}
VLOG(1) << "Removing remote GATT descriptor from characteristic: "
<< GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
BluetoothRemoteGattDescriptorChromeOS* descriptor = iter->second;
DCHECK(descriptor->object_path() == object_path);
descriptors_.erase(iter);
service_->NotifyDescriptorAddedOrRemoved(this, descriptor, false /* added */);
delete descriptor;
DCHECK(service_);
service_->NotifyServiceChanged();
}
void BluetoothRemoteGattCharacteristicChromeOS::OnValueSuccess(
const ValueCallback& callback,
const std::vector<uint8>& value) {
VLOG(1) << "Characteristic value read: " << value;
cached_value_ = value;
DCHECK(service_);
service_->NotifyCharacteristicValueChanged(this, cached_value_);
callback.Run(value);
}
void BluetoothRemoteGattCharacteristicChromeOS::OnError(
const ErrorCallback& error_callback,
const std::string& error_name,
const std::string& error_message) {
VLOG(1) << "Operation failed: " << error_name << ", message: "
<< error_message;
error_callback.Run();
}
} // namespace chromeos