]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Utility/AnsiTerminal.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / include / lldb / Utility / AnsiTerminal.h
1 //===---------------------AnsiTerminal.h ------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #define ANSI_FG_COLOR_BLACK 30
11 #define ANSI_FG_COLOR_RED 31
12 #define ANSI_FG_COLOR_GREEN 32
13 #define ANSI_FG_COLOR_YELLOW 33
14 #define ANSI_FG_COLOR_BLUE 34
15 #define ANSI_FG_COLOR_PURPLE 35
16 #define ANSI_FG_COLOR_CYAN 36
17 #define ANSI_FG_COLOR_WHITE 37
18
19 #define ANSI_BG_COLOR_BLACK 40
20 #define ANSI_BG_COLOR_RED 41
21 #define ANSI_BG_COLOR_GREEN 42
22 #define ANSI_BG_COLOR_YELLOW 43
23 #define ANSI_BG_COLOR_BLUE 44
24 #define ANSI_BG_COLOR_PURPLE 45
25 #define ANSI_BG_COLOR_CYAN 46
26 #define ANSI_BG_COLOR_WHITE 47
27
28 #define ANSI_SPECIAL_FRAMED 51
29 #define ANSI_SPECIAL_ENCIRCLED 52
30
31 #define ANSI_CTRL_NORMAL 0
32 #define ANSI_CTRL_BOLD 1
33 #define ANSI_CTRL_FAINT 2
34 #define ANSI_CTRL_ITALIC 3
35 #define ANSI_CTRL_UNDERLINE 4
36 #define ANSI_CTRL_SLOW_BLINK 5
37 #define ANSI_CTRL_FAST_BLINK 6
38 #define ANSI_CTRL_IMAGE_NEGATIVE 7
39 #define ANSI_CTRL_CONCEAL 8
40 #define ANSI_CTRL_CROSSED_OUT 9
41
42 #define ANSI_ESC_START "\033["
43 #define ANSI_ESC_END "m"
44
45 #define ANSI_STR(s) #s
46 #define ANSI_DEF_STR(s) ANSI_STR(s)
47
48 #define ANSI_ESCAPE1(s) ANSI_ESC_START ANSI_DEF_STR(s) ANSI_ESC_END
49
50 #define ANSI_1_CTRL(ctrl1) "\033["##ctrl1 ANSI_ESC_END
51 #define ANSI_2_CTRL(ctrl1, ctrl2) "\033["##ctrl1 ";"##ctrl2 ANSI_ESC_END
52
53 #include "llvm/ADT/STLExtras.h"
54 #include "llvm/ADT/StringRef.h"
55
56 #include <string>
57
58 namespace lldb_utility {
59
60 namespace ansi {
61
62 inline std::string FormatAnsiTerminalCodes(llvm::StringRef format,
63                                            bool do_color = true) {
64   // Convert "${ansi.XXX}" tokens to ansi values or clear them if do_color is
65   // false.
66   static const struct {
67     const char *name;
68     const char *value;
69   } g_color_tokens[] = {
70 #define _TO_STR2(_val) #_val
71 #define _TO_STR(_val) _TO_STR2(_val)
72       {"fg.black}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_BLACK) ANSI_ESC_END},
73       {"fg.red}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_RED) ANSI_ESC_END},
74       {"fg.green}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_GREEN) ANSI_ESC_END},
75       {"fg.yellow}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_YELLOW) ANSI_ESC_END},
76       {"fg.blue}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_BLUE) ANSI_ESC_END},
77       {"fg.purple}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_PURPLE) ANSI_ESC_END},
78       {"fg.cyan}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_CYAN) ANSI_ESC_END},
79       {"fg.white}", ANSI_ESC_START _TO_STR(ANSI_FG_COLOR_WHITE) ANSI_ESC_END},
80       {"bg.black}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_BLACK) ANSI_ESC_END},
81       {"bg.red}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_RED) ANSI_ESC_END},
82       {"bg.green}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_GREEN) ANSI_ESC_END},
83       {"bg.yellow}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_YELLOW) ANSI_ESC_END},
84       {"bg.blue}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_BLUE) ANSI_ESC_END},
85       {"bg.purple}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_PURPLE) ANSI_ESC_END},
86       {"bg.cyan}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_CYAN) ANSI_ESC_END},
87       {"bg.white}", ANSI_ESC_START _TO_STR(ANSI_BG_COLOR_WHITE) ANSI_ESC_END},
88       {"normal}", ANSI_ESC_START _TO_STR(ANSI_CTRL_NORMAL) ANSI_ESC_END},
89       {"bold}", ANSI_ESC_START _TO_STR(ANSI_CTRL_BOLD) ANSI_ESC_END},
90       {"faint}", ANSI_ESC_START _TO_STR(ANSI_CTRL_FAINT) ANSI_ESC_END},
91       {"italic}", ANSI_ESC_START _TO_STR(ANSI_CTRL_ITALIC) ANSI_ESC_END},
92       {"underline}", ANSI_ESC_START _TO_STR(ANSI_CTRL_UNDERLINE) ANSI_ESC_END},
93       {"slow-blink}",
94        ANSI_ESC_START _TO_STR(ANSI_CTRL_SLOW_BLINK) ANSI_ESC_END},
95       {"fast-blink}",
96        ANSI_ESC_START _TO_STR(ANSI_CTRL_FAST_BLINK) ANSI_ESC_END},
97       {"negative}",
98        ANSI_ESC_START _TO_STR(ANSI_CTRL_IMAGE_NEGATIVE) ANSI_ESC_END},
99       {"conceal}", ANSI_ESC_START _TO_STR(ANSI_CTRL_CONCEAL) ANSI_ESC_END},
100       {"crossed-out}",
101        ANSI_ESC_START _TO_STR(ANSI_CTRL_CROSSED_OUT) ANSI_ESC_END},
102 #undef _TO_STR
103 #undef _TO_STR2
104   };
105   auto codes = llvm::makeArrayRef(g_color_tokens);
106
107   static const char tok_hdr[] = "${ansi.";
108
109   std::string fmt;
110   while (!format.empty()) {
111     llvm::StringRef left, right;
112     std::tie(left, right) = format.split(tok_hdr);
113
114     fmt.append(left);
115
116     if (left == format && right.empty()) {
117       // The header was not found.  Just exit.
118       break;
119     }
120
121     for (const auto &code : codes) {
122       if (!right.consume_front(code.name))
123         continue;
124
125       if (do_color)
126         fmt.append(code.value);
127       format = right;
128       break;
129     }
130
131     format = format.drop_front();
132   }
133   return fmt;
134 }
135 }
136 }