-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExecutionData.h
55 lines (49 loc) · 1.19 KB
/
ExecutionData.h
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
#ifndef EXECUTIONDATA_H
#define EXECUTIONDATA_H
#include <QString>
#include <QList>
#include <QHash>
#include <QStringList>
struct OutputInfo {
// 一个输出项的所有信息
QString fieldName;
int argindex = -1;
};
struct UnspecifiedPathInfo {
bool isDir = false;
QString filter;
QString defaultName;
};
struct ExecutionInfo {
QString program;
QStringList args;
QHash<QString, QString> envs;
QHash<int, UnspecifiedPathInfo> unspecifiedPaths;
QList<OutputInfo> specifiedOutputs;
};
inline QString getMergedCommand(const QString& program, const QStringList& args) {
QString mergedstr;
if (program.contains(' ')) {
mergedstr += '"';
mergedstr += program;
mergedstr += '"';
} else {
mergedstr = program;
}
for (const QString& a : args) {
if (mergedstr.length() > 0) {
mergedstr += ' ';
}
if (a.contains(' ')) {
QString copy(a);
copy.replace('"', "\\\"");
mergedstr += '"';
mergedstr += copy;
mergedstr += '"';
} else {
mergedstr += a;
}
}
return mergedstr;
}
#endif // EXECUTIONDATA_H