From: Serge Rehbinder Date: Wed, 23 Nov 2016 14:03:08 +0000 (+0100) Subject: sat log: Add the full launched command in the hat file X-Git-Tag: 5.0.0a1~38^2~57 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=79e669d641c52731bacb4dc50d0728bfce4d900e;p=tools%2Fsat.git sat log: Add the full launched command in the hat file --- diff --git a/commands/log.py b/commands/log.py index a07c521..a63311b 100644 --- a/commands/log.py +++ b/commands/log.py @@ -225,7 +225,7 @@ def run(args, runner, logger): src.logger.log_macro_command_file_expression) lLogsFiltered = [] for filePath, __, date, __, hour, cmd, __ in lLogs: - showLog, cmdAppli = src.logger.show_command_log(filePath, cmd, + showLog, cmdAppli, __ = src.logger.show_command_log(filePath, cmd, runner.cfg.VARS.application, notShownCommands) if showLog: lLogsFiltered.append((filePath, date, hour, cmd, cmdAppli)) diff --git a/src/logger.py b/src/logger.py index bf5051e..eb2ee58 100644 --- a/src/logger.py +++ b/src/logger.py @@ -287,7 +287,7 @@ def show_command_log(logFilePath, cmd, application, notShownCommands): # When the command is not in notShownCommands, no need to go further : # Do not show if cmd in notShownCommands: - return False, None + return False, None, None # Get the application of the log file try: @@ -295,22 +295,23 @@ def show_command_log(logFilePath, cmd, application, notShownCommands): except Exception as e: msg = _("WARNING: the log file %s cannot be read:" % logFilePath) sys.stdout.write(printcolors.printcWarning("%s\n%s\n" % (msg, e))) - return False, None + return False, None, None if 'application' in logFileXml.xmlroot.keys(): appliLog = logFileXml.xmlroot.get('application') + launched_cmd = logFileXml.xmlroot.find('Site').attrib['launchedCommand'] # if it corresponds, then the log has to be shown if appliLog == application: - return True, appliLog + return True, appliLog, launched_cmd elif application != 'None': - return False, appliLog + return False, appliLog, launched_cmd - return True, appliLog + return True, appliLog, launched_cmd if application == 'None': - return True, None + return True, None, None - return False, None + return False, None, None def list_log_file(dirPath, expression): '''Find all files corresponding to expression in dirPath @@ -369,7 +370,7 @@ def update_hat_xml(logDir, application=None, notShownCommands = []): # then add it to the xml file lLogFile = list_log_file(logDir, log_macro_command_file_expression) for filePath, __, date, __, hour, cmd, __ in lLogFile: - showLog, cmdAppli = show_command_log(filePath, cmd, + showLog, cmdAppli, full_cmd = show_command_log(filePath, cmd, application, notShownCommands) #if cmd not in notShownCommands: if showLog: @@ -379,7 +380,8 @@ def update_hat_xml(logDir, application=None, notShownCommands = []): attrib = {"date" : date, "hour" : hour, "cmd" : cmd, - "application" : cmdAppli}) + "application" : cmdAppli, + "full_command" : full_cmd}) # Write the file on the hard drive xmlHat.write_tree('hat.xsl') \ No newline at end of file diff --git a/src/xsl/hat.xsl b/src/xsl/hat.xsl index 03a8b2f..45ec1df 100644 --- a/src/xsl/hat.xsl +++ b/src/xsl/hat.xsl @@ -38,9 +38,9 @@ - +
- + @@ -54,6 +54,7 @@ +
CommanddatetimeapplicationCommanddatetimeapplicationfull command