Remove machine from day's machinelist when last session gone, fixing rxchanges bug

This commit is contained in:
Mark Watkins 2014-09-17 16:59:58 +10:00
parent 3558b69065
commit 959e5e5d13
10 changed files with 28 additions and 8 deletions

View File

@ -1424,8 +1424,21 @@ qint64 Day::last(MachineType type)
bool Day::removeSession(Session *sess) bool Day::removeSession(Session *sess)
{ {
return sessions.removeAll(sess) > 0; MachineType mt = sess->type();
bool b = sessions.removeAll(sess) > 0;
if (!searchMachine(mt)) {
machines.remove(mt);
}
return b;
} }
bool Day::searchMachine(MachineType mt) {
for (int i=0; i < sessions.size(); ++i) {
if (sessions.at(i)->type() == mt)
return true;
}
return false;
}
QString Day::getCPAPMode() QString Day::getCPAPMode()
{ {

View File

@ -93,6 +93,8 @@ class Day
inline bool hasMachine(MachineType mt) const { return machines.contains(mt); } inline bool hasMachine(MachineType mt) const { return machines.contains(mt); }
bool searchMachine(MachineType mt);
//! \brief Returns the Average of all Sessions setting 'code' for this day //! \brief Returns the Average of all Sessions setting 'code' for this day
EventDataType settings_avg(ChannelID code); EventDataType settings_avg(ChannelID code);

View File

@ -22,8 +22,6 @@ class MD300W1Loader : public SerialOximeter
{ {
Q_OBJECT Q_OBJECT
public: public:
MD300W1Loader(); MD300W1Loader();
virtual ~MD300W1Loader(); virtual ~MD300W1Loader();

View File

@ -102,6 +102,7 @@ public:
delete event; delete event;
for (int i=0;i < waveforms.size(); ++i) {delete waveforms.at(i); } for (int i=0;i < waveforms.size(); ++i) {delete waveforms.at(i); }
} }
virtual void run(); virtual void run();
PRS1DataChunk * compliance; PRS1DataChunk * compliance;

View File

@ -23,6 +23,7 @@ class SomnoposeLoader : public MachineLoader
public: public:
SomnoposeLoader(); SomnoposeLoader();
virtual ~SomnoposeLoader(); virtual ~SomnoposeLoader();
virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner
virtual int Open(QString path); virtual int Open(QString path);

View File

@ -23,6 +23,7 @@ class ZEOLoader : public MachineLoader
public: public:
ZEOLoader(); ZEOLoader();
virtual ~ZEOLoader(); virtual ~ZEOLoader();
virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner
virtual int Open(QString path); virtual int Open(QString path);

View File

@ -84,7 +84,6 @@ Machine * MachineLoader::lookupMachine(QString serial)
return nullptr; return nullptr;
} }
Machine * MachineLoader::CreateMachine(MachineInfo info, MachineID id) Machine * MachineLoader::CreateMachine(MachineInfo info, MachineID id)
{ {
Q_ASSERT(p_profile != nullptr); Q_ASSERT(p_profile != nullptr);

View File

@ -14,10 +14,9 @@
#include "profiles.h" #include "profiles.h"
#include "machine.h" #include "machine.h"
#include "zlib.h" #include "zlib.h"
class MachineLoader; class MachineLoader;
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING }; enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };

View File

@ -32,6 +32,7 @@
#include "newprofile.h" #include "newprofile.h"
#include "translation.h" #include "translation.h"
#include "common_gui.h" #include "common_gui.h"
#include "SleepLib/machine_loader.h"
// Gah! I must add the real darn plugin system one day. // Gah! I must add the real darn plugin system one day.
@ -46,6 +47,7 @@
#include "SleepLib/loader_plugins/icon_loader.h" #include "SleepLib/loader_plugins/icon_loader.h"
#include "SleepLib/loader_plugins/weinmann_loader.h" #include "SleepLib/loader_plugins/weinmann_loader.h"
#ifdef Q_WS_X11 #ifdef Q_WS_X11
#include <X11/Xlib.h> #include <X11/Xlib.h>
#endif #endif

View File

@ -2142,18 +2142,22 @@ void MainWindow::purgeMachine(Machine * mach)
daily->clearLastDay(); // otherwise Daily will crash daily->clearLastDay(); // otherwise Daily will crash
daily->ReloadGraphs(); daily->ReloadGraphs();
} }
GenerateStatistics(); //GenerateStatistics();
return; return;
} }
if (overview) overview->ReloadGraphs(); if (overview) overview->ReloadGraphs();
QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ));
rxcache.remove();
if (daily) { if (daily) {
daily->clearLastDay(); // otherwise Daily will crash daily->clearLastDay(); // otherwise Daily will crash
daily->ReloadGraphs(); daily->ReloadGraphs();
} }
GenerateStatistics();
QApplication::processEvents(); QApplication::processEvents();
// GenerateStatistics();
} }
void MainWindow::keyPressEvent(QKeyEvent *event) void MainWindow::keyPressEvent(QKeyEvent *event)