blob: 5f4198daea3f877ecc52cdcea2aeacca58ffa0a3 [file] [log] [blame]
/*
*
* Copyright (c) 2021 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.
*/
/**
* @file
* Provides the implementation of the DeviceControlServer object.
*/
#include <platform/internal/DeviceControlServer.h>
#include <platform/ConfigurationManager.h>
namespace chip {
namespace DeviceLayer {
namespace Internal {
void HandleArmFailSafe(System::Layer * layer, void * aAppState)
{
DeviceControlServer * server = reinterpret_cast<DeviceControlServer *>(aAppState);
server->CommissioningFailedTimerComplete();
}
DeviceControlServer DeviceControlServer::sInstance;
DeviceControlServer & DeviceControlServer::DeviceControlSvr()
{
return sInstance;
}
void DeviceControlServer::CommissioningFailedTimerComplete()
{
ChipDeviceEvent event;
event.Type = DeviceEventType::kCommissioningComplete;
event.CommissioningComplete.status = CHIP_ERROR_TIMEOUT;
CHIP_ERROR status = PlatformMgr().PostEvent(&event);
if (status != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Failed to post commissioning complete: %" CHIP_ERROR_FORMAT, status.Format());
}
}
CHIP_ERROR DeviceControlServer::ArmFailSafe(System::Clock::Timeout expiryLength)
{
DeviceLayer::SystemLayer().StartTimer(expiryLength, HandleArmFailSafe, this);
return CHIP_NO_ERROR;
}
CHIP_ERROR DeviceControlServer::DisarmFailSafe()
{
DeviceLayer::SystemLayer().CancelTimer(HandleArmFailSafe, this);
return CHIP_NO_ERROR;
}
CHIP_ERROR DeviceControlServer::CommissioningComplete()
{
VerifyOrReturnError(CHIP_NO_ERROR == DisarmFailSafe(), CHIP_ERROR_INTERNAL);
ChipDeviceEvent event;
event.Type = DeviceEventType::kCommissioningComplete;
event.CommissioningComplete.status = CHIP_NO_ERROR;
return PlatformMgr().PostEvent(&event);
}
CHIP_ERROR DeviceControlServer::SetRegulatoryConfig(uint8_t location, const CharSpan & countryCode, uint64_t breadcrumb)
{
CHIP_ERROR err = CHIP_NO_ERROR;
err = ConfigurationMgr().StoreRegulatoryLocation(location);
SuccessOrExit(err);
err = ConfigurationMgr().StoreCountryCode(countryCode.data(), countryCode.size());
SuccessOrExit(err);
err = ConfigurationMgr().StoreBreadcrumb(breadcrumb);
SuccessOrExit(err);
exit:
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "SetRegulatoryConfig failed with error: %s", ErrorStr(err));
}
// TODO(cecille): This command fails on ESP32, but it's blocking IP cluster-based commissioning so for now just return a success
// status.
return CHIP_NO_ERROR;
}
CHIP_ERROR DeviceControlServer::EnableNetworkForOperational(ByteSpan networkID)
{
ChipDeviceEvent event;
event.Type = DeviceEventType::kOperationalNetworkEnabled;
// TODO(cecille): This should be some way to specify thread or wifi.
event.OperationalNetwork.network = 0;
PlatformMgr().DispatchEvent(&event);
return CHIP_NO_ERROR;
}
} // namespace Internal
} // namespace DeviceLayer
} // namespace chip