[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_report_decorator.h
blobe9be29fb3d50a4776a6917fb2504bf3173453b38
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.
13 //===----------------------------------------------------------------------===//
15 #ifndef SANITIZER_REPORT_DECORATOR_H
16 #define SANITIZER_REPORT_DECORATOR_H
18 #include "sanitizer_common.h"
20 namespace __sanitizer {
21 class SanitizerCommonDecorator {
22 // FIXME: This is not portable. It assumes the special strings are printed to
23 // stdout, which is not the case on Windows (see SetConsoleTextAttribute()).
24 public:
25 SanitizerCommonDecorator() : ansi_(ColorizeReports()) {}
26 const char *Bold() const { return ansi_ ? "\033[1m" : ""; }
27 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; }
28 const char *Warning() { return Red(); }
29 const char *EndWarning() { return Default(); }
30 protected:
31 const char *Black() const { return ansi_ ? "\033[1m\033[30m" : ""; }
32 const char *Red() const { return ansi_ ? "\033[1m\033[31m" : ""; }
33 const char *Green() const { return ansi_ ? "\033[1m\033[32m" : ""; }
34 const char *Yellow() const { return ansi_ ? "\033[1m\033[33m" : ""; }
35 const char *Blue() const { return ansi_ ? "\033[1m\033[34m" : ""; }
36 const char *Magenta() const { return ansi_ ? "\033[1m\033[35m" : ""; }
37 const char *Cyan() const { return ansi_ ? "\033[1m\033[36m" : ""; }
38 const char *White() const { return ansi_ ? "\033[1m\033[37m" : ""; }
39 private:
40 bool ansi_;
43 } // namespace __sanitizer
45 #endif // SANITIZER_REPORT_DECORATOR_H