From fc78ebfc16f8a8538df086c5b22309726ac0412b Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 22 Sep 2014 18:20:44 +1000 Subject: [PATCH] Show progress bar works when preloading sessions --- sleepyhead/SleepLib/machine.cpp | 16 +++++++++++++--- sleepyhead/SleepLib/machine.h | 7 ++++++- sleepyhead/SleepLib/session.cpp | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/sleepyhead/SleepLib/machine.cpp b/sleepyhead/SleepLib/machine.cpp index ebe2bbd6..d4adb7f2 100644 --- a/sleepyhead/SleepLib/machine.cpp +++ b/sleepyhead/SleepLib/machine.cpp @@ -499,7 +499,10 @@ void Machine::setInfo(MachineInfo inf) const QString Machine::getDataPath() { - return p_profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/"; + if (m_dataPath.isEmpty()) { + m_dataPath = p_profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/"; + } + return m_dataPath; } const QString Machine::getSummariesPath() { @@ -535,7 +538,7 @@ bool Machine::Load() QProgressBar * progress = popup->progress; - if (!LoadSummary()) { + if (!LoadSummary(progress)) { // No XML index file, so assume upgrading, or it simply just got screwed up or deleted... QTime time; time.start(); @@ -844,7 +847,7 @@ bool Machine::hasModifiedSessions() const QString summaryFileName = "Summaries.xml"; -bool Machine::LoadSummary() +bool Machine::LoadSummary(QProgressBar * progress) { QTime time; time.start(); @@ -911,7 +914,12 @@ bool Machine::LoadSummary() int cnt = 0; bool loadSummaries = p_profile->session->preloadSummaries(); + progress->setMaximum(sess_order.size()); for (it = sess_order.begin(); it != it_end; ++it, ++cnt) { + if ((cnt % 100) == 0) { + progress->setValue(cnt); + QApplication::processEvents(); + } Session * sess = it.value(); if (!AddSession(sess)) { delete sess; @@ -919,6 +927,8 @@ bool Machine::LoadSummary() if (loadSummaries) sess->LoadSummary(); } } + progress->setValue(sess_order.size()); + QApplication::processEvents(); qDebug() << "Loaded" << info.series << info.model << "data in" << time.elapsed() << "ms"; diff --git a/sleepyhead/SleepLib/machine.h b/sleepyhead/SleepLib/machine.h index 5677beaa..c0f0d568 100644 --- a/sleepyhead/SleepLib/machine.h +++ b/sleepyhead/SleepLib/machine.h @@ -18,6 +18,7 @@ #include #include #include +#include #include #include @@ -87,7 +88,7 @@ class Machine //! \brief Load all Machine summary data bool Load(); - bool LoadSummary(); + bool LoadSummary(QProgressBar * progress); //! \brief Save all Sessions where changed bit is set. bool Save(); @@ -246,6 +247,10 @@ class Machine QList m_tasklist; QHash m_availableChannels; + + QString m_summaryPath; + QString m_eventsPath; + QString m_dataPath; }; diff --git a/sleepyhead/SleepLib/session.cpp b/sleepyhead/SleepLib/session.cpp index 7266cfb3..2502b793 100644 --- a/sleepyhead/SleepLib/session.cpp +++ b/sleepyhead/SleepLib/session.cpp @@ -374,7 +374,7 @@ bool Session::LoadSummary() } - qDebug() << "Loading" << s_machine->loaderName() << "Summary" << filename << sumcnt++; + // qDebug() << "Loading" << s_machine->loaderName() << "Summary" << filename << sumcnt++; QDataStream in(&file); in.setVersion(QDataStream::Qt_4_6);