blob: ced078137626aef4f9f1b8aea66f95fabc7621b6 (
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include "ioutputparser.h"
#include "task.h"
#include <QRegularExpression>
#include <QString>
namespace ProjectExplorer {
class PROJECTEXPLORER_EXPORT MsvcParser : public ProjectExplorer::OutputTaskParser
{
Q_OBJECT
public:
MsvcParser();
static Utils::Id id();
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
void flush() override;
Result processCompileLine(const QString &line);
QRegularExpression m_compileRegExp;
QRegularExpression m_additionalInfoRegExp;
Task m_lastTask;
LinkSpecs m_linkSpecs;
int m_lines = 0;
};
class PROJECTEXPLORER_EXPORT ClangClParser : public ProjectExplorer::OutputTaskParser
{
Q_OBJECT
public:
ClangClParser();
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
void flush() override;
const QRegularExpression m_compileRegExp;
Task m_lastTask;
int m_linkedLines = 0;
};
} // namespace ProjectExplorer
|