blob: 96c1cfdedc24bed09319dfc8f3f1cb257c7e1e71 [file] [log] [blame]
// Copyright 2013 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.
#ifndef CHROMEOS_NETWORK_NETWORK_HANDLER_H_
#define CHROMEOS_NETWORK_NETWORK_HANDLER_H_
#include <memory>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/single_thread_task_runner.h"
#include "chromeos/chromeos_export.h"
class PrefService;
namespace chromeos {
class AutoConnectHandler;
class ClientCertResolver;
class GeolocationHandler;
class ManagedNetworkConfigurationHandler;
class ManagedNetworkConfigurationHandlerImpl;
class NetworkActivationHandler;
class NetworkCertMigrator;
class NetworkCertificateHandler;
class NetworkConfigurationHandler;
class NetworkConnectionHandler;
class NetworkDeviceHandler;
class NetworkDeviceHandlerImpl;
class NetworkProfileHandler;
class NetworkStateHandler;
class NetworkSmsHandler;
class ProhibitedTechnologiesHandler;
class UIProxyConfigService;
// Class for handling initialization and access to chromeos network handlers.
// This class should NOT be used in unit tests. Instead, construct individual
// classes independently.
class CHROMEOS_EXPORT NetworkHandler {
public:
// Sets the global instance. Must be called before any calls to Get().
static void Initialize();
// Destroys the global instance.
static void Shutdown();
// Gets the global instance. Initialize() must be called first.
static NetworkHandler* Get();
// Returns true if the global instance has been initialized.
static bool IsInitialized();
// Called whenever the pref services change, e.g. on login. Initializes
// services with PrefService dependencies (i.e. ui_proxy_config_service).
// |logged_in_profile_prefs| is the PrefService associated with the logged
// in user profile. |device_prefs| is the PrefService associated with the
// device (e.g. in Chrome, g_browser_process->local_state()).
void InitializePrefServices(PrefService* logged_in_profile_prefs,
PrefService* device_prefs);
// Must be called before pref services are shut down.
void ShutdownPrefServices();
// Returns the task runner for posting NetworkHandler calls from other
// threads.
base::SingleThreadTaskRunner* task_runner() { return task_runner_.get(); }
// Do not use these accessors within this module; all dependencies should be
// explicit so that classes can be constructed explicitly in tests without
// NetworkHandler.
AutoConnectHandler* auto_connect_handler();
NetworkStateHandler* network_state_handler();
NetworkDeviceHandler* network_device_handler();
NetworkProfileHandler* network_profile_handler();
NetworkConfigurationHandler* network_configuration_handler();
ManagedNetworkConfigurationHandler* managed_network_configuration_handler();
NetworkActivationHandler* network_activation_handler();
NetworkCertificateHandler* network_certificate_handler();
NetworkConnectionHandler* network_connection_handler();
NetworkSmsHandler* network_sms_handler();
GeolocationHandler* geolocation_handler();
ProhibitedTechnologiesHandler* prohibited_technologies_handler();
// Global network configuration services.
UIProxyConfigService* ui_proxy_config_service();
private:
NetworkHandler();
virtual ~NetworkHandler();
void Init();
// The order of these determines the (inverse) destruction order.
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
std::unique_ptr<NetworkStateHandler> network_state_handler_;
std::unique_ptr<NetworkDeviceHandlerImpl> network_device_handler_;
std::unique_ptr<NetworkProfileHandler> network_profile_handler_;
std::unique_ptr<NetworkConfigurationHandler> network_configuration_handler_;
std::unique_ptr<ManagedNetworkConfigurationHandlerImpl>
managed_network_configuration_handler_;
std::unique_ptr<NetworkCertMigrator> network_cert_migrator_;
std::unique_ptr<NetworkCertificateHandler> network_certificate_handler_;
std::unique_ptr<ClientCertResolver> client_cert_resolver_;
std::unique_ptr<NetworkActivationHandler> network_activation_handler_;
std::unique_ptr<NetworkConnectionHandler> network_connection_handler_;
std::unique_ptr<AutoConnectHandler> auto_connect_handler_;
std::unique_ptr<NetworkSmsHandler> network_sms_handler_;
std::unique_ptr<GeolocationHandler> geolocation_handler_;
std::unique_ptr<ProhibitedTechnologiesHandler>
prohibited_technologies_handler_;
std::unique_ptr<UIProxyConfigService> ui_proxy_config_service_;
DISALLOW_COPY_AND_ASSIGN(NetworkHandler);
};
} // namespace chromeos
#endif // CHROMEOS_NETWORK_NETWORK_HANDLER_H_