X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdebug.py;h=30d6ea7d852bd897191df9ad2001e03573b7af69;hb=28cebd157f9d39920d0480232e7c361716ca45bb;hp=13d7612b22c0f62e9b7026262d2d714dcba89614;hpb=cf38d2fd74de96092b5ef13601ed8a3353ad5723;p=tools%2Fsat.git diff --git a/src/debug.py b/src/debug.py index 13d7612..30d6ea7 100755 --- a/src/debug.py +++ b/src/debug.py @@ -54,19 +54,31 @@ Show pretty print debug representation from instances of SAT classes import os import sys import traceback -import StringIO as SIO import pprint as PP +import inspect +import src + +# Compatibility python 2/3 for unicode +try: + _test = unicode +except: + unicode = str + +# Compatibility python 2/3 for StringIO +try: + from StringIO import StringIO +except ImportError: + from io import StringIO _debug = [False] #support push/pop for temporary activate debug outputs -_user = os.environ['USER'] # wambeke is christian at home -_developers = ["christian", "wambeke", "crouzet"] # crouzet, kloss ... +_developers = ["christian", "wambeke"] def isDeveloper(): """if you are a developer, sometimes you want verbose traces etc.""" - res = _user in _developers + res = src.architecture.get_user() in _developers return res def indent(text, amount=2, ch=' '): @@ -84,9 +96,13 @@ def isTypeConfig(var): # print "NOT isTypeConfig %s" % typ return False -def write(title, var="", force=None, fmt="\n#### DEBUG: %s:\n%s\n"): +def write(title, var="", force=None, fmt=" %s:\n%s\n####\n"): """write sys.stderr a message if _debug[-1]==True or optionaly force=True""" if _debug[-1] or force: + callerframerecord = inspect.stack()[1] # get info of the caller + frame = callerframerecord[0] + info = inspect.getframeinfo(frame) + sys.stderr.write("\n#### DEBUG - %s:%s (%s) ####\n" % (info.filename, info.lineno, info.function)) tvar = type(var) typ = str(tvar) if isTypeConfig(var): @@ -107,8 +123,13 @@ def tofix(title, var="", force=None): write sys.stderr a message if _debug[-1]==True or optionaly force=True use this only if no logger accessible for classic logger.warning(message) """ - fmt = "\n#### TOFIX: %s:\n%s\n" - write(title, var, force, fmt) + if _debug[-1] or isDeveloper(): + callerframerecord = inspect.stack()[1] # get info of the caller + frame = callerframerecord[0] + info = inspect.getframeinfo(frame) + fmt = "#### TOFIX - " + str(info.filename) + ":" + str(info.lineno) +\ + " (" + str(info.function) + ") ####\n %s:\n%s\n" + write(title, var, force, fmt) def push_debug(aBool): """set debug outputs activated, or not""" @@ -130,18 +151,13 @@ def format_exception(msg, limit=None, trace=None): with traceback only if (_debug) or (DBG._user in DBG._developers) """ etype, value, tb = sys.exc_info() - if _debug[-1] or isDeveloper(): - res = msg - if tb: - res += "\nTraceback (most recent call last):\n" - res += "".join(traceback.format_tb(tb, limit)) # [:-1]) - res += "\n" - res += "\n".join(traceback.format_exception_only(etype, value)) - return res - else: - res = msg - res += "".join(traceback.format_exception_only(etype, value)) - return res + res = msg + if tb: + res += "\nTraceback (most recent call last):\n" + res += "".join(traceback.format_tb(tb, limit)) # [:-1]) + res += "\n" + res += "\n".join(traceback.format_exception_only(etype, value)) + return res def format_color_exception(msg, limit=None, trace=None): """ @@ -168,7 +184,7 @@ def format_color_exception(msg, limit=None, trace=None): # utilitaires divers pour debug ############################################### -class OutStream(SIO.StringIO): +class OutStream(StringIO): """ utility class for pyconf.Config output iostream """ @@ -178,9 +194,9 @@ class OutStream(SIO.StringIO): keep value before lost as self.value """ self.value = self.getvalue() - SIO.StringIO.close(self) + StringIO.close(self) -class InStream(SIO.StringIO): +class InStream(StringIO): """utility class for pyconf.Config input iostream""" pass @@ -234,7 +250,7 @@ def _saveConfigRecursiveDbg(config, aStream, indent, path, nb): indstr = indent * ' ' # '':no indent, ' ':indent strType = str(type(config)) - if debug: print "saveDbg Type", path, strType + if debug: print("saveDbg Type %s %s" % (path, strType)) if "Sequence" in strType: for i in range(len(config)): @@ -246,7 +262,7 @@ def _saveConfigRecursiveDbg(config, aStream, indent, path, nb): #evaluate = value.resolve(config) aStream.write("
%s%s : %s --> '%s'\n" % (indstr, path, config, str(config))) except Exception as e: - aStream.write("
%s%s : !!! ERROR: %s !!!\n" % (indstr, path, e.message)) + aStream.write("
%s%s : !!! ERROR: %s !!!\n" % (indstr, path, str(e))) return ''' @@ -259,7 +275,7 @@ def _saveConfigRecursiveDbg(config, aStream, indent, path, nb): for key in sorted(data): #order): # data as sort alphabetical, order as initial order value = data[key] strType = str(type(value)) - if debug: print 'strType', path, key, strType + if debug: print('strType %s %s %s' % (path, key, strType)) if "Config" in strType: _saveConfigRecursiveDbg(value, aStream, indentp, path+"."+key, nbp) continue @@ -275,14 +291,14 @@ def _saveConfigRecursiveDbg(config, aStream, indent, path, nb): evaluate = value.evaluate(config) aStream.write("%s%s.%s : %s --> '%s'\n" % (indstr, path, key, str(value), evaluate)) except Exception as e: - aStream.write("%s%s.%s : !!! ERROR: %s !!!\n" % (indstr, path, key, e.message)) + aStream.write("%s%s.%s : !!! ERROR: %s !!!\n" % (indstr, path, key, str(e))) continue if "Reference" in strType: try: evaluate = value.resolve(config) aStream.write("%s%s.%s : %s --> '%s'\n" % (indstr, path, key, str(value), evaluate)) except Exception as e: - aStream.write("%s%s.%s : !!! ERROR: %s !!!\n" % (indstr, path, key, e.message)) + aStream.write("%s%s.%s : !!! ERROR: %s !!!\n" % (indstr, path, key, str(e))) continue if type(value) in [str, bool, int, type(None), unicode]: aStream.write("%s%s.%s : '%s'\n" % (indstr, path, key, str(value))) @@ -290,4 +306,4 @@ def _saveConfigRecursiveDbg(config, aStream, indent, path, nb): try: aStream.write("!!! TODO fix that %s %s%s.%s : %s\n" % (type(value), indstr, path, key, str(value))) except Exception as e: - aStream.write("%s%s.%s : !!! %s\n" % (indstr, path, key, e.message)) + aStream.write("%s%s.%s : !!! %s\n" % (indstr, path, key, str(e)))