colored_formatter.py
85 lines
| 2.2 KiB
| text/x-python
|
PythonLexer
r547 | ||||
import logging | ||||
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = xrange(30, 38) | ||||
r1203 | # Sequences | |||
r547 | RESET_SEQ = "\033[0m" | |||
r1391 | COLOR_SEQ = "\033[0;%dm" | |||
r547 | BOLD_SEQ = "\033[1m" | |||
COLORS = { | ||||
r1307 | 'CRITICAL': MAGENTA, | |||
'ERROR': RED, | ||||
'WARNING': CYAN, | ||||
'INFO': GREEN, | ||||
'DEBUG': BLUE, | ||||
'SQL': YELLOW | ||||
r547 | } | |||
r1307 | ||||
r1186 | def one_space_trim(s): | |||
if s.find(" ") == -1: | ||||
return s | ||||
else: | ||||
s = s.replace(' ', ' ') | ||||
return one_space_trim(s) | ||||
r1307 | ||||
r1186 | def format_sql(sql): | |||
sql = sql.replace('\n', '') | ||||
sql = one_space_trim(sql) | ||||
sql = sql\ | ||||
.replace(',', ',\n\t')\ | ||||
.replace('SELECT', '\n\tSELECT \n\t')\ | ||||
.replace('UPDATE', '\n\tUPDATE \n\t')\ | ||||
.replace('DELETE', '\n\tDELETE \n\t')\ | ||||
.replace('FROM', '\n\tFROM')\ | ||||
.replace('ORDER BY', '\n\tORDER BY')\ | ||||
.replace('LIMIT', '\n\tLIMIT')\ | ||||
.replace('WHERE', '\n\tWHERE')\ | ||||
.replace('AND', '\n\tAND')\ | ||||
.replace('LEFT', '\n\tLEFT')\ | ||||
.replace('INNER', '\n\tINNER')\ | ||||
.replace('INSERT', '\n\tINSERT')\ | ||||
.replace('DELETE', '\n\tDELETE') | ||||
return sql | ||||
r1307 | ||||
r547 | class ColorFormatter(logging.Formatter): | |||
def __init__(self, *args, **kwargs): | ||||
# can't do super(...) here because Formatter is an old school class | ||||
logging.Formatter.__init__(self, *args, **kwargs) | ||||
def format(self, record): | ||||
""" | ||||
Changes record's levelname to use with COLORS enum | ||||
""" | ||||
r1186 | ||||
r547 | levelname = record.levelname | |||
start = COLOR_SEQ % (COLORS[levelname]) | ||||
def_record = logging.Formatter.format(self, record) | ||||
end = RESET_SEQ | ||||
r1186 | ||||
r1360 | colored_record = ''.join([start, def_record, end]) | |||
r547 | return colored_record | |||
r1186 | ||||
class ColorFormatterSql(logging.Formatter): | ||||
def __init__(self, *args, **kwargs): | ||||
# can't do super(...) here because Formatter is an old school class | ||||
logging.Formatter.__init__(self, *args, **kwargs) | ||||
def format(self, record): | ||||
""" | ||||
Changes record's levelname to use with COLORS enum | ||||
""" | ||||
start = COLOR_SEQ % (COLORS['SQL']) | ||||
def_record = format_sql(logging.Formatter.format(self, record)) | ||||
end = RESET_SEQ | ||||
r1360 | colored_record = ''.join([start, def_record, end]) | |||
r1186 | return colored_record | |||