File: checksdb.cpp

package info (click to toggle)
kdevelop 4%3A5.6.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 57,892 kB
  • sloc: cpp: 278,773; javascript: 3,558; python: 3,385; sh: 1,317; ansic: 689; xml: 273; php: 95; makefile: 40; lisp: 13; sed: 12
file content (161 lines) | stat: -rw-r--r-- 4,884 bytes parent folder | download
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
/* This file is part of KDevelop

   Copyright 2018 Anton Anikin <anton@anikin.xyz>

   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 "checksdb.h"

#include "globalsettings.h"
#include "utils.h"

#include <KLocalizedString>

#include <QDir>
#include <QRegularExpression>

namespace Clazy
{

ChecksDB::ChecksDB(const QUrl& docsPath)
{
    static const QHash<QString, QString> levelName = {
        { QStringLiteral("manuallevel"), QStringLiteral("manual") },
        { QStringLiteral("hiddenlevel"), QStringLiteral("manual") }
    };

    static const QHash<QString, QString> levelDisplayName = {
        { QStringLiteral("level0"), i18nc("@item level of checks", "Level 0") },
        { QStringLiteral("level1"), i18nc("@item level of checks", "Level 1") },
        { QStringLiteral("level2"), i18nc("@item level of checks", "Level 2") },
        { QStringLiteral("level3"), i18nc("@item level of checks", "Level 3") },
        { QStringLiteral("manual"), i18nc("@item level of checks", "Manual Level") }
    };

    static const QHash<QString, QString> levelDescription = {
        { QStringLiteral("level0"),
          i18n("Very stable checks, 99.99% safe, mostly no false-positives, very desirable.") },

        { QStringLiteral("level1"),
          i18n("The default level. Very similar to level 0, slightly more false-positives but very few.") },

        { QStringLiteral("level2"),
          i18n("Also very few false-positives, but contains noisy checks which not everyone agree should be default.") },

        { QStringLiteral("level3"),
          i18n("Contains checks with high rate of false-positives.") },

        { QStringLiteral("manual"),
          i18n("Checks here need to be enabled explicitly, as they don't belong to any level. "
               "Checks here are very stable and have very few false-positives.") }
    };

    const QString defaultError = i18n(
        "Unable to load Clazy checks information from '%1'. Please check your settings.",
        docsPath.toLocalFile());

    QDir docsDir(docsPath.toLocalFile());
    if (!docsDir.exists()) {
        m_error = defaultError;
        return;
    }

    const QRegularExpression levelRE(QStringLiteral(".*level.*"));
    const QRegularExpression checkRE(QStringLiteral("^README-(.+)\\.md$"));

    const auto levelsDirs = docsDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
    for (const auto& levelDir : levelsDirs) {
        if (!levelRE.match(levelDir).hasMatch()) {
            continue;
        }

        if (!docsDir.cd(levelDir)) {
            continue;
        }

        auto level = new Level;
        level->name = levelName.value(levelDir, levelDir);
        level->displayName = levelDisplayName.value(level->name, levelDir);
        level->description = levelDescription.value(level->name, {});

        const auto checksFiles = docsDir.entryList(QDir::Files | QDir::Readable);
        for (const auto& checkFile : checksFiles) {
            auto match = checkRE.match(checkFile);
            if (!match.hasMatch()) {
                continue;
            }

            QFile mdFile(docsDir.absoluteFilePath(checkFile));
            if (!mdFile.open(QIODevice::ReadOnly)) {
                continue;
            }

            auto check = new Check;
            check->level = level;
            check->name = match.captured(1);
            check->description = markdown2html(mdFile.readAll());
            level->checks[check->name] = check;

            m_checks[check->name] = check;
        }

        if (level->checks.isEmpty()) {
            delete level;
        } else {
            m_levels[level->name] = level;
        }

        docsDir.cdUp();
    }

    if (m_levels.isEmpty()) {
        m_error = defaultError;
    }
}

ChecksDB::~ChecksDB()
{
    qDeleteAll(m_levels);
    qDeleteAll(m_checks);
}

bool ChecksDB::isValid() const
{
    return m_error.isEmpty();
}

QString ChecksDB::error() const
{
    return m_error;
}

const QMap<QString, Level*>& ChecksDB::levels() const
{
    return m_levels;
}

const QMap<QString, Check*>& ChecksDB::checks() const
{
    return m_checks;
}

QString ChecksDB::defaultChecks()
{
    return QStringLiteral("level1");
}

}