aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Driver/TextDiagnosticPrinter.h
blob: e6d570c5e3b7de9a62cb59482337c5c30c19ce06 (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
//===--- TextDiagnosticPrinter.h - Text Diagnostic Client -------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This is a concrete diagnostic client, which prints the diagnostics to
// standard error.
//
//===----------------------------------------------------------------------===//

#ifndef TEXT_DIAGNOSTIC_PRINTER_H_
#define TEXT_DIAGNOSTIC_PRINTER_H_

#include "clang/Basic/Diagnostic.h"
#include "clang/Basic/SourceLocation.h"

namespace llvm {
  class raw_ostream;
}

namespace clang {
class SourceManager;

class TextDiagnosticPrinter : public DiagnosticClient {
  FullSourceLoc LastWarningLoc;
  FullSourceLoc LastLoc;
  llvm::raw_ostream &OS;
  bool ShowColumn;
  bool CaretDiagnostics;
public:
  TextDiagnosticPrinter(llvm::raw_ostream &os, bool showColumn = true,
                        bool caretDiagnistics = true)
    : OS(os), ShowColumn(showColumn), CaretDiagnostics(caretDiagnistics) {}

  void PrintIncludeStack(FullSourceLoc Pos);

  void HighlightRange(const SourceRange &R,
                      const SourceManager& SrcMgr,
                      unsigned LineNo, unsigned FileID,
                      std::string &CaretLine,
                      const std::string &SourceLine);

  virtual void HandleDiagnostic(Diagnostic::Level DiagLevel,
                                const DiagnosticInfo &Info);
};

} // end namspace clang

#endif