lorax/src/pylorax/output.py

103 lines
2.6 KiB
Python
Raw Normal View History

#
# output.py
#
import sys
import singleton
### 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"
### font types
BOLD = 0b01
UNDERLINE = 0b10
### output levels
CRITICAL = 50
ERROR = 40
WARNING = 30
INFO = 20
DEBUG = 10
NOTSET = 0
class Terminal(singleton.Singleton):
def __init__(self):
self.__colors = True
self.__encoding = "utf-8"
self.__output_level = INFO
self.__indent_level = 0
def basic_config(self, colors=None, encoding=None, level=None):
if colors is not None:
self.__colors = colors
if encoding is not None:
self.__encoding = encoding
if level is not None:
self.__output_level = level
def indent(self):
self.__indent_level += 1
def unindent(self):
if self.__indent_level > 0:
self.__indent_level -= 1
def write(self, s, color=C_RESET, type=None, file=sys.stdout):
s = self.format(s, color=color, type=type)
file.write(s)
file.flush()
def format(self, s, color=C_RESET, type=None):
s = s.encode(self.__encoding)
if self.__colors:
if type is not None and (type & BOLD):
s = "%s%s" % (C_BOLD, s)
if type is not None and (type & UNDERLINE):
s = "%s%s" % (C_UNDERLINE, s)
s = "%s%s%s" % (color, s, C_RESET)
return s
def writeline(self, s, color=C_RESET, type=None, file=sys.stdout):
s = "%s%s" % (" " * self.__indent_level, s)
self.write(s + "\n", color=color, type=type, file=file)
def critical(self, s, file=sys.stdout):
if self.__output_level <= CRITICAL:
self.writeline("** critical: %s" % s, file=file)
def error(self, s, file=sys.stdout):
if self.__output_level <= ERROR:
self.writeline("** error: %s" % s, file=file)
def warning(self, s, file=sys.stdout):
if self.__output_level <= WARNING:
self.writeline("** warning: %s" % 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)