blob: 8ac6093318d260ec63da78577735a97130f5ab51 (
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
|
//===--- LogDiagnosticPrinter.h - Log Diagnostic Client ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_FRONTEND_LOG_DIAGNOSTIC_PRINTER_H_
#define LLVM_CLANG_FRONTEND_LOG_DIAGNOSTIC_PRINTER_H_
#include "clang/Basic/Diagnostic.h"
#include "clang/Basic/SourceLocation.h"
#include "llvm/ADT/SmallVector.h"
namespace clang {
class DiagnosticOptions;
class LangOptions;
class LogDiagnosticPrinter : public DiagnosticClient {
struct DiagEntry {
/// The primary message line of the diagnostic.
std::string Message;
/// The source file name, if available.
std::string Filename;
/// The source file line number, if available.
unsigned Line;
/// The source file column number, if available.
unsigned Column;
/// The ID of the diagnostic.
unsigned DiagnosticID;
/// The level of the diagnostic.
Diagnostic::Level DiagnosticLevel;
};
llvm::raw_ostream &OS;
const LangOptions *LangOpts;
const DiagnosticOptions *DiagOpts;
SourceLocation LastWarningLoc;
FullSourceLoc LastLoc;
unsigned OwnsOutputStream : 1;
llvm::SmallVector<DiagEntry, 8> Entries;
public:
LogDiagnosticPrinter(llvm::raw_ostream &OS, const DiagnosticOptions &Diags,
bool OwnsOutputStream = false);
virtual ~LogDiagnosticPrinter();
void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) {
LangOpts = &LO;
}
void EndSourceFile();
virtual void HandleDiagnostic(Diagnostic::Level DiagLevel,
const DiagnosticInfo &Info);
};
} // end namespace clang
#endif
|