qBittorrent/src/base/bittorrent/bandwidthscheduler.cpp

108 lines
3.4 KiB
C++
Raw Normal View History

2015-04-19 18:17:47 +03:00
/*
* Bittorrent Client using Qt and libtorrent.
* Copyright (C) 2017 Vladimir Golovnev <glassez@yandex.ru>
* Copyright (C) 2010 Christophe Dumez <chris@qbittorrent.org>
2015-04-19 18:17:47 +03:00
*
* This program 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
#include "bandwidthscheduler.h"
#include <utility>
#include <QDate>
2015-04-19 18:17:47 +03:00
#include <QTime>
2019-05-16 08:41:29 +03:00
#include <QTimer>
2015-04-19 18:17:47 +03:00
2015-09-25 11:10:05 +03:00
#include "base/preferences.h"
2015-04-19 18:17:47 +03:00
BandwidthScheduler::BandwidthScheduler(QObject *parent)
: QObject(parent)
, m_lastAlternative(false)
2015-04-19 18:17:47 +03:00
{
connect(&m_timer, &QTimer::timeout, this, &BandwidthScheduler::onTimeout);
2015-04-19 18:17:47 +03:00
}
void BandwidthScheduler::start()
{
m_lastAlternative = isTimeForAlternative();
emit bandwidthLimitRequested(m_lastAlternative);
// Timeout regularly to accommodate for external system clock changes
// eg from the user or from a timesync utility
m_timer.start(30000);
}
bool BandwidthScheduler::isTimeForAlternative() const
2015-04-19 18:17:47 +03:00
{
2018-04-14 22:53:45 +03:00
const Preferences *const pref = Preferences::instance();
2015-04-19 18:17:47 +03:00
QTime start = pref->getSchedulerStartTime();
QTime end = pref->getSchedulerEndTime();
const QTime now = QTime::currentTime();
const int schedulerDays = pref->getSchedulerDays();
const int day = QDate::currentDate().dayOfWeek();
bool alternative = false;
2015-04-19 18:17:47 +03:00
2020-11-16 10:02:11 +03:00
if (start > end)
{
std::swap(start, end);
alternative = true;
2015-04-19 18:17:47 +03:00
}
2020-11-16 10:02:11 +03:00
if ((start <= now) && (end >= now))
{
switch (schedulerDays)
{
2015-04-19 18:17:47 +03:00
case EVERY_DAY:
alternative = !alternative;
2015-04-19 18:17:47 +03:00
break;
case WEEK_ENDS:
if ((day == 6) || (day == 7))
alternative = !alternative;
2015-04-19 18:17:47 +03:00
break;
case WEEK_DAYS:
if ((day != 6) && (day != 7))
alternative = !alternative;
2015-04-19 18:17:47 +03:00
break;
default:
if (day == (schedulerDays - 2))
alternative = !alternative;
2015-04-19 18:17:47 +03:00
}
}
return alternative;
}
2015-04-19 18:17:47 +03:00
void BandwidthScheduler::onTimeout()
{
const bool alternative = isTimeForAlternative();
2015-04-19 18:17:47 +03:00
2020-11-16 10:02:11 +03:00
if (alternative != m_lastAlternative)
{
m_lastAlternative = alternative;
emit bandwidthLimitRequested(alternative);
}
2015-04-19 18:17:47 +03:00
}