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 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* This file is part of KDevelop
Copyright 2017 Anton Anikin <anton.anikin@htower.ru>
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 2 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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#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 <qtcompat_p.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 : qAsConst(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);
}
}
}
|