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)
{
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()
{

View File

@ -93,6 +93,8 @@ class Day
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
EventDataType settings_avg(ChannelID code);

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -32,6 +32,7 @@
#include "newprofile.h"
#include "translation.h"
#include "common_gui.h"
#include "SleepLib/machine_loader.h"
// 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/weinmann_loader.h"
#ifdef Q_WS_X11
#include <X11/Xlib.h>
#endif

View File

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