blob: 4fc7e0c921c3106c90026f3e322e3c04bf9bd2ee [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- TextDiagnostics.cpp - Text Diagnostics Parent Class --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Bill Wendling and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is the parent class for all text diagnostics.
11//
12//===----------------------------------------------------------------------===//
13
14#include "TextDiagnostics.h"
15#include "clang/Basic/SourceLocation.h"
16#include "clang/Basic/SourceManager.h"
17#include "clang/Lex/HeaderSearch.h"
18using namespace clang;
19
20TextDiagnostics:: ~TextDiagnostics() {}
21
22std::string TextDiagnostics::FormatDiagnostic(Diagnostic::Level Level,
23 diag::kind ID,
24 const std::string *Strs,
25 unsigned NumStrs) {
26 std::string Msg = Diagnostic::getDescription(ID);
27
28 // Replace all instances of %0 in Msg with 'Extra'.
29 for (unsigned i = 0; i < Msg.size() - 1; ++i) {
30 if (Msg[i] == '%' && isdigit(Msg[i + 1])) {
31 unsigned StrNo = Msg[i + 1] - '0';
32 Msg = std::string(Msg.begin(), Msg.begin() + i) +
33 (StrNo < NumStrs ? Strs[StrNo] : "<<<INTERNAL ERROR>>>") +
34 std::string(Msg.begin() + i + 2, Msg.end());
35 }
36 }
37
38 return Msg;
39}
40
41bool TextDiagnostics::IgnoreDiagnostic(Diagnostic::Level Level,
42 SourceLocation Pos) {
43 if (Pos.isValid()) {
44 // If this is a warning or note, and if it a system header, suppress the
45 // diagnostic.
46 if (Level == Diagnostic::Warning ||
47 Level == Diagnostic::Note) {
48 SourceLocation PhysLoc = SourceMgr.getPhysicalLoc(Pos);
49 const FileEntry *F = SourceMgr.getFileEntryForFileID(PhysLoc.getFileID());
50 if (F) {
51 DirectoryLookup::DirType DirInfo = TheHeaderSearch->getFileDirFlavor(F);
52 if (DirInfo == DirectoryLookup::SystemHeaderDir ||
53 DirInfo == DirectoryLookup::ExternCSystemHeaderDir)
54 return true;
55 }
56 }
57 }
58
59 return false;
60}