mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-17 07:50:10 -07:00
85 lines
1.8 KiB
C++
85 lines
1.8 KiB
C++
/*
|
|
Copyright (c) 2016-2020 Peter Antypas
|
|
|
|
This file is part of the MAIANA™ transponder firmware.
|
|
|
|
The firmware is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
|
|
#include "Events.hpp"
|
|
#include <algorithm>
|
|
#include "printf_serial.h"
|
|
|
|
|
|
EventPool &EventPool::instance()
|
|
{
|
|
static EventPool __instance;
|
|
return __instance;
|
|
}
|
|
|
|
void EventPool::init()
|
|
{
|
|
mISRPool = new ObjectPool<Event>(40);
|
|
mThreadPool = new ObjectPool<Event>(10);
|
|
}
|
|
|
|
Event *EventPool::newEvent(EventType type)
|
|
{
|
|
Event *result = nullptr;
|
|
if ( Utils::inISR() )
|
|
{
|
|
result = mISRPool->get();
|
|
if ( result )
|
|
{
|
|
result->type = type;
|
|
result->flags = 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
result = mThreadPool->get();
|
|
if ( result )
|
|
{
|
|
result->type = type;
|
|
result->flags = 0;
|
|
}
|
|
}
|
|
|
|
|
|
//if ( !result)
|
|
//printf2_now("\r\n[DEBUG]newEvent(0x%.8x) failed\r\n", type);
|
|
|
|
return result;
|
|
}
|
|
|
|
void EventPool::deleteEvent(Event *event)
|
|
{
|
|
ASSERT(event);
|
|
if ( event->flags )
|
|
mISRPool->put(event);
|
|
else
|
|
mThreadPool->put(event);
|
|
}
|
|
|
|
uint32_t EventPool::maxUtilization()
|
|
{
|
|
return std::max(mISRPool->maxUtilization(), mThreadPool->maxUtilization());
|
|
}
|
|
|
|
uint32_t EventPool::utilization()
|
|
{
|
|
return std::max(mISRPool->utilization(), mThreadPool->utilization());
|
|
}
|