| Index: chromeos/dbus/biod/biod_record_client.cc
|
| diff --git a/chromeos/dbus/biod/biod_record_client.cc b/chromeos/dbus/biod/biod_record_client.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..782ec360e793a03feb2f6a275712d352d70520d2
|
| --- /dev/null
|
| +++ b/chromeos/dbus/biod/biod_record_client.cc
|
| @@ -0,0 +1,99 @@
|
| +// Copyright 2017 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/biod/biod_record_client.h"
|
| +
|
| +#include "base/bind.h"
|
| +#include "base/macros.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 {
|
| +
|
| +// The BiodRecordClient implementation used in production.
|
| +class BiodRecordClientImpl : public BiodRecordClient {
|
| + public:
|
| + BiodRecordClientImpl() : weak_ptr_factory_(this) {}
|
| +
|
| + ~BiodRecordClientImpl() override {}
|
| +
|
| + void SetLabel(const dbus::ObjectPath& record_path,
|
| + const std::string& label) override {
|
| + dbus::MethodCall method_call(biod::kRecordInterface,
|
| + biod::kRecordSetLabelMethod);
|
| + dbus::MessageWriter writer(&method_call);
|
| + writer.AppendString(label);
|
| +
|
| + dbus::ObjectProxy* record_proxy =
|
| + bus_->GetObjectProxy(biod::kBiodServiceName, record_path);
|
| + record_proxy->CallMethod(&method_call,
|
| + dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
| + dbus::ObjectProxy::EmptyResponseCallback());
|
| + }
|
| +
|
| + void Remove(const dbus::ObjectPath& record_path) override {
|
| + dbus::MethodCall method_call(biod::kRecordInterface,
|
| + biod::kRecordRemoveMethod);
|
| +
|
| + dbus::ObjectProxy* record_proxy =
|
| + bus_->GetObjectProxy(biod::kBiodServiceName, record_path);
|
| + record_proxy->CallMethod(&method_call,
|
| + dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
| + dbus::ObjectProxy::EmptyResponseCallback());
|
| + }
|
| +
|
| + void RequestLabel(const dbus::ObjectPath& record_path,
|
| + const LabelCallback& callback) override {
|
| + dbus::MethodCall method_call(dbus::kDBusPropertiesInterface,
|
| + dbus::kDBusPropertiesGet);
|
| + dbus::MessageWriter writer(&method_call);
|
| + writer.AppendString(biod::kRecordInterface);
|
| + writer.AppendString(biod::kRecordLabelProperty);
|
| +
|
| + dbus::ObjectProxy* record_proxy =
|
| + bus_->GetObjectProxy(biod::kBiodServiceName, record_path);
|
| + record_proxy->CallMethod(
|
| + &method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
| + base::Bind(&BiodRecordClientImpl::OnRequestLabel,
|
| + weak_ptr_factory_.GetWeakPtr(), callback));
|
| + }
|
| +
|
| + protected:
|
| + void Init(dbus::Bus* bus) override { bus_ = bus; }
|
| +
|
| + private:
|
| + void OnRequestLabel(const LabelCallback& callback, dbus::Response* response) {
|
| + std::string result;
|
| + if (response) {
|
| + dbus::MessageReader reader(response);
|
| + if (!reader.PopVariantOfString(&result))
|
| + LOG(ERROR) << biod::kRecordLabelProperty << " had incorrect response.";
|
| + }
|
| +
|
| + callback.Run(result);
|
| + }
|
| +
|
| + dbus::Bus* bus_;
|
| +
|
| + // Note: This should remain the last member so it'll be destroyed and
|
| + // invalidate its weak pointers before any other members are destroyed.
|
| + base::WeakPtrFactory<BiodRecordClientImpl> weak_ptr_factory_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(BiodRecordClientImpl);
|
| +};
|
| +
|
| +BiodRecordClient::BiodRecordClient() {}
|
| +
|
| +BiodRecordClient::~BiodRecordClient() {}
|
| +
|
| +// static
|
| +BiodRecordClient* BiodRecordClient::Create(
|
| + DBusClientImplementationType /* type */) {
|
| + return new BiodRecordClientImpl();
|
| +}
|
| +
|
| +} // namespace chromeos
|
|
|