blob: 6c057e5f6e97518dab11c44ced8c44e399ab0453 [file] [log] [blame]
/*
*
* Copyright (c) 2025 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
* This file declares an implementation of System::Layer dedicated to Zephyr RTOS, which
* does not use select().
*/
#pragma once
#include <optional>
#include <lib/support/ObjectLifeCycle.h>
#include <system/SystemLayer.h>
#include <system/SystemTimer.h>
namespace chip {
namespace System {
class LayerImplZephyr : public Layer
{
public:
LayerImplZephyr();
~LayerImplZephyr() { VerifyOrDie(mLayerState.Destroy()); }
// Layer overrides.
CHIP_ERROR Init() override;
void Shutdown() override;
bool IsInitialized() const override { return mLayerState.IsInitialized(); }
CHIP_ERROR StartTimer(Clock::Timeout delay, TimerCompleteCallback onComplete, void * appState) override;
CHIP_ERROR ExtendTimerTo(Clock::Timeout delay, TimerCompleteCallback onComplete, void * appState) override;
bool IsTimerActive(TimerCompleteCallback onComplete, void * appState) override;
Clock::Timeout GetRemainingTime(TimerCompleteCallback onComplete, void * appState) override;
void CancelTimer(TimerCompleteCallback onComplete, void * appState) override;
CHIP_ERROR ScheduleWork(TimerCompleteCallback onComplete, void * appState) override;
public:
std::optional<Clock::Timestamp> GetNextAwakenTime();
CHIP_ERROR HandlePlatformTimer();
private:
friend class PlatformEventing;
void TriggerPlatformTimerUpdate();
TimerPool<TimerList::Node> mTimerPool;
TimerList mTimerList;
// List of expired timers being processed right now. Stored in a member so
// we can cancel them.
TimerList mExpiredTimers;
ObjectLifeCycle mLayerState;
};
using LayerImpl = LayerImplZephyr;
} // namespace System
} // namespace chip