blob: 41b4df2738dc0a67ac64262814283af1b6630e9f [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 CommissioningTimerFunction(System::Layer * layer, void * aAppState, CHIP_ERROR aError)
{
DeviceControlServer * server = reinterpret_cast<DeviceControlServer *>(aAppState);
server->CommissioningFailedTimerComplete(aError);
}
DeviceControlServer DeviceControlServer::sInstance;
DeviceControlServer & DeviceControlServer::DeviceControlSvr()
{
return sInstance;
}
void DeviceControlServer::CommissioningFailedTimerComplete(CHIP_ERROR aError)
{
ChipDeviceEvent event;
event.Type = DeviceEventType::kCommissioningComplete;
event.CommissioningComplete.status = CHIP_ERROR_TIMEOUT;
PlatformMgr().PostEvent(&event);
}
CHIP_ERROR DeviceControlServer::ArmFailSafe(uint16_t expiryLengthSeconds)
{
uint32_t timerMs = expiryLengthSeconds * 1000;
SystemLayer.StartTimer(timerMs, CommissioningTimerFunction, this);
return CHIP_NO_ERROR;
}
CHIP_ERROR DeviceControlServer::DisarmFailSafe()
{
// TODO
return CHIP_ERROR_NOT_IMPLEMENTED;
}
CHIP_ERROR DeviceControlServer::CommissioningComplete()
{
SystemLayer.CancelTimer(CommissioningTimerFunction, this);
ChipDeviceEvent event;
event.Type = DeviceEventType::kCommissioningComplete;
event.CommissioningComplete.status = CHIP_NO_ERROR;
PlatformMgr().PostEvent(&event);
return CHIP_NO_ERROR;
}
CHIP_ERROR DeviceControlServer::SetRegulatoryConfig(uint8_t location, const char * countryCode, uint64_t breadcrumb)
{
CHIP_ERROR err = CHIP_NO_ERROR;
err = ConfigurationMgr().StoreRegulatoryLocation(location);
SuccessOrExit(err);
err = ConfigurationMgr().StoreCountryCode(countryCode, strlen(countryCode));
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