Clean up a few unused variables and nullptr risks with clang static analyzer. Fix a bug in Journal day selection

This commit is contained in:
Mark Watkins 2018-03-28 16:22:42 +10:00
parent 1ff24834e0
commit 4ed77fc64a
20 changed files with 83 additions and 63 deletions

View File

@ -202,7 +202,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
peakmult = double(height+2) / (peak/peakstep); peakmult = double(height+2) / (peak/peakstep);
if (peakmult < h+4) { if (peakmult < h+4) {
peakstep = 40.0; peakstep = 40.0;
peakmult = double(height+2) / (peak/peakstep); //peakmult = double(height+2) / (peak/peakstep);
} }
} }
} }
@ -380,7 +380,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
r = double(height+3) / (evpeak/g); r = double(height+3) / (evpeak/g);
if (r < h+4) { if (r < h+4) {
g = 20.0; g = 20.0;
r = double(height+3) / (evpeak/g); //r = double(height+3) / (evpeak/g);
} }
} }
} }

View File

@ -132,7 +132,9 @@ gGraph::gGraph(QString name, gGraphView *graphview, QString title, QString units
{ {
if (height == 0) { if (height == 0) {
height = p_profile->appearance->graphHeight(); height = p_profile->appearance->graphHeight();
Q_UNUSED(height)
} }
if (graphview && graphview->contains(name)) { if (graphview && graphview->contains(name)) {
qDebug() << "Trying to duplicate " << name << " when a graph with the same name already exists"; qDebug() << "Trying to duplicate " << name << " when a graph with the same name already exists";
name+="-1"; name+="-1";
@ -753,8 +755,8 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
int w = m_rect.width() - left - right; int w = m_rect.width() - left - right;
double xx = max_x - min_x; double xx; //= max_x - min_x;
double xmult = xx / double(w); double xmult;// = xx / double(w);
{ {
xmult = (m_blockzoom ? double(rmax_x - rmin_x) : double(max_x - min_x)) / double(w); xmult = (m_blockzoom ? double(rmax_x - rmin_x) : double(max_x - min_x)) / double(w);
@ -927,7 +929,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
int h = m_rect.height() - bottom; //+m_marginbottom); int h = m_rect.height() - bottom; //+m_marginbottom);
int x2 = m_graphview->pointClicked().x() - m_rect.left(); int x2 = m_graphview->pointClicked().x() - m_rect.left();
int y2 = m_graphview->pointClicked().y() - m_rect.top(); //int y2 = m_graphview->pointClicked().y() - m_rect.top();
m_selDurString = QString(); m_selDurString = QString();
@ -939,9 +941,9 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
if (m_graphview->horizTravel() > mouse_movement_threshold) { if (m_graphview->horizTravel() > mouse_movement_threshold) {
x -= left; //+m_marginleft; x -= left; //+m_marginleft;
y -= top; //+m_margintop; //y -= top; //+m_margintop;
x2 -= left; //+m_marginleft; x2 -= left; //+m_marginleft;
y2 -= top; //+m_margintop; //y2 -= top; //+m_margintop;
if (x < 0) { x = 0; } if (x < 0) { x = 0; }
@ -1018,7 +1020,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
} }
} else { } else {
x -= left; x -= left;
y -= top; //y -= top;
//w-=m_marginleft+left; //w-=m_marginleft+left;
double qq = rmax_x - rmin_x; double qq = rmax_x - rmin_x;
double xmult; double xmult;

View File

@ -515,6 +515,8 @@ bool gGraphView::pinchTriggered(QPinchGesture * gesture)
if (!graph) { return true; } if (!graph) { return true; }
Q_UNUSED(group)
//qDebug() << gesture << gesture->scaleFactor(); //qDebug() << gesture << gesture->scaleFactor();
if (gesture->state() == Qt::GestureStarted) { if (gesture->state() == Qt::GestureStarted) {
pinch_min = m_minx; pinch_min = m_minx;
@ -1051,9 +1053,10 @@ void gGraphView::GetRXBounds(qint64 &st, qint64 &et)
break; break;
} }
} }
if (g) {
st = g->rmin_x; st = g->rmin_x;
et = g->rmax_x; et = g->rmax_x;
}
} }
void gGraphView::ResetBounds(bool refresh) //short group) void gGraphView::ResetBounds(bool refresh) //short group)
@ -2524,14 +2527,14 @@ void gGraphView::mousePressEvent(QMouseEvent *event)
m_sizer_point.setX(x); m_sizer_point.setX(x);
m_sizer_point.setY(py); // point at top of graph.. m_sizer_point.setY(py); // point at top of graph..
this->setCursor(Qt::ClosedHandCursor); this->setCursor(Qt::ClosedHandCursor);
done=true; //done=true;
} else if ((event->button() == Qt::RightButton) && (x < (titleWidth + gYAxis::Margin))) { } else if ((event->button() == Qt::RightButton) && (x < (titleWidth + gYAxis::Margin))) {
this->setCursor(Qt::ArrowCursor); this->setCursor(Qt::ArrowCursor);
pin_action->setText(QObject::tr("Unpin %1 Graph").arg(g->title())); pin_action->setText(QObject::tr("Unpin %1 Graph").arg(g->title()));
pin_graph = g; pin_graph = g;
populateMenu(g); populateMenu(g);
context_menu->popup(event->globalPos()); context_menu->popup(event->globalPos());
done=true; //done=true;
} else if (!g->blockSelect()) { } else if (!g->blockSelect()) {
if (m_metaselect) { if (m_metaselect) {
if (m_selected_graph) { if (m_selected_graph) {
@ -2587,7 +2590,7 @@ void gGraphView::mousePressEvent(QMouseEvent *event)
m_sizer_point.setX(x); m_sizer_point.setX(x);
m_sizer_point.setY(y); m_sizer_point.setY(y);
//qDebug() << "Sizer clicked" << i; //qDebug() << "Sizer clicked" << i;
done=true; //done=true;
} else if ((y >= py) && (y < py + h)) { } else if ((y >= py) && (y < py + h)) {
//qDebug() << "Clicked" << i; //qDebug() << "Clicked" << i;
@ -2599,7 +2602,7 @@ void gGraphView::mousePressEvent(QMouseEvent *event)
m_sizer_point.setX(x); m_sizer_point.setX(x);
m_sizer_point.setY(py); // point at top of graph.. m_sizer_point.setY(py); // point at top of graph..
this->setCursor(Qt::ClosedHandCursor); this->setCursor(Qt::ClosedHandCursor);
done=true; //done=true;
} else if ((event->button() == Qt::RightButton) && (x < (titleWidth + gYAxis::Margin))) { } else if ((event->button() == Qt::RightButton) && (x < (titleWidth + gYAxis::Margin))) {
this->setCursor(Qt::ArrowCursor); this->setCursor(Qt::ArrowCursor);
pin_action->setText(QObject::tr("Pin %1 Graph").arg(g->title())); pin_action->setText(QObject::tr("Pin %1 Graph").arg(g->title()));
@ -2607,7 +2610,7 @@ void gGraphView::mousePressEvent(QMouseEvent *event)
populateMenu(g); populateMenu(g);
context_menu->popup(event->globalPos()); context_menu->popup(event->globalPos());
done=true; //done=true;
} else if (!g->blockSelect()) { } else if (!g->blockSelect()) {
if (m_metaselect) { if (m_metaselect) {
if (m_selected_graph) { if (m_selected_graph) {

View File

@ -700,9 +700,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
double ZW = ZR / (width * ZQ); double ZW = ZR / (width * ZQ);
visible_points += ZR * ZQ; visible_points += ZR * ZQ;
if (accel && n > 0) { // if (accel && n > 0) {
sam = 1; // sam = 1;
} // }
if (ZW < num_averages) { if (ZW < num_averages) {
sam = 1; sam = 1;
@ -921,11 +921,11 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
siz -= idx; siz -= idx;
int gs = siz << 1; // int gs = siz << 1;
if (square_plot) { // if (square_plot) {
gs <<= 1; // gs <<= 1;
} // }
// Unrolling square plot outside of loop to gain a minor speed improvement. // Unrolling square plot outside of loop to gain a minor speed improvement.
EventStoreType *eptr = dptr + siz; EventStoreType *eptr = dptr + siz;

View File

@ -355,7 +355,7 @@ void gSummaryChart::populate(Day * day, int idx)
value = hours; value = hours;
name = QObject::tr("Hours"); name = QObject::tr("Hours");
color = COLOR_LightBlue; color = COLOR_LightBlue;
slices.append(SummaryChartSlice(&item, hours, hours, name, color)); slices.append(SummaryChartSlice(&item, value, hours, name, color));
break; break;
case ST_MIN: case ST_MIN:
value = day->Min(code); value = day->Min(code);

View File

@ -160,11 +160,11 @@ void SummaryChart::SetDay(Day * nullday)
// skip any empty or irrelevant day records // skip any empty or irrelevant day records
if (!day || (day->machine(m_machinetype) == nullptr)) { continue; } if (!day || (day->machine(m_machinetype) == nullptr)) { continue; }
int ft = qint64(day->first()) / 1000L; //int ft = qint64(day->first()) / 1000L;
ft += tz_offset; // convert to local time //ft += tz_offset; // convert to local time
int dz2 = ft / 86400; //int dz2 = ft / 86400;
dz2 *= 86400; //dz2 *= 86400;
// ft = first sessions time, rounded back to midnight.. // ft = first sessions time, rounded back to midnight..
// For each session in this day record // For each session in this day record
@ -451,7 +451,7 @@ void SummaryChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
barw = (float(width) / float(days)); barw = (float(width) / float(days));
// graph = &w; // graph = &w;
float px = left; float px;// = left;
l_left = w.marginLeft() + gYAxis::Margin; l_left = w.marginLeft() + gYAxis::Margin;
l_top = w.marginTop(); l_top = w.marginTop();
l_width = width; l_width = width;
@ -1069,6 +1069,8 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
x -= m_rect.left(); x -= m_rect.left();
y -= m_rect.top(); y -= m_rect.top();
Q_UNUSED(y)
double xx = l_maxx - l_minx; double xx = l_maxx - l_minx;
double xmult = xx / double(l_width + barw); double xmult = xx / double(l_width + barw);

View File

@ -187,7 +187,7 @@ void gYAxis::paint(QPainter &painter, gGraph &w, const QRegion &region)
// GetTextExtent(fd, x, y); // GetTextExtent(fd, x, y);
y=fm.height(); y=fm.height();
x=0; //x=0;
#ifdef DEBUG_LAYOUT #ifdef DEBUG_LAYOUT
painter.setPen(Qt::green); painter.setPen(Qt::green);

View File

@ -230,7 +230,7 @@ void gDailySummary::paint(QPainter &painter, gGraph &w, const QRegion &region)
float ypos = top + 10; float ypos = top + 10;
double maxwidth = 0 ; double maxwidth = 0 ;
for (int i=0; i< info.size(); ++i) { for (int i=0; i< size; ++i) {
rect1 = QRectF(xpos, ypos, 0, 0); rect1 = QRectF(xpos, ypos, 0, 0);
QString txt = info.at(i); QString txt = info.at(i);

View File

@ -298,6 +298,8 @@ void FlowParser::openFlow(Session *session, EventList *flow)
// Apply the rest of the filters chain // Apply the rest of the filters chain
buf = applyFilters(m_filtered, m_samples); buf = applyFilters(m_filtered, m_samples);
Q_UNUSED(buf)
// Scan for and create an index of each breath // Scan for and create an index of each breath
calcPeaks(m_filtered, m_samples); calcPeaks(m_filtered, m_samples);
@ -317,12 +319,13 @@ void FlowParser::calcPeaks(EventDataType *input, int samples)
double rate = m_flow->rate(); double rate = m_flow->rate();
double flowstart = m_flow->first(); double flowstart = m_flow->first();
double lasttime, time; double time; //, lasttime;
//double peakmax = flowstart, //double peakmax = flowstart,
//double peakmin = flowstart; //double peakmin = flowstart;
time = lasttime = flowstart; // lasttime =
time = flowstart;
breaths.clear(); breaths.clear();
// Estimate storage space needed using typical average breaths per minute. // Estimate storage space needed using typical average breaths per minute.
@ -397,7 +400,7 @@ void FlowParser::calcPeaks(EventDataType *input, int samples)
} }
lasttime = time; //lasttime = time;
time += rate; time += rate;
lastc = c; lastc = c;
//lastk = k; //lastk = k;
@ -618,7 +621,7 @@ void FlowParser::calc(bool calcResp, bool calcTv, bool calcTi, bool calcTe, bool
stmin = start; stmin = start;
} }
len = et - stmin; //len = et - stmin;
rr = 0; rr = 0;
len2 = 0; len2 = 0;
@ -1763,8 +1766,6 @@ int calcLeaks(Session *session)
quint32 *tptr = el.rawTime(); quint32 *tptr = el.rawTime();
qint64 start = el.first(), ti; qint64 start = el.first(), ti;
EventStoreType pressure; EventStoreType pressure;
tptr = el.rawTime();
start = el.first();
bool found; bool found;

View File

@ -617,6 +617,7 @@ QByteArray gUncompress(const QByteArray &data)
ret = Z_DATA_ERROR; // and fall through ret = Z_DATA_ERROR; // and fall through
case Z_DATA_ERROR: case Z_DATA_ERROR:
case Z_MEM_ERROR: case Z_MEM_ERROR:
Q_UNUSED(ret)
(void)inflateEnd(&strm); (void)inflateEnd(&strm);
return QByteArray(); return QByteArray();
} }

View File

@ -21,7 +21,7 @@ const int journal_data_version = 1;
JournalEntry::JournalEntry(QDate date) JournalEntry::JournalEntry(QDate date)
{ {
Machine * jmach = p_profile->GetMachine(MT_JOURNAL); Machine * jmach = p_profile->GetMachine(MT_JOURNAL);
if (!jmach) { if (jmach == nullptr) { // Create Journal machine record if it doesn't already exist
MachineInfo info(MT_JOURNAL,0, "Journal", QObject::tr("Journal Data"), QString(), QString(), QString(), QObject::tr("SleepyHead"), QDateTime::currentDateTime(), journal_data_version); MachineInfo info(MT_JOURNAL,0, "Journal", QObject::tr("Journal Data"), QString(), QString(), QString(), QObject::tr("SleepyHead"), QDateTime::currentDateTime(), journal_data_version);
// Using machine ID 1 rather than a random number, so in future, if profile.xml gets screwed up they'll get their data back.. // Using machine ID 1 rather than a random number, so in future, if profile.xml gets screwed up they'll get their data back..
@ -63,7 +63,7 @@ JournalEntry::JournalEntry(QDate date)
m_date = date; m_date = date;
session = nullptr; session = nullptr;
day = p_profile->GetDay(date, MT_JOURNAL); day = p_profile->GetDay(date, MT_JOURNAL);
if (!day) { if (day != nullptr) {
session = day->firstSession(MT_JOURNAL); session = day->firstSession(MT_JOURNAL);
} else { } else {
// Doesn't exist.. create a new one.. // Doesn't exist.. create a new one..
@ -77,6 +77,9 @@ JournalEntry::JournalEntry(QDate date)
// Let it live in memory...but not on disk unless data is changed... // Let it live in memory...but not on disk unless data is changed...
jmach->AddSession(session); jmach->AddSession(session);
// and where does day get set??? does day actually need to be set??
day = p_profile->GetDay(date, MT_JOURNAL);
} }
} }
JournalEntry::~JournalEntry() JournalEntry::~JournalEntry()

View File

@ -403,7 +403,7 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
break; break;
case 0x6: // 6,80,80,87 case 0x6: // 6,80,80,87
data = buffer.at(idx+3) ^ 0x80; // data = buffer.at(idx+3) ^ 0x80;
break; break;
// COMMAND_GET_SESSION_TIME // COMMAND_GET_SESSION_TIME
@ -441,12 +441,12 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
// COMMAND_CMS50_HELLO1 && COMMAND_CMS50_HELLO2 // COMMAND_CMS50_HELLO1 && COMMAND_CMS50_HELLO2
case 0xc: // a7 & a2 // responds with: c,80 case 0xc: // a7 & a2 // responds with: c,80
data = buffer.at(idx+1); //data = buffer.at(idx+1);
break; break;
case 0x0e: // e,80,81 case 0x0e: // e,80,81
break; break;
case 0x10: // 10,80,81 case 0x10: // 10,80,81
data = buffer.at(idx+2); //data = buffer.at(idx+2);
break; break;
// COMMAND_GET_OXIMETER_INFO // COMMAND_GET_OXIMETER_INFO

View File

@ -645,10 +645,11 @@ int IntellipapLoader::OpenDV6(QString path)
// Prime the machine database's info field with stuff relevant to this machine // Prime the machine database's info field with stuff relevant to this machine
MachineInfo info = newInfo(); MachineInfo info = newInfo();
info.series = "DV6"; info.series = "DV6";
info.serial = "Unknown";
int vmin=0, vmaj=0; int vmin=0, vmaj=0;
EventDataType max_pressure, min_pressure; //, starting_pressure; EventDataType max_pressure=0, min_pressure=0; //, starting_pressure;
QByteArray str, dataBA; QByteArray str, dataBA;
unsigned char *data = NULL; unsigned char *data = NULL;
@ -781,7 +782,7 @@ int IntellipapLoader::OpenDV6(QString path)
// Creates Machine database record if it doesn't exist already // Creates Machine database record if it doesn't exist already
//////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////
Machine *mach = CreateMachine(info); Machine *mach = CreateMachine(info);
if (!mach) { if (mach == nullptr) {
return -1; return -1;
} }
qDebug() << "Opening DV6 (" << info.serial << ")" << "v" << vmaj << "." << vmin << "Min:" << min_pressure << "Max:" << max_pressure; qDebug() << "Opening DV6 (" << info.serial << ")" << "v" << vmaj << "." << vmin << "Min:" << min_pressure << "Max:" << max_pressure;

View File

@ -2598,7 +2598,7 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
QString t; QString t;
long recs; long recs;
double duration; double duration=0;
char *data; char *data;
char c; char c;
long pos; long pos;
@ -2626,7 +2626,7 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
pos = 0; pos = 0;
tt = edf.startdate; tt = edf.startdate;
// sess->updateFirst(tt); // sess->updateFirst(tt);
duration = 0; //duration = 0;
while (pos < recs) { while (pos < recs) {
c = data[pos]; c = data[pos];
@ -2818,7 +2818,7 @@ void ResmedLoader::ToTimeDelta(Session *sess, EDFParser &edf, EDFSignal &es, Cha
double rate = (duration / recs); // milliseconds per record double rate = (duration / recs); // milliseconds per record
double tt = edf.startdate; double tt = edf.startdate;
EventStoreType c, last; EventStoreType c=0, last;
int startpos = 0; int startpos = 0;

View File

@ -152,10 +152,13 @@ int SomnoposeLoader::OpenFile(QString filename)
ev_inclination->AddEvent(time, inclination); ev_inclination->AddEvent(time, inclination);
} }
if (sess) {
if (ev_orientation && ev_inclination) {
sess->setMin(POS_Orientation, ev_orientation->Min()); sess->setMin(POS_Orientation, ev_orientation->Min());
sess->setMax(POS_Orientation, ev_orientation->Max()); sess->setMax(POS_Orientation, ev_orientation->Max());
sess->setMin(POS_Inclination, ev_inclination->Min()); sess->setMin(POS_Inclination, ev_inclination->Min());
sess->setMax(POS_Inclination, ev_inclination->Max()); sess->setMax(POS_Inclination, ev_inclination->Max());
}
sess->really_set_last(time); sess->really_set_last(time);
sess->SetChanged(true); sess->SetChanged(true);
@ -163,6 +166,7 @@ int SomnoposeLoader::OpenFile(QString filename)
mach->AddSession(sess); mach->AddSession(sess);
mach->Save(); mach->Save();
}
return true; return true;
} }

View File

@ -821,7 +821,8 @@ void SaveTask::run()
void Machine::queTask(ImportTask * task) void Machine::queTask(ImportTask * task)
{ {
if (0) { //p_profile->session->multithreading()) { // Okay... what was this turned off???
if (p_profile->session->multithreading()) {
m_tasklist.push_back(task); m_tasklist.push_back(task);
return; return;
} }

View File

@ -1158,15 +1158,15 @@ QString Daily::getCPAPInformation(Day * day)
QString Daily::getStatisticsInfo(Day * day) QString Daily::getStatisticsInfo(Day * day)
{ {
if (!day) return QString(); if (day == nullptr) return QString();
Machine *cpap = day->machine(MT_CPAP); Machine *cpap = day->machine(MT_CPAP);
// *oxi = day->machine(MT_OXIMETER), // *oxi = day->machine(MT_OXIMETER),
// *pos = day->machine(MT_POSITION); // *pos = day->machine(MT_POSITION);
int mididx=p_profile->general->prefCalcMiddle(); int mididx=p_profile->general->prefCalcMiddle();
SummaryType ST_mid; SummaryType ST_mid = ST_AVG;
if (mididx==0) ST_mid=ST_PERC; if (mididx==0) ST_mid=ST_PERC;
if (mididx==1) ST_mid=ST_WAVG; if (mididx==1) ST_mid=ST_WAVG;
if (mididx==2) ST_mid=ST_AVG; if (mididx==2) ST_mid=ST_AVG;

View File

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>551</width> <width>561</width>
<height>441</height> <height>444</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">

View File

@ -1620,6 +1620,8 @@ void MainWindow::DelayedScreenshot()
#endif #endif
#if defined(Q_OS_WIN32) || defined(Q_OS_LINUX) || defined(Q_OS_HAIKU) #if defined(Q_OS_WIN32) || defined(Q_OS_LINUX) || defined(Q_OS_HAIKU)
Q_UNUSED(w)
Q_UNUSED(h)
//QRect rec = QApplication::desktop()->screenGeometry(); //QRect rec = QApplication::desktop()->screenGeometry();
// grab the whole screen // grab the whole screen
@ -1804,7 +1806,6 @@ void packEventList(EventList *el, EventDataType minval = 0)
if (!f) { if (!f) {
if (t > minval) { if (t > minval) {
nel.AddEvent(ti, t); nel.AddEvent(ti, t);
lasttime = ti;
} }
} }
@ -2107,6 +2108,7 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
} }
day = p_profile->GetDay(date, MT_CPAP); day = p_profile->GetDay(date, MT_CPAP);
Q_UNUSED(day);
getDaily()->clearLastDay(); getDaily()->clearLastDay();
getDaily()->LoadDate(date); getDaily()->LoadDate(date);

View File

@ -21,7 +21,7 @@ QString formatTime(float time)
int hours = time; int hours = time;
int seconds = time * 3600.0; int seconds = time * 3600.0;
int minutes = (seconds / 60) % 60; int minutes = (seconds / 60) % 60;
seconds %= 60; //seconds %= 60;
return QString().sprintf("%02i:%02i", hours, minutes); //,seconds); return QString().sprintf("%02i:%02i", hours, minutes); //,seconds);
} }