OSDN Git Service

9b3544047e3116c0845fdd61cd65a55e9cbc7b4b
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-s60 / winscwparser.cpp
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 #include "winscwparser.h"
35
36 #include <projectexplorer/projectexplorerconstants.h>
37
38 #include <QtCore/QDir>
39
40 using namespace Qt4ProjectManager;
41 using namespace ProjectExplorer;
42 using namespace ProjectExplorer::Constants;
43
44 WinscwParser::WinscwParser()
45 {
46     setObjectName(QLatin1String("WinscwParser"));
47     // linker problems:
48     m_linkerProblem.setPattern("^(\\S*)\\(\\S+\\):\\s(.+)$");
49     m_linkerProblem.setMinimal(true);
50
51     // WINSCW issue:
52     m_compilerProblem.setPattern("^([^\\(\\)]+[^\\d]):(\\d+):\\s(.+)$");
53     m_compilerProblem.setMinimal(true);
54 }
55
56 void WinscwParser::stdOutput(const QString &line)
57 {
58     QString lne = line.trimmed();
59
60     if (m_compilerProblem.indexIn(lne) > -1) {
61         Task task(Task::Error,
62                   m_compilerProblem.cap(3) /* description */,
63                   QDir::fromNativeSeparators(m_compilerProblem.cap(1)) /* filename */,
64                   m_compilerProblem.cap(2).toInt() /* linenumber */,
65                   TASK_CATEGORY_COMPILE);
66         if (task.description.startsWith(QLatin1String("warning: "))) {
67             task.type = Task::Warning;
68             task.description = task.description.mid(9);
69         }
70         emit addTask(task);
71         return;
72     }
73     IOutputParser::stdOutput(line);
74 }
75
76 void WinscwParser::stdError(const QString &line)
77 {
78     QString lne = line.trimmed();
79
80     if (m_linkerProblem.indexIn(lne) > -1) {
81         emit addTask(Task(Task::Error,
82                           m_linkerProblem.cap(2) /* description */,
83                           QDir::fromNativeSeparators(m_linkerProblem.cap(1)) /* filename */,
84                           -1 /* linenumber */,
85                           TASK_CATEGORY_COMPILE));
86         return;
87     }
88     IOutputParser::stdError(line);
89 }