From bcad3ac9da2303c76b598d98f448e0a218cd70f4 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 24 Apr 2019 15:12:07 -0400 Subject: [PATCH] Disable multitasking to avoid crashes --- oscar/SleepLib/appsettings.h | 6 ++++-- oscar/SleepLib/machine.cpp | 38 ++++++++++++++++++++++++------------ oscar/main.cpp | 5 +++++ oscar/preferencesdialog.cpp | 3 ++- 4 files changed, 36 insertions(+), 16 deletions(-) diff --git a/oscar/SleepLib/appsettings.h b/oscar/SleepLib/appsettings.h index 5c05cf90..420af546 100644 --- a/oscar/SleepLib/appsettings.h +++ b/oscar/SleepLib/appsettings.h @@ -69,7 +69,8 @@ public: AppWideSetting(Preferences *pref) : PrefSettings(pref) { - m_multithreading = initPref(STR_IS_Multithreading, idealThreads() > 1).toBool(); +// m_multithreading = initPref(STR_IS_Multithreading, idealThreads() > 1).toBool(); + m_multithreading = false; // too dangerous to allow m_showPerformance = initPref(STR_US_ShowPerformance, false).toBool(); m_showDebug = initPref(STR_US_ShowDebug, false).toBool(); initPref(STR_AS_CalendarVisible, true); @@ -182,7 +183,8 @@ public: void setProfileName(QString name) { setPref(STR_GEN_Profile, m_profileName=name); } void setAutoLaunchImport(bool b) { setPref(STR_US_AutoLaunchImport, b); } void setCacheSessions(bool c) { setPref(STR_IS_CacheSessions, m_cacheSessions=c); } - void setMultithreading(bool b) { setPref(STR_IS_Multithreading, m_multithreading = b); } +// force multithreading to false until proven OK + void setMultithreading(bool b) { Q_UNUSED(b) setPref(STR_IS_Multithreading, m_multithreading = false); } void setShowDebug(bool b) { setPref(STR_US_ShowDebug, m_showDebug=b); } void setShowPerformance(bool b) { setPref(STR_US_ShowPerformance, m_showPerformance=b); } //! \brief Sets whether to display the (Daily View) Calendar diff --git a/oscar/SleepLib/machine.cpp b/oscar/SleepLib/machine.cpp index b56991af..bdc8480a 100644 --- a/oscar/SleepLib/machine.cpp +++ b/oscar/SleepLib/machine.cpp @@ -380,14 +380,16 @@ bool Machine::unlinkDay(Day * d) QString Machine::getPixmapPath() { - if (!loader()) return ""; + if (!loader()) + return ""; return loader()->getPixmapPath(info.series); } QPixmap & Machine::getPixmap() { static QPixmap pm; - if (!loader()) return pm; + if (!loader()) + return pm; return loader()->getPixmap(info.series); } @@ -901,16 +903,21 @@ void Machine::runTasks() return; QThreadPool * threadpool = QThreadPool::globalInstance(); - //int m_totaltasks=m_tasklist.size(); - //int m_currenttask=0; - // if (loader()) emit loader()->setProgressMax(m_totaltasks); +/*********************************************************** + int m_totaltasks=m_tasklist.size(); + int m_currenttask=0; + if (loader()) + emit loader()->setProgressMax(m_totaltasks); +***********************************************************/ while (!m_tasklist.isEmpty()) { if (threadpool->tryStart(m_tasklist.at(0))) { m_tasklist.pop_front(); -/* if (loader()) { +/************************************************************ + if (loader()) { emit loader()->setProgressValue(++m_currenttask); QApplication::processEvents(); - }*/ + } +***************************************************************/ } } QThreadPool::globalInstance()->waitForDone(-1); @@ -1060,17 +1067,22 @@ bool Machine::LoadSummary(ProgressDialog * progress) QMap::iterator it; int cnt = 0; bool loadSummaries = profile->session->preloadSummaries(); + qDebug() << "PreloadSummaries is " << (loadSummaries ? "true" : "false"); + qDebug() << "Queue task loader is " << (loader() ? "" : "not ") << "available"; +// sleep(1); - //progress->setMessage(QObject::tr("Queueing Open Tasks")); - //QApplication::processEvents(); +// progress->setMessage(QObject::tr("Queueing Open Tasks")); +// QApplication::processEvents(); + +// progress->setMaximum(sess_order.size()); - // progress->setMaximum(sess_order.size()); for (it = sess_order.begin(); it != it_end; ++it, ++cnt) { - // -/* if ((cnt % 100) == 0) { +/**************************************************************** + if ((cnt % 100) == 0) { progress->setValue(cnt); //QApplication::processEvents(); - } */ + } +*****************************************************************/ Session * sess = it.value(); if (!AddSession(sess)) { delete sess; diff --git a/oscar/main.cpp b/oscar/main.cpp index 2ee59d0a..f1a3cf36 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -142,6 +142,11 @@ bool processFile( QString fullpath ) { QTextStream instr(&fl); QTextStream outstr(&tmp); while (instr.readLineInto(&line)) { + if (line.contains("EnableMultithreading")) { + if (line.contains("true")) { + line.replace("true","false"); + } + } line.replace("SleepyHead","OSCAR"); outstr << line; } diff --git a/oscar/preferencesdialog.cpp b/oscar/preferencesdialog.cpp index d79978cc..c2965220 100644 --- a/oscar/preferencesdialog.cpp +++ b/oscar/preferencesdialog.cpp @@ -217,7 +217,8 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) : ui->skipEmptyDays->setChecked(profile->general->skipEmptyDays()); ui->showUnknownFlags->setChecked(profile->general->showUnknownFlags()); - ui->enableMultithreading->setChecked(AppSetting->multithreading()); +// ui->enableMultithreading->setChecked(AppSetting->multithreading()); + ui->enableMultithreading->setVisible(false); ui->removeCardNotificationCheckbox->setChecked(AppSetting->removeCardReminder()); ui->cacheSessionData->setChecked(AppSetting->cacheSessions()); ui->preloadSummaries->setChecked(profile->session->preloadSummaries());