blob: a9f2ed60b0fc64d289ea6db0a6c85b214b301364 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 SRC_CONNECTIVITY_WEAVE_ADAPTATION_NETWORK_PROVISIONING_SERVER_IMPL_H_
#define SRC_CONNECTIVITY_WEAVE_ADAPTATION_NETWORK_PROVISIONING_SERVER_IMPL_H_
#include <Weave/DeviceLayer/internal/GenericNetworkProvisioningServerImpl.h>
namespace nl {
namespace Weave {
namespace DeviceLayer {
namespace Internal {
/**
* Concrete implementation of the NetworkProvisioningServer singleton object for the Fuchsia
* platform.
*/
class NetworkProvisioningServerImpl final
: public NetworkProvisioningServer,
public GenericNetworkProvisioningServerImpl<NetworkProvisioningServerImpl> {
private:
using GenericImplClass = GenericNetworkProvisioningServerImpl<NetworkProvisioningServerImpl>;
// Allow the NetworkProvisioningServer interface class to delegate method calls to
// the implementation methods provided by this class.
friend class ::nl::Weave::DeviceLayer::Internal::NetworkProvisioningServer;
// Allow the GenericNetworkProvisioningServerImpl base class to access helper methods
// and types defined on this class.
friend class GenericNetworkProvisioningServerImpl<NetworkProvisioningServerImpl>;
// ===== Members that implement the NetworkProvisioningServer public interface.
WEAVE_ERROR _Init(void);
void _OnPlatformEvent(const WeaveDeviceEvent* event);
// NOTE: Other public interface methods are implemented by GenericNetworkProvisioningServerImpl<>.
// ===== Members used by GenericNetworkProvisioningServerImpl<> to invoke platform-specific
// operations.
WEAVE_ERROR GetWiFiStationProvision(NetworkInfo& netInfo, bool includeCredentials);
WEAVE_ERROR SetWiFiStationProvision(const NetworkInfo& netInfo);
WEAVE_ERROR ClearWiFiStationProvision(void);
WEAVE_ERROR InitiateWiFiScan(void);
void HandleScanDone(void);
static NetworkProvisioningServerImpl& Instance(void);
static void HandleScanTimeOut(::nl::Weave::System::Layer* aLayer, void* aAppState,
::nl::Weave::System::Error aError);
static bool IsSupportedWiFiSecurityType(WiFiSecurityType_t wifiSecType);
// ===== Members for internal use by the following friends.
friend ::nl::Weave::DeviceLayer::Internal::NetworkProvisioningServer& NetworkProvisioningSvr(
void);
friend NetworkProvisioningServerImpl& NetworkProvisioningSvrImpl(void);
static NetworkProvisioningServerImpl sInstance;
};
/**
* Returns a reference to the public interface of the NetworkProvisioningServer singleton object.
*
* Internal components should use this to access features of the NetworkProvisioningServer object
* that are common to all platforms.
*/
inline NetworkProvisioningServer& NetworkProvisioningSvr(void) {
return NetworkProvisioningServerImpl::sInstance;
}
/**
* Returns the platform-specific implementation of the NetworkProvisioningServer singleton object.
*
* Internal components can use this to gain access to features of the NetworkProvisioningServer
* that are specific to the Fuchsia platform.
*/
inline NetworkProvisioningServerImpl& NetworkProvisioningSvrImpl(void) {
return NetworkProvisioningServerImpl::sInstance;
}
} // namespace Internal
} // namespace DeviceLayer
} // namespace Weave
} // namespace nl
#endif // SRC_CONNECTIVITY_WEAVE_ADAPTATION_NETWORK_PROVISIONING_SERVER_IMPL_H_