# # output.py # # Copyright (C) 2009 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Red Hat Author(s): Martin Gracik # import sys import re import decorators # output levels CRITICAL = 50 ERROR = 40 WARNING = 30 INFO = 20 DEBUG = 10 NOTSET = 0 # color codes C_DEFAULT = "\x1b[39m" C_RESET = "\x1b[0m" C_BLACK = "\x1b[0;30m" C_WHITE = "\x1b[1;37m" C_RED = "\x1b[0;31m" C_GREEN = "\x1b[0;32m" C_BLUE = "\x1b[0;34m" C_LIGHTRED = "\x1b[1;31m" C_LIGHTGREEN = "\x1b[1;32m" C_LIGHTBLUE = "\x1b[1;34m" C_BOLD = "\x1b[1m" C_UNDERLINE = "\x1b[4m" # format tags TAGS = [(re.compile(r""), C_BOLD), (re.compile(r""), C_UNDERLINE), (re.compile(r""), C_RED), (re.compile(r""), C_GREEN), (re.compile(r""), C_BLUE), (re.compile(r""), C_RESET)] @decorators.singleton class LinuxTerminalOutput(object): def __init__(self): self._output_level = INFO self._colors = True self._encoding = "utf-8" self._ignored_messages = set() self._indent_level = 0 self.width = 79 def basic_config(self, output_level=None, colors=None, encoding=None): self._output_level = output_level or self._output_level self._colors = colors or self._colors self._encoding = encoding or self._encoding def ignore(self, message): self._ignored_messages.add(message) def indent(self): self._indent_level += 1 def unindent(self): if self._indent_level > 0: self._indent_level -= 1 def write(self, s, file=sys.stdout): if self._colors: s = self.__format(s) else: s = self.__raw(s) file.write(s) file.flush() def writeline(self, s, file=sys.stdout): s = "{0}{1}\n".format(" " * self._indent_level, s) self.write(s, file=file) def critical(self, s, file=sys.stdout): s = "** critical: {0}".format(s) if (self._output_level <= CRITICAL and self.__raw(s) not in self._ignored_messages): self.writeline(s, file=file) def error(self, s, file=sys.stdout): s = "** error: {0}".format(s) if (self._output_level <= ERROR and self.__raw(s) not in self._ignored_messages): self.writeline(s, file=file) def warning(self, s, file=sys.stdout): s = "** warning: {0}".format(s) if (self._output_level <= WARNING and self.__raw(s) not in self._ignored_messages): self.writeline(s, file=file) def info(self, s, file=sys.stdout): if self._output_level <= INFO: self.writeline(s, file=file) def debug(self, s, file=sys.stdout): if self._output_level <= DEBUG: self.writeline(s, file=file) def __format(self, s): for tag, ccode in TAGS: s = tag.sub(ccode, s) return s def __raw(self, s): for tag, _ in TAGS: s = tag.sub("", s) return s # set up the output type to be used by lorax LoraxOutput = LinuxTerminalOutput