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
|
/*
problem.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2018 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Anton Kreuzkamp <anton.kreuzkamp@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#ifndef GAMMARAY_PROBLEM_H
#define GAMMARAY_PROBLEM_H
// Own
#include "objectid.h"
#include "common/sourcelocation.h"
// Qt
#include <QAbstractItemModel>
// Std
#include <memory>
#include <vector>
namespace GammaRay {
struct Problem
{
enum Severity
{
Info = 1,
Warning,
Error
};
enum FindingCategory
{
Unknown,
Live, ///< is added and removed as the problem arises/vanishes by the reporting tool
Scan, ///< is added in response to a scan request and removed by the problem collector in advance to the next scan
Permanent ///< is valid during the whole application lifetime and not meant to be removed at all
};
Problem()
: severity(Error)
, findingCategory(Unknown)
{
}
Severity severity;
ObjectId object;
QString description;
QVector<SourceLocation> locations;
QString reportingTool; ///< Tool which reported the issue
QString problemId; ///< tool-specific unique id for the problem
FindingCategory findingCategory;
bool operator==(const Problem &other) const
{
return problemId == other.problemId;
}
};
}
Q_DECLARE_METATYPE(GammaRay::Problem::Severity)
#endif // GAMMARAY_PROBLEM_H
|