blob: da46210ab0a0d44390e26f627bdf664c3fa53eae (
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
|
// 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 "utils_global.h"
#include "aspects.h"
#include "commandline.h"
#include "port.h"
QT_BEGIN_NAMESPACE
class QString;
namespace QtTaskTree {
class ExecutableItem;
template <typename StorageStruct>
class Storage;
} // namespace QtTaskTree
QT_END_NAMESPACE
namespace Utils {
namespace Internal { class PortListPrivate; }
class QTCREATOR_UTILS_EXPORT PortList
{
public:
PortList();
PortList(const PortList &other);
PortList &operator=(const PortList &other);
~PortList();
void addPort(Port port);
void addRange(Port startPort, Port endPort);
bool hasMore() const;
bool contains(Port port) const;
int count() const;
Port getNext();
Port getNextFreePort(const QList<Port> &usedPorts);
QString toString() const;
static PortList fromString(const QString &portsSpec);
static QString regularExpression();
private:
Internal::PortListPrivate * const d;
};
class QTCREATOR_UTILS_EXPORT PortsInputData
{
public:
PortList freePorts;
CommandLine commandLine;
std::function<QList<Port>(const QByteArray &)> portsParser = &Port::parseFromCommandOutput;
};
using PortsOutputData = Result<QList<Port>>;
QTCREATOR_UTILS_EXPORT QtTaskTree::ExecutableItem portsFromProcessRecipe(
const QtTaskTree::Storage<PortsInputData> &input, const QtTaskTree::Storage<PortsOutputData> &output);
class QTCREATOR_UTILS_EXPORT PortListAspect : public Utils::StringAspect
{
public:
PortListAspect(Utils::AspectContainer *container = nullptr);
void addToLayoutImpl(Layouting::Layout &parent) override;
void setPortList(const PortList &ports);
PortList portList() const;
};
} // namespace Utils
|