aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmljs/parser/qmljsdiagnosticmessage_p.h
blob: 53e5b69ee8b4eaa4817805f0995b6e301b795bc2 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright (C) 2021 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

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include <QtCore/qlogging.h>
#include <QtCore/qstring.h>
#include "qmljsglobal_p.h"
#include "qmljs/qmljsconstants.h"

// Include the API version here, to avoid complications when querying it for the
// QmlSourceLocation -> line/column change.


#include "qmljssourcelocation_p.h"

QT_QML_BEGIN_NAMESPACE

namespace QmlJS {
class DiagnosticMessage
{
public:
    QString message;
    Severity::Enum kind = Severity::Error;
    SourceLocation loc;
    static Severity::Enum qtMsgTypeToKind(QtMsgType msgType) {
        switch (msgType) {
        case QtDebugMsg:
            return Severity::Hint;
        case QtWarningMsg:
            return Severity::Warning;
        case QtCriticalMsg:
            return Severity::Error;
        case QtFatalMsg:
            return Severity::Error;
        case QtInfoMsg:
        default:
            return Severity::MaybeWarning;
        }
    }
    DiagnosticMessage() {}
    DiagnosticMessage(Severity::Enum kind, SourceLocation loc, QString message):
        message(message), kind(kind), loc(loc)
    { }

    bool isError() const
    {
        return kind == Severity::Error;
    }

    bool isWarning() const
    {
        return kind == Severity::Warning;
    }

    bool isValid() const
    {
        return !message.isEmpty();
    }
};
} // namespace QmlJS

QT_QML_END_NAMESPACE

QT_BEGIN_NAMESPACE
Q_DECLARE_TYPEINFO(QmlJS::DiagnosticMessage, Q_MOVABLE_TYPE);
QT_END_NAMESPACE