OSCAR-code/sleepyhead/SleepLib/machine.cpp

718 lines
18 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* SleepLib Machine Class Implementation
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
2011-06-26 08:30:44 +00:00
2011-07-30 00:36:31 +00:00
#include <QApplication>
2011-07-01 10:10:44 +00:00
#include <QDir>
#include <QProgressBar>
#include <QDebug>
#include <QString>
#include <QObject>
2014-05-21 00:17:31 +00:00
#include <QThreadPool>
2011-12-17 15:12:35 +00:00
#include <time.h>
2011-06-26 08:30:44 +00:00
#include "machine.h"
#include "profiles.h"
#include <algorithm>
2011-09-17 12:39:00 +00:00
#include "SleepLib/schema.h"
2011-06-26 08:30:44 +00:00
extern QProgressBar *qprogress;
2011-06-26 08:30:44 +00:00
//////////////////////////////////////////////////////////////////////////////////////////
// Machine Base-Class implmementation
//////////////////////////////////////////////////////////////////////////////////////////
2014-07-11 12:09:38 +00:00
Machine::Machine(MachineID id)
2011-06-26 08:30:44 +00:00
{
day.clear();
highest_sessionid = 0;
2011-06-26 08:30:44 +00:00
if (!id) {
srand(time(nullptr));
2011-06-26 08:30:44 +00:00
MachineID temp;
2011-06-26 08:30:44 +00:00
do {
2011-12-17 14:50:59 +00:00
temp = rand();
2014-07-11 12:09:38 +00:00
} while (p_profile->machlist.find(temp) != p_profile->machlist.end());
2011-06-26 08:30:44 +00:00
m_id = temp;
} else { m_id = id; }
m_loader = nullptr;
2011-06-26 08:30:44 +00:00
// qDebug() << "Create Machine: " << hex << m_id; //%lx",m_id);
m_type = MT_UNKNOWN;
firstsession = true;
2011-06-26 08:30:44 +00:00
}
Machine::~Machine()
{
qDebug() << "Destroy Machine" << info.loadername << hex << m_id;
for (QMap<QDate, Day *>::iterator d = day.begin(); d != day.end(); d++) {
delete d.value();
2011-06-26 08:30:44 +00:00
}
}
Session *Machine::SessionExists(SessionID session)
{
if (sessionlist.find(session) != sessionlist.end()) {
2011-06-26 08:30:44 +00:00
return sessionlist[session];
} else {
return nullptr;
2011-06-26 08:30:44 +00:00
}
}
// Find date this session belongs in
QDate Machine::pickDate(qint64 first)
{
2014-07-11 12:09:38 +00:00
QTime split_time = p_profile->session->daySplitTime();
int combine_sessions = p_profile->session->combineCloseSessions();
QDateTime d2 = QDateTime::fromTime_t(first / 1000);
QDate date = d2.date();
QTime time = d2.time();
int closest_session = 0;
if (time < split_time) {
date = date.addDays(-1);
} else if (combine_sessions > 0) {
QMap<QDate, Day *>::iterator dit = day.find(date.addDays(-1)); // Check Day Before
if (dit != day.end()) {
QDateTime lt = QDateTime::fromTime_t(dit.value()->last() / 1000L);
closest_session = lt.secsTo(d2) / 60;
if (closest_session < combine_sessions) {
date = date.addDays(-1);
}
}
}
return date;
}
2014-07-11 12:09:38 +00:00
bool Machine::AddSession(Session *s)
2011-06-26 08:30:44 +00:00
{
Q_ASSERT(s != nullptr);
Q_ASSERT(p_profile);
Q_ASSERT(p_profile->isOpen());
2011-06-26 08:30:44 +00:00
2014-07-11 12:09:38 +00:00
if (p_profile->session->ignoreOlderSessions()) {
qint64 ignorebefore = p_profile->session->ignoreOlderSessionsDate().toMSecsSinceEpoch();
if (s->last() < ignorebefore) {
skipped_sessions++;
return false;
}
}
if (s->session() > highest_sessionid) {
highest_sessionid = s->session();
}
QTime split_time;
int combine_sessions;
bool locksessions = p_profile->session->lockSummarySessions();
if (locksessions) {
split_time = s->summaryOnly() ? QTime(12,0,0) : p_profile->session->daySplitTime();
combine_sessions = s->summaryOnly() ? 0 : p_profile->session->combineCloseSessions();
} else {
split_time = p_profile->session->daySplitTime();
combine_sessions = p_profile->session->combineCloseSessions();
}
int ignore_sessions = p_profile->session->ignoreShortSessions();
int session_length = s->last() - s->first();
session_length /= 60000;
sessionlist[s->session()] = s; // To make sure it get's saved later even if it's not wanted.
2011-07-03 08:08:14 +00:00
2014-07-11 12:09:38 +00:00
//int drift=p_profile->cpap->clockDrift();
QDateTime d2 = QDateTime::fromTime_t(s->first() / 1000);
2011-06-26 08:30:44 +00:00
QDate date = d2.date();
QTime time = d2.time();
2011-06-26 08:30:44 +00:00
QMap<QDate, Day *>::iterator dit, nextday;
2011-06-26 08:30:44 +00:00
bool combine_next_day = false;
int closest_session = 0;
2011-07-03 03:38:55 +00:00
// Multithreaded import screws this up. :(
if (time < split_time) {
date = date.addDays(-1);
2011-08-05 07:52:32 +00:00
} else if (combine_sessions > 0) {
dit = day.find(date.addDays(-1)); // Check Day Before
if (dit != day.end()) {
QDateTime lt = QDateTime::fromTime_t(dit.value()->last() / 1000);
closest_session = lt.secsTo(d2) / 60;
if (closest_session < combine_sessions) {
date = date.addDays(-1);
} else {
if ((split_time < time) && (split_time.secsTo(time) < 2)) {
if (s->machine()->loaderName() == STR_MACH_ResMed) {
date = date.addDays(-1);
}
}
2011-08-05 07:52:32 +00:00
}
} else {
nextday = day.find(date.addDays(1)); // Check Day Afterwards
if (nextday != day.end()) {
QDateTime lt = QDateTime::fromTime_t(nextday.value()->first() / 1000);
closest_session = d2.secsTo(lt) / 60;
2011-08-05 07:52:32 +00:00
if (closest_session < combine_sessions) {
// add todays here. pull all tomorrows records to this date.
combine_next_day = true;
2011-08-05 07:52:32 +00:00
}
2011-07-03 08:08:14 +00:00
}
}
2011-06-26 08:30:44 +00:00
}
if (session_length < ignore_sessions) {
// keep the session to save importing it again, but don't add it to the day record this time
return true;
}
2011-06-26 08:30:44 +00:00
if (!firstsession) {
if (firstday > date) { firstday = date; }
if (lastday < date) { lastday = date; }
2011-06-26 08:30:44 +00:00
} else {
firstday = lastday = date;
firstsession = false;
2011-06-26 08:30:44 +00:00
}
2011-07-03 08:08:14 +00:00
Day *dd = nullptr;
dit = day.find(date);
if (dit == day.end()) {
//QString dstr=date.toString("yyyyMMdd");
//qDebug("Adding Profile Day %s",dstr.toLatin1().data());
dd = new Day(this);
day[date] = dd;
2011-06-26 08:30:44 +00:00
// Add this Day record to profile
2014-07-11 12:09:38 +00:00
p_profile->AddDay(date, dd, m_type);
} else {
dd = *dit;
2011-06-26 08:30:44 +00:00
}
dd->AddSession(s);
2011-06-26 08:30:44 +00:00
2011-08-05 07:52:32 +00:00
if (combine_next_day) {
for (QList<Session *>::iterator i = nextday.value()->begin(); i != nextday.value()->end(); i++) {
// i may need to do something here
if (locksessions && (*i)->summaryOnly()) continue; // can't move summary only sessions..
unlinkSession(*i);
// Add it back
sessionlist[(*i)->session()] = *i;
2011-08-05 07:52:32 +00:00
dd->AddSession(*i);
}
// QMap<QDate, QList<Day *> >::iterator nd = p_profile->daylist.find(date.addDays(1));
// if (nd != p_profile->daylist.end()) {
// p_profile->unlinkDay(nd.key(), nd.value());
// }
// QList<Day *>::iterator iend = nd.value().end();
// for (QList<Day *>::iterator i = nd.value()->begin(); i != iend; ++i) {
// if (*i == nextday.value()) {
// nd.value().erase(i);
// }
// }
// day.erase(nextday);
2011-08-05 07:52:32 +00:00
}
return true;
2011-06-26 08:30:44 +00:00
}
bool Machine::unlinkDay(Day * d)
{
return day.remove(day.key(d)) > 0;
}
bool Machine::unlinkSession(Session * sess)
{
// Remove the object from the machine object's session list
bool b=sessionlist.remove(sess->session());
QList<QDate> dates;
QList<Day *> days;
QMap<QDate, Day *>::iterator it;
Day * d;
// Doing this in case of accidental double linkages
for (it = day.begin(); it != day.end(); ++it) {
d = it.value();
if (it.value()->sessions.contains(sess)) {
days.push_back(d);
dates.push_back(it.key());
}
}
for (int i=0; i < days.size(); ++i) {
d = days.at(i);
if (d->sessions.removeAll(sess)) {
b=true;
if (d->size() == 0) {
day.remove(dates[i]);
p_profile->unlinkDay(d);
}
}
}
return b;
}
2011-06-26 08:30:44 +00:00
// This functions purpose is murder and mayhem... It deletes all of a machines data.
bool Machine::Purge(int secret)
{
// Boring api key to stop this function getting called by accident :)
if (secret != 3478216) { return false; }
2011-06-26 08:30:44 +00:00
QString path = getDataPath();
2011-06-26 08:30:44 +00:00
QDir dir(path);
if (!dir.exists()) { // It doesn't exist anyway.
return true;
}
if (!dir.isReadable()) {
2011-06-26 08:30:44 +00:00
return false;
}
2011-06-26 08:30:44 +00:00
qDebug() << "Purging" << info.loadername << info.serial << dir.absoluteFilePath(path);
2014-05-19 03:46:02 +00:00
// Remove any imported file list
QFile impfile(getDataPath()+"/imported_files.csv");
impfile.remove();
2014-05-19 03:46:02 +00:00
// Create a copy of the list so the hash can be manipulated
QList<Session *> sessions = sessionlist.values();
// Clean up any loaded sessions from memory first..
bool success = true;
for (int i=0; i < sessions.size(); ++i) {
Session * sess = sessions[i];
if (!sess->Destroy()) {
qDebug() << "Could not destroy "+ info.loadername +" ("+info.serial+") session" << sess->session();
2014-05-19 03:46:02 +00:00
success = false;
} else {
// sessionlist.remove(sess->session());
2014-05-19 03:46:02 +00:00
}
2014-05-19 03:46:02 +00:00
delete sess;
}
2011-06-26 08:30:44 +00:00
2014-05-19 03:46:02 +00:00
// Clean up any straggling files (like from short sessions not being loaded...)
2011-06-26 08:30:44 +00:00
dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks);
dir.setSorting(QDir::Name);
QFileInfoList list = dir.entryInfoList();
int could_not_kill = 0;
2011-06-26 08:30:44 +00:00
2014-05-19 03:46:02 +00:00
int size = list.size();
for (int i = 0; i < size; ++i) {
QFileInfo fi = list.at(i);
QString fullpath = fi.canonicalFilePath();
2014-05-19 03:46:02 +00:00
QString ext_s = fullpath.section('.', -1);
2011-06-26 08:30:44 +00:00
bool ok;
ext_s.toInt(&ok, 10);
2011-06-26 08:30:44 +00:00
if (ok) {
qDebug() << "Deleting " << QDir::toNativeSeparators(fullpath);
2014-05-19 03:46:02 +00:00
if (!dir.remove(fullpath)) {
qDebug() << "Could not purge file" << fullpath;
success=false;
could_not_kill++;
}
} else {
qDebug() << "Didn't bother deleting cruft file" << fullpath;
// cruft file..
}
2011-06-26 08:30:44 +00:00
}
if (could_not_kill > 0) {
2014-05-19 03:46:02 +00:00
qWarning() << "Could not purge path" << could_not_kill << "files in " << path;
return false;
2011-06-26 08:30:44 +00:00
}
2011-06-26 08:30:44 +00:00
return true;
}
void Machine::setLoaderName(QString value)
{
info.loadername = value;
m_loader = GetLoader(value);
}
void Machine::setInfo(MachineInfo inf)
{
info = inf;
m_loader = GetLoader(inf.loadername);
}
//const quint32 channel_version=1;
const QString Machine::getDataPath()
{
return p_profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/";
}
const QString Machine::getBackupPath()
{
return p_profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial) + "/Backup/");
}
2011-06-26 08:30:44 +00:00
bool Machine::Load()
{
QString path = getDataPath();
2011-06-26 08:30:44 +00:00
QDir dir(path);
qDebug() << "Loading " << QDir::toNativeSeparators(path);
2011-06-26 08:30:44 +00:00
if (!dir.exists() || !dir.isReadable()) {
2011-06-26 08:30:44 +00:00
return false;
}
2011-06-26 08:30:44 +00:00
dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks);
dir.setSorting(QDir::Name);
QFileInfoList list = dir.entryInfoList();
2011-06-26 08:30:44 +00:00
typedef QVector<QString> StringList;
QMap<SessionID, StringList> sessfiles;
QMap<SessionID, StringList>::iterator s;
2011-06-26 08:30:44 +00:00
QString fullpath, ext_s, sesstr;
2011-06-26 08:30:44 +00:00
int ext;
SessionID sessid;
bool ok;
for (int i = 0; i < list.size(); i++) {
QFileInfo fi = list.at(i);
fullpath = fi.canonicalFilePath();
ext_s = fi.fileName().section(".", -1);
ext = ext_s.toInt(&ok, 10);
if (!ok) { continue; }
sesstr = fi.fileName().section(".", 0, -2);
sessid = sesstr.toLong(&ok, 16);
if (!ok) { continue; }
if (sessfiles[sessid].capacity() == 0) { sessfiles[sessid].resize(3); }
sessfiles[sessid][ext] = fi.canonicalFilePath();
2011-06-26 08:30:44 +00:00
}
int size = sessfiles.size();
int cnt = 0;
for (s = sessfiles.begin(); s != sessfiles.end(); s++) {
if ((++cnt % 50) == 0) { // This is slow.. :-/
if (qprogress) { qprogress->setValue((float(cnt) / float(size) * 100.0)); }
QApplication::processEvents();
}
Session *sess = new Session(this, s.key());
2011-06-26 08:30:44 +00:00
if (sess->LoadSummary(s.value()[0])) {
sess->SetEventFile(s.value()[1]);
2014-07-11 12:09:38 +00:00
AddSession(sess);
} else {
2011-07-03 11:49:47 +00:00
qWarning() << "Error unpacking summary data";
2011-06-26 08:30:44 +00:00
delete sess;
}
}
if (qprogress) { qprogress->setValue(100); }
2011-06-26 08:30:44 +00:00
return true;
}
2014-07-11 12:09:38 +00:00
2011-06-26 08:30:44 +00:00
bool Machine::SaveSession(Session *sess)
{
QString path = getDataPath();
if (sess->IsChanged()) { sess->Store(path); }
2011-07-01 10:10:44 +00:00
return true;
2011-06-26 08:30:44 +00:00
}
void Machine::queSaveList(Session * sess)
{
if (!m_save_threads_running) {
// Threads aren't being used.. so run the actual immediately...
int i = (float(m_donetasks) / float(m_totaltasks) * 100.0);
qprogress->setValue(i);
QApplication::processEvents();
sess->UpdateSummaries();
sess->Store(getDataPath());
2014-07-11 12:09:38 +00:00
if (!p_profile->session->cacheSessions()) {
sess->TrashEvents();
}
} else {
2014-05-21 00:17:31 +00:00
listMutex.lock();
m_savelist.append(sess);
2014-05-21 00:17:31 +00:00
listMutex.unlock();
}
}
Session *Machine::popSaveList()
{
Session *sess = nullptr;
2014-05-21 00:17:31 +00:00
listMutex.lock();
if (!m_savelist.isEmpty()) {
sess = m_savelist.at(0);
m_savelist.pop_front();
m_donetasks++;
}
2014-05-21 00:17:31 +00:00
listMutex.unlock();
return sess;
}
// Call any time queing starts
void Machine::StartSaveThreads()
{
m_savelist.clear();
if (!p_profile->session->multithreading()) return;
QString path = getDataPath();
int threads = QThread::idealThreadCount();
savelistSem = new QSemaphore(threads);
savelistSem->acquire(threads);
m_save_threads_running = true;
m_donetasks=0;
m_totaltasks=0;
for (int i = 0; i < threads; i++) {
SaveThread * thr = new SaveThread(this, path);
QObject::connect(thr, SIGNAL(UpdateProgress(int)), qprogress, SLOT(setValue(int)));
thread.push_back(thr);
thread[i]->start();
}
}
// Call when all queing is completed
void Machine::FinishSaveThreads()
{
if (!m_save_threads_running)
return;
m_save_threads_running = false;
// Wait for all tasks to finish
while (!savelistSem->tryAcquire(thread.size(), 250)) {
if (qprogress) {
QApplication::processEvents();
}
}
for (int i = 0; i < thread.size(); ++i) {
while (thread[i]->isRunning()) {
SaveThread::msleep(250);
QApplication::processEvents();
}
QObject::disconnect(thread[i], SIGNAL(UpdateProgress(int)), qprogress, SLOT(setValue(int)));
delete thread[i];
}
delete savelistSem;
}
void SaveThread::run()
{
bool running = true;
while (running) {
Session *sess = machine->popSaveList();
if (sess) {
if (machine->m_donetasks % 10 == 0) {
int i = (float(machine->m_donetasks) / float(machine->m_totaltasks) * 100.0);
emit UpdateProgress(i);
}
sess->UpdateSummaries();
2014-05-21 00:17:31 +00:00
machine->saveMutex.lock();
sess->Store(path);
2014-05-21 00:17:31 +00:00
machine->saveMutex.unlock();
sess->TrashEvents();
} else {
if (!machine->m_save_threads_running) {
break; // done
} else {
yieldCurrentThread(); // go do something else for a while
}
}
}
machine->savelistSem->release(1);
}
2014-05-21 00:17:31 +00:00
class SaveTask:public ImportTask
{
public:
SaveTask(Session * s, Machine * m): sess(s), mach(m) {}
virtual ~SaveTask() {}
virtual void run();
protected:
Session * sess;
Machine * mach;
};
void SaveTask::run()
{
sess->UpdateSummaries();
mach->saveMutex.lock();
sess->Store(mach->getDataPath());
2014-05-21 00:17:31 +00:00
mach->saveMutex.unlock();
sess->TrashEvents();
}
void Machine::queTask(ImportTask * task)
{
2014-07-11 12:09:38 +00:00
if (0) { //p_profile->session->multithreading()) {
2014-05-21 00:17:31 +00:00
m_tasklist.push_back(task);
return;
}
task->run();
return;
}
void Machine::runTasks()
{
2014-07-11 12:09:38 +00:00
if (0) { //!p_profile->session->multithreading()) {
2014-05-21 00:17:31 +00:00
Q_ASSERT(m_tasklist.isEmpty());
return;
}
QThreadPool * threadpool = QThreadPool::globalInstance();
int m_totaltasks=m_tasklist.size();
int m_currenttask=0;
while (!m_tasklist.isEmpty()) {
if (threadpool->tryStart(m_tasklist.at(0))) {
m_tasklist.pop_front();
float f = float(m_currenttask) / float(m_totaltasks) * 100.0;
qprogress->setValue(f);
m_currenttask++;
}
QApplication::processEvents();
}
QThreadPool::globalInstance()->waitForDone(-1);
}
2011-06-26 08:30:44 +00:00
bool Machine::Save()
{
//int size;
int cnt = 0;
2011-06-26 08:30:44 +00:00
QString path = getDataPath();
QDir dir(path);
if (!dir.exists()) {
dir.mkdir(path);
}
QHash<SessionID, Session *>::iterator s;
m_savelist.clear();
for (s = sessionlist.begin(); s != sessionlist.end(); s++) {
2011-08-05 07:52:32 +00:00
cnt++;
if ((*s)->IsChanged()) {
2014-05-21 00:17:31 +00:00
queTask(new SaveTask(*s, this));
}
}
2014-05-21 00:17:31 +00:00
runTasks();
2011-06-26 08:30:44 +00:00
return true;
}
//////////////////////////////////////////////////////////////////////////////////////////
// CPAP implmementation
//////////////////////////////////////////////////////////////////////////////////////////
2014-07-11 12:09:38 +00:00
CPAP::CPAP(MachineID id): Machine(id)
2011-06-26 08:30:44 +00:00
{
m_type = MT_CPAP;
2011-06-26 08:30:44 +00:00
}
CPAP::~CPAP()
{
}
//////////////////////////////////////////////////////////////////////////////////////////
// Oximeter Class implmementation
//////////////////////////////////////////////////////////////////////////////////////////
2014-07-11 12:09:38 +00:00
Oximeter::Oximeter(MachineID id): Machine(id)
2011-06-26 08:30:44 +00:00
{
m_type = MT_OXIMETER;
2011-06-26 08:30:44 +00:00
}
Oximeter::~Oximeter()
{
}
//////////////////////////////////////////////////////////////////////////////////////////
// SleepStage Class implmementation
//////////////////////////////////////////////////////////////////////////////////////////
2014-07-11 12:09:38 +00:00
SleepStage::SleepStage(MachineID id): Machine(id)
2011-06-26 08:30:44 +00:00
{
m_type = MT_SLEEPSTAGE;
2011-06-26 08:30:44 +00:00
}
SleepStage::~SleepStage()
{
}
//////////////////////////////////////////////////////////////////////////////////////////
// PositionSensor Class implmementation
//////////////////////////////////////////////////////////////////////////////////////////
2014-07-11 12:09:38 +00:00
PositionSensor::PositionSensor(MachineID id): Machine(id)
{
m_type = MT_POSITION;
}
PositionSensor::~PositionSensor()
{
}