2011-10-05 11:36:08 +02:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2011, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-10-04 18:26:40 +02:00
|
|
|
#include "closure.h"
|
|
|
|
|
2012-04-13 15:49:29 +02:00
|
|
|
#include "core/timeconstants.h"
|
2011-10-04 18:26:40 +02:00
|
|
|
|
2021-04-09 07:58:26 +02:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
|
|
|
|
#include <QRandomGenerator>
|
|
|
|
#endif
|
|
|
|
|
2012-03-20 15:14:44 +01:00
|
|
|
namespace _detail {
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
ClosureBase::ClosureBase(ObjectHelper* helper) : helper_(helper) {}
|
2011-10-04 18:26:40 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
ClosureBase::~ClosureBase() {}
|
2011-10-06 13:19:42 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
CallbackClosure::CallbackClosure(QObject* sender, const char* signal,
|
|
|
|
std::function<void()> callback)
|
|
|
|
: ClosureBase(new ObjectHelper(sender, signal, this)),
|
|
|
|
callback_(callback) {}
|
2012-11-26 09:41:26 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void CallbackClosure::Invoke() { callback_(); }
|
2012-11-26 09:41:26 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
ObjectHelper* ClosureBase::helper() const { return helper_; }
|
2012-03-19 19:36:52 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
ObjectHelper::ObjectHelper(QObject* sender, const char* signal,
|
|
|
|
ClosureBase* closure)
|
|
|
|
: closure_(closure) {
|
2020-01-11 09:10:53 +01:00
|
|
|
connection_ = connect(sender, signal, SLOT(Invoked()));
|
|
|
|
connect(sender, SIGNAL(destroyed()), SLOT(TearDown()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObjectHelper::TearDown() {
|
|
|
|
// For the case that the receiver has been destroyed, disconnect the signal
|
|
|
|
// so that Invoke isn't called.
|
|
|
|
disconnect(connection_);
|
|
|
|
deleteLater();
|
2011-10-05 14:55:39 +02:00
|
|
|
}
|
|
|
|
|
2012-11-22 15:15:07 +01:00
|
|
|
void ObjectHelper::Invoked() {
|
|
|
|
closure_->Invoke();
|
2011-10-05 11:36:08 +02:00
|
|
|
deleteLater();
|
|
|
|
}
|
2011-10-04 18:26:40 +02:00
|
|
|
|
2012-11-22 17:57:26 +01:00
|
|
|
void Unpack(QList<QGenericArgument>*) {}
|
2012-03-20 15:14:44 +01:00
|
|
|
|
2012-11-22 15:15:07 +01:00
|
|
|
} // namespace _detail
|
2012-04-13 15:49:29 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
_detail::ClosureBase* NewClosure(QObject* sender, const char* signal,
|
|
|
|
std::function<void()> callback) {
|
|
|
|
return new _detail::CallbackClosure(sender, signal, callback);
|
2012-11-26 09:41:26 +01:00
|
|
|
}
|
|
|
|
|
2012-04-13 15:49:29 +02:00
|
|
|
void DoAfter(QObject* receiver, const char* slot, int msec) {
|
|
|
|
QTimer::singleShot(msec, receiver, slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoInAMinuteOrSo(QObject* receiver, const char* slot) {
|
2021-04-09 07:58:26 +02:00
|
|
|
// qrand is deprecated in 5.15
|
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(5, 10, 0))
|
2012-04-13 15:49:29 +02:00
|
|
|
int msec = (60 + (qrand() % 60)) * kMsecPerSec;
|
2021-04-09 07:58:26 +02:00
|
|
|
#else
|
|
|
|
int msec = QRandomGenerator::global()->bounded(60, 120) * kMsecPerSec;
|
|
|
|
#endif
|
2012-04-13 15:49:29 +02:00
|
|
|
DoAfter(receiver, slot, msec);
|
|
|
|
}
|