cppcheck/gui/resultstree.cpp

1438 lines
45 KiB
C++
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2020-05-10 11:16:32 +02:00
* Copyright (C) 2007-2020 Cppcheck team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
2010-10-31 12:16:55 +01:00
#include <QWidget>
#include <QDebug>
2010-10-31 12:16:55 +01:00
#include <QString>
#include <QStringList>
#include <QList>
#include <QMap>
#include <QVariant>
#include <QMenu>
#include <QSignalMapper>
#include <QProcess>
#include <QDir>
#include <QMessageBox>
2010-10-31 12:16:55 +01:00
#include <QAction>
#include <QFileInfo>
#include <QFileDialog>
#include <QClipboard>
#include <QDesktopServices>
2015-05-25 16:25:58 +02:00
#include <QUrl>
2010-10-31 12:16:55 +01:00
#include <QContextMenuEvent>
#include <QModelIndex>
#include "common.h"
#include "erroritem.h"
2010-10-31 12:16:55 +01:00
#include "applicationlist.h"
#include "resultstree.h"
2010-10-31 12:16:55 +01:00
#include "report.h"
#include "application.h"
2020-07-15 13:03:07 +02:00
#include "projectfile.h"
#include "showtypes.h"
#include "threadhandler.h"
#include "path.h"
#include "xmlreportv2.h"
// These must match column headers given in ResultsTree::translate()
static const unsigned int COLUMN_SINCE_DATE = 6;
static const unsigned int COLUMN_TAGS = 7;
static QString getFunction(QStandardItem *item)
{
return item->data().toMap().value("function").toString();
}
ResultsTree::ResultsTree(QWidget * parent) :
2010-04-15 20:08:51 +02:00
QTreeView(parent),
mSettings(nullptr),
mApplications(nullptr),
mContextItem(nullptr),
mShowFullPath(false),
mSaveFullPath(false),
mSaveAllErrors(true),
mShowErrorId(false),
mVisibleErrors(false),
mSelectionModel(nullptr),
mThread(nullptr),
mShowCppcheck(true),
mShowClang(true)
{
setModel(&mModel);
2017-07-28 11:54:20 +02:00
translate(); // Adds columns to grid
setExpandsOnDoubleClick(false);
2009-06-04 16:46:19 +02:00
setSortingEnabled(true);
2017-07-31 08:18:34 +02:00
connect(this, &ResultsTree::doubleClicked, this, &ResultsTree::quickStartApplication);
}
ResultsTree::~ResultsTree()
{
}
void ResultsTree::keyPressEvent(QKeyEvent *event)
{
if (event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) {
2017-07-28 11:54:20 +02:00
quickStartApplication(this->currentIndex());
}
QTreeView::keyPressEvent(event);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::initialize(QSettings *settings, ApplicationList *list, ThreadHandler *checkThreadHandler)
{
mSettings = settings;
mApplications = list;
mThread = checkThreadHandler;
2017-07-28 11:54:20 +02:00
loadSettings();
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::createNormalItem(const QString &name)
{
QStandardItem *item = new QStandardItem(name);
2010-11-19 21:54:40 +01:00
item->setData(name, Qt::ToolTipRole);
item->setEditable(false);
return item;
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::createCheckboxItem(bool checked)
{
QStandardItem *item = new QStandardItem;
item->setCheckable(true);
item->setCheckState(checked ? Qt::Checked : Qt::Unchecked);
item->setEnabled(false);
return item;
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::createLineNumberItem(const QString &linenumber)
2010-11-19 22:11:40 +01:00
{
QStandardItem *item = new QStandardItem();
item->setData(QVariant(linenumber.toULongLong()), Qt::DisplayRole);
item->setToolTip(linenumber);
2010-11-19 22:11:40 +01:00
item->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter);
item->setEditable(false);
return item;
}
2017-07-28 11:54:20 +02:00
bool ResultsTree::addErrorItem(const ErrorItem &item)
{
2017-05-21 08:25:55 +02:00
if (item.errorPath.isEmpty()) {
return false;
}
const QErrorPathItem &loc = item.errorId.startsWith("clang") ? item.errorPath.front() : item.errorPath.back();
QString realfile = stripPath(loc.file, false);
2011-10-13 20:53:06 +02:00
if (realfile.isEmpty()) {
2009-07-02 12:48:32 +02:00
realfile = tr("Undefined file");
}
2019-08-22 21:32:18 +02:00
bool hide = false;
// Ids that are temporarily hidden..
if (mHiddenMessageId.contains(item.errorId))
hide = true;
//If specified, filter on summary, message, filename, and id
2011-10-13 20:53:06 +02:00
if (!hide && !mFilter.isEmpty()) {
if (!item.summary.contains(mFilter, Qt::CaseInsensitive) &&
!item.message.contains(mFilter, Qt::CaseInsensitive) &&
2017-05-21 08:25:55 +02:00
!item.errorPath.back().file.contains(mFilter, Qt::CaseInsensitive) &&
2011-10-13 20:53:06 +02:00
!item.errorId.contains(mFilter, Qt::CaseInsensitive)) {
hide = true;
}
}
//if there is at least one error that is not hidden, we have a visible error
2011-10-13 20:53:06 +02:00
if (!hide) {
mVisibleErrors = true;
}
ErrorLine line;
line.file = realfile;
line.line = loc.line;
line.errorId = item.errorId;
line.incomplete = item.incomplete;
line.cwe = item.cwe;
2020-07-15 07:59:05 +02:00
line.cppcheckId = item.cppcheckId;
line.inconclusive = item.inconclusive;
line.summary = item.summary;
line.message = item.message;
line.severity = item.severity;
line.sinceDate = item.sinceDate;
line.tags = item.tags;
//Create the base item for the error and ensure it has a proper
//file item as a parent
QStandardItem* fileItem = ensureFileItem(loc.file, item.file0, hide);
2017-07-28 11:54:20 +02:00
QStandardItem* stditem = addBacktraceFiles(fileItem,
line,
hide,
2017-07-28 11:54:20 +02:00
severityToIcon(line.severity),
false);
if (!stditem)
return false;
//Add user data to that item
QMap<QString, QVariant> data;
data["severity"] = ShowTypes::SeverityToShowType(item.severity);
data["summary"] = item.summary;
data["message"] = item.message;
data["file"] = loc.file;
data["line"] = loc.line;
data["column"] = loc.column;
data["id"] = item.errorId;
data["incomplete"] = item.incomplete;
data["cwe"] = item.cwe;
2020-07-15 07:59:05 +02:00
data["cppcheckId"] = item.cppcheckId;
data["inconclusive"] = item.inconclusive;
2017-07-28 11:54:20 +02:00
data["file0"] = stripPath(item.file0, true);
data["function"] = item.function;
data["sinceDate"] = item.sinceDate;
data["tags"] = item.tags;
data["hide"] = hide;
stditem->setData(QVariant(data));
//Add backtrace files as children
2017-05-21 08:25:55 +02:00
if (item.errorPath.size() > 1U) {
for (int i = 0; i < item.errorPath.size(); i++) {
const QErrorPathItem &e = item.errorPath[i];
line.file = e.file;
line.line = e.line;
line.message = line.summary = e.info;
QStandardItem *child_item;
2017-07-28 11:54:20 +02:00
child_item = addBacktraceFiles(stditem,
2017-05-21 08:25:55 +02:00
line,
hide,
":images/go-down.png",
true);
if (!child_item)
continue;
2017-05-21 08:25:55 +02:00
// Add user data to that item
2017-05-21 08:25:55 +02:00
QMap<QString, QVariant> child_data;
child_data["severity"] = ShowTypes::SeverityToShowType(line.severity);
child_data["summary"] = line.summary;
child_data["message"] = line.message;
child_data["file"] = e.file;
child_data["line"] = e.line;
child_data["column"] = e.column;
2017-05-21 08:25:55 +02:00
child_data["id"] = line.errorId;
child_data["incomplete"] = line.incomplete;
child_data["cwe"] = line.cwe;
2020-07-15 07:59:05 +02:00
child_data["cppcheckId"] = line.cppcheckId;
2017-05-21 08:25:55 +02:00
child_data["inconclusive"] = line.inconclusive;
child_item->setData(QVariant(child_data));
}
}
// Partially refresh the tree: Unhide file item if necessary
2011-10-13 20:53:06 +02:00
if (!hide) {
2019-08-22 21:32:18 +02:00
setRowHidden(fileItem->row(), QModelIndex(), !mShowSeverities.isShown(item.severity));
}
return true;
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::addBacktraceFiles(QStandardItem *parent,
const ErrorLine &item,
const bool hide,
const QString &icon,
bool childOfMessage)
{
2011-10-13 20:53:06 +02:00
if (!parent) {
return nullptr;
}
QList<QStandardItem*> list;
// Ensure shown path is with native separators
2017-07-28 11:54:20 +02:00
list << createNormalItem(QDir::toNativeSeparators(item.file))
<< createNormalItem(childOfMessage ? tr("note") : severityToTranslatedString(item.severity))
<< createLineNumberItem(QString::number(item.line))
<< createNormalItem(childOfMessage ? QString() : item.errorId)
<< (childOfMessage ? createNormalItem(QString()) : createCheckboxItem(item.inconclusive))
<< createNormalItem(item.summary)
<< createNormalItem(item.sinceDate)
<< createNormalItem(item.tags);
2009-07-02 12:48:32 +02:00
//TODO message has parameter names so we'll need changes to the core
//cppcheck so we can get proper translations
// Check for duplicate rows and don't add them if found
2011-10-13 20:53:06 +02:00
for (int i = 0; i < parent->rowCount(); i++) {
// The first column is the file name and is always the same
// the third column is the line number so check it first
2011-10-13 20:53:06 +02:00
if (parent->child(i, 2)->text() == list[2]->text()) {
// the second column is the severity so check it next
2011-10-13 20:53:06 +02:00
if (parent->child(i, 1)->text() == list[1]->text()) {
// the sixth column is the summary so check it last
if (parent->child(i, 5)->text() == list[5]->text()) {
// this row matches so don't add it
return nullptr;
}
}
}
}
parent->appendRow(list);
setRowHidden(parent->rowCount() - 1, parent->index(), hide);
2011-10-13 20:53:06 +02:00
if (!icon.isEmpty()) {
list[0]->setIcon(QIcon(icon));
}
//TODO Does this leak memory? Should items from list be deleted?
return list[0];
}
2017-07-28 11:54:20 +02:00
QString ResultsTree::severityToTranslatedString(Severity::SeverityType severity)
{
2011-10-13 20:53:06 +02:00
switch (severity) {
case Severity::style:
return tr("style");
case Severity::error:
return tr("error");
case Severity::warning:
return tr("warning");
case Severity::performance:
return tr("performance");
case Severity::portability:
return tr("portability");
case Severity::information:
return tr("information");
case Severity::debug:
return tr("debug");
case Severity::none:
default:
2017-08-03 12:39:31 +02:00
return QString();
}
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::findFileItem(const QString &name) const
{
// The first column contains the file name. In Windows we can get filenames
// "header.h" and "Header.h" and must compare them as identical.
for (int i = 0; i < mModel.rowCount(); i++) {
#ifdef _WIN32
if (QString::compare(mModel.item(i, 0)->text(), name, Qt::CaseInsensitive) == 0)
#else
if (mModel.item(i, 0)->text() == name)
#endif
return mModel.item(i, 0);
}
return nullptr;
}
2017-07-28 11:54:20 +02:00
void ResultsTree::clear()
{
mModel.removeRows(0, mModel.rowCount());
}
2017-07-28 11:54:20 +02:00
void ResultsTree::clear(const QString &filename)
{
2017-07-28 11:54:20 +02:00
const QString stripped = stripPath(filename, false);
for (int i = 0; i < mModel.rowCount(); ++i) {
2017-08-02 19:09:03 +02:00
const QStandardItem *fileItem = mModel.item(i, 0);
if (!fileItem)
continue;
2017-08-02 19:09:03 +02:00
QVariantMap data = fileItem->data().toMap();
if (stripped == data["file"].toString() ||
filename == data["file0"].toString()) {
mModel.removeRow(i);
break;
}
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::clearRecheckFile(const QString &filename)
{
for (int i = 0; i < mModel.rowCount(); ++i) {
2017-08-02 19:09:03 +02:00
const QStandardItem *fileItem = mModel.item(i, 0);
if (!fileItem)
continue;
QString actualfile((!mCheckPath.isEmpty() && filename.startsWith(mCheckPath)) ? filename.mid(mCheckPath.length() + 1) : filename);
2017-08-02 19:09:03 +02:00
QVariantMap data = fileItem->data().toMap();
QString storedfile = data["file"].toString();
storedfile = ((!mCheckPath.isEmpty() && storedfile.startsWith(mCheckPath)) ? storedfile.mid(mCheckPath.length() + 1) : storedfile);
if (actualfile == storedfile) {
mModel.removeRow(i);
break;
}
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::loadSettings()
{
2011-10-13 20:53:06 +02:00
for (int i = 0; i < mModel.columnCount(); i++) {
QString temp = QString(SETTINGS_RESULT_COLUMN_WIDTH).arg(i);
setColumnWidth(i, qMax(20, mSettings->value(temp, 800 / mModel.columnCount()).toInt()));
}
mSaveFullPath = mSettings->value(SETTINGS_SAVE_FULL_PATH, false).toBool();
mSaveAllErrors = mSettings->value(SETTINGS_SAVE_ALL_ERRORS, false).toBool();
mShowFullPath = mSettings->value(SETTINGS_SHOW_FULL_PATH, false).toBool();
2017-07-28 11:54:20 +02:00
showIdColumn(mSettings->value(SETTINGS_SHOW_ERROR_ID, false).toBool());
showInconclusiveColumn(mSettings->value(SETTINGS_INCONCLUSIVE_ERRORS, false).toBool());
}
2017-07-28 11:54:20 +02:00
void ResultsTree::saveSettings() const
{
2011-10-13 20:53:06 +02:00
for (int i = 0; i < mModel.columnCount(); i++) {
QString temp = QString(SETTINGS_RESULT_COLUMN_WIDTH).arg(i);
mSettings->setValue(temp, columnWidth(i));
}
}
2009-03-22 18:39:44 +01:00
2017-07-28 11:54:20 +02:00
void ResultsTree::showResults(ShowTypes::ShowType type, bool show)
2009-03-22 18:39:44 +01:00
{
2011-10-13 20:53:06 +02:00
if (type != ShowTypes::ShowNone && mShowSeverities.isShown(type) != show) {
mShowSeverities.show(type, show);
2017-07-28 11:54:20 +02:00
refreshTree();
2009-03-22 18:39:44 +01:00
}
}
void ResultsTree::showCppcheckResults(bool show)
{
mShowCppcheck = show;
refreshTree();
}
void ResultsTree::showClangResults(bool show)
{
mShowClang = show;
refreshTree();
}
2017-07-28 11:54:20 +02:00
void ResultsTree::filterResults(const QString& filter)
{
mFilter = filter;
2017-07-28 11:54:20 +02:00
refreshTree();
}
2017-07-28 11:54:20 +02:00
void ResultsTree::showHiddenResults()
2010-11-21 19:55:34 +01:00
{
//Clear the "hide" flag for each item
mHiddenMessageId.clear();
2010-11-21 19:55:34 +01:00
int filecount = mModel.rowCount();
2011-10-13 20:53:06 +02:00
for (int i = 0; i < filecount; i++) {
2017-08-02 19:09:03 +02:00
QStandardItem *fileItem = mModel.item(i, 0);
if (!fileItem)
2010-11-21 19:55:34 +01:00
continue;
2017-08-02 19:09:03 +02:00
QVariantMap data = fileItem->data().toMap();
2010-11-21 19:55:34 +01:00
data["hide"] = false;
2017-08-02 19:09:03 +02:00
fileItem->setData(QVariant(data));
2010-11-21 19:55:34 +01:00
2017-08-02 19:09:03 +02:00
int errorcount = fileItem->rowCount();
2011-10-13 20:53:06 +02:00
for (int j = 0; j < errorcount; j++) {
2017-08-02 19:09:03 +02:00
QStandardItem *child = fileItem->child(j, 0);
2011-10-13 20:53:06 +02:00
if (child) {
2010-11-21 19:55:34 +01:00
data = child->data().toMap();
data["hide"] = false;
child->setData(QVariant(data));
}
}
}
2017-07-28 11:54:20 +02:00
refreshTree();
emit resultsHidden(false);
2010-11-21 19:55:34 +01:00
}
2009-03-22 18:39:44 +01:00
2017-07-28 11:54:20 +02:00
void ResultsTree::refreshTree()
2009-03-22 18:39:44 +01:00
{
mVisibleErrors = false;
//Get the amount of files in the tree
int filecount = mModel.rowCount();
2011-10-13 20:53:06 +02:00
for (int i = 0; i < filecount; i++) {
//Get file i
2017-08-02 19:09:03 +02:00
QStandardItem *fileItem = mModel.item(i, 0);
if (!fileItem) {
continue;
}
//Get the amount of errors this file contains
2017-08-02 19:09:03 +02:00
int errorcount = fileItem->rowCount();
//By default it shouldn't be visible
bool show = false;
2011-10-13 20:53:06 +02:00
for (int j = 0; j < errorcount; j++) {
//Get the error itself
2017-08-02 19:09:03 +02:00
QStandardItem *child = fileItem->child(j, 0);
2011-10-13 20:53:06 +02:00
if (!child) {
continue;
}
//Get error's user data
QVariant userdata = child->data();
//Convert it to QVariantMap
QVariantMap data = userdata.toMap();
//Check if this error should be hidden
bool hide = (data["hide"].toBool() || !mShowSeverities.isShown(ShowTypes::VariantToShowType(data["severity"])));
//If specified, filter on summary, message, filename, and id
2011-10-13 20:53:06 +02:00
if (!hide && !mFilter.isEmpty()) {
if (!data["summary"].toString().contains(mFilter, Qt::CaseInsensitive) &&
!data["message"].toString().contains(mFilter, Qt::CaseInsensitive) &&
!data["file"].toString().contains(mFilter, Qt::CaseInsensitive) &&
2011-10-13 20:53:06 +02:00
!data["id"].toString().contains(mFilter, Qt::CaseInsensitive)) {
hide = true;
}
}
// Tool filter
if (!hide) {
if (data["id"].toString().startsWith("clang"))
hide = !mShowClang;
else
hide = !mShowCppcheck;
}
2011-10-13 20:53:06 +02:00
if (!hide) {
mVisibleErrors = true;
}
//Hide/show accordingly
2017-08-02 19:09:03 +02:00
setRowHidden(j, fileItem->index(), hide);
//If it was shown then the file itself has to be shown as well
2011-10-13 20:53:06 +02:00
if (!hide) {
show = true;
}
2009-03-22 18:39:44 +01:00
}
2010-11-21 19:55:34 +01:00
//Hide the file if its "hide" attribute is set
2017-08-02 19:09:03 +02:00
if (fileItem->data().toMap()["hide"].toBool()) {
2010-11-21 19:55:34 +01:00
show = false;
}
//Show the file if any of it's errors are visible
setRowHidden(i, QModelIndex(), !show);
2009-03-22 18:39:44 +01:00
}
}
2017-07-28 11:54:20 +02:00
QStandardItem *ResultsTree::ensureFileItem(const QString &fullpath, const QString &file0, bool hide)
2009-03-22 18:39:44 +01:00
{
2017-07-28 11:54:20 +02:00
QString name = stripPath(fullpath, false);
// Since item has path with native separators we must use path with
// native separators to find it.
2017-07-28 11:54:20 +02:00
QStandardItem *item = findFileItem(QDir::toNativeSeparators(name));
2009-03-22 18:39:44 +01:00
2011-10-13 20:53:06 +02:00
if (item) {
return item;
2009-03-22 18:39:44 +01:00
}
// Ensure shown path is with native separators
name = QDir::toNativeSeparators(name);
2017-07-28 11:54:20 +02:00
item = createNormalItem(name);
item->setIcon(QIcon(":images/text-x-generic.png"));
//Add user data to that item
QMap<QString, QVariant> data;
data["file"] = fullpath;
data["file0"] = file0;
item->setData(QVariant(data));
mModel.appendRow(item);
setRowHidden(mModel.rowCount() - 1, QModelIndex(), hide);
return item;
2009-03-22 18:39:44 +01:00
}
void ResultsTree::contextMenuEvent(QContextMenuEvent * e)
{
QModelIndex index = indexAt(e->pos());
2011-10-13 20:53:06 +02:00
if (index.isValid()) {
bool multipleSelection = false;
mSelectionModel = selectionModel();
if (mSelectionModel->selectedRows().count() > 1)
multipleSelection = true;
mContextItem = mModel.itemFromIndex(index);
//Create a new context menu
QMenu menu(this);
//Store all applications in a list
QList<QAction*> actions;
//Create a signal mapper so we don't have to store data to class
//member variables
QSignalMapper *signalMapper = new QSignalMapper(this);
2017-07-28 05:18:43 +02:00
if (mContextItem && mApplications->getApplicationCount() > 0 && mContextItem->parent()) {
//Create an action for the application
2017-07-28 05:18:43 +02:00
int defaultApplicationIndex = mApplications->getDefaultApplication();
if (defaultApplicationIndex < 0)
defaultApplicationIndex = 0;
2017-07-28 05:18:43 +02:00
const Application& app = mApplications->getApplication(defaultApplicationIndex);
QAction *start = new QAction(app.getName(), &menu);
if (multipleSelection)
start->setDisabled(true);
//Add it to our list so we can disconnect later on
actions << start;
//Add it to context menu
menu.addAction(start);
//Connect the signal to signal mapper
connect(start, SIGNAL(triggered()), signalMapper, SLOT(map()));
//Add a new mapping
signalMapper->setMapping(start, defaultApplicationIndex);
connect(signalMapper, SIGNAL(mapped(int)),
2017-07-28 13:43:49 +02:00
this, SLOT(context(int)));
}
2018-04-13 17:31:51 +02:00
// Add popup menuitems
2011-10-13 20:53:06 +02:00
if (mContextItem) {
2017-07-28 05:18:43 +02:00
if (mApplications->getApplicationCount() > 0) {
menu.addSeparator();
}
const bool bughunting = !multipleSelection && mContextItem->data().toMap().value("id").toString().startsWith("bughunting");
if (bughunting && !getFunction(mContextItem).isEmpty()) {
QAction *editContract = new QAction(tr("Edit contract.."), &menu);
connect(editContract, &QAction::triggered, this, &ResultsTree::editContract);
menu.addAction(editContract);
menu.addSeparator();
}
//Create an action for the application
QAction *recheckSelectedFiles = new QAction(tr("Recheck"), &menu);
2018-04-13 17:31:51 +02:00
QAction *copy = new QAction(tr("Copy"), &menu);
QAction *hide = new QAction(tr("Hide"), &menu);
QAction *hideallid = new QAction(tr("Hide all with id"), &menu);
2020-07-15 13:03:07 +02:00
QAction *suppressCppcheckID = new QAction(tr("Suppress cppcheck-id"), &menu);
QAction *opencontainingfolder = new QAction(tr("Open containing folder"), &menu);
2013-02-10 23:53:01 +01:00
2011-10-13 20:53:06 +02:00
if (multipleSelection) {
hideallid->setDisabled(true);
opencontainingfolder->setDisabled(true);
}
2017-07-28 12:39:28 +02:00
if (mThread->isChecking())
recheckSelectedFiles->setDisabled(true);
else
recheckSelectedFiles->setDisabled(false);
menu.addAction(recheckSelectedFiles);
menu.addSeparator();
2018-04-13 17:31:51 +02:00
menu.addAction(copy);
menu.addSeparator();
2010-11-21 19:55:34 +01:00
menu.addAction(hide);
menu.addAction(hideallid);
2020-07-15 13:03:07 +02:00
menu.addAction(suppressCppcheckID);
if (!bughunting) {
QAction *suppress = new QAction(tr("Suppress selected id(s)"), &menu);
menu.addAction(suppress);
connect(suppress, SIGNAL(triggered()), this, SLOT(suppressSelectedIds()));
}
menu.addSeparator();
menu.addAction(opencontainingfolder);
2017-07-28 13:43:49 +02:00
connect(recheckSelectedFiles, SIGNAL(triggered()), this, SLOT(recheckSelectedFiles()));
2018-04-13 17:31:51 +02:00
connect(copy, SIGNAL(triggered()), this, SLOT(copy()));
2017-07-28 13:43:49 +02:00
connect(hide, SIGNAL(triggered()), this, SLOT(hideResult()));
connect(hideallid, SIGNAL(triggered()), this, SLOT(hideAllIdResult()));
2020-07-15 13:03:07 +02:00
connect(suppressCppcheckID, &QAction::triggered, this, &ResultsTree::suppressCppcheckID);
2017-07-28 13:43:49 +02:00
connect(opencontainingfolder, SIGNAL(triggered()), this, SLOT(openContainingFolder()));
if (!mTags.isEmpty()) {
menu.addSeparator();
QMenu *tagMenu = menu.addMenu(tr("Tag"));
{
QAction *action = new QAction(tr("No tag"), tagMenu);
tagMenu->addAction(action);
connect(action, &QAction::triggered, [=]() {
tagSelectedItems(QString());
});
}
foreach (const QString tagstr, mTags) {
QAction *action = new QAction(tagstr, tagMenu);
tagMenu->addAction(action);
connect(action, &QAction::triggered, [=]() {
tagSelectedItems(tagstr);
});
}
}
}
//Start the menu
menu.exec(e->globalPos());
index = indexAt(e->pos());
if (index.isValid()) {
mContextItem = mModel.itemFromIndex(index);
2017-07-28 05:18:43 +02:00
if (mContextItem && mApplications->getApplicationCount() > 0 && mContextItem->parent()) {
//Disconnect all signals
for (int i = 0; i < actions.size(); i++) {
disconnect(actions[i], SIGNAL(triggered()), signalMapper, SLOT(map()));
}
disconnect(signalMapper, SIGNAL(mapped(int)),
2017-07-28 13:43:49 +02:00
this, SLOT(context(int)));
//And remove the signal mapper
delete signalMapper;
}
}
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::startApplication(QStandardItem *target, int application)
{
//If there are no applications specified, tell the user about it
2017-07-28 05:18:43 +02:00
if (mApplications->getApplicationCount() == 0) {
QMessageBox msg(QMessageBox::Critical,
tr("Cppcheck"),
tr("No editor application configured.\n\n"
"Configure the editor application for Cppcheck in preferences/Applications."),
2009-06-09 21:42:13 +02:00
QMessageBox::Ok,
this);
msg.exec();
return;
}
if (application == -1)
2017-07-28 05:18:43 +02:00
application = mApplications->getDefaultApplication();
2011-10-13 20:53:06 +02:00
if (application == -1) {
QMessageBox msg(QMessageBox::Critical,
tr("Cppcheck"),
tr("No default editor application selected.\n\n"
"Please select the default editor application in preferences/Applications."),
QMessageBox::Ok,
this);
msg.exec();
return;
}
2017-07-28 05:18:43 +02:00
if (target && application >= 0 && application < mApplications->getApplicationCount() && target->parent()) {
// Make sure we are working with the first column
if (target->column() != 0)
target = target->parent()->child(target->row(), 0);
QVariantMap data = target->data().toMap();
//Replace (file) with filename
QString file = data["file"].toString();
file = QDir::toNativeSeparators(file);
#ifdef Q_OS_WIN
file.replace(QString("\\"), QString("\\\\"));
#endif
qDebug() << "Opening file: " << file;
QFileInfo info(file);
2011-10-13 20:53:06 +02:00
if (!info.exists()) {
if (info.isAbsolute()) {
QMessageBox msgbox(this);
msgbox.setWindowTitle("Cppcheck");
msgbox.setText(tr("Could not find the file!"));
msgbox.setIcon(QMessageBox::Critical);
msgbox.exec();
2011-10-13 20:53:06 +02:00
} else {
QDir checkdir(mCheckPath);
2011-10-13 20:53:06 +02:00
if (checkdir.isAbsolute() && checkdir.exists()) {
file = mCheckPath + "/" + file;
2011-10-13 20:53:06 +02:00
} else {
2017-07-28 11:54:20 +02:00
QString dir = askFileDir(file);
dir += '/';
file = dir + file;
}
}
}
2011-10-13 20:53:06 +02:00
if (file.indexOf(" ") > -1) {
file.insert(0, "\"");
file.append("\"");
}
2017-07-28 05:18:43 +02:00
const Application& app = mApplications->getApplication(application);
QString params = app.getParameters();
params.replace("(file)", file, Qt::CaseInsensitive);
QVariant line = data["line"];
params.replace("(line)", QString("%1").arg(line.toInt()), Qt::CaseInsensitive);
params.replace("(message)", data["message"].toString(), Qt::CaseInsensitive);
params.replace("(severity)", data["severity"].toString(), Qt::CaseInsensitive);
QString program = app.getPath();
// In Windows we must surround paths including spaces with quotation marks.
#ifdef Q_OS_WIN
2011-10-13 20:53:06 +02:00
if (program.indexOf(" ") > -1) {
if (!program.startsWith('"') && !program.endsWith('"')) {
program.insert(0, "\"");
program.append("\"");
}
}
#endif // Q_OS_WIN
const QString cmdLine = QString("%1 %2").arg(program).arg(params);
bool success = QProcess::startDetached(cmdLine);
2011-10-13 20:53:06 +02:00
if (!success) {
QString text = tr("Could not start %1\n\nPlease check the application path and parameters are correct.").arg(program);
QMessageBox msgbox(this);
msgbox.setWindowTitle("Cppcheck");
msgbox.setText(text);
msgbox.setIcon(QMessageBox::Critical);
msgbox.exec();
}
}
}
2017-07-28 11:54:20 +02:00
QString ResultsTree::askFileDir(const QString &file)
{
QString text = tr("Could not find file:") + '\n' + file + '\n';
QString title;
if (file.indexOf('/')) {
QString folderName = file.mid(0, file.indexOf('/'));
text += tr("Please select the folder '%1'").arg(folderName);
title = tr("Select Directory '%1'").arg(folderName);
} else {
text += tr("Please select the directory where file is located.");
title = tr("Select Directory");
}
QMessageBox msgbox(this);
msgbox.setWindowTitle("Cppcheck");
msgbox.setText(text);
msgbox.setIcon(QMessageBox::Warning);
msgbox.exec();
2013-02-19 21:39:50 +01:00
QString dir = QFileDialog::getExistingDirectory(this, title,
2017-07-28 11:20:35 +02:00
getPath(SETTINGS_LAST_SOURCE_PATH),
QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
if (dir.isEmpty())
return QString();
// User selected root path
if (QFileInfo(dir + '/' + file).exists())
mCheckPath = dir;
// user selected checked folder
else if (file.indexOf('/') > 0) {
dir += '/';
QString folderName = file.mid(0, file.indexOf('/'));
if (dir.indexOf('/' + folderName + '/'))
dir = dir.mid(0, dir.lastIndexOf('/' + folderName + '/'));
if (QFileInfo(dir + '/' + file).exists())
mCheckPath = dir;
}
// Otherwise; return
else
return QString();
setPath(SETTINGS_LAST_SOURCE_PATH, mCheckPath);
return mCheckPath;
}
2018-04-13 17:31:51 +02:00
void ResultsTree::copy()
{
2018-04-13 17:31:51 +02:00
if (!mSelectionModel)
return;
2018-04-13 17:31:51 +02:00
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QString text;
foreach (QModelIndex index, selectedRows) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent()) {
text += item->text() + '\n';
2018-04-13 17:31:51 +02:00
continue;
}
2018-04-13 17:31:51 +02:00
if (item->parent()->parent())
item = item->parent();
QVariantMap data = item->data().toMap();
if (!data.contains("id"))
continue;
QString inconclusive = data["inconclusive"].toBool() ? ",inconclusive" : "";
text += '[' + data["file"].toString() + ':' + QString::number(data["line"].toInt())
2018-04-13 19:57:48 +02:00
+ "] ("
+ QString::fromStdString(Severity::toString(ShowTypes::ShowTypeToSeverity((ShowTypes::ShowType)data["severity"].toInt()))) + inconclusive
+ ") "
+ data["message"].toString()
+ " ["
+ data["id"].toString()
+ "]\n";
}
QClipboard *clipboard = QApplication::clipboard();
2018-04-13 17:31:51 +02:00
clipboard->setText(text);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::hideResult()
2010-11-21 19:55:34 +01:00
{
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
foreach (QModelIndex index, selectedRows) {
QStandardItem *item = mModel.itemFromIndex(index);
2010-11-21 19:55:34 +01:00
//Set the "hide" flag for this item
QVariantMap data = item->data().toMap();
2010-11-21 19:55:34 +01:00
data["hide"] = true;
item->setData(QVariant(data));
2010-11-21 19:55:34 +01:00
2017-07-28 11:54:20 +02:00
refreshTree();
emit resultsHidden(true);
2010-11-21 19:55:34 +01:00
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::recheckSelectedFiles()
{
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QStringList selectedItems;
foreach (QModelIndex index, selectedRows) {
QStandardItem *item = mModel.itemFromIndex(index);
while (item->parent())
item = item->parent();
QVariantMap data = item->data().toMap();
QString currentFile = data["file"].toString();
if (!currentFile.isEmpty()) {
QString fileNameWithCheckPath;
QFileInfo curfileInfo(currentFile);
if (!curfileInfo.exists() && !mCheckPath.isEmpty() && currentFile.indexOf(mCheckPath) != 0)
fileNameWithCheckPath = mCheckPath + "/" + currentFile;
else
fileNameWithCheckPath = currentFile;
const QFileInfo fileInfo(fileNameWithCheckPath);
if (!fileInfo.exists()) {
2017-07-28 11:54:20 +02:00
askFileDir(currentFile);
return;
}
if (Path::isHeader(currentFile.toStdString())) {
if (!data["file0"].toString().isEmpty() && !selectedItems.contains(data["file0"].toString())) {
selectedItems<<((!mCheckPath.isEmpty() && (data["file0"].toString().indexOf(mCheckPath) != 0)) ? (mCheckPath + "/" + data["file0"].toString()) : data["file0"].toString());
if (!selectedItems.contains(fileNameWithCheckPath))
selectedItems<<fileNameWithCheckPath;
}
} else if (!selectedItems.contains(fileNameWithCheckPath))
selectedItems<<fileNameWithCheckPath;
}
}
2017-07-28 11:54:20 +02:00
emit checkSelected(selectedItems);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::hideAllIdResult()
{
2018-02-15 21:29:18 +01:00
if (!mContextItem || !mContextItem->parent())
return;
2018-02-15 21:29:18 +01:00
// Make sure we are working with the first column
if (mContextItem->column() != 0)
mContextItem = mContextItem->parent()->child(mContextItem->row(), 0);
QVariantMap data = mContextItem->data().toMap();
2018-02-15 21:29:18 +01:00
QString messageId = data["id"].toString();
2013-02-10 23:53:01 +01:00
mHiddenMessageId.append(messageId);
2018-02-15 21:29:18 +01:00
// hide all errors with that message Id
int filecount = mModel.rowCount();
for (int i = 0; i < filecount; i++) {
//Get file i
QStandardItem *file = mModel.item(i, 0);
if (!file) {
continue;
}
2018-02-15 21:29:18 +01:00
//Get the amount of errors this file contains
int errorcount = file->rowCount();
2013-02-10 23:53:01 +01:00
2018-02-15 21:29:18 +01:00
for (int j = 0; j < errorcount; j++) {
//Get the error itself
QStandardItem *child = file->child(j, 0);
if (!child) {
continue;
}
2018-02-15 21:29:18 +01:00
QVariantMap userdata = child->data().toMap();
if (userdata["id"].toString() == messageId) {
userdata["hide"] = true;
child->setData(QVariant(userdata));
}
}
}
2018-02-15 21:29:18 +01:00
refreshTree();
emit resultsHidden(true);
}
2017-08-11 07:45:29 +02:00
void ResultsTree::suppressSelectedIds()
{
if (!mSelectionModel)
return;
QModelIndexList selectedRows = mSelectionModel->selectedRows();
QSet<QString> selectedIds;
foreach (QModelIndex index, selectedRows) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent())
continue;
if (item->parent()->parent())
item = item->parent();
QVariantMap data = item->data().toMap();
if (!data.contains("id"))
continue;
selectedIds << data["id"].toString();
}
// delete all errors with selected message Ids
for (int i = 0; i < mModel.rowCount(); i++) {
QStandardItem * const file = mModel.item(i, 0);
for (int j = 0; j < file->rowCount();) {
2017-08-11 07:45:29 +02:00
QStandardItem *errorItem = file->child(j, 0);
QVariantMap userdata = errorItem->data().toMap();
if (selectedIds.contains(userdata["id"].toString())) {
file->removeRow(j);
} else {
j++;
}
}
2020-07-15 13:03:07 +02:00
if (file->rowCount() == 0)
mModel.removeRow(file->row());
2017-08-11 07:45:29 +02:00
}
emit suppressIds(selectedIds.toList());
}
2020-07-15 13:03:07 +02:00
void ResultsTree::suppressCppcheckID()
{
if (!mSelectionModel)
return;
// Extract selected warnings
QSet<QStandardItem *> selectedWarnings;
2020-07-15 13:03:07 +02:00
foreach (QModelIndex index, mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
if (!item->parent())
continue;
while (item->parent()->parent())
item = item->parent();
selectedWarnings.insert(item);
}
ProjectFile *projectFile = ProjectFile::getActiveProject();
for (QStandardItem *item: selectedWarnings) {
QStandardItem *fileItem = item->parent();
2020-07-15 13:03:07 +02:00
const QVariantMap data = item->data().toMap();
if (projectFile && data.contains("cppcheckId"))
projectFile->suppressCppcheckId(data["cppcheckId"].toULongLong());
fileItem->removeRow(item->row());
if (fileItem->rowCount() == 0)
mModel.removeRow(fileItem->row());
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::openContainingFolder()
{
2017-07-28 11:54:20 +02:00
QString filePath = getFilePath(mContextItem, true);
if (!filePath.isEmpty()) {
filePath = QFileInfo(filePath).absolutePath();
QDesktopServices::openUrl(QUrl::fromLocalFile(filePath));
}
}
void ResultsTree::editContract()
{
emit editFunctionContract(getFunction(mContextItem));
}
void ResultsTree::tagSelectedItems(const QString &tag)
{
if (!mSelectionModel)
return;
bool isTagged = false;
foreach (QModelIndex index, mSelectionModel->selectedRows()) {
QStandardItem *item = mModel.itemFromIndex(index);
QVariantMap data = item->data().toMap();
if (data.contains("tags")) {
data["tags"] = tag;
item->setData(QVariant(data));
item->parent()->child(index.row(), COLUMN_TAGS)->setText(tag);
isTagged = true;
}
}
if (isTagged)
emit tagged();
}
2017-07-28 11:54:20 +02:00
void ResultsTree::context(int application)
{
2017-07-28 11:54:20 +02:00
startApplication(mContextItem, application);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::quickStartApplication(const QModelIndex &index)
{
2017-07-28 11:54:20 +02:00
startApplication(mModel.itemFromIndex(index));
}
2017-07-28 11:54:20 +02:00
QString ResultsTree::getFilePath(QStandardItem *target, bool fullPath)
{
2011-10-13 20:53:06 +02:00
if (target) {
// Make sure we are working with the first column
if (target->column() != 0)
target = target->parent()->child(target->row(), 0);
QVariantMap data = target->data().toMap();
QString pathStr;
//Replace (file) with filename
QString file = data["file"].toString();
pathStr = QDir::toNativeSeparators(file);
2011-10-13 20:53:06 +02:00
if (!fullPath) {
QFileInfo fi(pathStr);
pathStr = fi.fileName();
}
return pathStr;
}
return QString();
}
2017-07-28 11:54:20 +02:00
QString ResultsTree::severityToIcon(Severity::SeverityType severity) const
{
2011-10-13 20:53:06 +02:00
switch (severity) {
case Severity::error:
return ":images/dialog-error.png";
case Severity::style:
return ":images/applications-development.png";
case Severity::warning:
return ":images/dialog-warning.png";
case Severity::portability:
return ":images/applications-system.png";
case Severity::performance:
return ":images/utilities-system-monitor.png";
case Severity::information:
return ":images/dialog-information.png";
default:
2017-08-03 12:39:31 +02:00
return QString();
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::saveResults(Report *report) const
{
2017-07-28 11:12:05 +02:00
report->writeHeader();
2011-10-13 20:53:06 +02:00
for (int i = 0; i < mModel.rowCount(); i++) {
2017-08-02 12:45:57 +02:00
if (mSaveAllErrors || !isRowHidden(i, QModelIndex()))
saveErrors(report, mModel.item(i, 0));
}
2017-07-28 11:12:05 +02:00
report->writeFooter();
}
2020-07-14 18:19:03 +02:00
void ResultsTree::saveErrors(Report *report, const QStandardItem *fileItem) const
{
2017-08-02 19:09:03 +02:00
if (!fileItem) {
return;
}
2017-08-02 19:09:03 +02:00
for (int i = 0; i < fileItem->rowCount(); i++) {
const QStandardItem *error = fileItem->child(i, 0);
2011-10-13 20:53:06 +02:00
if (!error) {
continue;
}
2017-08-02 19:09:03 +02:00
if (isRowHidden(i, fileItem->index()) && !mSaveAllErrors) {
continue;
}
ErrorItem item;
2017-08-02 12:45:57 +02:00
readErrorItem(error, &item);
2017-08-02 12:45:57 +02:00
report->writeError(item);
}
}
static int indexOf(const QList<ErrorItem> &list, const ErrorItem &item)
{
for (int i = 0; i < list.size(); i++) {
2018-10-20 16:30:40 +02:00
if (ErrorItem::sameCID(item, list[i])) {
return i;
}
}
return -1;
}
void ResultsTree::updateFromOldReport(const QString &filename)
{
QList<ErrorItem> oldErrors;
XmlReportV2 oldReport(filename);
if (oldReport.open()) {
oldErrors = oldReport.read();
oldReport.close();
}
// Read current results..
for (int i = 0; i < mModel.rowCount(); i++) {
QStandardItem *fileItem = mModel.item(i,0);
for (int j = 0; j < fileItem->rowCount(); j++) {
QStandardItem *error = fileItem->child(j,0);
ErrorItem errorItem;
readErrorItem(error, &errorItem);
int oldErrorIndex = indexOf(oldErrors, errorItem);
QVariantMap data = error->data().toMap();
// New error .. set the "sinceDate" property
2017-08-03 23:27:18 +02:00
if (oldErrorIndex >= 0 && !oldErrors[oldErrorIndex].sinceDate.isEmpty()) {
data["sinceDate"] = oldErrors[oldErrorIndex].sinceDate;
error->setData(data);
fileItem->child(j, COLUMN_SINCE_DATE)->setText(oldErrors[oldErrorIndex].sinceDate);
} else if (oldErrorIndex < 0 || data["sinceDate"].toString().isEmpty()) {
const QString sinceDate = QDate::currentDate().toString(Qt::SystemLocaleShortDate);
data["sinceDate"] = sinceDate;
error->setData(data);
fileItem->child(j, COLUMN_SINCE_DATE)->setText(sinceDate);
if (oldErrorIndex < 0)
continue;
}
if (!errorItem.tags.isEmpty())
continue;
const ErrorItem &oldErrorItem = oldErrors[oldErrorIndex];
data["tags"] = oldErrorItem.tags;
error->setData(data);
}
}
}
2017-08-02 14:34:06 +02:00
void ResultsTree::readErrorItem(const QStandardItem *error, ErrorItem *item) const
{
// Get error's user data
QVariantMap data = error->data().toMap();
2017-08-02 12:45:57 +02:00
item->severity = ShowTypes::ShowTypeToSeverity(ShowTypes::VariantToShowType(data["severity"]));
item->summary = data["summary"].toString();
item->message = data["message"].toString();
item->errorId = data["id"].toString();
item->incomplete = data["incomplete"].toBool();
item->cwe = data["cwe"].toInt();
2020-07-15 07:59:05 +02:00
item->cppcheckId = data["cppcheckId"].toULongLong();
2017-08-02 12:45:57 +02:00
item->inconclusive = data["inconclusive"].toBool();
item->file0 = data["file0"].toString();
item->sinceDate = data["sinceDate"].toString();
item->tags = data["tags"].toString();
2017-08-02 12:45:57 +02:00
if (error->rowCount() == 0) {
QErrorPathItem e;
e.file = stripPath(data["file"].toString(), true);
e.line = data["line"].toUInt();
e.info = data["message"].toString();
item->errorPath << e;
}
2017-08-02 12:45:57 +02:00
for (int j = 0; j < error->rowCount(); j++) {
const QStandardItem *child_error = error->child(j, 0);
//Get error's user data
QVariant child_userdata = child_error->data();
//Convert it to QVariantMap
QVariantMap child_data = child_userdata.toMap();
QErrorPathItem e;
e.file = stripPath(child_data["file"].toString(), true);
e.line = child_data["line"].toUInt();
e.info = child_data["message"].toString();
item->errorPath << e;
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::updateSettings(bool showFullPath,
bool saveFullPath,
bool saveAllErrors,
bool showErrorId,
bool showInconclusive)
{
2011-10-13 20:53:06 +02:00
if (mShowFullPath != showFullPath) {
mShowFullPath = showFullPath;
2017-07-28 11:54:20 +02:00
refreshFilePaths();
}
mSaveFullPath = saveFullPath;
mSaveAllErrors = saveAllErrors;
2017-07-28 11:54:20 +02:00
showIdColumn(showErrorId);
showInconclusiveColumn(showInconclusive);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::setCheckDirectory(const QString &dir)
{
mCheckPath = dir;
}
QString ResultsTree::getCheckDirectory()
{
return mCheckPath;
}
2017-07-28 11:54:20 +02:00
QString ResultsTree::stripPath(const QString &path, bool saving) const
{
2011-10-13 20:53:06 +02:00
if ((!saving && mShowFullPath) || (saving && mSaveFullPath)) {
return QString(path);
}
QDir dir(mCheckPath);
return dir.relativeFilePath(path);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::refreshFilePaths(QStandardItem *item)
{
2011-10-13 20:53:06 +02:00
if (!item) {
return;
}
//Mark that this file's path hasn't been updated yet
bool updated = false;
//Loop through all errors within this file
2011-10-13 20:53:06 +02:00
for (int i = 0; i < item->rowCount(); i++) {
//Get error i
QStandardItem *error = item->child(i, 0);
2011-10-13 20:53:06 +02:00
if (!error) {
continue;
}
//Get error's user data
QVariant userdata = error->data();
//Convert it to QVariantMap
QVariantMap data = userdata.toMap();
//Get list of files
QString file = data["file"].toString();
//Update this error's text
2017-07-28 11:54:20 +02:00
error->setText(stripPath(file, false));
//If this error has backtraces make sure the files list has enough filenames
2011-10-13 20:53:06 +02:00
if (error->hasChildren()) {
//Loop through all files within the error
2011-10-13 20:53:06 +02:00
for (int j = 0; j < error->rowCount(); j++) {
//Get file
QStandardItem *child = error->child(j, 0);
2011-10-13 20:53:06 +02:00
if (!child) {
continue;
}
//Get child's user data
QVariant child_userdata = child->data();
//Convert it to QVariantMap
QVariantMap child_data = child_userdata.toMap();
//Get list of files
QString child_files = child_data["file"].toString();
//Update file's path
2017-07-28 11:54:20 +02:00
child->setText(stripPath(child_files, false));
}
}
//if the main file hasn't been updated yet, update it now
2011-10-13 20:53:06 +02:00
if (!updated) {
updated = true;
item->setText(error->text());
}
}
}
2017-07-28 11:54:20 +02:00
void ResultsTree::refreshFilePaths()
{
qDebug("Refreshing file paths");
//Go through all file items (these are parent items that contain the errors)
2011-10-13 20:53:06 +02:00
for (int i = 0; i < mModel.rowCount(); i++) {
2017-07-28 11:54:20 +02:00
refreshFilePaths(mModel.item(i, 0));
}
}
2017-07-28 11:54:20 +02:00
bool ResultsTree::hasVisibleResults() const
{
return mVisibleErrors;
}
2017-07-28 11:54:20 +02:00
bool ResultsTree::hasResults() const
{
return mModel.rowCount() > 0;
}
2017-07-28 11:54:20 +02:00
void ResultsTree::translate()
{
QStringList labels;
labels << tr("File") << tr("Severity") << tr("Line") << tr("Id") << tr("Inconclusive") << tr("Summary") << tr("Since date") << tr("Tag");
mModel.setHorizontalHeaderLabels(labels);
2009-07-02 12:48:32 +02:00
//TODO go through all the errors in the tree and translate severity and message
}
2017-07-28 11:54:20 +02:00
void ResultsTree::showIdColumn(bool show)
{
mShowErrorId = show;
if (show)
showColumn(3);
else
hideColumn(3);
}
2017-07-28 11:54:20 +02:00
void ResultsTree::showInconclusiveColumn(bool show)
{
if (show)
showColumn(4);
else
hideColumn(4);
}
void ResultsTree::currentChanged(const QModelIndex &current, const QModelIndex &previous)
{
QTreeView::currentChanged(current, previous);
emit treeSelectionChanged(current);
}