2014-04-09 21:01:57 +00:00
|
|
|
/* -*- 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 Session Header
|
|
|
|
* This stuff contains the base calculation smarts
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
#ifndef SESSION_H
|
|
|
|
#define SESSION_H
|
|
|
|
|
2011-07-19 15:31:51 +00:00
|
|
|
#include <QDebug>
|
2011-07-31 20:24:43 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QVector>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
#include "SleepLib/machine.h"
|
2011-09-17 12:39:00 +00:00
|
|
|
#include "SleepLib/schema.h"
|
2011-07-27 09:21:53 +00:00
|
|
|
#include "SleepLib/event.h"
|
2011-09-17 12:39:00 +00:00
|
|
|
//class EventList;
|
2011-06-26 08:30:44 +00:00
|
|
|
class Machine;
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
/*! \class Session
|
|
|
|
\brief Contains a single Sessions worth of machine event/waveform information.
|
2011-09-10 04:20:45 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
This class also contains all the primary database logic for SleepLib
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class Session
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-12-18 13:20:01 +00:00
|
|
|
/*! \fn Session(Machine *,SessionID);
|
|
|
|
\brief Create a session object belonging to Machine, with supplied SessionID
|
|
|
|
If sessionID is 0, the next in sequence will be picked
|
|
|
|
*/
|
2014-04-17 05:58:57 +00:00
|
|
|
Session(Machine *, SessionID);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~Session();
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Stores the session in the directory supplied by path
|
2011-06-26 08:30:44 +00:00
|
|
|
bool Store(QString path);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Writes the Sessions Summary Indexes to filename, in SleepLibs custom data format.
|
2011-06-26 08:30:44 +00:00
|
|
|
bool StoreSummary(QString filename);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Writes the Sessions EventLists to filename, in SleepLibs custom data format.
|
2011-06-26 08:30:44 +00:00
|
|
|
bool StoreEvents(QString filename);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
//bool Load(QString path);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Loads the Sessions Summary Indexes from filename, from SleepLibs custom data format.
|
2011-06-26 08:30:44 +00:00
|
|
|
bool LoadSummary(QString filename);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Loads the Sessions EventLists from filename, from SleepLibs custom data format.
|
2011-06-26 08:30:44 +00:00
|
|
|
bool LoadEvents(QString filename);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Loads the events for this session when requested (only the summaries are loaded at startup)
|
2011-07-03 11:49:47 +00:00
|
|
|
bool OpenEvents();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Put the events away until needed again, freeing memory
|
2011-06-26 08:30:44 +00:00
|
|
|
void TrashEvents();
|
|
|
|
|
2014-05-07 00:10:13 +00:00
|
|
|
//! \brief Returns true if session contains an empty duration
|
|
|
|
inline bool isEmpty() { return (s_first == s_last); }
|
|
|
|
|
2014-07-20 16:22:51 +00:00
|
|
|
//! \brief Search for Event code happening at supplied time (ms since epoch)
|
|
|
|
EventDataType SearchValue(ChannelID code, qint64 time);
|
2011-12-14 04:54:17 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Return the sessionID
|
2014-04-17 05:58:57 +00:00
|
|
|
inline const SessionID &session() {
|
2011-06-26 08:30:44 +00:00
|
|
|
return s_session;
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
|
2011-12-28 12:03:48 +00:00
|
|
|
//! \brief Returns whether or not session is being used.
|
|
|
|
bool enabled();
|
|
|
|
|
|
|
|
//! \brief Sets whether or not session is being used.
|
|
|
|
void setEnabled(bool b);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Return the start of this sessions time range (in milliseconds since epoch)
|
2012-01-19 15:18:34 +00:00
|
|
|
qint64 first();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Return the end of this sessions time range (in milliseconds since epoch)
|
2012-01-19 15:18:34 +00:00
|
|
|
qint64 last();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Return the millisecond length of this session
|
2011-08-07 15:37:01 +00:00
|
|
|
qint64 length() {
|
2014-04-17 05:58:57 +00:00
|
|
|
return s_last - s_first;
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Set this Sessions ID (Not does not update indexes)
|
2011-06-26 08:30:44 +00:00
|
|
|
void SetSessionID(SessionID s) {
|
2014-04-17 05:58:57 +00:00
|
|
|
s_session = s;
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Moves all of this session data by offset d milliseconds
|
2011-12-06 14:39:14 +00:00
|
|
|
void offsetSession(qint64 d);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Just set the start of the timerange without comparing
|
2014-04-17 05:58:57 +00:00
|
|
|
void really_set_first(qint64 d) { s_first = d; }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Just set the end of the timerange without comparing
|
2014-04-17 05:58:57 +00:00
|
|
|
void really_set_last(qint64 d) { s_last = d; }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2011-07-02 14:35:50 +00:00
|
|
|
void set_first(qint64 d) {
|
2014-04-17 05:58:57 +00:00
|
|
|
if (!s_first) { s_first = d; }
|
|
|
|
else if (d < s_first) { s_first = d; }
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-07-02 14:35:50 +00:00
|
|
|
void set_last(qint64 d) {
|
2014-04-17 05:58:57 +00:00
|
|
|
if (d <= s_first) {
|
2011-07-19 15:31:51 +00:00
|
|
|
qWarning() << "Session::set_last() d<=s_first";
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
if (!s_last) { s_last = d; }
|
|
|
|
else if (s_last < d) { s_last = d; }
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Return Session Length in decimal hours
|
2011-07-03 02:43:50 +00:00
|
|
|
double hours() {
|
2014-04-17 05:58:57 +00:00
|
|
|
double t = (s_last - s_first) / 3600000.0;
|
2011-07-02 14:35:50 +00:00
|
|
|
return t;
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Flag this Session as dirty, so Machine object can save it
|
2011-06-26 08:30:44 +00:00
|
|
|
void SetChanged(bool val) {
|
2014-04-17 05:58:57 +00:00
|
|
|
s_changed = val;
|
|
|
|
s_events_loaded = val; // dirty hack putting this here
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Return this Sessions dirty status
|
2011-06-26 08:30:44 +00:00
|
|
|
bool IsChanged() {
|
|
|
|
return s_changed;
|
2011-08-07 15:37:01 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-07-02 03:22:09 +00:00
|
|
|
//! \brief Return the unit type string used by events of supplied channel
|
|
|
|
QString dimension(ChannelID);
|
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Contains all the EventLists, indexed by ChannelID
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, QVector<EventList *> > eventlist;
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Sessions Settings List, contianing single settings for this session.
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, QVariant> settings;
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
// Session caches
|
2014-06-20 02:06:57 +00:00
|
|
|
QHash<ChannelID, EventDataType> m_cnt;
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, double> m_sum;
|
|
|
|
QHash<ChannelID, EventDataType> m_avg;
|
|
|
|
QHash<ChannelID, EventDataType> m_wavg;
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, EventDataType> m_min; // The actual minimum
|
|
|
|
QHash<ChannelID, EventDataType> m_max;
|
2013-10-25 10:39:30 +00:00
|
|
|
|
|
|
|
// This could go in channels, but different machines interpret it differently
|
|
|
|
// Under the new SleepyLib data Device model this can be done, but unfortunately not here..
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, EventDataType> m_physmin; // The physical minimum for graph display purposes
|
|
|
|
QHash<ChannelID, EventDataType> m_physmax; // The physical maximum
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, EventDataType> m_cph; // Counts per hour (eg AHI)
|
|
|
|
QHash<ChannelID, EventDataType> m_sph; // % indice (eg % night in CSR)
|
|
|
|
QHash<ChannelID, quint64> m_firstchan;
|
|
|
|
QHash<ChannelID, quint64> m_lastchan;
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, QHash<EventStoreType, EventStoreType> > m_valuesummary;
|
|
|
|
QHash<ChannelID, QHash<EventStoreType, quint32> > m_timesummary;
|
|
|
|
QHash<ChannelID, EventDataType> m_gain;
|
2011-12-24 01:22:41 +00:00
|
|
|
|
2012-01-10 06:19:49 +00:00
|
|
|
//! \brief Generates sum and time data for each distinct value in 'code' events..
|
2011-12-24 01:22:41 +00:00
|
|
|
void updateCountSummary(ChannelID code);
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2012-01-10 06:19:49 +00:00
|
|
|
//! \brief Destroy any trace of event 'code', freeing any memory if loaded.
|
|
|
|
void destroyEvent(ChannelID code);
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
// UpdateSummaries may recalculate all these, but it may be faster setting upfront
|
2014-06-20 02:06:57 +00:00
|
|
|
void setCount(ChannelID id, EventDataType val) { m_cnt[id] = val; }
|
2014-04-17 05:58:57 +00:00
|
|
|
void setSum(ChannelID id, EventDataType val) { m_sum[id] = val; }
|
|
|
|
void setMin(ChannelID id, EventDataType val) { m_min[id] = val; }
|
|
|
|
void setMax(ChannelID id, EventDataType val) { m_max[id] = val; }
|
|
|
|
void setPhysMin(ChannelID id, EventDataType val) { m_physmin[id] = val; }
|
|
|
|
void setPhysMax(ChannelID id, EventDataType val) { m_physmax[id] = val; }
|
|
|
|
void updateMin(ChannelID id, EventDataType val) {
|
|
|
|
QHash<ChannelID, EventDataType>::iterator i = m_min.find(id);
|
|
|
|
|
|
|
|
if (i == m_min.end()) {
|
|
|
|
m_min[id] = val;
|
|
|
|
} else if (i.value() > val) {
|
2013-10-25 10:39:30 +00:00
|
|
|
i.value() = val;
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
void updateMax(ChannelID id, EventDataType val) {
|
|
|
|
QHash<ChannelID, EventDataType>::iterator i = m_max.find(id);
|
|
|
|
|
|
|
|
if (i == m_max.end()) {
|
|
|
|
m_max[id] = val;
|
|
|
|
} else if (i.value() < val) {
|
2013-10-25 10:39:30 +00:00
|
|
|
i.value() = val;
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
void setAvg(ChannelID id, EventDataType val) { m_avg[id] = val; }
|
|
|
|
void setWavg(ChannelID id, EventDataType val) { m_wavg[id] = val; }
|
|
|
|
// void setMedian(ChannelID id,EventDataType val) { m_med[id]=val; }
|
|
|
|
// void set90p(ChannelID id,EventDataType val) { m_90p[id]=val; }
|
|
|
|
// void set95p(ChannelID id,EventDataType val) { m_95p[id]=val; }
|
|
|
|
void setCph(ChannelID id, EventDataType val) { m_cph[id] = val; }
|
|
|
|
void setSph(ChannelID id, EventDataType val) { m_sph[id] = val; }
|
|
|
|
void setFirst(ChannelID id, qint64 val) { m_firstchan[id] = val; }
|
|
|
|
void setLast(ChannelID id, qint64 val) { m_lastchan[id] = val; }
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2014-06-20 02:06:57 +00:00
|
|
|
EventDataType count(ChannelID id);
|
2011-11-28 01:39:28 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns the Count of all events of type id between time range
|
2014-06-20 02:06:57 +00:00
|
|
|
EventDataType rangeCount(ChannelID id, qint64 first, qint64 last);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the Sum of all events of type id between time range
|
2014-04-17 05:58:57 +00:00
|
|
|
double rangeSum(ChannelID id, qint64 first, qint64 last);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the minimum of events of type id between time range
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType rangeMin(ChannelID id, qint64 first, qint64 last);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the maximum of events of type id between time range
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType rangeMax(ChannelID id, qint64 first, qint64 last);
|
2011-11-28 01:39:28 +00:00
|
|
|
|
2014-07-30 17:14:28 +00:00
|
|
|
//! \brief Returns the count of code events inside span flag event durations
|
|
|
|
EventDataType countInsideSpan(ChannelID span, ChannelID code);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns (and caches) the Sum of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
double sum(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Average of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType avg(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Time Weighted Average of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType wavg(ChannelID i);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Minimum of all events of type id
|
2011-12-17 14:38:15 +00:00
|
|
|
EventDataType Min(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Maximum of all events of type id
|
2011-12-17 14:38:15 +00:00
|
|
|
EventDataType Max(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
//! \brief Returns (and caches) the Minimum of all events of type id
|
|
|
|
EventDataType physMin(ChannelID id);
|
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Maximum of all events of type id
|
|
|
|
EventDataType physMax(ChannelID id);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns (and caches) the 90th Percentile of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType p90(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2011-12-30 23:02:45 +00:00
|
|
|
//! \brief Returns (and caches) the 95th Percentile of all events of type id
|
|
|
|
EventDataType p95(ChannelID id);
|
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Median (50th Perc) of all events of type id
|
|
|
|
EventDataType median(ChannelID id);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns (and caches) the Count-Per-Hour of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType cph(ChannelID id);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the Sum-Per-Hour of all events of type id
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType sph(ChannelID id);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns (without caching) the requested Percentile of all events of type id
|
2014-04-17 05:58:57 +00:00
|
|
|
EventDataType percentile(ChannelID id, EventDataType percentile);
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2014-05-15 20:48:05 +00:00
|
|
|
//! \brief Returns the amount of time (in decimal minutes) the Channel spent above the threshold
|
|
|
|
EventDataType timeAboveThreshold(ChannelID id, EventDataType threshold);
|
|
|
|
|
|
|
|
//! \brief Returns the amount of time (in decimal minutes) the Channel spent below the threshold
|
|
|
|
EventDataType timeBelowThreshold(ChannelID id, EventDataType threshold);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns true if the channel has events loaded, or a record of a count for when they are not
|
2011-12-21 17:00:19 +00:00
|
|
|
bool channelExists(ChannelID name);
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2012-01-10 06:19:49 +00:00
|
|
|
//! \brief Returns true if the channel has event data available (must be loaded first)
|
|
|
|
bool channelDataExists(ChannelID id);
|
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
bool IsLoneSession() { return s_lonesession; }
|
2014-04-17 05:58:57 +00:00
|
|
|
void SetLoneSession(bool b) { s_lonesession = b; }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2011-12-23 10:52:31 +00:00
|
|
|
bool eventsLoaded() { return s_events_loaded; }
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Sets the event file linked to the summary (during load, for ondemand loading)
|
2014-04-17 05:58:57 +00:00
|
|
|
void SetEventFile(QString &filename) { s_eventfile = filename; }
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Update this sessions first time if it's less than the current record
|
2014-04-17 05:58:57 +00:00
|
|
|
inline void updateFirst(qint64 v) { if (!s_first) { s_first = v; } else if (s_first > v) { s_first = v; } }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Update this sessions latest time if it's more than the current record
|
2014-04-17 05:58:57 +00:00
|
|
|
inline void updateLast(qint64 v) { if (!s_last) { s_last = v; } else if (s_last < v) { s_last = v; } }
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns (and caches) the first time for Channel code
|
2011-07-31 20:24:43 +00:00
|
|
|
qint64 first(ChannelID code);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns (and caches) the last time for Channel code
|
2011-07-31 20:24:43 +00:00
|
|
|
qint64 last(ChannelID code);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Regenerates the Session Index Caches, and calls the fun calculation functions
|
2011-07-31 20:24:43 +00:00
|
|
|
void UpdateSummaries();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Creates and returns a new EventList for the supplied Channel code
|
2014-04-17 05:58:57 +00:00
|
|
|
EventList *AddEventList(ChannelID code, EventListType et, EventDataType gain = 1.0,
|
|
|
|
EventDataType offset = 0.0, EventDataType min = 0.0, EventDataType max = 0.0,
|
|
|
|
EventDataType rate = 0.0, bool second_field = false);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns this sessions MachineID
|
2014-04-17 05:58:57 +00:00
|
|
|
Machine *machine() { return s_machine; }
|
2014-05-18 17:06:58 +00:00
|
|
|
|
2014-05-19 03:46:02 +00:00
|
|
|
//! \brief Returns true if session only contains summary data
|
2014-07-02 11:58:36 +00:00
|
|
|
inline bool summaryOnly() {
|
|
|
|
return s_summaryOnly;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void setSummaryOnly(bool b) {
|
|
|
|
s_summaryOnly = b;
|
|
|
|
}
|
2014-05-19 03:46:02 +00:00
|
|
|
|
|
|
|
//! \brief Completely purges Session from memory and disk.
|
2014-05-18 17:06:58 +00:00
|
|
|
bool Destroy();
|
|
|
|
|
|
|
|
void wipeSummary() {
|
|
|
|
s_first = s_last = 0;
|
|
|
|
s_enabled = true;
|
|
|
|
m_cph.clear();
|
|
|
|
m_sum.clear();
|
|
|
|
m_cnt.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString & eventFile() { return s_eventfile; }
|
2014-07-28 13:56:29 +00:00
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
protected:
|
2011-06-26 08:30:44 +00:00
|
|
|
SessionID s_session;
|
|
|
|
|
|
|
|
Machine *s_machine;
|
2011-07-02 14:35:50 +00:00
|
|
|
qint64 s_first;
|
|
|
|
qint64 s_last;
|
2011-06-26 08:30:44 +00:00
|
|
|
bool s_changed;
|
|
|
|
bool s_lonesession;
|
2012-01-05 11:35:23 +00:00
|
|
|
bool s_evchecksum_checked;
|
2011-06-26 08:30:44 +00:00
|
|
|
bool _first_session;
|
2014-07-02 11:58:36 +00:00
|
|
|
bool s_summaryOnly;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
bool s_events_loaded;
|
2011-12-28 12:03:48 +00:00
|
|
|
char s_enabled;
|
2011-06-26 08:30:44 +00:00
|
|
|
QString s_eventfile;
|
2014-05-18 17:06:58 +00:00
|
|
|
|
2014-07-25 07:53:48 +00:00
|
|
|
// for debugging
|
|
|
|
bool destroyed;
|
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SESSION_H
|