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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/dbus/system_clock/system_clock_client.h"
#include <stdint.h>
#include <string>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "chromeos/ash/components/dbus/system_clock/fake_system_clock_client.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_path.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace ash {
namespace {
// Handles replies to D-Bus calls made by GetLastSyncInfo.
void OnGetLastSyncInfo(SystemClockClient::GetLastSyncInfoCallback callback,
dbus::Response* response) {
if (!response) {
LOG(ERROR) << system_clock::kSystemClockInterface << "."
<< system_clock::kSystemLastSyncInfo << " request failed.";
return;
}
dbus::MessageReader reader(response);
bool network_synchronized = false;
if (!reader.PopBool(&network_synchronized)) {
LOG(ERROR) << system_clock::kSystemClockInterface << "."
<< system_clock::kSystemLastSyncInfo
<< " response lacks network-synchronized argument.";
return;
}
std::move(callback).Run(network_synchronized);
}
SystemClockClient* g_instance = nullptr;
} // namespace
// The SystemClockClient implementation used in production.
class SystemClockClientImpl : public SystemClockClient {
public:
explicit SystemClockClientImpl(dbus::Bus* bus)
: can_set_time_(false),
can_set_time_initialized_(false),
system_clock_proxy_(nullptr) {
CHECK(bus);
InitDBus(bus);
}
SystemClockClientImpl(const SystemClockClientImpl&) = delete;
SystemClockClientImpl& operator=(const SystemClockClientImpl&) = delete;
~SystemClockClientImpl() override = default;
void AddObserver(Observer* observer) override {
observers_.AddObserver(observer);
}
void RemoveObserver(Observer* observer) override {
observers_.RemoveObserver(observer);
}
bool HasObserver(const Observer* observer) const override {
return observers_.HasObserver(observer);
}
void SetTime(int64_t time_in_seconds) override {
// Always try to set the time, because |can_set_time_| may be stale.
dbus::MethodCall method_call(system_clock::kSystemClockInterface,
system_clock::kSystemClockSet);
dbus::MessageWriter writer(&method_call);
writer.AppendInt64(time_in_seconds);
system_clock_proxy_->CallMethod(&method_call,
dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::DoNothing());
}
bool CanSetTime() override { return can_set_time_; }
void GetLastSyncInfo(GetLastSyncInfoCallback callback) override {
dbus::MethodCall method_call(system_clock::kSystemClockInterface,
system_clock::kSystemLastSyncInfo);
system_clock_proxy_->CallMethod(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(OnGetLastSyncInfo, std::move(callback)));
}
void WaitForServiceToBeAvailable(
dbus::ObjectProxy::WaitForServiceToBeAvailableCallback callback)
override {
system_clock_proxy_->WaitForServiceToBeAvailable(std::move(callback));
}
TestInterface* GetTestInterface() override { return nullptr; }
private:
void InitDBus(dbus::Bus* bus) {
system_clock_proxy_ = bus->GetObjectProxy(
system_clock::kSystemClockServiceName,
dbus::ObjectPath(system_clock::kSystemClockServicePath));
system_clock_proxy_->ConnectToSignal(
system_clock::kSystemClockInterface, system_clock::kSystemClockUpdated,
base::BindRepeating(&SystemClockClientImpl::TimeUpdatedReceived,
weak_ptr_factory_.GetWeakPtr()),
base::BindOnce(&SystemClockClientImpl::TimeUpdatedConnected,
weak_ptr_factory_.GetWeakPtr()));
WaitForServiceToBeAvailable(
base::BindOnce(&SystemClockClientImpl::ServiceInitiallyAvailable,
weak_ptr_factory_.GetWeakPtr()));
}
// Called once when the service initially becomes available (or immediately if
// it's already available).
void ServiceInitiallyAvailable(bool service_is_available) {
if (service_is_available)
GetCanSet();
else
LOG(ERROR) << "Failed to wait for D-Bus service availability";
}
// Called when a TimeUpdated signal is received.
void TimeUpdatedReceived(dbus::Signal* signal) {
VLOG(1) << "TimeUpdated signal received: " << signal->ToString();
dbus::MessageReader reader(signal);
for (auto& observer : observers_)
observer.SystemClockUpdated();
// Check if the system clock can be changed now.
GetCanSet();
}
// Called when the TimeUpdated signal is initially connected.
void TimeUpdatedConnected(const std::string& interface_name,
const std::string& signal_name,
bool success) {
LOG_IF(ERROR, !success) << "Failed to connect to TimeUpdated signal.";
}
// Callback for CanSetTime method.
void OnGetCanSet(dbus::Response* response) {
if (!response) {
VLOG(1) << "CanSetTime request failed.";
return;
}
dbus::MessageReader reader(response);
bool can_set_time;
if (!reader.PopBool(&can_set_time)) {
LOG(ERROR) << "CanSetTime response invalid: " << response->ToString();
return;
}
// Nothing to do if the CanSetTime response hasn't changed.
if (can_set_time_initialized_ && can_set_time_ == can_set_time)
return;
can_set_time_initialized_ = true;
can_set_time_ = can_set_time;
for (auto& observer : observers_)
observer.SystemClockCanSetTimeChanged(can_set_time);
}
// Check whether the time can be set.
void GetCanSet() {
dbus::MethodCall method_call(system_clock::kSystemClockInterface,
system_clock::kSystemClockCanSet);
dbus::MessageWriter writer(&method_call);
system_clock_proxy_->CallMethod(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&SystemClockClientImpl::OnGetCanSet,
weak_ptr_factory_.GetWeakPtr()));
}
// Whether the time can be set. Value is false until the first
// CanSetTime response is received.
bool can_set_time_;
bool can_set_time_initialized_;
raw_ptr<dbus::ObjectProxy> system_clock_proxy_;
base::ObserverList<Observer>::Unchecked observers_;
base::WeakPtrFactory<SystemClockClientImpl> weak_ptr_factory_{this};
};
SystemClockClient::SystemClockClient() {
CHECK(!g_instance);
g_instance = this;
}
SystemClockClient::~SystemClockClient() {
CHECK_EQ(this, g_instance);
g_instance = nullptr;
}
// static
void SystemClockClient::Initialize(dbus::Bus* bus) {
CHECK(bus);
new SystemClockClientImpl(bus);
}
// static
void SystemClockClient::InitializeFake() {
new FakeSystemClockClient();
}
// static
void SystemClockClient::Shutdown() {
CHECK(g_instance);
delete g_instance;
}
// static
SystemClockClient* SystemClockClient::Get() {
return g_instance;
}
} // namespace ash
|