2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
#include <LibCore/CTimer.h>
|
2019-03-30 20:40:27 +00:00
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
CTimer::CTimer(CObject* parent)
|
2019-04-10 15:01:54 +00:00
|
|
|
: CObject(parent)
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-04-14 03:44:15 +00:00
|
|
|
CTimer::CTimer(int interval, Function<void()>&& timeout_handler, CObject* parent)
|
|
|
|
: CObject(parent)
|
|
|
|
, on_timeout(move(timeout_handler))
|
|
|
|
{
|
|
|
|
start(interval);
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
CTimer::~CTimer()
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
void CTimer::start()
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
start(m_interval);
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
void CTimer::start(int interval)
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
if (m_active)
|
|
|
|
return;
|
2019-04-14 03:44:15 +00:00
|
|
|
m_interval = interval;
|
2019-03-30 20:40:27 +00:00
|
|
|
start_timer(interval);
|
|
|
|
m_active = true;
|
|
|
|
}
|
|
|
|
|
2019-04-18 02:38:04 +00:00
|
|
|
void CTimer::restart(int interval)
|
|
|
|
{
|
|
|
|
if (m_active)
|
|
|
|
stop();
|
|
|
|
start(interval);
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
void CTimer::stop()
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
if (!m_active)
|
|
|
|
return;
|
|
|
|
stop_timer();
|
|
|
|
m_active = false;
|
|
|
|
}
|
|
|
|
|
2019-04-11 22:09:45 +00:00
|
|
|
void CTimer::timer_event(CTimerEvent&)
|
2019-03-30 20:40:27 +00:00
|
|
|
{
|
|
|
|
if (m_single_shot)
|
|
|
|
stop();
|
2019-04-18 02:38:04 +00:00
|
|
|
else {
|
|
|
|
if (m_interval_dirty) {
|
|
|
|
stop();
|
|
|
|
start(m_interval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-30 20:40:27 +00:00
|
|
|
if (on_timeout)
|
|
|
|
on_timeout();
|
|
|
|
}
|