aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppworkingcopy.h
blob: 87a613bc7acdfa161fdd1c0bdb862c709e216c82 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "cppeditor_global.h"

#include <utils/filepath.h>

#include <QHash>
#include <QString>
#include <QPair>

#include <optional>

namespace CppEditor {

class CPPEDITOR_EXPORT WorkingCopy
{
public:
    WorkingCopy();

    void insert(const Utils::FilePath &fileName, const QByteArray &source, unsigned revision = 0)
    { _elements.insert(fileName, {source, revision}); }

    std::optional<QByteArray> source(const Utils::FilePath &fileName) const;

    unsigned revision(const Utils::FilePath &fileName) const
    { return _elements.value(fileName).second; }

    std::optional<QPair<QByteArray, unsigned>> get(const Utils::FilePath &fileName) const;

    using Table = QHash<Utils::FilePath, QPair<QByteArray, unsigned> >;
    const Table &elements() const
    { return _elements; }

    int size() const
    { return _elements.size(); }

private:
    Table _elements;
};

} // CppEditor