OSDN Git Service

15762a7911f07cb73acef4d51cc874bad380853a
[qt-creator-jp/qt-creator-jp.git] / src / plugins / projectexplorer / gnumakeparser.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef GNUMAKEPARSER_H
35 #define GNUMAKEPARSER_H
36
37 #include "ioutputparser.h"
38
39 #include <QtCore/QRegExp>
40 #include <QtCore/QStringList>
41
42 namespace ProjectExplorer {
43
44 class PROJECTEXPLORER_EXPORT GnuMakeParser : public ProjectExplorer::IOutputParser
45 {
46     Q_OBJECT
47
48 public:
49     explicit GnuMakeParser();
50
51     virtual void stdOutput(const QString &line);
52     virtual void stdError(const QString &line);
53
54     virtual void setWorkingDirectory(const QString &workingDirectory);
55
56     QStringList searchDirectories() const;
57
58     bool hasFatalErrors() const;
59
60 public slots:
61     virtual void taskAdded(const ProjectExplorer::Task &task);
62
63 private:
64     void addDirectory(const QString &dir);
65     void removeDirectory(const QString &dir);
66
67     QRegExp m_makeDir;
68     QRegExp m_makeLine;
69     QRegExp m_makefileError;
70
71     QStringList m_directories;
72
73 #if defined WITH_TESTS
74     friend class ProjectExplorerPlugin;
75 #endif
76     bool m_suppressIssues;
77
78     int m_fatalErrorCount;
79 };
80
81 #if defined WITH_TESTS
82 class GnuMakeParserTester : public QObject
83 {
84     Q_OBJECT
85
86 public:
87     GnuMakeParserTester(GnuMakeParser *parser, QObject *parent = 0);
88
89     QStringList directories;
90     GnuMakeParser *parser;
91
92 public slots:
93     void parserIsAboutToBeDeleted();
94 };
95 #endif
96
97 } // namespace ProjectExplorer
98
99 #endif // GNUMAKEPARSER_H