blob: 7cb269cf0b3c31d3e74a97033e8ffedae9dab1c5 [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.
*/
#include "GenericOTARequestorDriver.h"
#include <platform/CHIPDeviceLayer.h>
#include <platform/OTAImageProcessor.h>
#include <platform/OTARequestorInterface.h>
namespace chip {
namespace DeviceLayer {
namespace {
using namespace app::Clusters::OtaSoftwareUpdateRequestor;
GenericOTARequestorDriver * ToDriver(void * context)
{
return static_cast<GenericOTARequestorDriver *>(context);
}
constexpr System::Clock::Seconds32 kDefaultDelayedActionTime = System::Clock::Seconds32(120);
} // namespace
bool GenericOTARequestorDriver::CanConsent()
{
return false;
}
uint16_t GenericOTARequestorDriver::GetMaxDownloadBlockSize()
{
return 1024;
}
void GenericOTARequestorDriver::HandleError(UpdateFailureState state, CHIP_ERROR error)
{
// TODO: Schedule the next QueryImage
}
void GenericOTARequestorDriver::UpdateAvailable(const UpdateDescription & update, System::Clock::Seconds32 delay)
{
VerifyOrDie(mRequestor != nullptr);
ScheduleDelayedAction(UpdateFailureState::kDownloading, delay,
[](System::Layer *, void * context) { ToDriver(context)->mRequestor->DownloadUpdate(); });
}
void GenericOTARequestorDriver::UpdateNotFound(UpdateNotFoundReason reason, System::Clock::Seconds32 delay)
{
VerifyOrDie(mRequestor != nullptr);
if (delay < kDefaultDelayedActionTime)
{
delay = kDefaultDelayedActionTime;
}
ScheduleDelayedAction(UpdateFailureState::kQuerying, delay,
[](System::Layer *, void * context) { ToDriver(context)->mRequestor->TriggerImmediateQuery(); });
}
void GenericOTARequestorDriver::UpdateDownloaded()
{
VerifyOrDie(mRequestor != nullptr);
mRequestor->ApplyUpdate();
}
void GenericOTARequestorDriver::UpdateConfirmed(System::Clock::Seconds32 delay)
{
VerifyOrDie(mImageProcessor != nullptr);
ScheduleDelayedAction(UpdateFailureState::kApplying, delay,
[](System::Layer *, void * context) { ToDriver(context)->mImageProcessor->Apply(); });
}
void GenericOTARequestorDriver::UpdateSuspended(System::Clock::Seconds32 delay)
{
VerifyOrDie(mRequestor != nullptr);
if (delay < kDefaultDelayedActionTime)
{
delay = kDefaultDelayedActionTime;
}
ScheduleDelayedAction(UpdateFailureState::kAwaitingNextAction, delay,
[](System::Layer *, void * context) { ToDriver(context)->mRequestor->ApplyUpdate(); });
}
void GenericOTARequestorDriver::UpdateDiscontinued()
{
VerifyOrDie(mImageProcessor != nullptr);
mImageProcessor->Abort();
}
void GenericOTARequestorDriver::UpdateCancelled()
{
// Platform might choose to schedule a retry here
}
void GenericOTARequestorDriver::ScheduleDelayedAction(UpdateFailureState state, System::Clock::Seconds32 delay,
System::TimerCompleteCallback action)
{
CHIP_ERROR error = SystemLayer().StartTimer(std::chrono::duration_cast<System::Clock::Timeout>(delay), action, this);
if (error != CHIP_NO_ERROR)
{
HandleError(state, error);
}
}
} // namespace DeviceLayer
} // namespace chip