Browse Source

Merge #8821: [qt] sync-overlay: Don't block during reindex

fa85e86 [qt] sync-overlay: Don't show estimated number of headers left (MarcoFalke)
faa4de2 [qt] sync-overlay: Don't block during reindex (MarcoFalke)
0.14
Jonas Schnelli 8 years ago
parent
commit
bf8e68aba6
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
  1. 2
      src/qt/clientmodel.cpp
  2. 30
      src/qt/modaloverlay.cpp
  3. 3
      src/qt/modaloverlay.h

2
src/qt/clientmodel.cpp

@ -256,7 +256,7 @@ static void BlockTipChanged(ClientModel *clientmodel, bool initialSync, const CB
int64_t& nLastUpdateNotification = fHeader ? nLastHeaderTipUpdateNotification : nLastBlockTipUpdateNotification; int64_t& nLastUpdateNotification = fHeader ? nLastHeaderTipUpdateNotification : nLastBlockTipUpdateNotification;
// if we are in-sync, update the UI regardless of last update time // if we are in-sync, update the UI regardless of last update time
if (fHeader || !initialSync || now - nLastUpdateNotification > MODEL_UPDATE_DELAY) { if (!initialSync || now - nLastUpdateNotification > MODEL_UPDATE_DELAY) {
//pass a async signal to the UI thread //pass a async signal to the UI thread
QMetaObject::invokeMethod(clientmodel, "numBlocksChanged", Qt::QueuedConnection, QMetaObject::invokeMethod(clientmodel, "numBlocksChanged", Qt::QueuedConnection,
Q_ARG(int, pIndex->nHeight), Q_ARG(int, pIndex->nHeight),

30
src/qt/modaloverlay.cpp

@ -13,7 +13,8 @@
ModalOverlay::ModalOverlay(QWidget *parent) : ModalOverlay::ModalOverlay(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::ModalOverlay), ui(new Ui::ModalOverlay),
bestBlockHeight(0), bestHeaderHeight(0),
bestHeaderDate(QDateTime()),
layerIsVisible(false), layerIsVisible(false),
userClosed(false) userClosed(false)
{ {
@ -65,14 +66,9 @@ bool ModalOverlay::event(QEvent* ev) {
void ModalOverlay::setKnownBestHeight(int count, const QDateTime& blockDate) void ModalOverlay::setKnownBestHeight(int count, const QDateTime& blockDate)
{ {
if (count > bestHeaderHeight) {
/* only update the blockheight if the headerschain-tip is not older then 30 days */ bestHeaderHeight = count;
int64_t now = QDateTime::currentDateTime().toTime_t(); bestHeaderDate = blockDate;
int64_t btime = blockDate.toTime_t();
if (btime+3600*24*30 > now)
{
if (count > bestBlockHeight)
bestBlockHeight = count;
} }
} }
@ -125,11 +121,21 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri
ui->percentageProgress->setText(QString::number(nVerificationProgress*100, 'f', 2)+"%"); ui->percentageProgress->setText(QString::number(nVerificationProgress*100, 'f', 2)+"%");
ui->progressBar->setValue(nVerificationProgress*100); ui->progressBar->setValue(nVerificationProgress*100);
if (!bestHeaderDate.isValid())
// not syncing
return;
// estimate the number of headers left based on nPowTargetSpacing
// and check if the gui is not aware of the the best header (happens rarely)
int estimateNumHeadersLeft = bestHeaderDate.secsTo(currentDate) / 600;
bool hasBestHeader = bestHeaderHeight >= count;
// show remaining number of blocks // show remaining number of blocks
if (bestBlockHeight > 0) if (estimateNumHeadersLeft < 24 && hasBestHeader) {
ui->numberOfBlocksLeft->setText(QString::number(bestBlockHeight-count)); ui->numberOfBlocksLeft->setText(QString::number(bestHeaderHeight - count));
else } else {
ui->expectedTimeLeft->setText(tr("Unknown. Syncing Headers...")); ui->expectedTimeLeft->setText(tr("Unknown. Syncing Headers..."));
}
} }
void ModalOverlay::showHide(bool hide, bool userRequested) void ModalOverlay::showHide(bool hide, bool userRequested)

3
src/qt/modaloverlay.h

@ -35,7 +35,8 @@ protected:
private: private:
Ui::ModalOverlay *ui; Ui::ModalOverlay *ui;
int bestBlockHeight; //best known height (based on the headers) int bestHeaderHeight; //best known height (based on the headers)
QDateTime bestHeaderDate;
QVector<QPair<qint64, double> > blockProcessTime; QVector<QPair<qint64, double> > blockProcessTime;
bool layerIsVisible; bool layerIsVisible;
bool userClosed; bool userClosed;

Loading…
Cancel
Save