Implement clinican mode

This commit is contained in:
LoudSnorer 2023-05-26 17:29:56 -04:00
parent 0a40906c22
commit c82ace546f
4 changed files with 26 additions and 23 deletions

View File

@ -36,6 +36,7 @@
#include "profiles.h" #include "profiles.h"
#include <algorithm> #include <algorithm>
#include "SleepLib/schema.h" #include "SleepLib/schema.h"
//#include "SleepLib/session.h"
#include "SleepLib/day.h" #include "SleepLib/day.h"
#include "mainwindow.h" #include "mainwindow.h"
@ -164,7 +165,7 @@ bool Machine::saveSessionInfo()
Session * sess = s.value(); Session * sess = s.value();
if (sess->s_first != 0) { if (sess->s_first != 0) {
out << (quint32) sess->session(); out << (quint32) sess->session();
out << (bool)(sess->enabled()); out << (quint8)(sess->enabled(true));
} else { } else {
qWarning() << "Machine::SaveSessionInfo discarding session" << sess->s_session qWarning() << "Machine::SaveSessionInfo discarding session" << sess->s_session
<< "["+QDateTime::fromTime_t(sess->s_session).toString("MMM dd, yyyy hh:mm:ss")+"]" << "["+QDateTime::fromTime_t(sess->s_session).toString("MMM dd, yyyy hh:mm:ss")+"]"
@ -197,9 +198,11 @@ bool Machine::loadSessionInfo()
Session * sess = s.value(); Session * sess = s.value();
QHash<ChannelID, QVariant>::iterator it = sess->settings.find(SESSION_ENABLED); QHash<ChannelID, QVariant>::iterator it = sess->settings.find(SESSION_ENABLED);
bool b = true; quint8 b = true;
b &= 0x1;
if (it != sess->settings.end()) { if (it != sess->settings.end()) {
b = it.value().toBool(); b = it.value().toBool();
} else {
} }
sess->setEnabled(b); // Extract from session settings and save.. sess->setEnabled(b); // Extract from session settings and save..
} }
@ -233,11 +236,12 @@ bool Machine::loadSessionInfo()
in >> size; in >> size;
quint32 sid; quint32 sid;
bool b; quint8 b;
for (int i=0; i< size; ++i) { for (int i=0; i< size; ++i) {
in >> sid; in >> sid;
in >> b; in >> b;
b &= 0x1;
s = sessionlist.find(sid); s = sessionlist.find(sid);
@ -1084,7 +1088,7 @@ bool Machine::SaveSummaryCache()
el.setAttribute("id", (quint32)sess->session()); el.setAttribute("id", (quint32)sess->session());
el.setAttribute("first", sess->realFirst()); el.setAttribute("first", sess->realFirst());
el.setAttribute("last", sess->realLast()); el.setAttribute("last", sess->realLast());
el.setAttribute("enabled", sess->enabled() ? "1" : "0"); el.setAttribute("enabled", sess->enabled(true) ? "1" : "0");
el.setAttribute("events", sess->summaryOnly() ? "0" : "1"); el.setAttribute("events", sess->summaryOnly() ? "0" : "1");
QHash<ChannelID, QVector<EventList *> >::iterator ev; QHash<ChannelID, QVector<EventList *> >::iterator ev;

View File

@ -91,6 +91,12 @@ void Session::TrashEvents()
eventlist.squeeze(); eventlist.squeeze();
} }
bool Session::enabled(bool realValues) const
{
if (!AppSetting->allowDisableSessions() && !realValues) return true;
return s_enabled;
}
void Session::setEnabled(bool b) void Session::setEnabled(bool b)
{ {
s_enabled = b; s_enabled = b;

View File

@ -113,7 +113,7 @@ class Session
} }
//! \brief Returns whether or not session is being used. //! \brief Returns whether or not session is being used.
inline bool enabled() const { return s_enabled; } bool enabled(bool realValues=false) const;
//! \brief Sets whether or not session is being used. //! \brief Sets whether or not session is being used.
void setEnabled(bool b); void setEnabled(bool b);
@ -417,15 +417,6 @@ class Session
//! \brief Completely purges Session from memory and disk. //! \brief Completely purges Session from memory and disk.
bool Destroy(); bool Destroy();
void wipeSummary() {
s_first = s_last = 0;
s_enabled = true;
m_cph.clear();
m_sum.clear();
m_cnt.clear();
}
QString eventFile() const; QString eventFile() const;
//! \brief Returns DeviceType for this session //! \brief Returns DeviceType for this session
@ -456,7 +447,7 @@ protected:
bool s_summary_loaded; bool s_summary_loaded;
bool s_events_loaded; bool s_events_loaded;
bool s_enabled; quint8 s_enabled;
// for debugging // for debugging
bool destroyed; bool destroyed;

View File

@ -1413,6 +1413,8 @@ void MainWindow::on_action_Preferences_triggered()
if (profileSelector) if (profileSelector)
profileSelector->updateProfileList(); profileSelector->updateProfileList();
GenerateStatistics();
// These attempts to update calendar after a change to application font do NOT work, and I can find no QT documentation suggesting // These attempts to update calendar after a change to application font do NOT work, and I can find no QT documentation suggesting
// that changing the font after Calendar is created is even possible. // that changing the font after Calendar is created is even possible.
// qDebug() << "application font family set to" << QApplication::font().family() << "and font" << QApplication::font(); // qDebug() << "application font family set to" << QApplication::font().family() << "and font" << QApplication::font();