improve debug statements

This commit is contained in:
LoudSnorer 2023-11-02 20:04:30 -04:00
parent 7fe7672aa6
commit 1fd6eff2af
2 changed files with 20 additions and 5 deletions

View File

@ -7,6 +7,9 @@
* License. See the file COPYING in the main directory of the source code
* for more details. */
#define TEST_MACROS_ENABLEDoff
#include <test_macros.h>
#include <QMutex>
#include <QFile>
#include <QDataStream>
@ -288,7 +291,8 @@ void FlowParser::openFlow(Session *session, EventList *flow)
// Make sure we won't overflow internal buffers
if (m_samples > max_filter_buf_size_entries) {
qDebug() << "Error: Sample size exceeds max_filter_buf_size_entries in FlowParser::openFlow().. Capping!!!";
qDebug() << "Error: Sample size exceeds max_filter_buf_size_entries in FlowParser::openFlow().. Capping!!! "
<< DateTime::fromMSecsSinceEpoch(session->realFirst()).toString();
m_samples = max_filter_buf_size_entries;
}

View File

@ -1067,7 +1067,7 @@ void Session::destroyEvent(ChannelID code)
// TODO: The below assumes values are held for their duration. This does not properly handle
// CPAP_PressureSet/EPAPSet/IPAPSet or other interpolated channels. The proper "value" held
// for any given duration is the average of the starding and ending values, for the duration
// for any given duration is the average of the starting and ending values, for the duration
// between them.
void Session::updateCountSummary(ChannelID code)
{
@ -1109,9 +1109,20 @@ void Session::updateCountSummary(ChannelID code)
m_gain[code] = e.gain();
if (e.type() == EVL_Event) {
lastraw = *dptr++;
tptr = e.rawTime();
// The last event event raw time is never updated with the len to the next.
// this is true for multiple samples or for a single sample.
// a single sample is the first as well as the last sample.
// so a single sample should work.
// the iBreeze loader had snore events with a single snore sample for a session.
// which triggered this investigation.
#if defined(FIX_FOR_SINGLE_EVENT)
lastraw = *dptr;
lasttime = start + *tptr;
#else
lastraw = *dptr++;
lasttime = start + *tptr++;
#endif
// Event version
for (; dptr < eptr; dptr++) {
@ -1154,7 +1165,7 @@ void Session::updateCountSummary(ChannelID code)
Channel *ch_p = channel.channels[code];
if ( ! ch_p->isNull() ) { // the channel was found in the channel list
if ( ((ch_p->type() & (FLAG|SPAN|MINOR_FLAG)) == 0) ) { // the channel is not a flag or span type
qDebug() << "No valuesummary for channel " << ch_p->label(); // so tell about missing summary
qDebug() << "No valuesummary for channel " << ch_p->label() << " " << QDateTime::fromMSecsSinceEpoch( realFirst()).toString() ; // so tell about missing summary
}
} else {
// This channel wasn't added to the channel list, so we can't check its type