forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorting_diagnostic_consumer.h
46 lines (36 loc) · 1.52 KB
/
sorting_diagnostic_consumer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef CARBON_TOOLCHAIN_DIAGNOSTICS_SORTING_DIAGNOSTIC_CONSUMER_H_
#define CARBON_TOOLCHAIN_DIAGNOSTICS_SORTING_DIAGNOSTIC_CONSUMER_H_
#include "common/check.h"
#include "llvm/ADT/STLExtras.h"
#include "toolchain/diagnostics/diagnostic_emitter.h"
namespace Carbon {
// Buffers incoming diagnostics for printing and sorting.
class SortingDiagnosticConsumer : public DiagnosticConsumer {
public:
explicit SortingDiagnosticConsumer(DiagnosticConsumer& next_consumer)
: next_consumer_(&next_consumer) {}
~SortingDiagnosticConsumer() override { Flush(); }
// Buffers the diagnostic.
auto HandleDiagnostic(const Diagnostic& diagnostic) -> void override {
diagnostics_.push_back(diagnostic);
}
// Sorts and flushes buffered diagnostics.
void Flush() override {
llvm::sort(diagnostics_, [](const Diagnostic& lhs, const Diagnostic& rhs) {
return std::tie(lhs.location.line_number, lhs.location.column_number) <
std::tie(rhs.location.line_number, rhs.location.column_number);
});
for (const auto& diagnostic : diagnostics_) {
next_consumer_->HandleDiagnostic(diagnostic);
}
diagnostics_.clear();
}
private:
llvm::SmallVector<Diagnostic, 0> diagnostics_;
DiagnosticConsumer* next_consumer_;
};
} // namespace Carbon
#endif // CARBON_TOOLCHAIN_DIAGNOSTICS_SORTING_DIAGNOSTIC_CONSUMER_H_