Page MenuHomec4science

verbosity_depth.py
No OneTemporary

File Metadata

Created
Sun, Apr 28, 00:48

verbosity_depth.py

# Copyright (C) 2018 by the RROMPy authors
#
# This file is part of RROMPy.
#
# RROMPy is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RROMPy 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RROMPy. If not, see <http://www.gnu.org/licenses/>.
#
from rrompy.utilities.exception_manager import RROMPyException
__all__ = ["verbosityDepth"]
from datetime import datetime
def getTimestamp() -> str:
return "\x1b[42m{}\x1b[0m".format(datetime.now().strftime("%H:%M:%S.%f"))
def verbosityDepth(vdtype:str, message:str, end : str = "\n",
timestamp : bool = True):
global RROMPy_verbosity_depth
assert isinstance(vdtype, str)
if vdtype.upper() not in ["INIT", "MAIN", "DEL"]:
raise RROMPyException("Verbosity depth type not recognized.")
out = "{} ".format(getTimestamp()) if timestamp else ""
if vdtype == "INIT":
if "RROMPy_verbosity_depth" not in globals():
RROMPy_verbosity_depth = 0
RROMPy_verbosity_depth += 1
out += "│" * (RROMPy_verbosity_depth - 1)
out += "┌"
else:
assert "RROMPy_verbosity_depth" in globals()
if vdtype == "MAIN":
out += "│" * (RROMPy_verbosity_depth - 1)
out += "├"
elif vdtype == "DEL":
RROMPy_verbosity_depth -= 1
out += "│" * RROMPy_verbosity_depth
out += "└"
if RROMPy_verbosity_depth <= 0: del RROMPy_verbosity_depth
if message != "":
print("{}{}".format(out, message), end = end)
return

Event Timeline