-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcmakeparser.h
56 lines (41 loc) · 1.44 KB
/
cmakeparser.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
56
// Copyright (C) 2016 Axonian LLC.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "cmake_global.h"
#include <projectexplorer/ioutputparser.h>
#include <projectexplorer/task.h>
#include <utils/filepath.h>
#include <QRegularExpression>
#include <optional>
namespace CMakeProjectManager {
class CMAKE_EXPORT CMakeParser : public ProjectExplorer::OutputTaskParser
{
Q_OBJECT
public:
explicit CMakeParser();
void setSourceDirectory(const Utils::FilePath &sourceDir);
private:
Result handleLine(const QString &line, Utils::OutputFormat type) override;
void flush() override;
Utils::FilePath resolvePath(const QString &path) const;
enum TripleLineError { NONE, LINE_LOCATION, LINE_DESCRIPTION, LINE_DESCRIPTION2 };
TripleLineError m_expectTripleLineErrorData = NONE;
std::optional<Utils::FilePath> m_sourceDirectory;
ProjectExplorer::Task m_lastTask;
QRegularExpression m_commonError;
QRegularExpression m_nextSubError;
QRegularExpression m_commonWarning;
QRegularExpression m_locationLine;
QRegularExpression m_sourceLineAndFunction;
bool m_skippedFirstEmptyLine = false;
int m_lines = 0;
struct CallStackLine
{
Utils::FilePath file;
int line = -1;
QString function;
};
std::optional<QList<CallStackLine>> m_callStack;
CallStackLine m_errorOrWarningLine;
};
} // CMakeProjectManager