зеркало из https://github.com/microsoft/clang-1.git
54 строки
1.7 KiB
C++
54 строки
1.7 KiB
C++
//===--- PathDiagnostic.cpp - Path-Specific Diagnostic Handling -*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the PathDiagnostic-related interfaces.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Analysis/PathDiagnostic.h"
|
|
#include "llvm/ADT/SmallString.h"
|
|
#include <sstream>
|
|
using namespace clang;
|
|
|
|
PathDiagnostic::~PathDiagnostic() {
|
|
for (iterator I = begin(), E = end(); I != E; ++I) delete &*I;
|
|
}
|
|
|
|
void PathDiagnosticClient::HandleDiagnostic(Diagnostic::Level DiagLevel,
|
|
const DiagnosticInfo &Info) {
|
|
|
|
// Create a PathDiagnostic with a single piece.
|
|
|
|
PathDiagnostic* D = new PathDiagnostic();
|
|
|
|
const char *LevelStr;
|
|
switch (DiagLevel) {
|
|
default:
|
|
case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type");
|
|
case Diagnostic::Note: LevelStr = "note: "; break;
|
|
case Diagnostic::Warning: LevelStr = "warning: "; break;
|
|
case Diagnostic::Error: LevelStr = "error: "; break;
|
|
case Diagnostic::Fatal: LevelStr = "fatal error: "; break;
|
|
}
|
|
|
|
llvm::SmallString<100> StrC;
|
|
StrC += LevelStr;
|
|
Info.FormatDiagnostic(StrC);
|
|
|
|
PathDiagnosticPiece *P =
|
|
new PathDiagnosticPiece(Info.getLocation(),
|
|
std::string(StrC.begin(), StrC.end()));
|
|
|
|
for (unsigned i = 0, e = Info.getNumRanges(); i != e; ++i)
|
|
P->addRange(Info.getRange(i));
|
|
D->push_front(P);
|
|
|
|
HandlePathDiagnostic(D);
|
|
}
|