blob: 0fad6cbe74a319d7609bb5afc831f0bf605d9f5d (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "ibconsolebuildstep.h"
#include "commandbuilderaspect.h"
#include "incredibuildconstants.h"
#include "incredibuildtr.h"
#include <projectexplorer/abstractprocessstep.h>
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/gnumakeparser.h>
#include <projectexplorer/kit.h>
#include <projectexplorer/processparameters.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/target.h>
#include <utils/aspects.h>
using namespace ProjectExplorer;
using namespace Utils;
namespace IncrediBuild::Internal {
class IBConsoleBuildStep final : public AbstractProcessStep
{
public:
IBConsoleBuildStep(BuildStepList *buildStepList, Id id);
void setupOutputFormatter(OutputFormatter *formatter) final;
TextDisplay t1{this, "<b>" + Tr::tr("Target and Configuration")};
CommandBuilderAspect commandBuilder{this};
BoolAspect keepJobNum{this};
TextDisplay t2{this, "<i>" + Tr::tr("Enter the appropriate arguments to your build command.")};
TextDisplay
t3{this,
"<i>"
+ Tr::tr("Make sure the build command's "
"multi-job parameter value is large enough (such as "
"-j200 for the JOM or Make build tools).")};
TextDisplay t4{this, "<b>" + Tr::tr("IncrediBuild Distribution Control")};
IntegerAspect nice{this};
BoolAspect forceRemote{this};
BoolAspect alternate{this};
};
IBConsoleBuildStep::IBConsoleBuildStep(BuildStepList *buildStepList, Id id)
: AbstractProcessStep(buildStepList, id)
{
setDisplayName(Tr::tr("IncrediBuild for Linux"));
commandBuilder.setSettingsKey("IncrediBuild.IBConsole.CommandBuilder");
keepJobNum.setSettingsKey("IncrediBuild.IBConsole.KeepJobNum");
keepJobNum.setLabel(Tr::tr("Keep original jobs number:"));
keepJobNum.setToolTip(Tr::tr("Forces IncrediBuild to not override the -j command line switch, "
"that controls the number of parallel spawned tasks. The default "
"IncrediBuild behavior is to set it to 200."));
nice.setSettingsKey("IncrediBuild.IBConsole.Nice");
nice.setToolTip(Tr::tr("Specify nice value. Nice Value should be numeric and between -20 and 19"));
nice.setLabel(Tr::tr("Nice value:"));
nice.setRange(-20, 19);
forceRemote.setSettingsKey("IncrediBuild.IBConsole.Alternate");
forceRemote.setLabel(Tr::tr("Force remote:"));
alternate.setSettingsKey("IncrediBuild.IBConsole.ForceRemote");
alternate.setLabel(Tr::tr("Alternate tasks preference:"));
setCommandLineProvider([this] {
QStringList args;
if (nice() != 0)
args.append(QString("--nice %1 ").arg(nice()));
if (alternate())
args.append("--alternate");
if (forceRemote())
args.append("--force-remote");
args.append(commandBuilder.fullCommandFlag(keepJobNum()));
return CommandLine("ib_console", args);
});
}
void IBConsoleBuildStep::setupOutputFormatter(OutputFormatter *formatter)
{
formatter->addLineParser(new GnuMakeParser());
formatter->addLineParsers(kit()->createOutputParsers());
formatter->addSearchDir(processParameters()->effectiveWorkingDirectory());
AbstractProcessStep::setupOutputFormatter(formatter);
}
// IBConsoleStepFactory
class IBConsoleStepFactory final : public BuildStepFactory
{
public:
IBConsoleStepFactory()
{
registerStep<IBConsoleBuildStep>(IncrediBuild::Constants::IBCONSOLE_BUILDSTEP_ID);
setDisplayName(Tr::tr("IncrediBuild for Linux"));
setSupportedStepLists({ProjectExplorer::Constants::BUILDSTEPS_BUILD,
ProjectExplorer::Constants::BUILDSTEPS_CLEAN});
}
};
void setupIBConsoleStep()
{
static IBConsoleStepFactory theIBConsoleStepFactory;
}
} // IncrediBuild::Internal
|