2011-04-07 22:31:10 +04:00
|
|
|
//===--- LogDiagnosticPrinter.cpp - Log Diagnostic Printer ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Frontend/LogDiagnosticPrinter.h"
|
2011-04-07 22:37:34 +04:00
|
|
|
#include "clang/Basic/FileManager.h"
|
|
|
|
#include "clang/Basic/SourceManager.h"
|
2011-04-07 22:31:10 +04:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
2011-07-23 14:55:15 +04:00
|
|
|
LogDiagnosticPrinter::LogDiagnosticPrinter(raw_ostream &os,
|
2011-04-07 22:31:10 +04:00
|
|
|
const DiagnosticOptions &diags,
|
|
|
|
bool _OwnsOutputStream)
|
|
|
|
: OS(os), LangOpts(0), DiagOpts(&diags),
|
|
|
|
OwnsOutputStream(_OwnsOutputStream) {
|
|
|
|
}
|
|
|
|
|
|
|
|
LogDiagnosticPrinter::~LogDiagnosticPrinter() {
|
|
|
|
if (OwnsOutputStream)
|
|
|
|
delete &OS;
|
|
|
|
}
|
|
|
|
|
2011-07-23 14:55:15 +04:00
|
|
|
static StringRef getLevelName(Diagnostic::Level Level) {
|
2011-04-07 22:37:34 +04:00
|
|
|
switch (Level) {
|
|
|
|
default:
|
|
|
|
return "<unknown>";
|
|
|
|
case Diagnostic::Ignored: return "ignored";
|
|
|
|
case Diagnostic::Note: return "note";
|
|
|
|
case Diagnostic::Warning: return "warning";
|
|
|
|
case Diagnostic::Error: return "error";
|
|
|
|
case Diagnostic::Fatal: return "fatal error";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LogDiagnosticPrinter::EndSourceFile() {
|
|
|
|
// We emit all the diagnostics in EndSourceFile. However, we don't emit any
|
|
|
|
// entry if no diagnostics were present.
|
|
|
|
//
|
|
|
|
// Note that DiagnosticClient has no "end-of-compilation" callback, so we will
|
|
|
|
// miss any diagnostics which are emitted after and outside the translation
|
|
|
|
// unit processing.
|
|
|
|
if (Entries.empty())
|
|
|
|
return;
|
2011-04-07 22:31:10 +04:00
|
|
|
|
|
|
|
// Write to a temporary string to ensure atomic write of diagnostic object.
|
|
|
|
llvm::SmallString<512> Msg;
|
|
|
|
llvm::raw_svector_ostream OS(Msg);
|
|
|
|
|
2011-04-07 22:44:15 +04:00
|
|
|
OS << "<dict>\n";
|
2011-04-07 22:51:54 +04:00
|
|
|
if (!MainFilename.empty()) {
|
|
|
|
OS << " <key>main-file</key>\n"
|
|
|
|
<< " <string>" << MainFilename << "</string>\n";
|
|
|
|
}
|
|
|
|
if (!DwarfDebugFlags.empty()) {
|
|
|
|
OS << " <key>dwarf-debug-flags</key>\n"
|
|
|
|
<< " <string>" << DwarfDebugFlags << "</string>\n";
|
|
|
|
}
|
2011-04-07 22:44:15 +04:00
|
|
|
OS << " <key>diagnostics</key>\n";
|
|
|
|
OS << " <array>\n";
|
2011-04-07 22:37:34 +04:00
|
|
|
for (unsigned i = 0, e = Entries.size(); i != e; ++i) {
|
|
|
|
DiagEntry &DE = Entries[i];
|
|
|
|
|
2011-04-07 22:44:15 +04:00
|
|
|
OS << " <dict>\n";
|
|
|
|
OS << " <key>level</key>\n"
|
|
|
|
<< " <string>" << getLevelName(DE.DiagnosticLevel) << "</string>\n";
|
|
|
|
if (!DE.Filename.empty()) {
|
|
|
|
OS << " <key>filename</key>\n"
|
|
|
|
<< " <string>" << DE.Filename << "</string>\n";
|
|
|
|
}
|
|
|
|
if (DE.Line != 0) {
|
|
|
|
OS << " <key>line</key>\n"
|
|
|
|
<< " <integer>" << DE.Line << "</integer>\n";
|
|
|
|
}
|
|
|
|
if (DE.Column != 0) {
|
|
|
|
OS << " <key>column</key>\n"
|
|
|
|
<< " <integer>" << DE.Column << "</integer>\n";
|
|
|
|
}
|
|
|
|
if (!DE.Message.empty()) {
|
|
|
|
OS << " <key>message</key>\n"
|
|
|
|
<< " <string>" << DE.Message << "</string>\n";
|
|
|
|
}
|
|
|
|
OS << " </dict>\n";
|
2011-04-07 22:37:34 +04:00
|
|
|
}
|
2011-04-07 22:44:15 +04:00
|
|
|
OS << " </array>\n";
|
|
|
|
OS << "</dict>\n";
|
2011-04-07 22:31:10 +04:00
|
|
|
|
|
|
|
this->OS << OS.str();
|
|
|
|
}
|
2011-04-07 22:37:34 +04:00
|
|
|
|
|
|
|
void LogDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level,
|
|
|
|
const DiagnosticInfo &Info) {
|
|
|
|
// Default implementation (Warnings/errors count).
|
|
|
|
DiagnosticClient::HandleDiagnostic(Level, Info);
|
|
|
|
|
2011-04-07 22:51:54 +04:00
|
|
|
// Initialize the main file name, if we haven't already fetched it.
|
2011-05-05 06:12:02 +04:00
|
|
|
if (MainFilename.empty() && Info.hasSourceManager()) {
|
2011-04-07 22:51:54 +04:00
|
|
|
const SourceManager &SM = Info.getSourceManager();
|
|
|
|
FileID FID = SM.getMainFileID();
|
|
|
|
if (!FID.isInvalid()) {
|
|
|
|
const FileEntry *FE = SM.getFileEntryForID(FID);
|
|
|
|
if (FE && FE->getName())
|
|
|
|
MainFilename = FE->getName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-07 22:37:34 +04:00
|
|
|
// Create the diag entry.
|
|
|
|
DiagEntry DE;
|
|
|
|
DE.DiagnosticID = Info.getID();
|
|
|
|
DE.DiagnosticLevel = Level;
|
|
|
|
|
|
|
|
// Format the message.
|
|
|
|
llvm::SmallString<100> MessageStr;
|
|
|
|
Info.FormatDiagnostic(MessageStr);
|
|
|
|
DE.Message = MessageStr.str();
|
|
|
|
|
|
|
|
// Set the location information.
|
|
|
|
DE.Filename = "";
|
|
|
|
DE.Line = DE.Column = 0;
|
2011-05-05 06:12:02 +04:00
|
|
|
if (Info.getLocation().isValid() && Info.hasSourceManager()) {
|
2011-04-07 22:37:34 +04:00
|
|
|
const SourceManager &SM = Info.getSourceManager();
|
|
|
|
PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
|
|
|
|
|
|
|
|
if (PLoc.isInvalid()) {
|
|
|
|
// At least print the file name if available:
|
|
|
|
FileID FID = SM.getFileID(Info.getLocation());
|
|
|
|
if (!FID.isInvalid()) {
|
|
|
|
const FileEntry *FE = SM.getFileEntryForID(FID);
|
|
|
|
if (FE && FE->getName())
|
|
|
|
DE.Filename = FE->getName();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DE.Filename = PLoc.getFilename();
|
|
|
|
DE.Line = PLoc.getLine();
|
|
|
|
DE.Column = PLoc.getColumn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Record the diagnostic entry.
|
|
|
|
Entries.push_back(DE);
|
|
|
|
}
|