summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/codechunk.h
blob: 00ad26c6d194b5db31ff4c0e99e8f2ea01ac5b01 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef CODECHUNK_H
#define CODECHUNK_H

#include <QtCore/qstring.h>

QT_BEGIN_NAMESPACE

// ### get rid of that class

class CodeChunk
{
public:
    CodeChunk() : m_hotspot(-1) { }

    void append(const QString &lexeme);
    void appendHotspot()
    {
        if (m_hotspot == -1)
            m_hotspot = m_str.size();
    }

    [[nodiscard]] bool isEmpty() const { return m_str.isEmpty(); }
    void clear() { m_str.clear(); }
    [[nodiscard]] QString toString() const { return m_str; }
    [[nodiscard]] QString left() const
    {
        return m_str.left(m_hotspot == -1 ? m_str.size() : m_hotspot);
    }
    [[nodiscard]] QString right() const
    {
        return m_str.mid(m_hotspot == -1 ? m_str.size() : m_hotspot);
    }

private:
    QString m_str {};
    qsizetype m_hotspot {};
};

inline bool operator==(const CodeChunk &c, const CodeChunk &d)
{
    return c.toString() == d.toString();
}

inline bool operator!=(const CodeChunk &c, const CodeChunk &d)
{
    return !(c == d);
}

inline bool operator<(const CodeChunk &c, const CodeChunk &d)
{
    return c.toString() < d.toString();
}

inline bool operator>(const CodeChunk &c, const CodeChunk &d)
{
    return d < c;
}

inline bool operator<=(const CodeChunk &c, const CodeChunk &d)
{
    return !(c > d);
}

inline bool operator>=(const CodeChunk &c, const CodeChunk &d)
{
    return !(c < d);
}

QT_END_NAMESPACE

#endif