mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix Day::hours() calculation glitch with empty sessions
This commit is contained in:
parent
8aa0c2b8b4
commit
3f86358507
@ -383,20 +383,27 @@ qint64 Day::total_time()
|
||||
|
||||
// Remember sessions may overlap..
|
||||
|
||||
qint64 first, last;
|
||||
QList<Session *>::iterator end = sessions.end();
|
||||
for (QList<Session *>::iterator it = sessions.begin(); it != end; ++it) {
|
||||
Session &sess = *(*it);
|
||||
|
||||
if (sess.enabled()) {
|
||||
range.insert(sess.first(), 0);
|
||||
range.insert(sess.last(), 1);
|
||||
first = sess.first();
|
||||
last = sess.last();
|
||||
|
||||
// This algorithm relies on non zero length, and correctly ordered sessions
|
||||
if (last > first) {
|
||||
range.insert(first, 0);
|
||||
range.insert(last, 1);
|
||||
d_totaltime += sess.length();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
qint64 ti = 0;
|
||||
bool b;
|
||||
int nest = 0;
|
||||
qint64 ti = 0;
|
||||
qint64 total = 0;
|
||||
|
||||
// This is my implementation of a typical "brace counting" algorithm mentioned here:
|
||||
|
@ -1582,13 +1582,14 @@ int ResmedLoader::Open(QString &path, Profile *profile)
|
||||
// Add the session to the machine & profile objects
|
||||
//if (!dodgy)
|
||||
|
||||
if (sess->length() > 0) {
|
||||
// FIXME: Deliberately broken, uncomment
|
||||
// if (sess->length() > 0) {
|
||||
m->AddSession(sess, profile);
|
||||
} else {
|
||||
// Hmm.. this means a ton of these could slow down import.
|
||||
// I could instead set these to disabled by default, or implement a dodgy session marker
|
||||
delete sess;
|
||||
}
|
||||
// } else {
|
||||
// // Hmm.. this means a ton of these could slow down import.
|
||||
// // I could instead set these to disabled by default, or implement a dodgy session marker
|
||||
// delete sess;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -61,6 +61,9 @@ class Session
|
||||
//! \brief Put the events away until needed again, freeing memory
|
||||
void TrashEvents();
|
||||
|
||||
//! \brief Returns true if session contains an empty duration
|
||||
inline bool isEmpty() { return (s_first == s_last); }
|
||||
|
||||
//! \brief Search for Event code happening within dist milliseconds of supplied time (ms since epoch)
|
||||
bool SearchEvent(ChannelID code, qint64 time, qint64 dist = 15000);
|
||||
|
||||
|
@ -56,7 +56,7 @@ unix:!macx {
|
||||
}
|
||||
|
||||
macx {
|
||||
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
|
||||
# QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6.8
|
||||
|
||||
LIBS += -lz
|
||||
ICON = icons/iconfile.icns
|
||||
|
Loading…
Reference in New Issue
Block a user