blob: 7a78e9478331ea55be68d8aae085a612682a3eb6 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- TextDiagnostics.cpp - Text Diagnostics Parent Class --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
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
Chris Lattner07506182007-11-30 22:53:43 +000022std::string TextDiagnostics::FormatDiagnostic(Diagnostic &Diags,
23 Diagnostic::Level Level,
Reid Spencer5f016e22007-07-11 17:01:13 +000024 diag::kind ID,
25 const std::string *Strs,
26 unsigned NumStrs) {
Chris Lattner07506182007-11-30 22:53:43 +000027 std::string Msg = Diags.getDescription(ID);
Reid Spencer5f016e22007-07-11 17:01:13 +000028
29 // Replace all instances of %0 in Msg with 'Extra'.
30 for (unsigned i = 0; i < Msg.size() - 1; ++i) {
31 if (Msg[i] == '%' && isdigit(Msg[i + 1])) {
32 unsigned StrNo = Msg[i + 1] - '0';
33 Msg = std::string(Msg.begin(), Msg.begin() + i) +
34 (StrNo < NumStrs ? Strs[StrNo] : "<<<INTERNAL ERROR>>>") +
35 std::string(Msg.begin() + i + 2, Msg.end());
36 }
37 }
38
39 return Msg;
40}
41
Chris Lattner7097d912008-02-03 09:00:04 +000042bool TextDiagnostics::isInSystemHeader(FullSourceLoc Pos) const {
43 if (!Pos.isValid()) return false;
44
45 if (const FileEntry *F = Pos.getFileEntryForLoc()) {
46 DirectoryLookup::DirType DirInfo = TheHeaderSearch->getFileDirFlavor(F);
47 if (DirInfo == DirectoryLookup::SystemHeaderDir ||
48 DirInfo == DirectoryLookup::ExternCSystemHeaderDir)
49 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +000050 }
51
52 return false;
53}