aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/syntax-highlighting/src/lib/repository_p.h
blob: bb9f8ba0820b51d4d4034746778dbbf588921f04 (plain)
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
/*
    SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org>

    SPDX-License-Identifier: MIT
*/

#ifndef KSYNTAXHIGHLIGHTING_REPOSITORY_P_H
#define KSYNTAXHIGHLIGHTING_REPOSITORY_P_H

#include <QHash>
#include <QList>
#include <QMap>
#include <QString>

#include "dynamicregexpcache_p.h"

namespace KSyntaxHighlighting
{
class Definition;
class Repository;
class Theme;

class RepositoryPrivate
{
public:
    RepositoryPrivate() = default;

    static RepositoryPrivate *get(Repository *repo);

    void load(Repository *repo);
    void loadSyntaxFolder(Repository *repo, const QString &path);
    bool loadSyntaxFolderFromIndex(Repository *repo, const QString &path);

    void addDefinition(const Definition &def);

    void loadThemeFolder(const QString &path);
    void addTheme(const Theme &theme);

    int foldingRegionId(const QString &defName, const QString &foldName);
    int nextFormatId();

    QList<QString> m_customSearchPaths;

    // sorted map to have deterministic iteration order for e.g. definitionsForFileName
    QMap<QString, Definition> m_defs;

    // this vector is sorted by translated sections/names
    QList<Definition> m_sortedDefs;

    QList<Theme> m_themes;

    QHash<QPair<QString, QString>, int> m_foldingRegionIds;
    int m_foldingRegionId = 0;
    int m_formatId = 0;

    DynamicRegexpCache m_dynamicRegexpCache;
};
}

#endif