blob: e78a7c14f5bfd87f9d7344d9c3ada90d1df973b5 [file] [log] [blame]
Simon Glass0d24de92012-01-14 15:12:45 +00001# Copyright (c) 2011 The Chromium OS Authors.
2#
Wolfgang Denk1a459662013-07-08 09:37:19 +02003# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00004#
5
6"""Terminal utilities
7
8This module handles terminal interaction including ANSI color codes.
9"""
10
Simon Glassbbd01432012-12-15 10:42:01 +000011import os
12import sys
13
14# Selection of when we want our output to be colored
15COLOR_IF_TERMINAL, COLOR_ALWAYS, COLOR_NEVER = range(3)
16
Simon Glass3c6c0f82014-09-05 19:00:06 -060017# Initially, we are set up to print to the terminal
18print_test_mode = False
19print_test_list = []
20
21class PrintLine:
22 """A line of text output
23
24 Members:
25 text: Text line that was printed
26 newline: True to output a newline after the text
27 colour: Text colour to use
28 """
29 def __init__(self, text, newline, colour):
30 self.text = text
31 self.newline = newline
32 self.colour = colour
33
34 def __str__(self):
35 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour,
36 self.text)
37
38def Print(text='', newline=True, colour=None):
39 """Handle a line of output to the terminal.
40
41 In test mode this is recorded in a list. Otherwise it is output to the
42 terminal.
43
44 Args:
45 text: Text to print
46 newline: True to add a new line at the end of the text
47 colour: Colour to use for the text
48 """
49 if print_test_mode:
50 print_test_list.append(PrintLine(text, newline, colour))
51 else:
52 if colour:
53 col = Color()
54 text = col.Color(colour, text)
55 print text,
56 if newline:
57 print
58
59def SetPrintTestMode():
60 """Go into test mode, where all printing is recorded"""
61 global print_test_mode
62
63 print_test_mode = True
64
65def GetPrintTestLines():
66 """Get a list of all lines output through Print()
67
68 Returns:
69 A list of PrintLine objects
70 """
71 global print_test_list
72
73 ret = print_test_list
74 print_test_list = []
75 return ret
76
77def EchoPrintTestLines():
78 """Print out the text lines collected"""
79 for line in print_test_list:
80 if line.colour:
81 col = Color()
82 print col.Color(line.colour, line.text),
83 else:
84 print line.text,
85 if line.newline:
86 print
87
88
Simon Glass0d24de92012-01-14 15:12:45 +000089class Color(object):
Simon Glass6ba57372014-08-28 09:43:34 -060090 """Conditionally wraps text in ANSI color escape sequences."""
91 BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
92 BOLD = -1
93 BRIGHT_START = '\033[1;%dm'
94 NORMAL_START = '\033[22;%dm'
95 BOLD_START = '\033[1m'
96 RESET = '\033[0m'
Simon Glass0d24de92012-01-14 15:12:45 +000097
Simon Glass6ba57372014-08-28 09:43:34 -060098 def __init__(self, colored=COLOR_IF_TERMINAL):
99 """Create a new Color object, optionally disabling color output.
Simon Glass0d24de92012-01-14 15:12:45 +0000100
Simon Glass6ba57372014-08-28 09:43:34 -0600101 Args:
102 enabled: True if color output should be enabled. If False then this
103 class will not add color codes at all.
104 """
Simon Glasse752edc2014-08-28 09:43:35 -0600105 try:
106 self._enabled = (colored == COLOR_ALWAYS or
107 (colored == COLOR_IF_TERMINAL and
108 os.isatty(sys.stdout.fileno())))
109 except:
110 self._enabled = False
Simon Glass0d24de92012-01-14 15:12:45 +0000111
Simon Glass6ba57372014-08-28 09:43:34 -0600112 def Start(self, color, bright=True):
113 """Returns a start color code.
Simon Glass0d24de92012-01-14 15:12:45 +0000114
Simon Glass6ba57372014-08-28 09:43:34 -0600115 Args:
116 color: Color to use, .e.g BLACK, RED, etc.
Simon Glass0d24de92012-01-14 15:12:45 +0000117
Simon Glass6ba57372014-08-28 09:43:34 -0600118 Returns:
119 If color is enabled, returns an ANSI sequence to start the given
120 color, otherwise returns empty string
121 """
122 if self._enabled:
123 base = self.BRIGHT_START if bright else self.NORMAL_START
124 return base % (color + 30)
125 return ''
Simon Glass0d24de92012-01-14 15:12:45 +0000126
Simon Glass6ba57372014-08-28 09:43:34 -0600127 def Stop(self):
128 """Retruns a stop color code.
Simon Glass0d24de92012-01-14 15:12:45 +0000129
Simon Glass6ba57372014-08-28 09:43:34 -0600130 Returns:
131 If color is enabled, returns an ANSI color reset sequence,
132 otherwise returns empty string
133 """
134 if self._enabled:
135 return self.RESET
136 return ''
Simon Glass0d24de92012-01-14 15:12:45 +0000137
Simon Glass6ba57372014-08-28 09:43:34 -0600138 def Color(self, color, text, bright=True):
139 """Returns text with conditionally added color escape sequences.
Simon Glass0d24de92012-01-14 15:12:45 +0000140
Simon Glass6ba57372014-08-28 09:43:34 -0600141 Keyword arguments:
142 color: Text color -- one of the color constants defined in this
143 class.
144 text: The text to color.
Simon Glass0d24de92012-01-14 15:12:45 +0000145
Simon Glass6ba57372014-08-28 09:43:34 -0600146 Returns:
147 If self._enabled is False, returns the original text. If it's True,
148 returns text with color escape sequences based on the value of
149 color.
150 """
151 if not self._enabled:
152 return text
153 if color == self.BOLD:
154 start = self.BOLD_START
155 else:
156 base = self.BRIGHT_START if bright else self.NORMAL_START
157 start = base % (color + 30)
158 return start + text + self.RESET