-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ReadHandler] ReportScheduler Injection (#28497)
* Moved the default report scheduler to the application code and added a pointer to a report scheduler in ServerInitParams so it gets injected * Restyled by clang-format * Added a default ReportScheduler to the server init * Restyled by clang-format * Removed the double instanciation of report scheduler in ESP32 to reduce ram usage * Restyled by clang-format * Removed instanciation of ReportScheduler in examples as the default is now in Common Server Init params * Restyled by clang-format * Removed un-necessary mention to CommonCaseDeviceServerInitParams, restore CHIPConfig Synchronous reports to 0 --------- Co-authored-by: Restyled.io <commits@restyled.io>
- Loading branch information
1 parent
94686f5
commit a70d5b4
Showing
7 changed files
with
110 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* | ||
* Copyright (c) 2023 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 <app/InteractionModelEngine.h> | ||
#include <app/TimerDelegates.h> | ||
#include <system/SystemClock.h> | ||
|
||
using TimerContext = chip::app::reporting::TimerContext; | ||
using Timeout = chip::System::Clock::Timeout; | ||
|
||
namespace chip { | ||
namespace app { | ||
|
||
static void TimerCallbackInterface(System::Layer * aLayer, void * aAppState) | ||
{ | ||
TimerContext * context = static_cast<TimerContext *>(aAppState); | ||
context->TimerFired(); | ||
} | ||
CHIP_ERROR DefaultTimerDelegate::StartTimer(TimerContext * context, Timeout aTimeout) | ||
{ | ||
return InteractionModelEngine::GetInstance()->GetExchangeManager()->GetSessionManager()->SystemLayer()->StartTimer( | ||
aTimeout, TimerCallbackInterface, context); | ||
} | ||
void DefaultTimerDelegate::CancelTimer(TimerContext * context) | ||
{ | ||
InteractionModelEngine::GetInstance()->GetExchangeManager()->GetSessionManager()->SystemLayer()->CancelTimer( | ||
TimerCallbackInterface, context); | ||
} | ||
bool DefaultTimerDelegate::IsTimerActive(TimerContext * context) | ||
{ | ||
return InteractionModelEngine::GetInstance()->GetExchangeManager()->GetSessionManager()->SystemLayer()->IsTimerActive( | ||
TimerCallbackInterface, context); | ||
} | ||
|
||
System::Clock::Timestamp DefaultTimerDelegate::GetCurrentMonotonicTimestamp() | ||
{ | ||
return System::SystemClock().GetMonotonicTimestamp(); | ||
} | ||
|
||
} // namespace app | ||
} // namespace chip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters