blob: 6541fa8f410412f829e477b6a942fd8185560a34 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass26132882012-01-14 15:12:45 +00002# Copyright (c) 2011 The Chromium OS Authors.
3#
Simon Glass26132882012-01-14 15:12:45 +00004
5"""Terminal utilities
6
7This module handles terminal interaction including ANSI color codes.
8"""
9
Paul Burtonc3931342016-09-27 16:03:50 +010010from __future__ import print_function
11
Simon Glassa9f7edb2012-12-15 10:42:01 +000012import os
13import sys
14
15# Selection of when we want our output to be colored
16COLOR_IF_TERMINAL, COLOR_ALWAYS, COLOR_NEVER = range(3)
17
Simon Glassfb35f9f2014-09-05 19:00:06 -060018# Initially, we are set up to print to the terminal
19print_test_mode = False
20print_test_list = []
21
22class PrintLine:
23 """A line of text output
24
25 Members:
26 text: Text line that was printed
27 newline: True to output a newline after the text
28 colour: Text colour to use
29 """
30 def __init__(self, text, newline, colour):
31 self.text = text
32 self.newline = newline
33 self.colour = colour
34
35 def __str__(self):
36 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour,
37 self.text)
38
39def Print(text='', newline=True, colour=None):
40 """Handle a line of output to the terminal.
41
42 In test mode this is recorded in a list. Otherwise it is output to the
43 terminal.
44
45 Args:
46 text: Text to print
47 newline: True to add a new line at the end of the text
48 colour: Colour to use for the text
49 """
50 if print_test_mode:
51 print_test_list.append(PrintLine(text, newline, colour))
52 else:
53 if colour:
54 col = Color()
55 text = col.Color(colour, text)
Simon Glassfb35f9f2014-09-05 19:00:06 -060056 if newline:
Simon Glass82e4c642020-04-09 15:08:39 -060057 print(text)
Simon Glass9c45a4e2016-09-18 16:48:30 -060058 else:
Simon Glass82e4c642020-04-09 15:08:39 -060059 print(text, end='', flush=True)
Simon Glassfb35f9f2014-09-05 19:00:06 -060060
61def SetPrintTestMode():
62 """Go into test mode, where all printing is recorded"""
63 global print_test_mode
64
65 print_test_mode = True
66
67def GetPrintTestLines():
68 """Get a list of all lines output through Print()
69
70 Returns:
71 A list of PrintLine objects
72 """
73 global print_test_list
74
75 ret = print_test_list
76 print_test_list = []
77 return ret
78
79def EchoPrintTestLines():
80 """Print out the text lines collected"""
81 for line in print_test_list:
82 if line.colour:
83 col = Color()
Paul Burtonc3931342016-09-27 16:03:50 +010084 print(col.Color(line.colour, line.text), end='')
Simon Glassfb35f9f2014-09-05 19:00:06 -060085 else:
Paul Burtonc3931342016-09-27 16:03:50 +010086 print(line.text, end='')
Simon Glassfb35f9f2014-09-05 19:00:06 -060087 if line.newline:
Paul Burtonc3931342016-09-27 16:03:50 +010088 print()
Simon Glassfb35f9f2014-09-05 19:00:06 -060089
90
Simon Glass26132882012-01-14 15:12:45 +000091class Color(object):
Simon Glass381fad82014-08-28 09:43:34 -060092 """Conditionally wraps text in ANSI color escape sequences."""
93 BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
94 BOLD = -1
95 BRIGHT_START = '\033[1;%dm'
96 NORMAL_START = '\033[22;%dm'
97 BOLD_START = '\033[1m'
98 RESET = '\033[0m'
Simon Glass26132882012-01-14 15:12:45 +000099
Simon Glass381fad82014-08-28 09:43:34 -0600100 def __init__(self, colored=COLOR_IF_TERMINAL):
101 """Create a new Color object, optionally disabling color output.
Simon Glass26132882012-01-14 15:12:45 +0000102
Simon Glass381fad82014-08-28 09:43:34 -0600103 Args:
104 enabled: True if color output should be enabled. If False then this
105 class will not add color codes at all.
106 """
Simon Glassb0cd3412014-08-28 09:43:35 -0600107 try:
108 self._enabled = (colored == COLOR_ALWAYS or
109 (colored == COLOR_IF_TERMINAL and
110 os.isatty(sys.stdout.fileno())))
111 except:
112 self._enabled = False
Simon Glass26132882012-01-14 15:12:45 +0000113
Simon Glass381fad82014-08-28 09:43:34 -0600114 def Start(self, color, bright=True):
115 """Returns a start color code.
Simon Glass26132882012-01-14 15:12:45 +0000116
Simon Glass381fad82014-08-28 09:43:34 -0600117 Args:
118 color: Color to use, .e.g BLACK, RED, etc.
Simon Glass26132882012-01-14 15:12:45 +0000119
Simon Glass381fad82014-08-28 09:43:34 -0600120 Returns:
121 If color is enabled, returns an ANSI sequence to start the given
122 color, otherwise returns empty string
123 """
124 if self._enabled:
125 base = self.BRIGHT_START if bright else self.NORMAL_START
126 return base % (color + 30)
127 return ''
Simon Glass26132882012-01-14 15:12:45 +0000128
Simon Glass381fad82014-08-28 09:43:34 -0600129 def Stop(self):
Anatolij Gustschinf2bcb322019-10-27 17:55:04 +0100130 """Returns a stop color code.
Simon Glass26132882012-01-14 15:12:45 +0000131
Simon Glass381fad82014-08-28 09:43:34 -0600132 Returns:
133 If color is enabled, returns an ANSI color reset sequence,
134 otherwise returns empty string
135 """
136 if self._enabled:
137 return self.RESET
138 return ''
Simon Glass26132882012-01-14 15:12:45 +0000139
Simon Glass381fad82014-08-28 09:43:34 -0600140 def Color(self, color, text, bright=True):
141 """Returns text with conditionally added color escape sequences.
Simon Glass26132882012-01-14 15:12:45 +0000142
Simon Glass381fad82014-08-28 09:43:34 -0600143 Keyword arguments:
144 color: Text color -- one of the color constants defined in this
145 class.
146 text: The text to color.
Simon Glass26132882012-01-14 15:12:45 +0000147
Simon Glass381fad82014-08-28 09:43:34 -0600148 Returns:
149 If self._enabled is False, returns the original text. If it's True,
150 returns text with color escape sequences based on the value of
151 color.
152 """
153 if not self._enabled:
154 return text
155 if color == self.BOLD:
156 start = self.BOLD_START
157 else:
158 base = self.BRIGHT_START if bright else self.NORMAL_START
159 start = base % (color + 30)
160 return start + text + self.RESET