~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to language/interfaces/iproblem.cpp

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of KDevelop
2
 
Copyright 2007 Hamish Rodda <rodda@kde.org>
3
 
 
4
 
This library is free software; you can redistribute it and/or
5
 
modify it under the terms of the GNU Library General Public
6
 
License as published by the Free Software Foundation; either
7
 
version 2 of the License, or (at your option) any later version.
8
 
 
9
 
This library is distributed in the hope that it will be useful,
10
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
Library General Public License for more details.
13
 
 
14
 
You should have received a copy of the GNU Library General Public License
15
 
along with this library; see the file COPYING.LIB.  If not, write to
16
 
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
Boston, MA 02110-1301, USA.
18
 
*/
19
 
 
20
 
#include "iproblem.h"
21
 
#include <duchain/duchainregister.h>
22
 
#include <interfaces/iassistant.h>
23
 
#include <klocalizedstring.h>
24
 
 
25
 
namespace KDevelop {
26
 
REGISTER_DUCHAIN_ITEM(Problem);
27
 
}
28
 
 
29
 
using namespace KDevelop;
30
 
 
31
 
Problem::Problem()
32
 
    : DUChainBase(*new ProblemData)
33
 
{
34
 
    d_func_dynamic()->setClassId(this);
35
 
}
36
 
 
37
 
KDevelop::Problem::Problem(KDevelop::ProblemData& data) : DUChainBase(data) {
38
 
}
39
 
 
40
 
KDevelop::Problem::~Problem() {
41
 
}
42
 
 
43
 
KDevelop::IndexedString KDevelop::Problem::url() const
44
 
{
45
 
    return d_func()->url;
46
 
}
47
 
 
48
 
DocumentRange Problem::finalLocation() const
49
 
{
50
 
    return DocumentRange(d_func()->url, rangeInCurrentRevision());
51
 
}
52
 
 
53
 
void Problem::setFinalLocation(const DocumentRange & location)
54
 
{
55
 
    setRange(transformToLocalRevision(location));
56
 
    d_func_dynamic()->url = location.document;
57
 
}
58
 
 
59
 
QStack< DocumentCursor > Problem::locationStack() const
60
 
{
61
 
    return QStack< DocumentCursor >();
62
 
//     return d_func()->locationStack;
63
 
}
64
 
 
65
 
void Problem::addLocation(const DocumentCursor & cursor)
66
 
{
67
 
    Q_UNUSED(cursor);
68
 
//     d_func()->locationStack.push(DocumentCursor(cursor));
69
 
}
70
 
 
71
 
void Problem::clearLocationStack()
72
 
{
73
 
//     d_func()->locationStack.clear();
74
 
}
75
 
 
76
 
void Problem::setLocationStack(const QStack< DocumentCursor > & locationStack)
77
 
{
78
 
    Q_UNUSED(locationStack);
79
 
//     d_func()->locationStack = locationStack;
80
 
}
81
 
 
82
 
QString Problem::description() const
83
 
{
84
 
    return d_func()->description.str();
85
 
}
86
 
 
87
 
void Problem::setDescription(const QString & description)
88
 
{
89
 
    d_func_dynamic()->description = IndexedString(description);
90
 
}
91
 
 
92
 
QString Problem::explanation() const
93
 
{
94
 
    return d_func()->explanation.str();
95
 
}
96
 
 
97
 
void Problem::setExplanation(const QString & explanation)
98
 
{
99
 
    d_func_dynamic()->explanation = IndexedString(explanation);
100
 
}
101
 
 
102
 
ProblemData::Source Problem::source() const
103
 
{
104
 
    return d_func()->source;
105
 
}
106
 
 
107
 
void Problem::setSource(ProblemData::Source source)
108
 
{
109
 
    d_func_dynamic()->source = source;
110
 
}
111
 
 
112
 
KSharedPtr< KDevelop::IAssistant > KDevelop::Problem::solutionAssistant() const {
113
 
    return m_solution;
114
 
}
115
 
 
116
 
void KDevelop::Problem::setSolutionAssistant(KSharedPtr< KDevelop::IAssistant > assistant) {
117
 
    m_solution = assistant;
118
 
}
119
 
 
120
 
KDevelop::ProblemData::Severity KDevelop::Problem::severity() const {
121
 
    return d_func()->severity;
122
 
}
123
 
 
124
 
void KDevelop::Problem::setSeverity(ProblemData::Severity severity) {
125
 
    d_func_dynamic()->severity = severity;
126
 
}
127
 
 
128
 
QString Problem::sourceString() const
129
 
{
130
 
    switch (source()) {
131
 
        case ProblemData::Disk:
132
 
            return i18n("Disk");
133
 
        case ProblemData::Preprocessor:
134
 
            return i18n("Preprocessor");
135
 
        case ProblemData::Lexer:
136
 
            return i18n("Lexer");
137
 
        case ProblemData::Parser:
138
 
            return i18n("Parser");
139
 
        case ProblemData::DUChainBuilder:
140
 
            return i18n("Definition-Use Chain");
141
 
        case ProblemData::SemanticAnalysis:
142
 
            return i18n("Semantic Analysis");
143
 
        case ProblemData::ToDo:
144
 
            return i18n("TODO");
145
 
        case ProblemData::Unknown:
146
 
        default:
147
 
            return i18n("Unknown");
148
 
    }
149
 
}
150
 
 
151
 
QString Problem::toString() const
152
 
{
153
 
    return QString("%1:%2 in %3:[(%4,%5),(%6,%7)] %8")
154
 
        .arg(description())
155
 
        .arg(sourceString())
156
 
        .arg(url().str())
157
 
        .arg(range().start.line)
158
 
        .arg(range().start.column)
159
 
        .arg(range().end.line)
160
 
        .arg(range().end.column)
161
 
        .arg(explanation());
162
 
}
163
 
 
164
 
QDebug operator<<(QDebug s, const Problem& problem)
165
 
{
166
 
    s.nospace() << problem.toString();
167
 
    return s.space();
168
 
}
169
 
 
170
 
QDebug operator<<(QDebug s, const ProblemPointer& problem)
171
 
{
172
 
    s.nospace() << problem->toString();
173
 
    return s.space();
174
 
}