#include "device/bluetooth/dbus/bluetooth_battery_client.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/ptr_util.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 {
BluetoothBatteryClient::Properties::Properties(
dbus::ObjectProxy* object_proxy,
const std::string& interface_name,
const PropertyChangedCallback& callback)
: dbus::PropertySet(object_proxy, interface_name, callback) {
RegisterProperty(bluetooth_battery::kPercentageProperty, &percentage);
}
BluetoothBatteryClient::Properties::~Properties() = default;
class BluetoothBatteryClientImpl : public BluetoothBatteryClient,
public dbus::ObjectManager::Interface {
public:
BluetoothBatteryClientImpl() = default;
BluetoothBatteryClientImpl(const BluetoothBatteryClientImpl&) = delete;
BluetoothBatteryClientImpl& operator=(const BluetoothBatteryClientImpl&) =
delete;
~BluetoothBatteryClientImpl() override {
if (object_manager_) {
object_manager_->UnregisterInterface(
bluetooth_adapter::kBluetoothAdapterInterface);
}
}
void AddObserver(BluetoothBatteryClient::Observer* observer) override {
DCHECK(observer);
observers_.AddObserver(observer);
}
void RemoveObserver(BluetoothBatteryClient::Observer* observer) override {
DCHECK(observer);
observers_.RemoveObserver(observer);
}
dbus::PropertySet* CreateProperties(
dbus::ObjectProxy* object_proxy,
const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
return new Properties(
object_proxy, interface_name,
base::BindRepeating(&BluetoothBatteryClientImpl::OnPropertyChanged,
weak_ptr_factory_.GetWeakPtr(), object_path));
}
Properties* GetProperties(const dbus::ObjectPath& object_path) override {
return static_cast<Properties*>(object_manager_->GetProperties(
object_path, bluetooth_battery::kBluetoothBatteryInterface));
}
protected:
void Init(dbus::Bus* bus,
const std::string& bluetooth_service_name) override {
object_manager_ = bus->GetObjectManager(
bluetooth_service_name,
dbus::ObjectPath(
bluetooth_object_manager::kBluetoothObjectManagerServicePath));
object_manager_->RegisterInterface(
bluetooth_battery::kBluetoothBatteryInterface, this);
}
private:
void ObjectAdded(const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
for (auto& observer : observers_)
observer.BatteryAdded(object_path);
}
void ObjectRemoved(const dbus::ObjectPath& object_path,
const std::string& interface_name) override {
for (auto& observer : observers_)
observer.BatteryRemoved(object_path);
}
void OnPropertyChanged(const dbus::ObjectPath& object_path,
const std::string& property_name) {
for (auto& observer : observers_)
observer.BatteryPropertyChanged(object_path, property_name);
}
raw_ptr<dbus::ObjectManager> object_manager_ = nullptr;
base::ObserverList<BluetoothBatteryClient::Observer>::Unchecked observers_;
base::WeakPtrFactory<BluetoothBatteryClientImpl> weak_ptr_factory_{this};
};
BluetoothBatteryClient::BluetoothBatteryClient() = default;
BluetoothBatteryClient::~BluetoothBatteryClient() = default;
BluetoothBatteryClient* BluetoothBatteryClient::Create() {
return new BluetoothBatteryClientImpl();
}
}