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
|
// Copyright 2017 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/tether/asynchronous_shutdown_object_container_impl.h"
#include "base/memory/ptr_util.h"
#include "chromeos/ash/components/tether/disconnect_tethering_request_sender_impl.h"
#include "chromeos/ash/components/tether/network_configuration_remover.h"
#include "chromeos/ash/components/tether/secure_channel_host_connection.h"
#include "chromeos/ash/components/tether/wifi_hotspot_disconnector_impl.h"
#include "chromeos/ash/services/device_sync/public/cpp/device_sync_client.h"
#include "chromeos/ash/services/secure_channel/public/cpp/client/secure_channel_client.h"
namespace ash::tether {
// static
AsynchronousShutdownObjectContainerImpl::Factory*
AsynchronousShutdownObjectContainerImpl::Factory::factory_instance_ =
nullptr;
// static
std::unique_ptr<AsynchronousShutdownObjectContainer>
AsynchronousShutdownObjectContainerImpl::Factory::Create(
device_sync::DeviceSyncClient* device_sync_client,
secure_channel::SecureChannelClient* secure_channel_client,
TetherHostFetcher* tether_host_fetcher,
NetworkStateHandler* network_state_handler,
ManagedNetworkConfigurationHandler* managed_network_configuration_handler,
NetworkConnectionHandler* network_connection_handler,
PrefService* pref_service) {
if (factory_instance_) {
return factory_instance_->CreateInstance(
device_sync_client, secure_channel_client, tether_host_fetcher,
network_state_handler, managed_network_configuration_handler,
network_connection_handler, pref_service);
}
return base::WrapUnique(new AsynchronousShutdownObjectContainerImpl(
device_sync_client, secure_channel_client, tether_host_fetcher,
network_state_handler, managed_network_configuration_handler,
network_connection_handler, pref_service));
}
// static
void AsynchronousShutdownObjectContainerImpl::Factory::SetFactoryForTesting(
Factory* factory) {
factory_instance_ = factory;
}
AsynchronousShutdownObjectContainerImpl::Factory::~Factory() = default;
AsynchronousShutdownObjectContainerImpl::
AsynchronousShutdownObjectContainerImpl(
device_sync::DeviceSyncClient* device_sync_client,
secure_channel::SecureChannelClient* secure_channel_client,
TetherHostFetcher* tether_host_fetcher,
NetworkStateHandler* network_state_handler,
ManagedNetworkConfigurationHandler*
managed_network_configuration_handler,
NetworkConnectionHandler* network_connection_handler,
PrefService* pref_service)
: tether_host_fetcher_(tether_host_fetcher),
host_connection_factory_(base::WrapUnique<HostConnection::Factory>(
new SecureChannelHostConnection::Factory(device_sync_client,
secure_channel_client,
tether_host_fetcher))),
disconnect_tethering_request_sender_(
DisconnectTetheringRequestSenderImpl::Factory::Create(
host_connection_factory_.get(),
tether_host_fetcher_)),
network_configuration_remover_(
std::make_unique<NetworkConfigurationRemover>(
managed_network_configuration_handler)),
wifi_hotspot_disconnector_(std::make_unique<WifiHotspotDisconnectorImpl>(
network_connection_handler,
network_state_handler,
pref_service,
network_configuration_remover_.get())) {}
AsynchronousShutdownObjectContainerImpl::
~AsynchronousShutdownObjectContainerImpl() = default;
void AsynchronousShutdownObjectContainerImpl::Shutdown(
base::OnceClosure shutdown_complete_callback) {
DCHECK(shutdown_complete_callback_.is_null());
shutdown_complete_callback_ = std::move(shutdown_complete_callback);
// The objects below require asynchronous shutdowns, so start observering
// these objects. Once they notify observers that they are finished shutting
// down, the asynchronous shutdown will complete.
disconnect_tethering_request_sender_->AddObserver(this);
ShutdownIfPossible();
}
TetherHostFetcher*
AsynchronousShutdownObjectContainerImpl::tether_host_fetcher() {
return tether_host_fetcher_;
}
HostConnection::Factory*
AsynchronousShutdownObjectContainerImpl::host_connection_factory() {
return host_connection_factory_.get();
}
DisconnectTetheringRequestSender*
AsynchronousShutdownObjectContainerImpl::disconnect_tethering_request_sender() {
return disconnect_tethering_request_sender_.get();
}
NetworkConfigurationRemover*
AsynchronousShutdownObjectContainerImpl::network_configuration_remover() {
return network_configuration_remover_.get();
}
WifiHotspotDisconnector*
AsynchronousShutdownObjectContainerImpl::wifi_hotspot_disconnector() {
return wifi_hotspot_disconnector_.get();
}
void AsynchronousShutdownObjectContainerImpl::
OnPendingDisconnectRequestsComplete() {
ShutdownIfPossible();
}
void AsynchronousShutdownObjectContainerImpl::ShutdownIfPossible() {
DCHECK(!shutdown_complete_callback_.is_null());
if (AreAsynchronousOperationsActive()) {
return;
}
disconnect_tethering_request_sender_->RemoveObserver(this);
std::move(shutdown_complete_callback_).Run();
}
bool AsynchronousShutdownObjectContainerImpl::
AreAsynchronousOperationsActive() {
// If there are pending disconnection requests, they must be sent before the
// component shuts down.
if (disconnect_tethering_request_sender_->HasPendingRequests()) {
return true;
}
return false;
}
void AsynchronousShutdownObjectContainerImpl::SetTestDoubles(
std::unique_ptr<DisconnectTetheringRequestSender>
disconnect_tethering_request_sender) {
disconnect_tethering_request_sender_ =
std::move(disconnect_tethering_request_sender);
}
} // namespace ash::tether
|