File: checksdb.cpp

package info (click to toggle)
kdevelop 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 73,508 kB
  • sloc: cpp: 291,803; python: 4,322; javascript: 3,518; sh: 1,316; ansic: 703; xml: 414; php: 95; lisp: 66; makefile: 31; sed: 12
file content (147 lines) | stat: -rw-r--r-- 4,175 bytes parent folder | download | duplicates (3)
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
/*
    SPDX-FileCopyrightText: 2018 Anton Anikin <anton@anikin.xyz>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#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");
}

}