mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
* only call this->abandonAndWait() when not in main thread (also slack discussion MS/KB) * make sure web data service start to read even if setup reader signal was missed * add timestamp to setupreader to detect "recently read" in case signal is missed
108 lines
3.4 KiB
C++
108 lines
3.4 KiB
C++
/* Copyright (C) 2013
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "threadedreader.h"
|
|
#include "blackmisc/threadutils.h"
|
|
|
|
using namespace BlackMisc;
|
|
using namespace BlackMisc::Network;
|
|
|
|
namespace BlackMisc
|
|
{
|
|
CThreadedReader::CThreadedReader(QObject *owner, const QString &name) :
|
|
CContinuousWorker(owner, name),
|
|
m_updateTimer(new QTimer(this))
|
|
{
|
|
bool c = connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, this, &CThreadedReader::gracefulShutdown);
|
|
Q_ASSERT_X(c, Q_FUNC_INFO, "Connect failed");
|
|
Q_UNUSED(c);
|
|
}
|
|
|
|
qint64 CThreadedReader::lastModifiedMsSinceEpoch(QNetworkReply *nwReply) const
|
|
{
|
|
if (nwReply)
|
|
{
|
|
QVariant lastModifiedQv = nwReply->header(QNetworkRequest::LastModifiedHeader);
|
|
if (lastModifiedQv.isValid() && lastModifiedQv.canConvert<QDateTime>())
|
|
{
|
|
return lastModifiedQv.value<QDateTime>().toMSecsSinceEpoch();
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
QDateTime CThreadedReader::getUpdateTimestamp() const
|
|
{
|
|
QReadLocker lock(&this->m_lock);
|
|
return this->m_updateTimestamp;
|
|
}
|
|
|
|
void CThreadedReader::setUpdateTimestamp(const QDateTime &updateTimestamp)
|
|
{
|
|
QWriteLocker lock(&this->m_lock);
|
|
this->m_updateTimestamp = updateTimestamp;
|
|
}
|
|
|
|
bool CThreadedReader::updatedWithinLastMs(qint64 timeLastMs)
|
|
{
|
|
QDateTime dt(getUpdateTimestamp());
|
|
if (dt.isNull() || !dt.isValid()) { return false; }
|
|
qint64 delta = QDateTime::currentMSecsSinceEpoch() - dt.toMSecsSinceEpoch();
|
|
return delta <= timeLastMs;
|
|
}
|
|
|
|
void CThreadedReader::requestReload()
|
|
{
|
|
// default implementation, subclasses shall override as required
|
|
this->initialize();
|
|
}
|
|
|
|
void CThreadedReader::gracefulShutdown()
|
|
{
|
|
// if not in main thread stop, otherwise it makes no sense to abandon
|
|
if (!CThreadUtils::isCurrentThreadObjectThread(this))
|
|
{
|
|
this->abandonAndWait();
|
|
}
|
|
}
|
|
|
|
CThreadedReader::~CThreadedReader()
|
|
{
|
|
gracefulShutdown();
|
|
}
|
|
|
|
void CThreadedReader::setInterval(int updatePeriodMs)
|
|
{
|
|
Q_ASSERT(this->m_updateTimer);
|
|
bool s;
|
|
if (updatePeriodMs < 1)
|
|
{
|
|
s = QMetaObject::invokeMethod(m_updateTimer, "stop");
|
|
}
|
|
else
|
|
{
|
|
s = QMetaObject::invokeMethod(m_updateTimer, "start", Q_ARG(int, updatePeriodMs));
|
|
}
|
|
Q_ASSERT_X(s, Q_FUNC_INFO, "Failed invoke");
|
|
Q_UNUSED(s);
|
|
}
|
|
|
|
int CThreadedReader::interval() const
|
|
{
|
|
QReadLocker rl(&this->m_lock);
|
|
return this->m_updateTimer->interval();
|
|
}
|
|
|
|
void CThreadedReader::threadAssertCheck() const
|
|
{
|
|
Q_ASSERT_X(QCoreApplication::instance()->thread() != QThread::currentThread(), Q_FUNC_INFO, "Needs to run in own thread");
|
|
Q_ASSERT_X(QObject::thread() == QThread::currentThread(), Q_FUNC_INFO, "Wrong object thread");
|
|
}
|
|
} // namespace
|