Salome HOME
get_salome_version returns integer, TODO use MajorMinorPatch
[tools/sat.git] / commands / compile.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 #  Copyright (C) 2010-2012  CEA/DEN
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18
19 import os
20 import re
21 import src
22 import src.debug as DBG
23
24 # Compatibility python 2/3 for input function
25 # input stays input for python 3 and input = raw_input for python 2
26 try: 
27     input = raw_input
28 except NameError: 
29     pass
30
31
32 # Define all possible option for the compile command :  sat compile <options>
33 parser = src.options.Options()
34 parser.add_option('p', 'products', 'list2', 'products',
35     _('Optional: products to compile. This option accepts a comma separated list.'))
36 parser.add_option('', 'with_fathers', 'boolean', 'fathers',
37     _("Optional: build all necessary products to the given product (KERNEL is "
38       "build before building GUI)."), False)
39 parser.add_option('', 'with_children', 'boolean', 'children',
40     _("Optional: build all products using the given product (all SMESH plugins"
41       " are build after SMESH)."), False)
42 parser.add_option('', 'clean_all', 'boolean', 'clean_all',
43     _("Optional: clean BUILD dir and INSTALL dir before building product."),
44     False)
45 parser.add_option('', 'clean_install', 'boolean', 'clean_install',
46     _("Optional: clean INSTALL dir before building product."), False)
47 parser.add_option('', 'make_flags', 'string', 'makeflags',
48     _("Optional: add extra options to the 'make' command."))
49 parser.add_option('', 'show', 'boolean', 'no_compile',
50     _("Optional: DO NOT COMPILE just show if products are installed or not."),
51     False)
52 parser.add_option('', 'stop_first_fail', 'boolean', 'stop_first_fail', _(
53                   "Optional: Stops the command at first product compilation"
54                   " fail."), False)
55 parser.add_option('', 'check', 'boolean', 'check', _(
56                   "Optional: execute the unit tests after compilation"), False)
57
58 parser.add_option('', 'clean_build_after', 'boolean', 'clean_build_after', 
59                   _('Optional: remove the build directory after successful compilation'), False)
60
61
62 def get_children(config, p_name_p_info):
63     l_res = []
64     p_name, __ = p_name_p_info
65     # Get all products of the application
66     products = config.APPLICATION.products
67     products_infos = src.product.get_products_infos(products, config)
68     for p_name_potential_child, p_info_potential_child in products_infos:
69         if ("depend" in p_info_potential_child and 
70                 p_name in p_info_potential_child.depend):
71             l_res.append(p_name_potential_child)
72     return l_res
73
74 def get_recursive_children(config, p_name_p_info, without_native_fixed=False):
75     """ Get the recursive list of the product that depend on 
76         the product defined by prod_info
77     
78     :param config Config: The global configuration
79     :param prod_info Config: The specific config of the product
80     :param without_native_fixed boolean: If true, do not include the fixed
81                                          or native products in the result
82     :return: The list of product_informations.
83     :rtype: List
84     """
85     p_name, __ = p_name_p_info
86     # Initialization of the resulting list
87     l_children = []
88     
89     # Get the direct children (not recursive)
90     l_direct_children = get_children(config, p_name_p_info)
91     # Minimal case : no child
92     if l_direct_children == []:
93         return []
94     # Add the children and call the function to get the children of the
95     # children
96     for child_name in l_direct_children:
97         l_children_name = [pn_pi[0] for pn_pi in l_children]
98         if child_name not in l_children_name:
99             if child_name not in config.APPLICATION.products:
100                 msg = _("The product %(child_name)s that is in %(product_nam"
101                         "e)s children is not present in application "
102                         "%(appli_name)s" % {"child_name" : child_name, 
103                                     "product_name" : p_name.name, 
104                                     "appli_name" : config.VARS.application})
105                 raise src.SatException(msg)
106             prod_info_child = src.product.get_product_config(config,
107                                                               child_name)
108             pname_pinfo_child = (prod_info_child.name, prod_info_child)
109             # Do not append the child if it is native or fixed and 
110             # the corresponding parameter is called
111             if without_native_fixed:
112                 if not(src.product.product_is_native(prod_info_child) or 
113                        src.product.product_is_fixed(prod_info_child)):
114                     l_children.append(pname_pinfo_child)
115             else:
116                 l_children.append(pname_pinfo_child)
117             # Get the children of the children
118             l_grand_children = get_recursive_children(config,
119                                 pname_pinfo_child,
120                                 without_native_fixed = without_native_fixed)
121             l_children += l_grand_children
122     return l_children
123
124 def get_recursive_fathers(config, p_name_p_info, without_native_fixed=False):
125     """ Get the recursive list of the dependencies of the product defined by
126         prod_info
127     
128     :param config Config: The global configuration
129     :param prod_info Config: The specific config of the product
130     :param without_native_fixed boolean: If true, do not include the fixed
131                                          or native products in the result
132     :return: The list of product_informations.
133     :rtype: List
134     """
135     p_name, p_info = p_name_p_info
136     # Initialization of the resulting list
137     l_fathers = []
138     # Minimal case : no dependencies
139     if "depend" not in p_info or p_info.depend == []:
140         return []
141     # Add the dependencies and call the function to get the dependencies of the
142     # dependencies
143     for father_name in p_info.depend:
144         l_fathers_name = [pn_pi[0] for pn_pi in l_fathers]
145         if father_name not in l_fathers_name:
146             if father_name not in config.APPLICATION.products:
147                 msg = _("The product %(father_name)s that is in %(product_nam"
148                         "e)s dependencies is not present in application "
149                         "%(appli_name)s" % {"father_name" : father_name, 
150                                     "product_name" : p_name, 
151                                     "appli_name" : config.VARS.application})
152                 raise src.SatException(msg)
153             prod_info_father = src.product.get_product_config(config,
154                                                               father_name)
155             pname_pinfo_father = (prod_info_father.name, prod_info_father)
156             # Do not append the father if it is native or fixed and 
157             # the corresponding parameter is called
158             if without_native_fixed:
159                 if not(src.product.product_is_native(prod_info_father) or 
160                        src.product.product_is_fixed(prod_info_father)):
161                     l_fathers.append(pname_pinfo_father)
162             else:
163                 l_fathers.append(pname_pinfo_father)
164             # Get the dependencies of the dependency
165             l_grand_fathers = get_recursive_fathers(config,
166                                 pname_pinfo_father,
167                                 without_native_fixed = without_native_fixed)
168             for item in l_grand_fathers:
169                 if item not in l_fathers:
170                     l_fathers.append(item)
171     return l_fathers
172
173 def sort_products(config, p_infos):
174     """ Sort the p_infos regarding the dependencies between the products
175     
176     :param config Config: The global configuration
177     :param p_infos list: List of (str, Config) => (product_name, product_info)
178     """
179     l_prod_sorted = src.deepcopy_list(p_infos)
180     for prod in p_infos:
181         l_fathers = get_recursive_fathers(config,
182                                           prod,
183                                           without_native_fixed=True)
184         l_fathers = [father for father in l_fathers if father in p_infos]
185         if l_fathers == []:
186             continue
187         for p_sorted in l_prod_sorted:
188             if p_sorted in l_fathers:
189                 l_fathers.remove(p_sorted)
190             if l_fathers==[]:
191                 l_prod_sorted.remove(prod)
192                 l_prod_sorted.insert(l_prod_sorted.index(p_sorted)+1, prod)
193                 break
194         
195     return l_prod_sorted
196
197 def extend_with_fathers(config, p_infos):
198     p_infos_res = src.deepcopy_list(p_infos)
199     for p_name_p_info in p_infos:
200         fathers = get_recursive_fathers(config,
201                                         p_name_p_info,
202                                         without_native_fixed=True)
203         for p_name_p_info_father in fathers:
204             if p_name_p_info_father not in p_infos_res:
205                 p_infos_res.append(p_name_p_info_father)
206     return p_infos_res
207
208 def extend_with_children(config, p_infos):
209     p_infos_res = src.deepcopy_list(p_infos)
210     for p_name_p_info in p_infos:
211         children = get_recursive_children(config,
212                                         p_name_p_info,
213                                         without_native_fixed=True)
214         for p_name_p_info_child in children:
215             if p_name_p_info_child not in p_infos_res:
216                 p_infos_res.append(p_name_p_info_child)
217     return p_infos_res    
218
219 def check_dependencies(config, p_name_p_info):
220     l_depends_not_installed = []
221     fathers = get_recursive_fathers(config, p_name_p_info, without_native_fixed=True)
222     for p_name_father, p_info_father in fathers:
223         if not(src.product.check_installation(p_info_father)):
224             l_depends_not_installed.append(p_name_father)
225     return l_depends_not_installed
226
227 def log_step(logger, header, step):
228     logger.write("\r%s%s" % (header, " " * 30), 3)
229     logger.write("\r%s%s" % (header, step), 3)
230     logger.flush()
231
232 def log_res_step(logger, res):
233     if res == 0:
234         logger.write("%s \n" % src.printcolors.printcSuccess("OK"), 4)
235         logger.flush()
236     else:
237         logger.write("%s \n" % src.printcolors.printcError("KO"), 4)
238         logger.flush()
239
240 def compile_all_products(sat, config, options, products_infos, logger):
241     '''Execute the proper configuration commands 
242        in each product build directory.
243
244     :param config Config: The global configuration
245     :param products_info list: List of 
246                                  (str, Config) => (product_name, product_info)
247     :param logger Logger: The logger instance to use for the display and logging
248     :return: the number of failing commands.
249     :rtype: int
250     '''
251     res = 0
252     for p_name_info in products_infos:
253         
254         p_name, p_info = p_name_info
255         
256         # Logging
257         len_end_line = 30
258         header = _("Compilation of %s") % src.printcolors.printcLabel(p_name)
259         header += " %s " % ("." * (len_end_line - len(p_name)))
260         logger.write(header, 3)
261         logger.flush()
262
263         # Do nothing if the product is not compilable
264         if not src.product.product_compiles(p_info):
265             log_step(logger, header, "ignored")
266             logger.write("\n", 3, False)
267             continue
268
269         # Do nothing if the product is native
270         if src.product.product_is_native(p_info):
271             log_step(logger, header, "native")
272             logger.write("\n", 3, False)
273             continue
274
275         # Clean the build and the install directories 
276         # if the corresponding options was called
277         if options.clean_all:
278             log_step(logger, header, "CLEAN BUILD AND INSTALL ")
279             sat.clean(config.VARS.application + 
280                       " --products " + p_name + 
281                       " --build --install",
282                       batch=True,
283                       verbose=0,
284                       logger_add_link = logger)
285
286         # DBG.write("Only for test of check_config_exists", src.product.check_config_exists(config, "/volatile/wambeke/SAT5/MATIX_V24_S840/INSTALL/PACKAGESPY", p_info, verbose=True), True)
287
288         # Clean the the install directory 
289         # if the corresponding option was called
290         if options.clean_install and not options.clean_all:
291             log_step(logger, header, "CLEAN INSTALL ")
292             sat.clean(config.VARS.application + 
293                       " --products " + p_name + 
294                       " --install",
295                       batch=True,
296                       verbose=0,
297                       logger_add_link = logger)
298         
299         # Recompute the product information to get the right install_dir
300         # (it could change if there is a clean of the install directory)
301         p_info = src.product.get_product_config(config, p_name)
302         
303         # Check if sources was already successfully installed
304         check_source = src.product.check_source(p_info)
305         if not options.no_compile: # don't check sources with option --show!
306             if not check_source:
307                 logger.write(_("Sources of product not found (try 'sat -h prepare') \n"))
308                 res += 1 # one more error
309                 continue
310         
311         if src.product.product_is_salome(p_info):
312             # For salome modules, we check if the sources of configuration modules are present
313             # configuration modules have the property "configure_dependency"
314
315             # get the list of all modules in application 
316             all_products_infos = src.product.get_products_infos(config.APPLICATION.products,
317                                                                 config)
318             check_source = True
319             # for configuration modules, check if sources are present
320             for product_name, product_info in all_products_infos:
321                 if ("properties" in product_info and
322                     "configure_dependency" in product_info.properties and
323                     product_info.properties.configure_dependency == "yes"):
324                     check_source = check_source and src.product.check_source(product_info)
325                     if not check_source:
326                         logger.write(_("\nERROR : SOURCES of %s not found! It is required for" 
327                                        " the configuration\n" % product_name))
328                         logger.write(_("        Get it with the command : sat prepare %s -p %s \n" % 
329                                       (config.APPLICATION.name, product_name)))
330             if not check_source:
331                 # if at least one configuration module is not present, we stop compilation
332                 res += 1
333                 continue
334         
335         # Check if it was already successfully installed
336         if src.product.check_installation(p_info):
337             logger.write(_("Already installed"))
338             logger.write(_(" in %s" % p_info.install_dir), 4)
339             logger.write(_("\n"))
340             continue
341         
342         # If the show option was called, do not launch the compilation
343         if options.no_compile:
344             logger.write(_("Not installed in %s\n" % p_info.install_dir))
345             continue
346         
347         # Check if the dependencies are installed
348         l_depends_not_installed = check_dependencies(config, p_name_info)
349         if len(l_depends_not_installed) > 0:
350             log_step(logger, header, "")
351             logger.write(src.printcolors.printcError(
352                     _("ERROR : the following product(s) is(are) mandatory: ")))
353             for prod_name in l_depends_not_installed:
354                 logger.write(src.printcolors.printcError(prod_name + " "))
355             logger.write("\n")
356             continue
357         
358         # Call the function to compile the product
359         res_prod, len_end_line, error_step = compile_product(
360              sat, p_name_info, config, options, logger, header, len_end_line)
361         
362         if res_prod != 0:
363             res += 1
364             
365             if error_step != "CHECK":
366                 # Clean the install directory if there is any
367                 logger.write(_(
368                             "Cleaning the install directory if there is any\n"),
369                              5)
370                 sat.clean(config.VARS.application + 
371                           " --products " + p_name + 
372                           " --install",
373                           batch=True,
374                           verbose=0,
375                           logger_add_link = logger)
376         else:
377             # Clean the build directory if the compilation and tests succeed
378             if options.clean_build_after:
379                 log_step(logger, header, "CLEAN BUILD")
380                 sat.clean(config.VARS.application + 
381                           " --products " + p_name + 
382                           " --build",
383                           batch=True,
384                           verbose=0,
385                           logger_add_link = logger)
386
387         # Log the result
388         if res_prod > 0:
389             logger.write("\r%s%s" % (header, " " * len_end_line), 3)
390             logger.write("\r" + header + src.printcolors.printcError("KO ") + error_step)
391             logger.write("\n==== %(KO)s in compile of %(name)s \n" %
392                 { "name" : p_name , "KO" : src.printcolors.printcInfo("ERROR")}, 4)
393             if error_step == "CHECK":
394                 logger.write(_("\nINSTALL directory = %s" % 
395                            src.printcolors.printcInfo(p_info.install_dir)), 3)
396             logger.flush()
397         else:
398             logger.write("\r%s%s" % (header, " " * len_end_line), 3)
399             logger.write("\r" + header + src.printcolors.printcSuccess("OK"))
400             logger.write(_("\nINSTALL directory = %s" % 
401                            src.printcolors.printcInfo(p_info.install_dir)), 3)
402             logger.write("\n==== %s \n" % src.printcolors.printcInfo("OK"), 4)
403             logger.write("\n==== Compilation of %(name)s %(OK)s \n" %
404                 { "name" : p_name , "OK" : src.printcolors.printcInfo("OK")}, 4)
405             logger.flush()
406         logger.write("\n", 3, False)
407         
408         
409         if res_prod != 0 and options.stop_first_fail:
410             break
411         
412     return res
413
414 def compile_product(sat, p_name_info, config, options, logger, header, len_end):
415     '''Execute the proper configuration command(s) 
416        in the product build directory.
417     
418     :param p_name_info tuple: (str, Config) => (product_name, product_info)
419     :param config Config: The global configuration
420     :param logger Logger: The logger instance to use for the display 
421                           and logging
422     :param header Str: the header to display when logging
423     :param len_end Int: the lenght of the the end of line (used in display)
424     :return: 1 if it fails, else 0.
425     :rtype: int
426     '''
427     
428     p_name, p_info = p_name_info
429           
430     # Get the build procedure from the product configuration.
431     # It can be :
432     # build_sources : autotools -> build_configure, configure, make, make install
433     # build_sources : cmake     -> cmake, make, make install
434     # build_sources : script    -> script executions
435     res = 0
436     if (src.product.product_is_autotools(p_info) or 
437                                           src.product.product_is_cmake(p_info)):
438         res, len_end_line, error_step = compile_product_cmake_autotools(sat,
439                                                                   p_name_info,
440                                                                   config,
441                                                                   options,
442                                                                   logger,
443                                                                   header,
444                                                                   len_end)
445     if src.product.product_has_script(p_info):
446         res, len_end_line, error_step = compile_product_script(sat,
447                                                                   p_name_info,
448                                                                   config,
449                                                                   options,
450                                                                   logger,
451                                                                   header,
452                                                                   len_end)
453
454     # Check that the install directory exists
455     if res==0 and not(os.path.exists(p_info.install_dir)):
456         res = 1
457         error_step = "NO INSTALL DIR"
458         msg = _("Error: despite the fact that all the steps ended successfully,"
459                 " no install directory was found !")
460         logger.write(src.printcolors.printcError(msg), 4)
461         logger.write("\n", 4)
462         return res, len_end, error_step
463     
464     # Add the config file corresponding to the dependencies/versions of the 
465     # product that have been successfully compiled
466     if res==0:       
467         logger.write(_("Add the config file in installation directory\n"), 5)
468         src.product.add_compile_config_file(p_info, config)
469         
470         if options.check:
471             # Do the unit tests (call the check command)
472             log_step(logger, header, "CHECK")
473             res_check = sat.check(
474                               config.VARS.application + " --products " + p_name,
475                               verbose = 0,
476                               logger_add_link = logger)
477             if res_check != 0:
478                 error_step = "CHECK"
479                 
480             res += res_check
481     
482     return res, len_end_line, error_step
483
484 def compile_product_cmake_autotools(sat,
485                                     p_name_info,
486                                     config,
487                                     options,
488                                     logger,
489                                     header,
490                                     len_end):
491     '''Execute the proper build procedure for autotools or cmake
492        in the product build directory.
493     
494     :param p_name_info tuple: (str, Config) => (product_name, product_info)
495     :param config Config: The global configuration
496     :param logger Logger: The logger instance to use for the display 
497                           and logging
498     :param header Str: the header to display when logging
499     :param len_end Int: the lenght of the the end of line (used in display)
500     :return: 1 if it fails, else 0.
501     :rtype: int
502     '''
503     p_name, p_info = p_name_info
504     
505     # Execute "sat configure", "sat make" and "sat install"
506     res = 0
507     error_step = ""
508     
509     # Logging and sat command call for configure step
510     len_end_line = len_end
511     log_step(logger, header, "CONFIGURE")
512     res_c = sat.configure(config.VARS.application + " --products " + p_name,
513                           verbose = 0,
514                           logger_add_link = logger)
515     log_res_step(logger, res_c)
516     res += res_c
517     
518     if res_c > 0:
519         error_step = "CONFIGURE"
520     else:
521         # Logging and sat command call for make step
522         # Logging take account of the fact that the product has a compilation 
523         # script or not
524         if src.product.product_has_script(p_info):
525             # if the product has a compilation script, 
526             # it is executed during make step
527             scrit_path_display = src.printcolors.printcLabel(
528                                                         p_info.compil_script)
529             log_step(logger, header, "SCRIPT " + scrit_path_display)
530             len_end_line = len(scrit_path_display)
531         else:
532             log_step(logger, header, "MAKE")
533         make_arguments = config.VARS.application + " --products " + p_name
534         # Get the make_flags option if there is any
535         if options.makeflags:
536             make_arguments += " --option -j" + options.makeflags
537         res_m = sat.make(make_arguments,
538                          verbose = 0,
539                          logger_add_link = logger)
540         log_res_step(logger, res_m)
541         res += res_m
542         
543         if res_m > 0:
544             error_step = "MAKE"
545         else: 
546             # Logging and sat command call for make install step
547             log_step(logger, header, "MAKE INSTALL")
548             res_mi = sat.makeinstall(config.VARS.application + 
549                                      " --products " + 
550                                      p_name,
551                                     verbose = 0,
552                                     logger_add_link = logger)
553
554             log_res_step(logger, res_mi)
555             res += res_mi
556             
557             if res_mi > 0:
558                 error_step = "MAKE INSTALL"
559                 
560     return res, len_end_line, error_step 
561
562 def compile_product_script(sat,
563                            p_name_info,
564                            config,
565                            options,
566                            logger,
567                            header,
568                            len_end):
569     '''Execute the script build procedure in the product build directory.
570     
571     :param p_name_info tuple: (str, Config) => (product_name, product_info)
572     :param config Config: The global configuration
573     :param logger Logger: The logger instance to use for the display 
574                           and logging
575     :param header Str: the header to display when logging
576     :param len_end Int: the lenght of the the end of line (used in display)
577     :return: 1 if it fails, else 0.
578     :rtype: int
579     '''
580     p_name, p_info = p_name_info
581     
582     # Execute "sat configure", "sat make" and "sat install"
583     error_step = ""
584     
585     # Logging and sat command call for the script step
586     scrit_path_display = src.printcolors.printcLabel(p_info.compil_script)
587     log_step(logger, header, "SCRIPT " + scrit_path_display)
588     len_end_line = len_end + len(scrit_path_display)
589     res = sat.script(config.VARS.application + " --products " + p_name,
590                      verbose = 0,
591                      logger_add_link = logger)
592     log_res_step(logger, res)
593               
594     return res, len_end_line, error_step 
595
596     
597 def description():
598     '''method that is called when salomeTools is called with --help option.
599     
600     :return: The text to display for the compile command description.
601     :rtype: str
602     '''
603     return _("The compile command constructs the products of the application"
604              "\n\nexample:\nsat compile SALOME-master --products KERNEL,GUI,"
605              "MEDCOUPLING --clean_all")
606   
607 def run(args, runner, logger):
608     '''method that is called when salomeTools is called with compile parameter.
609     '''
610     # DBG.write("compile runner.cfg", runner.cfg, True)
611     # Parse the options
612     (options, args) = parser.parse_args(args)
613
614     # Warn the user if he invoked the clean_all option 
615     # without --products option
616     if (options.clean_all and 
617         options.products is None and 
618         not runner.options.batch):
619         rep = input(_("You used --clean_all without specifying a product"
620                           " are you sure you want to continue? [Yes/No] "))
621         if rep.upper() != _("YES").upper():
622             return 0
623         
624     # check that the command has been called with an application
625     src.check_config_has_application( runner.cfg )
626
627     # Print some informations
628     logger.write(_('Executing the compile commands in the build '
629                                 'directories of the products of '
630                                 'the application %s\n') % 
631                 src.printcolors.printcLabel(runner.cfg.VARS.application), 1)
632     
633     info = [
634             (_("SOURCE directory"),
635              os.path.join(runner.cfg.APPLICATION.workdir, 'SOURCES')),
636             (_("BUILD directory"),
637              os.path.join(runner.cfg.APPLICATION.workdir, 'BUILD'))
638             ]
639     src.print_info(logger, info)
640
641     # Get the list of products to treat
642     products_infos = src.product.get_products_list(options, runner.cfg, logger)
643
644     if options.fathers:
645         # Extend the list with all recursive dependencies of the given products
646         products_infos = extend_with_fathers(runner.cfg, products_infos)
647
648     if options.children:
649         # Extend the list with all products that use the given products
650         products_infos = extend_with_children(runner.cfg, products_infos)
651
652     # Sort the list regarding the dependencies of the products
653     products_infos = sort_products(runner.cfg, products_infos)
654
655     
656     # Call the function that will loop over all the products and execute
657     # the right command(s)
658     res = compile_all_products(runner, runner.cfg, options, products_infos, logger)
659     
660     # Print the final state
661     nb_products = len(products_infos)
662     if res == 0:
663         final_status = "OK"
664     else:
665         final_status = "KO"
666    
667     logger.write(_("\nCompilation: %(status)s (%(valid_result)d/%(nb_products)d)\n") % \
668         { 'status': src.printcolors.printc(final_status), 
669           'valid_result': nb_products - res,
670           'nb_products': nb_products }, 1)    
671     
672     code = res
673     if code != 0:
674         code = 1
675     return code