1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
SPDX-FileCopyrightText: 2017 Anton Anikin <anton.anikin@htower.ru>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "problemmodel.h"
#include "plugin.h"
#include "utils.h"
#include <interfaces/icore.h>
#include <interfaces/ilanguagecontroller.h>
#include <interfaces/iproject.h>
#include <language/editor/documentrange.h>
#include <shell/problemmodelset.h>
#include <KLocalizedString>
namespace cppcheck
{
inline KDevelop::ProblemModelSet* problemModelSet()
{
return KDevelop::ICore::self()->languageController()->problemModelSet();
}
namespace Strings {
QString problemModelId() { return QStringLiteral("Cppcheck"); }
}
ProblemModel::ProblemModel(Plugin* plugin)
: KDevelop::ProblemModel(plugin)
, m_plugin(plugin)
, m_project(nullptr)
, m_pathLocation(KDevelop::DocumentRange::invalid())
{
setFeatures(CanDoFullUpdate | ScopeFilter | SeverityFilter | Grouping | CanByPassScopeFilter);
reset();
problemModelSet()->addModel(Strings::problemModelId(), i18n("Cppcheck"), this);
}
ProblemModel::~ProblemModel()
{
problemModelSet()->removeModel(Strings::problemModelId());
}
KDevelop::IProject* ProblemModel::project() const
{
return m_project;
}
void ProblemModel::fixProblemFinalLocation(KDevelop::IProblem::Ptr problem)
{
// Fix problems with incorrect range, which produced by cppcheck's errors
// without <location> element. In this case location automatically gets "/".
// To avoid this we set current analysis path as problem location.
if (problem->finalLocation().document.isEmpty()) {
problem->setFinalLocation(m_pathLocation);
}
const auto& diagnostics = problem->diagnostics();
for (auto& diagnostic : diagnostics) {
fixProblemFinalLocation(diagnostic);
}
}
bool ProblemModel::problemExists(KDevelop::IProblem::Ptr newProblem)
{
for (auto problem : std::as_const(m_problems)) {
if (newProblem->source() == problem->source() &&
newProblem->severity() == problem->severity() &&
newProblem->finalLocation() == problem->finalLocation() &&
newProblem->description() == problem->description() &&
newProblem->explanation() == problem->explanation())
return true;
}
return false;
}
void ProblemModel::setMessage(const QString& message)
{
setPlaceholderText(message, m_pathLocation, i18n("Cppcheck"));
}
void ProblemModel::addProblems(const QVector<KDevelop::IProblem::Ptr>& problems)
{
static int maxLength = 0;
if (m_problems.isEmpty()) {
maxLength = 0;
}
for (auto problem : problems) {
fixProblemFinalLocation(problem);
if (problemExists(problem)) {
continue;
}
m_problems.append(problem);
addProblem(problem);
// This performs adjusting of columns width in the ProblemsView
if (maxLength < problem->description().length()) {
maxLength = problem->description().length();
setProblems(m_problems);
}
}
}
void ProblemModel::setProblems()
{
setMessage(i18n("Analysis completed, no problems detected."));
setProblems(m_problems);
}
void ProblemModel::reset()
{
reset(nullptr, QString());
}
void ProblemModel::reset(KDevelop::IProject* project, const QString& path)
{
m_project = project;
m_path = path;
m_pathLocation.document = KDevelop::IndexedString(m_path);
clearProblems();
m_problems.clear();
QString tooltip;
if (m_project) {
setMessage(i18n("Analysis started..."));
tooltip = i18nc("@info:tooltip %1 is the path of the file", "Re-run last Cppcheck analysis (%1)", prettyPathName(m_path));
} else {
tooltip = i18nc("@info:tooltip", "Re-run last Cppcheck analysis");
}
setFullUpdateTooltip(tooltip);
}
void ProblemModel::show()
{
problemModelSet()->showModel(Strings::problemModelId());
}
void ProblemModel::forceFullUpdate()
{
if (m_project && !m_plugin->isRunning()) {
m_plugin->runCppcheck(m_project, m_path);
}
}
}
#include "moc_problemmodel.cpp"
|