Don't use ANSI colors when the output FD is not a tty.

refs #6702
This commit is contained in:
Gunnar Beutner 2014-08-17 10:48:30 +02:00
parent 2d42cae358
commit b16e6d7e52
2 changed files with 67 additions and 18 deletions

View File

@ -15,14 +15,52 @@
# along with this program; if not, write to the Free Software Foundation
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
from icinga2.utils.debug import ObjectsFile
import os, sys, getopt
from icinga2.utils.debug import ObjectsFileReader
from icinga2.config import LocalStateDir
from signal import signal, SIGPIPE, SIG_DFL
def main():
signal(SIGPIPE, SIG_DFL)
fp = open(LocalStateDir + "/cache/icinga2/icinga2.debug")
of = ObjectsFile(fp)
for obj in of:
print obj
color_mode = 'auto'
try:
opts, args = getopt.getopt(sys.argv[1:], "h", ["help", "color"])
except getopt.GetoptError as err:
# print help information and exit:
print str(err) # will print something like "option -a not recognized"
usage()
sys.exit(2)
output = None
verbose = False
for o, a in opts:
if o in ("-h", "--help"):
usage()
sys.exit()
elif o == "--color":
color_mode = 'always'
else:
assert False, "unhandled option"
if len(args) > 0:
fname = args[0]
else:
fname = LocalStateDir + "/cache/icinga2/icinga2.debug"
if color_mode == 'always':
use_colors = True
elif color_mode == 'never':
use_colors = False
else:
use_colors = os.isatty(1)
fp = open(fname)
ofr = ObjectsFileReader(fp)
for obj in ofr:
print obj.format(use_colors)
def usage():
print "Syntax: %s [--color] [file]" % (sys.argv[0])
print ""
print "Displays a list of objects from the specified Icinga 2 objects file."

View File

@ -39,16 +39,13 @@ class DebugObject(object):
def __init__(self, obj):
self._obj = obj
def __str__(self):
return self.format_object()
def format_object(self):
def format(self, use_colors=False):
if self._obj["abstract"]:
result = "Template '"
else:
result = "Object '"
result += self._obj["properties"]["__name"] + "' of type '" + self._obj["type"] + "':\n"
result += self.format_properties(2)
result += self.format_properties(use_colors, 2)
return result
@staticmethod
@ -65,26 +62,33 @@ class DebugObject(object):
else:
return str(value)
def format_properties(self, indent=0, path=[]):
def format_properties(self, use_colors=False, indent=0, path=[]):
props = self._obj["properties"]
for component in path:
props = props[component]
if use_colors:
color_begin = _colors.GREEN
color_end = _colors.RESET
else:
color_begin = ''
color_end = ''
result = ""
for key, value in props.items():
path.append(key)
result += ' ' * indent + "* %s%s%s" % (_colors.GREEN, key, _colors.RESET)
hints = self.format_hints(self, indent + 2, path)
result += ' ' * indent + "* %s%s%s" % (color_begin, key, color_end)
hints = self.format_hints(use_colors, indent + 2, path)
if isinstance(value, dict):
result += "\n" + hints
result += self.format_properties(indent + 2, path)
result += self.format_properties(use_colors, indent + 2, path)
else:
result += " = %s\n" % (DebugObject.format_value(value))
result += hints
path.pop()
return result
def format_hints(self, dhints, indent=0, path=[]):
def format_hints(self, use_colors, indent=0, path=[]):
dhints = self._obj["debug_hints"]
try:
for component in path:
@ -92,13 +96,20 @@ class DebugObject(object):
except KeyError:
return ""
if use_colors:
color_begin = _colors.CYAN
color_end = _colors.RESET
else:
color_begin = ''
color_end = ''
result = ""
for message in dhints["messages"]:
result += ' ' * indent + "%% %smodified in %s, lines %s:%s-%s:%s%s\n" % (_colors.CYAN,
message[1], message[2], message[3], message[4], message[5], _colors.RESET)
result += ' ' * indent + "%% %smodified in %s, lines %s:%s-%s:%s%s\n" % (color_begin,
message[1], message[2], message[3], message[4], message[5], color_end)
return result
class ObjectsFile(object):
class ObjectsFileReader(object):
def __init__(self, file):
self._file = file