aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/optionsparser.h
blob: d5557dc15700feac205b1ad5d74209bfb6ad953e (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef OPTIONSPARSER_H
#define OPTIONSPARSER_H

#include <QtCore/QString>
#include <QtCore/QStringList>

#include <memory>

QT_FORWARD_DECLARE_CLASS(QTextStream)

enum class OptionSource
{
    CommandLine, // "--option"
    CommandLineSingleDash, // "-o"
    ProjectFile
};

struct BoolOption
{
    QString option;
    OptionSource source = OptionSource::CommandLine;
};

struct OptionValue // --option=value pair
{
    QString option;
    QString value;
    OptionSource source = OptionSource::CommandLine;
};

using BoolOptions = QList<BoolOption>;
using OptionValues = QList<OptionValue>;

struct Options // Options from command line and project file
{
    void setOptions(const QStringList &argv);
    QString msgUnprocessedOptions() const;

    BoolOptions boolOptions;
    OptionValues valueOptions;
    QStringList positionalArguments;
};

struct OptionDescription // For help formatting
{
    QString name;
    QString description;
};

using OptionDescriptions = QList<OptionDescription>;

QTextStream &operator<<(QTextStream &s, const BoolOption &bo);
QTextStream &operator<<(QTextStream &s, const OptionValue &ov);
QTextStream &operator<<(QTextStream &s, const OptionDescription &od);
QTextStream &operator<<(QTextStream &s, const OptionDescriptions &options);

class OptionsParser
{
public:
    Q_DISABLE_COPY_MOVE(OptionsParser)

    virtual ~OptionsParser();

    // Return true to indicate the option was processed.
    virtual bool handleBoolOption(const QString &key, OptionSource source);
    virtual bool handleOption(const QString &key, const QString &value, OptionSource source);

    void process(Options *);

    static const QString &pathSyntax();

protected:
    OptionsParser() noexcept;
};

class OptionsParserList : public OptionsParser
{
public:
    using OptionsParserPtr = std::shared_ptr<OptionsParser>;

    void append(const OptionsParserPtr &parser) { m_parsers.append(parser); }
    void clear() { m_parsers.clear(); }

    bool handleBoolOption(const QString &key, OptionSource source) override;
    bool handleOption(const QString &key, const QString &value, OptionSource source) override;

private:
    QList<OptionsParserPtr> m_parsers;
};

QDebug operator<<(QDebug debug, const BoolOption &bo);
QDebug operator<<(QDebug debug, const OptionValue &v);
QDebug operator<<(QDebug debug, const Options &v);

#endif // OPTIONSPARSER_H