mirror of https://github.com/nymea/nymea.git
154 lines
3.8 KiB
C++
154 lines
3.8 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU version 3. This project 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 project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "scriptalarm.h"
|
|
#include "loggingcategories.h"
|
|
|
|
#include <QTimer>
|
|
|
|
ScriptAlarm::ScriptAlarm(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
|
|
QTime ScriptAlarm::time() const
|
|
{
|
|
return m_time;
|
|
}
|
|
|
|
void ScriptAlarm::setTime(const QTime &time)
|
|
{
|
|
if (m_time != time) {
|
|
m_time = time;
|
|
emit timeChanged();
|
|
|
|
if (!time.isValid()) {
|
|
qCWarning(dcScriptEngine()) << "Invalid time:" << time;
|
|
}
|
|
|
|
if (time.isValid() && m_timerId == 0) {
|
|
m_timerId = startTimer(1000, Qt::VeryCoarseTimer);
|
|
} else if (!time.isValid() && m_timerId != 0) {
|
|
killTimer(m_timerId);
|
|
}
|
|
|
|
updateActive();
|
|
}
|
|
}
|
|
|
|
QTime ScriptAlarm::endTime() const
|
|
{
|
|
return m_endTime;
|
|
}
|
|
|
|
void ScriptAlarm::setEndTime(const QTime &endTime)
|
|
{
|
|
if (m_endTime != endTime) {
|
|
m_endTime = endTime;
|
|
emit endTimeChanged();
|
|
|
|
updateActive();
|
|
}
|
|
}
|
|
|
|
ScriptAlarm::WeekDays ScriptAlarm::weekDays() const
|
|
{
|
|
return m_weekDays;
|
|
}
|
|
|
|
void ScriptAlarm::setWeekDays(const WeekDays &weekDays)
|
|
{
|
|
if (m_weekDays != weekDays) {
|
|
m_weekDays = weekDays;
|
|
emit weekDaysChanged();
|
|
|
|
updateActive();
|
|
}
|
|
}
|
|
|
|
bool ScriptAlarm::active() const
|
|
{
|
|
return m_active;
|
|
}
|
|
|
|
void ScriptAlarm::timerEvent(QTimerEvent *event)
|
|
{
|
|
Q_UNUSED(event)
|
|
|
|
QTime now = QTime::currentTime();
|
|
|
|
|
|
updateActive();
|
|
|
|
if (!m_weekDays.testFlag(today())) {
|
|
return;
|
|
}
|
|
if (!m_weekDays.testFlag(today())) {
|
|
return;
|
|
}
|
|
if (m_time.hour() != now.hour()) {
|
|
return;
|
|
}
|
|
if (m_time.minute() != now.minute()) {
|
|
return;
|
|
}
|
|
if (m_time.second() != now.second()) {
|
|
return;
|
|
}
|
|
|
|
emit triggered();
|
|
}
|
|
|
|
ScriptAlarm::WeekDay ScriptAlarm::today() const
|
|
{
|
|
QList<WeekDay> allDays = {Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday};
|
|
return allDays.at(QDateTime::currentDateTime().date().dayOfWeek() - 1);
|
|
}
|
|
|
|
void ScriptAlarm::updateActive()
|
|
{
|
|
QTime now = QTime::currentTime();
|
|
|
|
bool active = m_endTime.isValid() && m_weekDays.testFlag(today());
|
|
|
|
if (active) {
|
|
bool beforeStart = now < m_time;
|
|
bool afterEnd = now > m_endTime;
|
|
if (m_time < m_endTime) {
|
|
active = !beforeStart && !afterEnd;
|
|
} else {
|
|
active = beforeStart || afterEnd;
|
|
}
|
|
}
|
|
if (active != m_active) {
|
|
m_active = active;
|
|
emit activeChanged();
|
|
}
|
|
}
|