blob: 54261be6cf461f5c9469f43bdfdf8263ed7756ed [file] [log] [blame]
Ted Kremenekd010ba42011-11-10 08:43:12 +00001/*===-- CXLoadedDiagnostic.h - Handling of persisent diags ------*- C++ -*-===*\
2|* *|
3|* The LLVM Compiler Infrastructure *|
4|* *|
5|* This file is distributed under the University of Illinois Open Source *|
6|* License. See LICENSE.TXT for details. *|
7|* *|
8|*===----------------------------------------------------------------------===*|
9|* *|
10|* Implements handling of persisent diagnostics. *|
11|* *|
12\*===----------------------------------------------------------------------===*/
13
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000014#ifndef LLVM_CLANG_TOOLS_LIBCLANG_CXLOADEDDIAGNOSTIC_H
15#define LLVM_CLANG_TOOLS_LIBCLANG_CXLOADEDDIAGNOSTIC_H
Ted Kremenekd010ba42011-11-10 08:43:12 +000016
17#include "CIndexDiagnostic.h"
18#include "llvm/ADT/StringRef.h"
19#include "clang/Basic/LLVM.h"
20#include <string>
21#include <vector>
22
23namespace clang {
24class CXLoadedDiagnostic : public CXDiagnosticImpl {
25public:
26 CXLoadedDiagnostic() : CXDiagnosticImpl(LoadedDiagnosticKind),
27 severity(0), category(0) {}
28
29 virtual ~CXLoadedDiagnostic();
30
31 /// \brief Return the severity of the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000032 CXDiagnosticSeverity getSeverity() const override;
33
Ted Kremenekd010ba42011-11-10 08:43:12 +000034 /// \brief Return the location of the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000035 CXSourceLocation getLocation() const override;
36
Ted Kremenekd010ba42011-11-10 08:43:12 +000037 /// \brief Return the spelling of the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000038 CXString getSpelling() const override;
39
Ted Kremenekd010ba42011-11-10 08:43:12 +000040 /// \brief Return the text for the diagnostic option.
Craig Topper36835562014-03-15 07:47:46 +000041 CXString getDiagnosticOption(CXString *Disable) const override;
42
Ted Kremenekd010ba42011-11-10 08:43:12 +000043 /// \brief Return the category of the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000044 unsigned getCategory() const override;
45
Ted Kremenek26a6d492012-04-12 00:03:31 +000046 /// \brief Return the category string of the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000047 CXString getCategoryText() const override;
48
Ted Kremenekd010ba42011-11-10 08:43:12 +000049 /// \brief Return the number of source ranges for the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000050 unsigned getNumRanges() const override;
51
Ted Kremenekd010ba42011-11-10 08:43:12 +000052 /// \brief Return the source ranges for the diagnostic.
Craig Topper36835562014-03-15 07:47:46 +000053 CXSourceRange getRange(unsigned Range) const override;
54
Ted Kremenekd010ba42011-11-10 08:43:12 +000055 /// \brief Return the number of FixIts.
Craig Topper36835562014-03-15 07:47:46 +000056 unsigned getNumFixIts() const override;
57
Ted Kremenekd010ba42011-11-10 08:43:12 +000058 /// \brief Return the FixIt information (source range and inserted text).
Craig Topper36835562014-03-15 07:47:46 +000059 CXString getFixIt(unsigned FixIt,
60 CXSourceRange *ReplacementRange) const override;
61
Ted Kremenekd010ba42011-11-10 08:43:12 +000062 static bool classof(const CXDiagnosticImpl *D) {
63 return D->getKind() == LoadedDiagnosticKind;
64 }
65
66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
67 static void decodeLocation(CXSourceLocation location,
68 CXFile *file,
69 unsigned *line,
70 unsigned *column,
71 unsigned *offset);
72
73 struct Location {
74 CXFile file;
75 unsigned line;
76 unsigned column;
77 unsigned offset;
78
79 Location() : line(0), column(0), offset(0) {}
80 };
81
82 Location DiagLoc;
83
84 std::vector<CXSourceRange> Ranges;
Dmitri Gribenko7d098082013-02-18 19:50:38 +000085 std::vector<std::pair<CXSourceRange, const char *> > FixIts;
86 const char *Spelling;
Ted Kremenekd010ba42011-11-10 08:43:12 +000087 llvm::StringRef DiagOption;
Ted Kremenek26a6d492012-04-12 00:03:31 +000088 llvm::StringRef CategoryText;
Ted Kremenekd010ba42011-11-10 08:43:12 +000089 unsigned severity;
90 unsigned category;
91};
92}
93
94#endif