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
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_ASH_COMPONENTS_NETWORK_HOTSPOT_CAPABILITIES_PROVIDER_H_
#define CHROMEOS_ASH_COMPONENTS_NETWORK_HOTSPOT_CAPABILITIES_PROVIDER_H_
#include <memory>
#include <optional>
#include <vector>
#include "base/component_export.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/scoped_observation.h"
#include "base/values.h"
#include "chromeos/ash/components/dbus/shill/shill_property_changed_observer.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "chromeos/ash/components/network/network_state_handler_observer.h"
#include "chromeos/ash/services/hotspot_config/public/mojom/cros_hotspot_config.mojom.h"
namespace ash {
class NetworkStateHandler;
// This class caches hotspot related status and implements methods to get
// current state, active client count, capabilities and configure the hotspot
// configurations.
class COMPONENT_EXPORT(CHROMEOS_NETWORK) HotspotCapabilitiesProvider
: public ShillPropertyChangedObserver,
public NetworkStateHandlerObserver {
public:
class Observer : public base::CheckedObserver {
public:
~Observer() override = default;
// Invoked when hotspot capabilities is changed.
virtual void OnHotspotCapabilitiesChanged() = 0;
};
// Represents the hotspot capabilities. Includes:
// 1. The allow status that is calculated from the combination Shill Tethering
// Capabilities and Shill Tethering Readiness check result and policy allow
// status.
// 2. List of allowed WiFi security modes for WiFi downstream.
struct HotspotCapabilities {
explicit HotspotCapabilities(
const hotspot_config::mojom::HotspotAllowStatus allow_status);
~HotspotCapabilities();
hotspot_config::mojom::HotspotAllowStatus allow_status;
std::vector<hotspot_config::mojom::WiFiSecurityMode> allowed_security_modes;
};
// Represents the check tethering readiness result.
enum class CheckTetheringReadinessResult {
kReady = 0,
kNotAllowed = 1,
kNotAllowedByCarrier = 2,
kNotAllowedOnFW = 3,
kNotAllowedOnVariant = 4,
kNotAllowedUserNotEntitled = 5,
kUpstreamNetworkNotAvailable = 6,
kShillOperationFailed = 7,
kUnknownResult = 8,
};
HotspotCapabilitiesProvider();
HotspotCapabilitiesProvider(const HotspotCapabilitiesProvider&) = delete;
HotspotCapabilitiesProvider& operator=(const HotspotCapabilitiesProvider&) =
delete;
~HotspotCapabilitiesProvider() override;
void Init(NetworkStateHandler* network_state_handler,
HotspotAllowedFlagHandler* hotspot_allowed_flag_handler);
// Return the latest hotspot capabilities
const HotspotCapabilities& GetHotspotCapabilities() const;
// Return callback for the CheckTetheringReadiness method.
using CheckTetheringReadinessCallback =
base::OnceCallback<void(CheckTetheringReadinessResult result)>;
// Check tethering readiness and update the hotspot_capabilities_ if
// necessary. |callback| is called with check readiness result.
void CheckTetheringReadiness(CheckTetheringReadinessCallback callback);
void SetPolicyAllowed(bool allowed);
void AddObserver(Observer* observer);
void RemoveObserver(Observer* observer);
bool HasObserver(Observer* observer) const;
private:
friend class HotspotMetricsHelperTest;
friend class HotspotFeatureUsageMetricsTest;
friend class HotspotControllerTest;
friend class HotspotControllerConcurrencyApiTest;
// ShillPropertyChangedObserver overrides
void OnPropertyChanged(const std::string& key,
const base::Value& value) override;
// NetworkStateHandlerObserver
void NetworkConnectionStateChanged(const NetworkState* network) override;
void OnShuttingDown() override;
// Callback to handle the manager properties with hotspot related properties.
void OnManagerProperties(std::optional<base::Value::Dict> properties);
// Update the hotspot allow status with the given |new_allow_status|
// and then notify observers if it changes.
void SetHotspotAllowStatus(
hotspot_config::mojom::HotspotAllowStatus new_allow_status);
// Notify observer that hotspot capabilities was changed.
void NotifyHotspotCapabilitiesChanged();
// Update the cached hotspot_capabilities_ from the tethering capabilities
// values from Shill. This function is called whenever the tethering
// capabilities value is changed in Shill.
void UpdateHotspotCapabilities(const base::Value::Dict& capabilities);
// Callback when the CheckTetheringReadiness operation succeeded.
void OnCheckReadinessSuccess(CheckTetheringReadinessCallback callback,
const std::string& result);
// Callback when the CheckTetheringReadiness operation failed.
void OnCheckReadinessFailure(CheckTetheringReadinessCallback callback,
const std::string& error_name,
const std::string& error_message);
void ResetNetworkStateHandler();
HotspotCapabilities hotspot_capabilities_{
hotspot_config::mojom::HotspotAllowStatus::kDisallowedNoCellularUpstream};
bool policy_allow_hotspot_ = true;
raw_ptr<NetworkStateHandler> network_state_handler_ = nullptr;
raw_ptr<HotspotAllowedFlagHandler> hotspot_allowed_flag_handler_;
base::ScopedObservation<NetworkStateHandler, NetworkStateHandlerObserver>
network_state_handler_observer_{this};
base::ObserverList<Observer> observer_list_;
base::WeakPtrFactory<HotspotCapabilitiesProvider> weak_ptr_factory_{this};
};
} // namespace ash
#endif // CHROMEOS_ASH_COMPONENTS_NETWORK_HOTSPOT_CAPABILITIES_PROVIDER_H_
|