X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=commands%2Fpatch.py;h=ec438655fd61df9be55ada8452628d251ee8fc97;hb=af61677a8482b671f9a3bb307263a7049b1940f6;hp=721ed1b25fbc2bf1f25b18d811e3a6e199e0578c;hpb=911273905e57b2a25fa829b301660effc0606eee;p=tools%2Fsat.git diff --git a/commands/patch.py b/commands/patch.py index 721ed1b..ec43865 100644 --- a/commands/patch.py +++ b/commands/patch.py @@ -18,57 +18,81 @@ import os import subprocess +import re import src import prepare -# Define all possible option for log command : sat log +# Define all possible option for patch command : sat patch parser = src.options.Options() -parser.add_option('m', 'module', 'list2', 'modules', - _('modules to get the sources. This option can be' - ' passed several time to get the sources of several modules.')) -parser.add_option('', 'no_sample', 'boolean', 'no_sample', - _("do not get sources from sample modules.")) +parser.add_option('p', 'products', 'list2', 'products', + _('Optional: products to get the sources. This option accepts a comma separated list.')) -def apply_patch(config, module_info, logger): - '''The method called to apply patches on a module +def apply_patch(config, product_info, max_product_name_len, logger): + '''The method called to apply patches on a product :param config Config: The global configuration - :param module_info Config: The configuration specific to - the module to be prepared + :param product_info Config: The configuration specific to + the product to be patched :param logger Logger: The logger instance to use for the display and logging :return: (True if it succeed, else False, message to display) :rtype: (boolean, str) ''' - - if not "patches" in module_info or len(module_info.patches) == 0: - msg = _("No patch for the %s module") % module_info.name - logger.write(msg, 3) - logger.write("\n", 1) + + # if the product is native, do not apply patch + if src.product.product_is_native(product_info): + # display and log + logger.write('%s: ' % src.printcolors.printcLabel(product_info.name), 4) + logger.write(' ' * (max_product_name_len - len(product_info.name)), 4, False) + logger.write("\n", 4, False) + msg = _("The %s product is native. Do not apply " + "any patch.") % product_info.name + logger.write(msg, 4) + logger.write("\n", 4) + return True, "" + + if not "patches" in product_info or len(product_info.patches) == 0: + # display and log + logger.write('%s: ' % src.printcolors.printcLabel(product_info.name), 4) + logger.write(' ' * (max_product_name_len - len(product_info.name)), 4, False) + logger.write("\n", 4, False) + msg = _("No patch for the %s product") % product_info.name + logger.write(msg, 4) + logger.write("\n", 4) return True, "" + else: + # display and log + logger.write('%s: ' % src.printcolors.printcLabel(product_info.name), 3) + logger.write(' ' * (max_product_name_len - len(product_info.name)), 3, False) + logger.write("\n", 4, False) - if not os.path.exists(module_info.source_dir): - msg = _("No sources found for the %s module\n") % module_info.name + if not os.path.exists(product_info.source_dir): + msg = _("No sources found for the %s product\n") % product_info.name logger.write(src.printcolors.printcWarning(msg), 1) return False, "" # At this point, there one or more patches and the source directory exists retcode = [] res = [] - # Loop on all the patches of the module - for patch in module_info.patches: + # Loop on all the patches of the product + for patch in product_info.patches: details = [] # Check the existence and apply the patch if os.path.isfile(patch): - #patch_exe = "patch" # old patch command (now replace by patch.py) - patch_exe = os.path.join(config.VARS.srcDir, "patching.py") - patch_cmd = "python %s -p1 -- < %s" % (patch_exe, patch) - + patch_cmd = "patch -p1 < %s" % patch + + # Write the command in the terminal if verbose level is at 5 logger.write((" >%s\n" % patch_cmd),5) + + # Write the command in the log file (can be seen using 'sat log') + logger.logTxtFile.write("\n >%s\n" % patch_cmd) + logger.logTxtFile.flush() + + # Call the command res_cmd = (subprocess.call(patch_cmd, shell=True, - cwd=module_info.source_dir, + cwd=product_info.source_dir, stdout=logger.logTxtFile, stderr=subprocess.STDOUT) == 0) else: @@ -85,10 +109,10 @@ def apply_patch(config, module_info, logger): message = src.printcolors.printcWarning( _("Failed to apply patch %s") % patch) - if config.USER.output_level >= 3: + if config.USER.output_verbose_level >= 3: retcode.append(" %s" % message) else: - retcode.append("%s: %s" % (module_info.name, message)) + retcode.append("%s: %s" % (product_info.name, message)) if len(details) > 0: retcode.extend(details) @@ -104,7 +128,8 @@ def description(): :rtype: str ''' return _("The patch command apply the patches on the sources of " - "the application modules if there is any") + "the application products if there is any.\n\nexample:\nsat " + "patch SALOME-master --products qt,boost") def run(args, runner, logger): '''method that is called when salomeTools is called with patch parameter. @@ -119,26 +144,26 @@ def run(args, runner, logger): logger.write('Patching sources of the application %s\n' % src.printcolors.printcLabel(runner.cfg.VARS.application), 1) - src.printcolors.print_value(logger, 'out_dir', - runner.cfg.APPLICATION.out_dir, 2) + src.printcolors.print_value(logger, 'workdir', + runner.cfg.APPLICATION.workdir, 2) logger.write("\n", 2, False) - # Get the modules list with modules informations reagrding the options - modules_infos = prepare.get_modules_list(options, runner.cfg, logger) + # Get the products list with products informations regarding the options + products_infos = src.product.get_products_list(options, runner.cfg, logger) # Get the maximum name length in order to format the terminal display - max_module_name_len = 1 - if len(modules_infos) > 0: - max_module_name_len = max(map(lambda l: len(l), modules_infos[0])) + 4 + max_product_name_len = 1 + if len(products_infos) > 0: + max_product_name_len = max(map(lambda l: len(l), products_infos[0])) + 4 - # The loop on all the modules on which to apply the patches + # The loop on all the products on which to apply the patches good_result = 0 - for module_name, module_info in modules_infos: - # display and log - logger.write('%s: ' % src.printcolors.printcLabel(module_name), 3) - logger.write(' ' * (max_module_name_len - len(module_name)), 3, False) - logger.write("\n", 4, False) - return_code, patch_res = apply_patch(runner.cfg, module_info, logger) + for __, product_info in products_infos: + # Apply the patch + return_code, patch_res = apply_patch(runner.cfg, + product_info, + max_product_name_len, + logger) logger.write(patch_res, 1, False) if return_code: good_result += 1 @@ -146,16 +171,16 @@ def run(args, runner, logger): # Display the results (how much passed, how much failed, etc...) logger.write("\n", 2, False) - if good_result == len(modules_infos): + if good_result == len(products_infos): status = src.OK_STATUS res_count = "%d / %d" % (good_result, good_result) else: status = src.KO_STATUS - res_count = "%d / %d" % (good_result, len(modules_infos)) + res_count = "%d / %d" % (good_result, len(products_infos)) # write results logger.write("Patching sources of the application:", 1) logger.write(" " + src.printcolors.printc(status), 1, False) logger.write(" (%s)\n" % res_count, 1, False) - return len(modules_infos) - good_result \ No newline at end of file + return len(products_infos) - good_result