]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/sanitizer_common/sanitizer_report_decorator.h
re PR lto/61012 (lto1: errors during merging of translation units (error: variable...
[thirdparty/gcc.git] / libsanitizer / sanitizer_common / sanitizer_report_decorator.h
CommitLineData
e9772e16
KS
1//===-- sanitizer_report_decorator.h ----------------------------*- C++ -*-===//
2//
3// This file is distributed under the University of Illinois Open Source
4// License. See LICENSE.TXT for details.
5//
6//===----------------------------------------------------------------------===//
7//
8// Tags to decorate the sanitizer reports.
9// Currently supported tags:
10// * None.
11// * ANSI color sequences.
12//
13//===----------------------------------------------------------------------===//
14
de5a5fa1
MP
15#ifndef SANITIZER_REPORT_DECORATOR_H
16#define SANITIZER_REPORT_DECORATOR_H
e9772e16
KS
17
18namespace __sanitizer {
19class AnsiColorDecorator {
ef1b3fda
KS
20 // FIXME: This is not portable. It assumes the special strings are printed to
21 // stdout, which is not the case on Windows (see SetConsoleTextAttribute()).
e9772e16
KS
22 public:
23 explicit AnsiColorDecorator(bool use_ansi_colors) : ansi_(use_ansi_colors) { }
de5a5fa1
MP
24 const char *Bold() const { return ansi_ ? "\033[1m" : ""; }
25 const char *Black() const { return ansi_ ? "\033[1m\033[30m" : ""; }
26 const char *Red() const { return ansi_ ? "\033[1m\033[31m" : ""; }
27 const char *Green() const { return ansi_ ? "\033[1m\033[32m" : ""; }
28 const char *Yellow() const { return ansi_ ? "\033[1m\033[33m" : ""; }
29 const char *Blue() const { return ansi_ ? "\033[1m\033[34m" : ""; }
30 const char *Magenta() const { return ansi_ ? "\033[1m\033[35m" : ""; }
31 const char *Cyan() const { return ansi_ ? "\033[1m\033[36m" : ""; }
32 const char *White() const { return ansi_ ? "\033[1m\033[37m" : ""; }
33 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; }
e9772e16
KS
34 private:
35 bool ansi_;
36};
37} // namespace __sanitizer
de5a5fa1
MP
38
39#endif // SANITIZER_REPORT_DECORATOR_H