Onionr/onionr/logger.py

227 lines
6.0 KiB
Python
Raw Normal View History

2018-01-26 07:22:48 +00:00
'''
Onionr - P2P Microblogging Platform & Social network
This file handles all operations involving logging
'''
'''
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 3 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 <https://www.gnu.org/licenses/>.
'''
import re, sys, time
2018-01-26 07:22:48 +00:00
class colors:
'''
This class allows you to set the color if ANSI codes are supported
'''
reset='\033[0m'
bold='\033[01m'
disable='\033[02m'
underline='\033[04m'
reverse='\033[07m'
strikethrough='\033[09m'
invisible='\033[08m'
italics='\033[3m'
class fg:
black='\033[30m'
red='\033[31m'
green='\033[32m'
orange='\033[33m'
blue='\033[34m'
purple='\033[35m'
cyan='\033[36m'
lightgrey='\033[37m'
darkgrey='\033[90m'
lightred='\033[91m'
lightgreen='\033[92m'
yellow='\033[93m'
lightblue='\033[94m'
pink='\033[95m'
lightcyan='\033[96m'
class bg:
black='\033[40m'
red='\033[41m'
green='\033[42m'
orange='\033[43m'
blue='\033[44m'
purple='\033[45m'
cyan='\033[46m'
lightgrey='\033[47m'
@staticmethod
def filter(data):
return re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]').sub('', str(data))
'''
Use the bitwise operators to merge these settings
'''
USE_ANSI = 0b100
OUTPUT_TO_CONSOLE = 0b010
OUTPUT_TO_FILE = 0b001
LEVEL_DEBUG = 1
LEVEL_INFO = 2
LEVEL_WARN = 3
LEVEL_ERROR = 4
LEVEL_FATAL = 5
_type = OUTPUT_TO_CONSOLE | USE_ANSI # the default settings for logging
_level = LEVEL_DEBUG # the lowest level to log
_outputfile = './output.log' # the file to log to
def set_settings(type):
2018-02-22 07:24:25 +00:00
'''
Set the settings for the logger using bitwise operators
'''
2018-01-26 07:22:48 +00:00
global _type
_type = type
def get_settings():
2018-02-22 07:24:25 +00:00
'''
Get settings from the logger
'''
2018-01-26 07:22:48 +00:00
return _type
def set_level(level):
2018-02-22 07:24:25 +00:00
'''
Set the lowest log level to output
'''
2018-01-26 07:22:48 +00:00
global _level
_level = level
def get_level():
2018-02-22 07:24:25 +00:00
'''
Get the lowest log level currently being outputted
'''
2018-01-26 07:22:48 +00:00
return _level
2018-02-23 02:53:49 +00:00
def set_file(outputfile):
'''
Set the file to output to, if enabled
'''
global _outputfile
_outputfile = outputfile
def get_file():
'''
Get the file to output to
'''
return _outputfile
2018-01-26 07:22:48 +00:00
def raw(data):
2018-02-22 07:24:25 +00:00
'''
Outputs raw data to console without formatting
'''
2018-01-26 07:22:48 +00:00
if get_settings() & OUTPUT_TO_CONSOLE:
print(data)
if get_settings() & OUTPUT_TO_FILE:
with open(_outputfile, "a+") as f:
f.write(colors.filter(data) + '\n')
def log(prefix, data, color = '', timestamp=True):
2018-02-22 07:24:25 +00:00
'''
Logs the data
prefix : The prefix to the output
data : The actual data to output
color : The color to output before the data
'''
2018-04-19 01:47:35 +00:00
curTime = ''
if timestamp:
curTime = time.strftime("%m-%d %H:%M:%S")
2018-04-19 01:47:35 +00:00
output = colors.reset + str(color) + '[' + colors.bold + str(prefix) + colors.reset + str(color) + '] ' + curTime + ' ' + str(data) + colors.reset
2018-01-26 07:22:48 +00:00
if not get_settings() & USE_ANSI:
output = colors.filter(output)
raw(output)
2018-02-22 07:24:25 +00:00
def readline(message = ''):
'''
Takes in input from the console, not stored in logs
message: The message to display before taking input
'''
2018-01-27 00:52:20 +00:00
color = colors.fg.green + colors.bold
output = colors.reset + str(color) + '... ' + colors.reset + str(message) + colors.reset
if not get_settings() & USE_ANSI:
output = colors.filter(output)
sys.stdout.write(output)
2018-01-29 06:01:36 +00:00
return input()
2018-01-27 00:52:20 +00:00
def confirm(default = 'y', message = 'Are you sure %s? '):
2018-02-22 07:24:25 +00:00
'''
Displays an "Are you sure" message, returns True for Y and False for N
message: The confirmation message, use %s for (y/n)
default: which to prefer-- y or n
'''
2018-01-27 00:52:20 +00:00
color = colors.fg.green + colors.bold
default = default.lower()
confirm = colors.bold
if default.startswith('y'):
confirm += '(Y/n)'
else:
confirm += '(y/N)'
confirm += colors.reset + color
output = colors.reset + str(color) + '... ' + colors.reset + str(message) + colors.reset
if not get_settings() & USE_ANSI:
output = colors.filter(output)
sys.stdout.write(output.replace('%s', confirm))
2018-01-29 06:01:36 +00:00
inp = input().lower()
2018-01-27 00:52:20 +00:00
if 'y' in inp:
return True
if 'n' in inp:
return False
else:
return default == 'y'
2018-01-26 07:22:48 +00:00
# debug: when there is info that could be useful for debugging purposes only
2018-04-19 01:47:35 +00:00
def debug(data, timestamp=True):
2018-01-26 07:22:48 +00:00
if get_level() <= LEVEL_DEBUG:
2018-04-19 01:47:35 +00:00
log('/', data, timestamp=timestamp)
2018-01-26 07:22:48 +00:00
# info: when there is something to notify the user of, such as the success of a process
2018-04-19 01:47:35 +00:00
def info(data, timestamp=False):
2018-01-26 07:22:48 +00:00
if get_level() <= LEVEL_INFO:
2018-04-19 01:47:35 +00:00
log('+', data, colors.fg.green, timestamp=timestamp)
2018-01-26 07:22:48 +00:00
# warn: when there is a potential for something bad to happen
2018-04-19 01:47:35 +00:00
def warn(data, timestamp=True):
2018-01-26 07:22:48 +00:00
if get_level() <= LEVEL_WARN:
2018-04-19 01:47:35 +00:00
log('!', data, colors.fg.orange, timestamp=timestamp)
2018-01-26 07:22:48 +00:00
# error: when only one function, module, or process of the program encountered a problem and must stop
2018-04-19 01:47:35 +00:00
def error(data, timestamp=True):
2018-01-26 07:22:48 +00:00
if get_level() <= LEVEL_ERROR:
2018-04-19 01:47:35 +00:00
log('-', data, colors.fg.red, timestamp=timestamp)
2018-01-26 07:22:48 +00:00
# fatal: when the something so bad has happened that the prorgam must stop
2018-04-19 01:47:35 +00:00
def fatal(data, timestamp=True):
2018-01-26 07:22:48 +00:00
if get_level() <= LEVEL_FATAL:
2018-04-19 01:47:35 +00:00
log('#', data, colors.bg.red + colors.fg.green + colors.bold, timestamp=timestamp)