//===--- 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 { SourceLocation LastWarningLoc; FullSourceLoc LastLoc; llvm::raw_ostream &OS; bool ShowColumn; bool CaretDiagnostics; bool ShowLocation; public: TextDiagnosticPrinter(llvm::raw_ostream &os, bool showColumn = true, bool caretDiagnistics = true, bool showLocation = true) : OS(os), ShowColumn(showColumn), CaretDiagnostics(caretDiagnistics), ShowLocation(showLocation) {} void PrintIncludeStack(SourceLocation Loc, const SourceManager &SM); void HighlightRange(const SourceRange &R, const SourceManager& SrcMgr, unsigned LineNo, FileID FID, std::string &CaretLine, const std::string &SourceLine); void EmitCaretDiagnostic(SourceLocation Loc, SourceRange *Ranges, unsigned NumRanges, SourceManager &SM, const CodeModificationHint *Hints = 0, unsigned NumHints = 0); virtual void HandleDiagnostic(Diagnostic::Level DiagLevel, const DiagnosticInfo &Info); }; } // end namspace clang #endif