mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Enabled hog reindexing if Cache Sessions Data is enabled
This commit is contained in:
parent
2cb35b69c0
commit
1a3627f466
@ -327,6 +327,7 @@ bool Machine::Save()
|
||||
}
|
||||
savelistCnt=0;
|
||||
savelistSize=m_savelist.size();
|
||||
bool cachesessions=PROFILE.session->cacheSessions();
|
||||
if (!PROFILE.session->multithreading()) {
|
||||
for (int i=0;i<savelistSize;i++) {
|
||||
if ((i % 10) ==0) {
|
||||
@ -336,7 +337,8 @@ bool Machine::Save()
|
||||
Session *s=m_savelist.at(i);
|
||||
s->UpdateSummaries();
|
||||
s->Store(path);
|
||||
s->TrashEvents();
|
||||
if (!cachesessions)
|
||||
s->TrashEvents();
|
||||
savelistCnt++;
|
||||
|
||||
}
|
||||
@ -378,12 +380,15 @@ bool Machine::Save()
|
||||
|
||||
void SaveThread::run()
|
||||
{
|
||||
bool cachesessions=PROFILE.session->cacheSessions();
|
||||
|
||||
while (Session *sess=machine->popSaveList()) {
|
||||
int i=(float(machine->savelistCnt)/float(machine->savelistSize)*100.0);
|
||||
emit UpdateProgress(i);
|
||||
sess->UpdateSummaries();
|
||||
sess->Store(path);
|
||||
sess->TrashEvents();
|
||||
if (!cachesessions)
|
||||
sess->TrashEvents();
|
||||
}
|
||||
machine->savelistSem->release(1);
|
||||
}
|
||||
|
@ -2513,22 +2513,28 @@ void MainWindow::doReprocessEvents()
|
||||
int daycount=first.daysTo(date);
|
||||
int idx=0;
|
||||
|
||||
//QList<Machine *> machines=PROFILE.GetMachines(MT_UNKNOWN);
|
||||
QList<Machine *> machines=PROFILE.GetMachines(MT_UNKNOWN);
|
||||
|
||||
if (qprogress) {
|
||||
bool cache_sessions=PROFILE.session->cacheSessions();
|
||||
if (cache_sessions) { // Use multithreaded save to handle reindexing.. (hogs memory like hell)
|
||||
qstatus->setText(tr("Loading Event Data"));
|
||||
} else {
|
||||
qstatus->setText(tr("Recalculating Summaries"));
|
||||
//qstatus->setText(tr("Loading Event Data"));
|
||||
}
|
||||
if (qprogress) {
|
||||
qprogress->setValue(0);
|
||||
qprogress->setVisible(true);
|
||||
}
|
||||
bool isopen;
|
||||
QDate current=daily->getDate();
|
||||
do {
|
||||
day=PROFILE.GetDay(date,MT_CPAP);
|
||||
if (day) {
|
||||
for (int i=0;i<day->size();i++) {
|
||||
sess=(*day)[i];
|
||||
bool isopen=sess->eventsLoaded();
|
||||
// Load the events
|
||||
isopen=sess->eventsLoaded();
|
||||
|
||||
// Load the events if they aren't loaded already
|
||||
sess->OpenEvents();
|
||||
|
||||
//if (!sess->channelDataExists(CPAP_FlowRate)) continue;
|
||||
@ -2545,9 +2551,12 @@ void MainWindow::doReprocessEvents()
|
||||
sess->destroyEvent(CPAP_RDI);
|
||||
|
||||
sess->SetChanged(true);
|
||||
sess->UpdateSummaries();
|
||||
sess->machine()->SaveSession(sess);
|
||||
if (!isopen) sess->TrashEvents();
|
||||
if (!cache_sessions) {
|
||||
sess->UpdateSummaries();
|
||||
sess->machine()->SaveSession(sess);
|
||||
if (!isopen)
|
||||
sess->TrashEvents();
|
||||
}
|
||||
}
|
||||
}
|
||||
date=date.addDays(-1);
|
||||
@ -2558,9 +2567,12 @@ void MainWindow::doReprocessEvents()
|
||||
|
||||
} while (date>=first);
|
||||
|
||||
// for (int i=0;i<machines.size();i++) {
|
||||
// machines.at(i)->Save();
|
||||
// }
|
||||
if (cache_sessions) {
|
||||
qstatus->setText(tr("Recalculating Summaries"));
|
||||
for (int i=0;i<machines.size();i++) {
|
||||
machines.at(i)->Save();
|
||||
}
|
||||
}
|
||||
|
||||
qstatus->setText(tr(""));
|
||||
qprogress->setVisible(false);
|
||||
|
Loading…
Reference in New Issue
Block a user