aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/fsengine/diriterator.h
blob: 54e9d5d2dd375e39bb8934aa73f378c6bac2af5c (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "../filepath.h"
#include "../stringutils.h"

#include <QFileInfo>
#include <QString>

#include <QtCore/private/qabstractfileengine_p.h>

namespace Utils {
namespace Internal {

class DirIterator : public QAbstractFileEngineIterator
{
public:
    DirIterator(FilePaths paths)
        : QAbstractFileEngineIterator({}, {})
        , m_filePaths(std::move(paths))
        , it(m_filePaths.begin())
    {}

    // QAbstractFileEngineIterator interface
public:
    QString next() override
    {
        if (it == m_filePaths.end())
            return QString();
        const QString r = chopIfEndsWith(it->toFSPathString(), '/');
        ++it;
        return r;
    }

    bool hasNext() const override { return !m_filePaths.empty() && m_filePaths.end() != it + 1; }

    QString currentFileName() const override
    {
        const QString result = it->fileName();
        if (result.isEmpty() && !it->host().isEmpty()) {
            return it->host().toString();
        }
        return chopIfEndsWith(result, '/');
    }

    QFileInfo currentFileInfo() const override
    {
        return QFileInfo(chopIfEndsWith(it->toFSPathString(), '/'));
    }

private:
    const FilePaths m_filePaths;
    FilePaths::const_iterator it;
};

} // namespace Internal

} // namespace Utils