blob: f644c3f660d1083325af7ceb7143b360fc6f7912 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- TextDiagnosticBuffer.cpp - Buffer Text Diagnostics ---------------===//
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 a concrete diagnostic client, which buffers the diagnostic messages.
11//
12//===----------------------------------------------------------------------===//
13
14#include "TextDiagnosticBuffer.h"
15#include "clang/Basic/SourceManager.h"
16using namespace clang;
17
18/// HandleDiagnostic - Store the errors & warnings that are reported.
19///
Chris Lattner4478db92007-11-30 22:53:43 +000020void TextDiagnosticBuffer::HandleDiagnostic(Diagnostic &Diags,
21 Diagnostic::Level Level,
Chris Lattner4b009652007-07-25 00:24:17 +000022 SourceLocation Pos,
23 diag::kind ID,
Ted Kremenekde79f792007-12-11 22:57:35 +000024 SourceManager* SrcMgr,
Chris Lattner4b009652007-07-25 00:24:17 +000025 const std::string *Strs,
26 unsigned NumStrs,
27 const SourceRange *,
28 unsigned) {
29 switch (Level) {
30 default: assert(0 && "Diagnostic not handled during diagnostic buffering!");
31 case Diagnostic::Warning:
Chris Lattner4478db92007-11-30 22:53:43 +000032 Warnings.push_back(std::make_pair(Pos, FormatDiagnostic(Diags, Level, ID,
33 Strs, NumStrs)));
Chris Lattner4b009652007-07-25 00:24:17 +000034 break;
35 case Diagnostic::Error:
Chris Lattner4478db92007-11-30 22:53:43 +000036 Errors.push_back(std::make_pair(Pos, FormatDiagnostic(Diags, Level, ID,
37 Strs, NumStrs)));
Chris Lattner4b009652007-07-25 00:24:17 +000038 break;
39 }
40}