blob: 6311eea9bae15e95d55712522fd8f8d727c6ca60 [file] [log] [blame]
/*
*
* Copyright (c) 2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <platform/Darwin/NetworkCommissioningDriver.h>
namespace chip {
namespace DeviceLayer {
namespace NetworkCommissioning {
class DarwinWiFiDriver final : public WiFiDriver
{
public:
// BaseDriver
CHIP_ERROR Init(BaseDriver::NetworkStatusChangeCallback * networkStatusChangeCallback) override;
void Shutdown() override;
NetworkIterator * GetNetworks() override;
// WirelessDriver
uint8_t GetMaxNetworks() override;
uint8_t GetScanNetworkTimeoutSeconds() override;
uint8_t GetConnectNetworkTimeoutSeconds() override;
CHIP_ERROR CommitConfiguration() override;
CHIP_ERROR RevertConfiguration() override;
Status RemoveNetwork(ByteSpan ssid, MutableCharSpan & outText, uint8_t & outIndex) override;
Status ReorderNetwork(ByteSpan ssid, uint8_t index, MutableCharSpan & outText) override;
void ConnectNetwork(ByteSpan ssid, ConnectCallback * callback) override;
// WiFiDriver
Status AddOrUpdateNetwork(ByteSpan ssid, ByteSpan credentials, MutableCharSpan & outText, uint8_t & outIndex) override;
void ScanNetworks(ByteSpan ssid, ScanCallback * callback) override;
private:
void DispatchScanNetworksResponse(ScanCallback * callback, Status status, Iterator<WiFiScanResponse> * responses = nullptr);
void DispatchConnectNetworkResponse(ConnectCallback * callback, Status status);
WiFiNetworkInfos mNetwork;
NetworkStatusChangeCallback * mStatusChangeCallback = nullptr;
};
} // namespace NetworkCommissioning
} // namespace DeviceLayer
} // namespace chip