lorax/src/pylorax/output.py

149 lines
3.8 KiB
Python
Raw Normal View History

#
# output.py
2010-01-12 11:45:54 +00:00
#
# 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 <http://www.gnu.org/licenses/>.
#
# Red Hat Author(s): Martin Gracik <mgracik@redhat.com>
#
import sys
2010-02-23 13:20:05 +00:00
import re
2010-02-23 13:20:05 +00:00
from decorators import singleton
2010-02-23 13:20:05 +00:00
# color codes
C_DEFAULT = "\x1b[39m"
C_RESET = "\x1b[0m"
2010-02-23 13:20:05 +00:00
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"
2010-02-23 13:20:05 +00:00
C_BOLD = "\x1b[1m"
C_UNDERLINE = "\x1b[4m"
2010-02-23 13:20:05 +00:00
# format tags
TAGS = [(re.compile(r"<b>"), C_BOLD),
(re.compile(r"<u>"), C_UNDERLINE),
(re.compile(r"<red>"), C_RED),
(re.compile(r"<green>"), C_GREEN),
(re.compile(r"<blue>"), C_BLUE),
2010-08-17 12:14:36 +00:00
(re.compile(r"</(b|u|red|green|blue/)>"), C_RESET)]
2010-02-23 13:20:05 +00:00
# output levels
CRITICAL = 50
ERROR = 40
WARNING = 30
INFO = 20
DEBUG = 10
NOTSET = 0
@singleton
class LoraxOutput(object):
def __init__(self):
2010-02-23 13:20:05 +00:00
self._colors = True
self._encoding = "utf-8"
self._output_level = INFO
2010-08-17 12:14:36 +00:00
self._ignore_msgs = set()
2010-02-23 13:20:05 +00:00
self._indent_level = 0
2010-02-23 13:20:05 +00:00
def basic_config(self, colors=None, encoding=None, output_level=None):
if colors is not None:
2010-02-23 13:20:05 +00:00
self._colors = colors
if encoding is not None:
2010-02-23 13:20:05 +00:00
self._encoding = encoding
if output_level is not None:
self._output_level = output_level
2010-08-17 12:14:36 +00:00
def ignore_message(self, messages):
if type(messages) is str:
self._ignore_msgs.add(messages)
else:
for msg in messages:
self.ignore_message(msg)
2010-02-23 13:20:05 +00:00
@property
def ignore(self):
2010-08-17 12:14:36 +00:00
return self._ignore_msgs
def indent(self):
2010-02-23 13:20:05 +00:00
self._indent_level += 1
def unindent(self):
2010-02-23 13:20:05 +00:00
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()
2010-02-23 13:20:05 +00:00
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):
2010-02-23 13:20:05 +00:00
s = "** critical: {0}".format(s)
if (self._output_level <= CRITICAL and
self.__raw(s) not in self.ignore):
self.writeline(s, file=file)
def error(self, s, file=sys.stdout):
2010-02-23 13:20:05 +00:00
s = "** error: {0}".format(s)
if (self._output_level <= ERROR and
self.__raw(s) not in self.ignore):
self.writeline(s, file=file)
def warning(self, s, file=sys.stdout):
2010-02-23 13:20:05 +00:00
s = "** warning: {0}".format(s)
if (self._output_level <= WARNING and
self.__raw(s) not in self.ignore):
self.writeline(s, file=file)
def info(self, s, file=sys.stdout):
2010-02-23 13:20:05 +00:00
if self._output_level <= INFO:
self.writeline(s, file=file)
def debug(self, s, file=sys.stdout):
2010-02-23 13:20:05 +00:00
if self._output_level <= DEBUG:
self.writeline(s, file=file)
2010-02-23 13:20:05 +00:00
2010-08-17 12:14:36 +00:00
def __format(self, s):
2010-02-23 13:20:05 +00:00
for tag, ccode in TAGS:
2010-08-17 12:14:36 +00:00
s = tag.sub(ccode, s)
2010-02-23 13:20:05 +00:00
return s
2010-08-17 12:14:36 +00:00
def __raw(self, s):
2010-02-23 13:20:05 +00:00
for tag, ccode in TAGS:
2010-08-17 12:14:36 +00:00
s = tag.sub("", s)
2010-02-23 13:20:05 +00:00
return s