]> Git Repo - binutils.git/blob - gdb/cli/cli-style.c
gdb: remove SYMBOL_CLASS macro, add getter
[binutils.git] / gdb / cli / cli-style.c
1 /* CLI colorizing
2
3    Copyright (C) 2018-2022 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "cli/cli-cmds.h"
22 #include "cli/cli-decode.h"
23 #include "cli/cli-setshow.h"
24 #include "cli/cli-style.h"
25 #include "source-cache.h"
26 #include "observable.h"
27
28 /* True if styling is enabled.  */
29
30 #if defined (__MSDOS__)
31 bool cli_styling = false;
32 #else
33 bool cli_styling = true;
34 #endif
35
36 /* True if source styling is enabled.  Note that this is only
37    consulted when cli_styling is true.  */
38
39 bool source_styling = true;
40
41 /* Name of colors; must correspond to ui_file_style::basic_color.  */
42 static const char * const cli_colors[] = {
43   "none",
44   "black",
45   "red",
46   "green",
47   "yellow",
48   "blue",
49   "magenta",
50   "cyan",
51   "white",
52   nullptr
53 };
54
55 /* Names of intensities; must correspond to
56    ui_file_style::intensity.  */
57 static const char * const cli_intensities[] = {
58   "normal",
59   "bold",
60   "dim",
61   nullptr
62 };
63
64 /* See cli-style.h.  */
65
66 cli_style_option file_name_style ("filename", ui_file_style::GREEN);
67
68 /* See cli-style.h.  */
69
70 cli_style_option function_name_style ("function", ui_file_style::YELLOW);
71
72 /* See cli-style.h.  */
73
74 cli_style_option variable_name_style ("variable", ui_file_style::CYAN);
75
76 /* See cli-style.h.  */
77
78 cli_style_option address_style ("address", ui_file_style::BLUE);
79
80 /* See cli-style.h.  */
81
82 cli_style_option highlight_style ("highlight", ui_file_style::RED);
83
84 /* See cli-style.h.  */
85
86 cli_style_option title_style ("title", ui_file_style::BOLD);
87
88 /* See cli-style.h.  */
89
90 cli_style_option tui_border_style ("tui-border", ui_file_style::CYAN);
91
92 /* See cli-style.h.  */
93
94 cli_style_option tui_active_border_style ("tui-active-border",
95                                           ui_file_style::CYAN);
96
97 /* See cli-style.h.  */
98
99 cli_style_option metadata_style ("metadata", ui_file_style::DIM);
100
101 /* See cli-style.h.  */
102
103 cli_style_option version_style ("version", ui_file_style::MAGENTA,
104                                 ui_file_style::BOLD);
105
106 /* See cli-style.h.  */
107
108 cli_style_option::cli_style_option (const char *name,
109                                     ui_file_style::basic_color fg,
110                                     ui_file_style::intensity intensity)
111   : changed (name),
112     m_name (name),
113     m_foreground (cli_colors[fg - ui_file_style::NONE]),
114     m_background (cli_colors[0]),
115     m_intensity (cli_intensities[intensity])
116 {
117 }
118
119 /* See cli-style.h.  */
120
121 cli_style_option::cli_style_option (const char *name,
122                                     ui_file_style::intensity i)
123   : changed (name),
124     m_name (name),
125     m_foreground (cli_colors[0]),
126     m_background (cli_colors[0]),
127     m_intensity (cli_intensities[i])
128 {
129 }
130
131 /* Return the color number corresponding to COLOR.  */
132
133 static int
134 color_number (const char *color)
135 {
136   for (int i = 0; i < ARRAY_SIZE (cli_colors); ++i)
137     {
138       if (color == cli_colors[i])
139         return i - 1;
140     }
141   gdb_assert_not_reached ("color not found");
142 }
143
144 /* See cli-style.h.  */
145
146 ui_file_style
147 cli_style_option::style () const
148 {
149   int fg = color_number (m_foreground);
150   int bg = color_number (m_background);
151   ui_file_style::intensity intensity = ui_file_style::NORMAL;
152
153   for (int i = 0; i < ARRAY_SIZE (cli_intensities); ++i)
154     {
155       if (m_intensity == cli_intensities[i])
156         {
157           intensity = (ui_file_style::intensity) i;
158           break;
159         }
160     }
161
162   return ui_file_style (fg, bg, intensity);
163 }
164
165 /* See cli-style.h.  */
166
167 void
168 cli_style_option::do_set_value (const char *ignore, int from_tty,
169                                 struct cmd_list_element *cmd)
170 {
171   cli_style_option *cso = (cli_style_option *) cmd->context ();
172   cso->changed.notify ();
173 }
174
175 /* Implements the cli_style_option::do_show_* functions.
176    WHAT and VALUE are the property and value to show.
177    The style for which WHAT is shown is retrieved from CMD context.  */
178
179 static void
180 do_show (const char *what, struct ui_file *file,
181          struct cmd_list_element *cmd,
182          const char *value)
183 {
184   cli_style_option *cso = (cli_style_option *) cmd->context ();
185   fputs_filtered (_("The "), file);
186   fprintf_styled (file, cso->style (), _("\"%s\" style"), cso->name ());
187   fprintf_filtered (file, _(" %s is: %s\n"), what, value);
188 }
189
190 /* See cli-style.h.  */
191
192 void
193 cli_style_option::do_show_foreground (struct ui_file *file, int from_tty,
194                                       struct cmd_list_element *cmd,
195                                       const char *value)
196 {
197   do_show (_("foreground color"), file, cmd, value);
198 }
199
200 /* See cli-style.h.  */
201
202 void
203 cli_style_option::do_show_background (struct ui_file *file, int from_tty,
204                                       struct cmd_list_element *cmd,
205                                       const char *value)
206 {
207   do_show (_("background color"), file, cmd, value);
208 }
209
210 /* See cli-style.h.  */
211
212 void
213 cli_style_option::do_show_intensity (struct ui_file *file, int from_tty,
214                                      struct cmd_list_element *cmd,
215                                      const char *value)
216 {
217   do_show (_("display intensity"), file, cmd, value);
218 }
219
220 /* See cli-style.h.  */
221
222 void
223 cli_style_option::add_setshow_commands (enum command_class theclass,
224                                         const char *prefix_doc,
225                                         struct cmd_list_element **set_list,
226                                         struct cmd_list_element **show_list,
227                                         bool skip_intensity)
228 {
229   add_setshow_prefix_cmd (m_name, theclass, prefix_doc, prefix_doc,
230                           &m_set_list, &m_show_list, set_list, show_list);
231
232   set_show_commands commands;
233
234   commands = add_setshow_enum_cmd
235     ("foreground", theclass, cli_colors,
236      &m_foreground,
237      _("Set the foreground color for this property."),
238      _("Show the foreground color for this property."),
239      nullptr,
240      do_set_value,
241      do_show_foreground,
242      &m_set_list, &m_show_list);
243   commands.set->set_context (this);
244   commands.show->set_context (this);
245
246   commands = add_setshow_enum_cmd
247     ("background", theclass, cli_colors,
248      &m_background,
249      _("Set the background color for this property."),
250      _("Show the background color for this property."),
251      nullptr,
252      do_set_value,
253      do_show_background,
254      &m_set_list, &m_show_list);
255   commands.set->set_context (this);
256   commands.show->set_context (this);
257
258   if (!skip_intensity)
259     {
260       commands = add_setshow_enum_cmd
261         ("intensity", theclass, cli_intensities,
262          &m_intensity,
263          _("Set the display intensity for this property."),
264          _("Show the display intensity for this property."),
265          nullptr,
266          do_set_value,
267          do_show_intensity,
268          &m_set_list, &m_show_list);
269       commands.set->set_context (this);
270       commands.show->set_context (this);
271     }
272 }
273
274 static cmd_list_element *style_set_list;
275 static cmd_list_element *style_show_list;
276
277 static void
278 set_style_enabled  (const char *args, int from_tty, struct cmd_list_element *c)
279 {
280   g_source_cache.clear ();
281   gdb::observers::styling_changed.notify ();
282 }
283
284 static void
285 show_style_enabled (struct ui_file *file, int from_tty,
286                     struct cmd_list_element *c, const char *value)
287 {
288   if (cli_styling)
289     fprintf_filtered (file, _("CLI output styling is enabled.\n"));
290   else
291     fprintf_filtered (file, _("CLI output styling is disabled.\n"));
292 }
293
294 static void
295 show_style_sources (struct ui_file *file, int from_tty,
296                     struct cmd_list_element *c, const char *value)
297 {
298   if (source_styling)
299     fprintf_filtered (file, _("Source code styling is enabled.\n"));
300   else
301     fprintf_filtered (file, _("Source code styling is disabled.\n"));
302 }
303
304 void _initialize_cli_style ();
305 void
306 _initialize_cli_style ()
307 {
308   add_setshow_prefix_cmd ("style", no_class,
309                           _("\
310 Style-specific settings.\n\
311 Configure various style-related variables, such as colors"),
312                           _("\
313 Style-specific settings.\n\
314 Configure various style-related variables, such as colors"),
315                           &style_set_list, &style_show_list,
316                           &setlist, &showlist);
317
318   add_setshow_boolean_cmd ("enabled", no_class, &cli_styling, _("\
319 Set whether CLI styling is enabled."), _("\
320 Show whether CLI is enabled."), _("\
321 If enabled, output to the terminal is styled."),
322                            set_style_enabled, show_style_enabled,
323                            &style_set_list, &style_show_list);
324
325   add_setshow_boolean_cmd ("sources", no_class, &source_styling, _("\
326 Set whether source code styling is enabled."), _("\
327 Show whether source code styling is enabled."), _("\
328 If enabled, source code is styled.\n"
329 #ifdef HAVE_SOURCE_HIGHLIGHT
330 "Note that source styling only works if styling in general is enabled,\n\
331 see \"show style enabled\"."
332 #else
333 "Source highlighting may be disabled in this installation of gdb, because\n\
334 it was not linked against GNU Source Highlight.  However, it might still be\n\
335 available if the appropriate extension is available at runtime."
336 #endif
337                            ), set_style_enabled, show_style_sources,
338                            &style_set_list, &style_show_list);
339
340   file_name_style.add_setshow_commands (no_class, _("\
341 Filename display styling.\n\
342 Configure filename colors and display intensity."),
343                                         &style_set_list, &style_show_list,
344                                         false);
345
346   function_name_style.add_setshow_commands (no_class, _("\
347 Function name display styling.\n\
348 Configure function name colors and display intensity"),
349                                             &style_set_list, &style_show_list,
350                                             false);
351
352   variable_name_style.add_setshow_commands (no_class, _("\
353 Variable name display styling.\n\
354 Configure variable name colors and display intensity"),
355                                             &style_set_list, &style_show_list,
356                                             false);
357
358   address_style.add_setshow_commands (no_class, _("\
359 Address display styling.\n\
360 Configure address colors and display intensity"),
361                                       &style_set_list, &style_show_list,
362                                       false);
363
364   title_style.add_setshow_commands (no_class, _("\
365 Title display styling.\n\
366 Configure title colors and display intensity\n\
367 Some commands (such as \"apropos -v REGEXP\") use the title style to improve\n\
368 readability."),
369                                     &style_set_list, &style_show_list,
370                                     false);
371
372   highlight_style.add_setshow_commands (no_class, _("\
373 Highlight display styling.\n\
374 Configure highlight colors and display intensity\n\
375 Some commands use the highlight style to draw the attention to a part\n\
376 of their output."),
377                                         &style_set_list, &style_show_list,
378                                         false);
379
380   metadata_style.add_setshow_commands (no_class, _("\
381 Metadata display styling.\n\
382 Configure metadata colors and display intensity\n\
383 The \"metadata\" style is used when GDB displays information about\n\
384 your data, for example \"<unavailable>\""),
385                                        &style_set_list, &style_show_list,
386                                        false);
387
388   tui_border_style.add_setshow_commands (no_class, _("\
389 TUI border display styling.\n\
390 Configure TUI border colors\n\
391 The \"tui-border\" style is used when GDB displays the border of a\n\
392 TUI window that does not have the focus."),
393                                          &style_set_list, &style_show_list,
394                                          true);
395
396   tui_active_border_style.add_setshow_commands (no_class, _("\
397 TUI active border display styling.\n\
398 Configure TUI active border colors\n\
399 The \"tui-active-border\" style is used when GDB displays the border of a\n\
400 TUI window that does have the focus."),
401                                                 &style_set_list,
402                                                 &style_show_list,
403                                                 true);
404
405   version_style.add_setshow_commands (no_class, _("\
406 Version string display styling.\n\
407 Configure colors used to display the GDB version string."),
408                                       &style_set_list, &style_show_list,
409                                       false);
410 }
This page took 0.049528 seconds and 4 git commands to generate.