Skip to content

Commit

Permalink
Implement callback timer deferred with priority option
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Luzeiro committed Sep 8, 2024
1 parent 1bb9801 commit c3c03a1
Show file tree
Hide file tree
Showing 4 changed files with 1,426 additions and 0 deletions.
209 changes: 209 additions & 0 deletions include/etl/callback_timer_deferred_locked.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2021 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/

#ifndef ETL_CALLBACK_TIMER_DEFERRED_LOCKED_INCLUDED
#define ETL_CALLBACK_TIMER_DEFERRED_LOCKED_INCLUDED

#include "callback_timer_locked.h"
#include "etl/nullptr.h"
#include "etl/optional.h"
#include "priority_queue.h"
#include "delegate.h"


namespace etl
{
//***************************************************************************
/// The deferred callback timer
//***************************************************************************
template <uint_least8_t MAX_TIMERS_, uint32_t MAX_HANDLERS_>
class callback_timer_deferred_locked : public etl::icallback_timer_locked
{
public:

ETL_STATIC_ASSERT(MAX_TIMERS_ <= 254U, "No more than 254 timers are allowed");

typedef icallback_timer_locked::callback_type callback_type;
typedef icallback_timer_locked::try_lock_type try_lock_type;
typedef icallback_timer_locked::lock_type lock_type;
typedef icallback_timer_locked::unlock_type unlock_type;

private:
class CallbackNode {
public:
callback_type callback;
uint_least8_t priority;
CallbackNode(callback_type &callback_,uint_least8_t priority_) : callback(callback_), priority(priority_) {}
bool operator < (const CallbackNode& p) const
{
return this->priority > p.priority; // comparison was inverted here to easy the code design
}
};

public:
//*******************************************
/// Constructor.
//*******************************************
callback_timer_deferred_locked()
: icallback_timer_locked(timer_array, MAX_TIMERS_)
{
}

//*******************************************
/// Constructor.
//*******************************************
callback_timer_deferred_locked(try_lock_type try_lock_, lock_type lock_, unlock_type unlock_)
: icallback_timer_locked(timer_array, MAX_TIMERS_)
{
this->set_locks(try_lock_, lock_, unlock_);
}

// Implement virtual functions

bool tick(uint32_t count) final
{
if (enabled)
{
if (try_lock())
{
// We have something to do?
bool has_active = !active_list.empty();

if (has_active)
{
while (has_active && (count >= active_list.front().delta))
{
timer_data& timer = active_list.front();

count -= timer.delta;

active_list.remove(timer.id, true);

if (timer.callback.is_valid())
{
if (!handler_queue.full())
{
handler_queue.push(CallbackNode(timer.callback, timer_priorities[timer.id]));
}
}

if (timer.repeating)
{
// Reinsert the timer.
timer.delta = timer.period;
active_list.insert(timer.id);
}

has_active = !active_list.empty();
}

if (has_active)
{
// Subtract any remainder from the next due timeout.
active_list.front().delta -= count;
}
}

unlock();

return true;
}
}

return false;
}

//*******************************************
/// Handles the work collected during the tick() call
/// You can call this function after tick()
/// or you can call this on another task to handle the timer events.
//*******************************************
void handle_deferred(void)
{
callback_type work_todo_callback;
do
{
lock();
if (handler_queue.empty())
{
work_todo_callback.clear();
}
else
{
CallbackNode &work_todo_callback_node = handler_queue.top();
work_todo_callback = work_todo_callback_node.callback;
handler_queue.pop();
}
unlock();

work_todo_callback.call_if();
}while (work_todo_callback.is_valid());
}

// Overloads

//*******************************************
/// Register a timer.
//*******************************************
etl::timer::id::type register_timer(const callback_type& callback_,
uint32_t period_,
bool repeating_)
{
return register_timer(callback_, period_, repeating_, 0);
}

//*******************************************
/// Register a timer with priority.
/// priority_ 0 is highest priority, 255 is lowest
/// Suggestion: this could be used as amonth of work to do and
/// less work will be done in first place.
//*******************************************
etl::timer::id::type register_timer(const callback_type& callback_,
uint32_t period_,
bool repeating_,
uint_least8_t priority_)
{
etl::timer::id::type id = icallback_timer_locked::register_timer(callback_, period_, repeating_);

if (id != etl::timer::id::NO_TIMER)
{
timer_priorities[id] = priority_;
}

return id;
}

private:

priority_queue<CallbackNode, MAX_HANDLERS_> handler_queue;
uint_least8_t timer_priorities[MAX_TIMERS_];
timer_data timer_array[MAX_TIMERS_];
};
}

#endif
3 changes: 3 additions & 0 deletions include/etl/callback_timer_locked.h
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,9 @@ namespace etl
template <uint_least8_t>
friend class callback_timer_locked;

template <uint_least8_t, uint32_t>
friend class callback_timer_deferred_locked;

const uint_least8_t MAX_TIMERS;
};

Expand Down
1 change: 1 addition & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ add_executable(etl_tests
test_callback_timer_atomic.cpp
test_callback_timer_interrupt.cpp
test_callback_timer_locked.cpp
test_callback_timer_deferred_locked.cpp
test_char_traits.cpp
test_checksum.cpp
test_circular_buffer.cpp
Expand Down
Loading

0 comments on commit c3c03a1

Please sign in to comment.