Salome HOME
2117ee4dff62f8a461524e975935f388c33a8238
[tools/sat.git] / commands / package.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 stat
21 import shutil
22 import datetime
23 import tarfile
24 import codecs
25 import string
26 import glob
27 import pprint as PP
28 import sys
29 import src
30
31 from application import get_SALOME_modules
32 from  src.versionMinorMajorPatch import MinorMajorPatch as MMP
33 import src.debug as DBG
34
35 old_python = sys.version_info[0] == 2 and sys.version_info[1] <= 6
36
37 BINARY = "binary"
38 SOURCE = "Source"
39 PROJECT = "Project"
40 SAT = "Sat"
41
42 ARCHIVE_DIR = "ARCHIVES"
43 PROJECT_DIR = "PROJECT"
44
45 IGNORED_DIRS = [".git", ".svn"]
46 IGNORED_EXTENSIONS = []
47
48 PACKAGE_EXT=".tar.gz" # the extension we use for the packages
49
50 if src.architecture.is_windows():
51     PROJECT_TEMPLATE = """#!/usr/bin/env python
52 #-*- coding:utf-8 -*-
53
54 # The path to the archive root directory
55 root_path : $PWD + "/../"
56 # path to the PROJECT
57 project_path : $PWD + "/"
58
59 # Where to search the archives of the products
60 ARCHIVEPATH : $root_path + "ARCHIVES"
61 # Where to search the pyconf of the applications
62 APPLICATIONPATH : $project_path + "applications/"
63 # Where to search the pyconf of the products
64 PRODUCTPATH : $project_path + "products/"
65 # Where to search the pyconf of the jobs of the project
66 JOBPATH : $project_path + "jobs/"
67 # Where to search the pyconf of the machines of the project
68 MACHINEPATH : $project_path + "machines/"
69 """
70 else:
71     PROJECT_TEMPLATE = """#!/usr/bin/env python
72 #-*- coding:utf-8 -*-
73
74 # path to the PROJECT
75 project_path : $PWD + "/"
76
77 # Where to search the archives of the products
78 ARCHIVEPATH : $project_path + "ARCHIVES"
79 # Where to search the pyconf of the applications
80 APPLICATIONPATH : $project_path + "applications/"
81 # Where to search the pyconf of the products
82 PRODUCTPATH : $project_path + "products/"
83 # Where to search the pyconf of the jobs of the project
84 JOBPATH : $project_path + "jobs/"
85 # Where to search the pyconf of the machines of the project
86 MACHINEPATH : $project_path + "machines/"
87 """
88
89
90 LOCAL_TEMPLATE = ("""#!/usr/bin/env python
91 #-*- coding:utf-8 -*-
92
93   LOCAL :
94   {
95     base : 'default'
96     workdir : 'default'
97     log_dir : 'default'
98     archive_dir : 'default'
99     VCS : 'unknown'
100     tag : 'unknown'
101   }
102
103 PROJECTS :
104 {
105   project_file_paths :
106   [
107 $LOCAL.workdir + $VARS.sep + \"""" + PROJECT_DIR + """\" + $VARS.sep + "project.pyconf"
108   ]
109 }
110 """)
111
112 # Define all possible option for the package command :  sat package <options>
113 parser = src.options.Options()
114 parser.add_option('b', 'binaries', 'boolean', 'binaries',
115     _('Optional: Produce a binary package.'), False)
116 parser.add_option('f', 'force_creation', 'boolean', 'force_creation',
117     _('Optional: Only binary package: produce the archive even if '
118       'there are some missing products.'), False)
119 parser.add_option('s', 'sources', 'boolean', 'sources',
120     _('Optional: Produce a compilable archive of the sources of the '
121       'application.'), False)
122 parser.add_option('', 'bin_products', 'boolean', 'bin_products',
123     _('Optional: Create binary archives for all products.'), False)
124 parser.add_option('', 'with_vcs', 'boolean', 'with_vcs',
125     _('Optional: Do not make archive for products in VCS mode (git, cvs, svn). '
126       'Sat prepare will use VCS mode instead to retrieve them.'
127       '\n          Also, when combined with "--bin_products" option, restrict the building of product archives to VCS products.'),
128     False)
129 parser.add_option('', 'ftp', 'boolean', 'ftp',
130     _('Optional: Do not embed archives for products in archive mode.'
131     'Sat prepare will use ftp instead to retrieve them'),
132     False)
133 parser.add_option('e', 'exe', 'string', 'exe',
134     _('Optional: Produce an extra launcher based upon the exe given as argument.'), "")
135 parser.add_option('p', 'project', 'string', 'project',
136     _('Optional: Produce an archive that contains a project.'), "")
137 parser.add_option('t', 'salometools', 'boolean', 'sat',
138     _('Optional: Produce an archive that contains salomeTools.'), False)
139 parser.add_option('n', 'name', 'string', 'name',
140     _('Optional: The name or full path of the archive.'), None)
141 parser.add_option('', 'add_files', 'list2', 'add_files',
142     _('Optional: The list of additional files to add to the archive.'), [])
143 parser.add_option('', 'without_properties', 'properties', 'without_properties',
144     _('Optional: Filter the products by their properties.\n\tSyntax: '
145       '--without_properties <property>:<value>'))
146
147
148 def add_files(tar, name_archive, d_content, logger, f_exclude=None):
149     '''Create an archive containing all directories and files that are given in
150        the d_content argument.
151
152     :param tar tarfile: The tarfile instance used to make the archive.
153     :param name_archive str: The name of the archive to make.
154     :param d_content dict: The dictionary that contain all directories and files
155                            to add in the archive.
156                            d_content[label] =
157                                         (path_on_local_machine, path_in_archive)
158     :param logger Logger: the logging instance
159     :param f_exclude Function: the function that filters
160     :return: 0 if success, 1 if not.
161     :rtype: int
162     '''
163     # get the max length of the messages in order to make the display
164     max_len = len(max(d_content.keys(), key=len))
165
166     success = 0
167     # loop over each directory or file stored in the d_content dictionary
168     names = sorted(d_content.keys())
169     DBG.write("add tar names", names)
170
171     # used to avoid duplications (for pip install in python, or single_install_dir cases)
172     already_added=set()
173     for name in names:
174         # display information
175         len_points = max_len - len(name) + 3
176         local_path, archive_path = d_content[name]
177         in_archive = os.path.join(name_archive, archive_path)
178         logger.write(name + " " + len_points * "." + " "+ in_archive + " ", 3)
179         # Get the local path and the path in archive
180         # of the directory or file to add
181         # Add it in the archive
182         try:
183             key=local_path+"->"+in_archive
184             if key not in already_added:
185                 if old_python:
186                     tar.add(local_path,
187                                  arcname=in_archive,
188                                  exclude=exclude_VCS_and_extensions_26)
189                 else:
190                     tar.add(local_path,
191                                  arcname=in_archive,
192                                  filter=exclude_VCS_and_extensions)
193                 already_added.add(key)
194             logger.write(src.printcolors.printcSuccess(_("OK")), 3)
195         except Exception as e:
196             logger.write(src.printcolors.printcError(_("KO ")), 3)
197             logger.write(str(e), 3)
198             success = 1
199         logger.write("\n", 3)
200     return success
201
202
203 def exclude_VCS_and_extensions_26(filename):
204     ''' The function that is used to exclude from package the link to the
205         VCS repositories (like .git) (only for python 2.6)
206
207     :param filename Str: The filname to exclude (or not).
208     :return: True if the file has to be exclude
209     :rtype: Boolean
210     '''
211     for dir_name in IGNORED_DIRS:
212         if dir_name in filename:
213             return True
214     for extension in IGNORED_EXTENSIONS:
215         if filename.endswith(extension):
216             return True
217     return False
218
219 def exclude_VCS_and_extensions(tarinfo):
220     ''' The function that is used to exclude from package the link to the
221         VCS repositories (like .git)
222
223     :param filename Str: The filname to exclude (or not).
224     :return: None if the file has to be exclude
225     :rtype: tarinfo or None
226     '''
227     filename = tarinfo.name
228     for dir_name in IGNORED_DIRS:
229         if dir_name in filename:
230             return None
231     for extension in IGNORED_EXTENSIONS:
232         if filename.endswith(extension):
233             return None
234     return tarinfo
235
236 def produce_relative_launcher(config,
237                               logger,
238                               file_dir,
239                               file_name,
240                               binaries_dir_name):
241     '''Create a specific SALOME launcher for the binary package. This launcher
242        uses relative paths.
243
244     :param config Config: The global configuration.
245     :param logger Logger: the logging instance
246     :param file_dir str: the directory where to put the launcher
247     :param file_name str: The launcher name
248     :param binaries_dir_name str: the name of the repository where the binaries
249                                   are, in the archive.
250     :return: the path of the produced launcher
251     :rtype: str
252     '''
253
254     # set base mode to "no" for the archive - save current mode to restore it at the end
255     if "base" in config.APPLICATION:
256         base_setting=config.APPLICATION.base
257     else:
258         base_setting="maybe"
259     config.APPLICATION.base="no"
260
261     # get KERNEL installation path
262     kernel_info = src.product.get_product_config(config, "KERNEL")
263     kernel_base_name=os.path.basename(kernel_info.install_dir)
264     if kernel_info.install_mode == "base":
265         # case of kernel installed in base. the kernel install dir name is different in the archive
266         kernel_base_name=os.path.basename(os.path.dirname(kernel_info.install_dir))
267
268     kernel_root_dir = os.path.join(binaries_dir_name, kernel_base_name)
269
270     # set kernel bin dir (considering fhs property)
271     kernel_cfg = src.product.get_product_config(config, "KERNEL")
272     if src.get_property_in_product_cfg(kernel_cfg, "fhs"):
273         bin_kernel_install_dir = os.path.join(kernel_root_dir,"bin")
274     else:
275         bin_kernel_install_dir = os.path.join(kernel_root_dir,"bin","salome")
276
277     # check if the application contains an application module
278     # check also if the application has a distene product,
279     # in this case get its licence file name
280     l_product_info = src.product.get_products_infos(config.APPLICATION.products.keys(), config)
281     salome_application_name="Not defined"
282     distene_licence_file_name=False
283     for prod_name, prod_info in l_product_info:
284         # look for a "salome application" and a distene product
285         if src.get_property_in_product_cfg(prod_info, "is_distene") == "yes":
286             distene_licence_file_name = src.product.product_has_licence(prod_info,
287                                             config.PATHS.LICENCEPATH)
288         if src.get_property_in_product_cfg(prod_info, "is_salome_application") == "yes":
289             salome_application_name=prod_info.name
290
291     # if the application contains an application module, we set ABSOLUTE_APPLI_PATH to it
292     # if not we set it to KERNEL_INSTALL_DIR, which is sufficient, except for salome test
293     if salome_application_name == "Not defined":
294         app_root_dir=kernel_root_dir
295     else:
296         app_root_dir=os.path.join(binaries_dir_name, salome_application_name)
297
298     additional_env={}
299     additional_env['sat_bin_kernel_install_dir'] = "out_dir_Path + " +\
300                                                    config.VARS.sep + bin_kernel_install_dir
301     if "python3" in config.APPLICATION and config.APPLICATION.python3 == "yes":
302         additional_env['sat_python_version'] = 3
303     else:
304         additional_env['sat_python_version'] = 2
305
306     additional_env['ABSOLUTE_APPLI_PATH'] = "out_dir_Path" + config.VARS.sep + app_root_dir
307     launcher_name = src.get_launcher_name(config)
308     additional_env['APPLI'] = "out_dir_Path" + config.VARS.sep + file_name
309
310     # create an environment file writer
311     writer = src.environment.FileEnvWriter(config,
312                                            logger,
313                                            file_dir,
314                                            src_root=None,
315                                            env_info=None)
316
317     filepath = os.path.join(file_dir, file_name)
318     # Write
319     writer.write_env_file(filepath,
320                           False,  # for launch
321                           "cfgForPy",
322                           additional_env=additional_env,
323                           no_path_init=False,
324                           for_package = binaries_dir_name)
325
326     # Little hack to put out_dir_Path outside the strings
327     src.replace_in_file(filepath, 'r"out_dir_Path', 'out_dir_Path + r"' )
328     src.replace_in_file(filepath, "r'out_dir_Path + ", "out_dir_Path + r'" )
329
330     # A hack to put a call to a file for distene licence.
331     # It does nothing to an application that has no distene product
332     if distene_licence_file_name:
333         logger.write("Application has a distene licence file! We use it in package launcher", 5)
334         hack_for_distene_licence(filepath, distene_licence_file_name)
335
336     # change the rights in order to make the file executable for everybody
337     os.chmod(filepath,
338              stat.S_IRUSR |
339              stat.S_IRGRP |
340              stat.S_IROTH |
341              stat.S_IWUSR |
342              stat.S_IXUSR |
343              stat.S_IXGRP |
344              stat.S_IXOTH)
345
346     # restore modified setting by its initial value
347     config.APPLICATION.base=base_setting
348
349     return filepath
350
351 def hack_for_distene_licence(filepath, licence_file):
352     '''Replace the distene licence env variable by a call to a file.
353
354     :param filepath Str: The path to the launcher to modify.
355     '''
356     shutil.move(filepath, filepath + "_old")
357     fileout= filepath
358     filein = filepath + "_old"
359     fin = open(filein, "r")
360     fout = open(fileout, "w")
361     text = fin.readlines()
362     # Find the Distene section
363     num_line = -1
364     for i,line in enumerate(text):
365         if "# Set DISTENE License" in line:
366             num_line = i
367             break
368     if num_line == -1:
369         # No distene product, there is nothing to do
370         fin.close()
371         for line in text:
372             fout.write(line)
373         fout.close()
374         return
375     del text[num_line +1]
376     del text[num_line +1]
377     text_to_insert ="""    try:
378         distene_licence_file=r"%s"
379         if sys.version_info[0] >= 3 and sys.version_info[1] >= 5:
380             import importlib.util
381             spec_dist = importlib.util.spec_from_file_location("distene_licence", distene_licence_file)
382             distene=importlib.util.module_from_spec(spec_dist)
383             spec_dist.loader.exec_module(distene)
384         else:
385             import imp
386             distene = imp.load_source('distene_licence', distene_licence_file)
387         distene.set_distene_variables(context)
388     except:
389         pass\n"""  % licence_file
390     text.insert(num_line + 1, text_to_insert)
391     for line in text:
392         fout.write(line)
393     fin.close()
394     fout.close()
395     return
396
397 def produce_relative_env_files(config,
398                               logger,
399                               file_dir,
400                               binaries_dir_name,
401                               exe_name=None):
402     '''Create some specific environment files for the binary package. These
403        files use relative paths.
404
405     :param config Config: The global configuration.
406     :param logger Logger: the logging instance
407     :param file_dir str: the directory where to put the files
408     :param binaries_dir_name str: the name of the repository where the binaries
409                                   are, in the archive.
410     :param exe_name str: if given generate a launcher executing exe_name
411     :return: the list of path of the produced environment files
412     :rtype: List
413     '''
414
415     # set base mode to "no" for the archive - save current mode to restore it at the end
416     if "base" in config.APPLICATION:
417         base_setting=config.APPLICATION.base
418     else:
419         base_setting="maybe"
420     config.APPLICATION.base="no"
421
422     # create an environment file writer
423     writer = src.environment.FileEnvWriter(config,
424                                            logger,
425                                            file_dir,
426                                            src_root=None)
427
428     if src.architecture.is_windows():
429       shell = "bat"
430       filename  = "env_launch.bat"
431     else:
432       shell = "bash"
433       filename  = "env_launch.sh"
434
435     if exe_name:
436         filename=os.path.basename(exe_name)
437
438     # Write
439     filepath = writer.write_env_file(filename,
440                           False, # for launch
441                           shell,
442                           for_package = binaries_dir_name)
443
444     # Little hack to put out_dir_Path as environment variable
445     if src.architecture.is_windows() :
446       src.replace_in_file(filepath, '"out_dir_Path', '"%out_dir_Path%' )
447       src.replace_in_file(filepath, '=out_dir_Path', '=%out_dir_Path%' )
448       src.replace_in_file(filepath, ';out_dir_Path', ';%out_dir_Path%' )
449     else:
450       src.replace_in_file(filepath, '"out_dir_Path', '"${out_dir_Path}' )
451       src.replace_in_file(filepath, ':out_dir_Path', ':${out_dir_Path}' )
452       src.replace_in_file(filepath, ';out_dir_Path', ';${out_dir_Path}' )
453
454     if exe_name:
455         if src.architecture.is_windows():
456             cmd="\n\nrem Launch exe with user arguments\n%s " % exe_name + "%*"
457         else:
458             cmd='\n\n# Launch exe with user arguments\n%s "$*"' % exe_name
459         with open(filepath, "a") as exe_launcher:
460             exe_launcher.write(cmd)
461
462     # change the rights in order to make the file executable for everybody
463     os.chmod(filepath,
464              stat.S_IRUSR |
465              stat.S_IRGRP |
466              stat.S_IROTH |
467              stat.S_IWUSR |
468              stat.S_IXUSR |
469              stat.S_IXGRP |
470              stat.S_IXOTH)
471
472     # restore modified setting by its initial value
473     config.APPLICATION.base=base_setting
474
475     return filepath
476
477 def produce_install_bin_file(config,
478                              logger,
479                              file_dir,
480                              d_sub,
481                              file_name):
482     '''Create a bash shell script which do substitutions in BIRARIES dir
483        in order to use it for extra compilations.
484
485     :param config Config: The global configuration.
486     :param logger Logger: the logging instance
487     :param file_dir str: the directory where to put the files
488     :param d_sub, dict: the dictionnary that contains the substitutions to be done
489     :param file_name str: the name of the install script file
490     :return: the produced file
491     :rtype: str
492     '''
493     # Write
494     filepath = os.path.join(file_dir, file_name)
495     # open the file and write into it
496     # use codec utf-8 as sat variables are in unicode
497     with codecs.open(filepath, "w", 'utf-8') as installbin_file:
498         installbin_template_path = os.path.join(config.VARS.internal_dir,
499                                         "INSTALL_BIN.template")
500
501         # build the name of the directory that will contain the binaries
502         binaries_dir_name = config.INTERNAL.config.binary_dir + config.VARS.dist
503         # build the substitution loop
504         loop_cmd = "for f in $(grep -RIl"
505         for key in d_sub:
506             loop_cmd += " -e "+ key
507         loop_cmd += ' ' + config.INTERNAL.config.install_dir +\
508                     '); do\n     sed -i "\n'
509         for key in d_sub:
510             loop_cmd += "        s?" + key + "?$(pwd)/" + d_sub[key] + "?g\n"
511         loop_cmd += '            " $f\ndone'
512
513         d={}
514         d["BINARIES_DIR"] = binaries_dir_name
515         d["SUBSTITUTION_LOOP"]=loop_cmd
516         d["INSTALL_DIR"]=config.INTERNAL.config.install_dir
517
518         # substitute the template and write it in file
519         content=src.template.substitute(installbin_template_path, d)
520         installbin_file.write(content)
521         # change the rights in order to make the file executable for everybody
522         os.chmod(filepath,
523                  stat.S_IRUSR |
524                  stat.S_IRGRP |
525                  stat.S_IROTH |
526                  stat.S_IWUSR |
527                  stat.S_IXUSR |
528                  stat.S_IXGRP |
529                  stat.S_IXOTH)
530
531     return filepath
532
533 def product_appli_creation_script(config,
534                                   logger,
535                                   file_dir,
536                                   binaries_dir_name):
537     '''Create a script that can produce an application (EDF style) in the binary
538        package.
539
540     :param config Config: The global configuration.
541     :param logger Logger: the logging instance
542     :param file_dir str: the directory where to put the file
543     :param binaries_dir_name str: the name of the repository where the binaries
544                                   are, in the archive.
545     :return: the path of the produced script file
546     :rtype: Str
547     '''
548     template_name = "create_appli.py.for_bin_packages.template"
549     template_path = os.path.join(config.VARS.internal_dir, template_name)
550     text_to_fill = open(template_path, "r").read()
551     text_to_fill = text_to_fill.replace("TO BE FILLED 1",
552                                         '"' + binaries_dir_name + '"')
553
554     text_to_add = ""
555     for product_name in get_SALOME_modules(config):
556         product_info = src.product.get_product_config(config, product_name)
557
558         if src.product.product_is_smesh_plugin(product_info):
559             continue
560
561         if 'install_dir' in product_info and bool(product_info.install_dir):
562             if src.product.product_is_cpp(product_info):
563                 # cpp module
564                 for cpp_name in src.product.get_product_components(product_info):
565                     line_to_add = ("<module name=\"" +
566                                    cpp_name +
567                                    "\" gui=\"yes\" path=\"''' + "
568                                    "os.path.join(dir_bin_name, \"" +
569                                    cpp_name + "\") + '''\"/>")
570             else:
571                 # regular module
572                 line_to_add = ("<module name=\"" +
573                                product_name +
574                                "\" gui=\"yes\" path=\"''' + "
575                                "os.path.join(dir_bin_name, \"" +
576                                product_name + "\") + '''\"/>")
577             text_to_add += line_to_add + "\n"
578
579     filled_text = text_to_fill.replace("TO BE FILLED 2", text_to_add)
580
581     tmp_file_path = os.path.join(file_dir, "create_appli.py")
582     ff = open(tmp_file_path, "w")
583     ff.write(filled_text)
584     ff.close()
585
586     # change the rights in order to make the file executable for everybody
587     os.chmod(tmp_file_path,
588              stat.S_IRUSR |
589              stat.S_IRGRP |
590              stat.S_IROTH |
591              stat.S_IWUSR |
592              stat.S_IXUSR |
593              stat.S_IXGRP |
594              stat.S_IXOTH)
595
596     return tmp_file_path
597
598 def bin_products_archives(config, logger, only_vcs):
599     '''Prepare binary packages for all products
600     :param config Config: The global configuration.
601     :return: the error status
602     :rtype: bool
603     '''
604
605     logger.write("Make %s binary archives\n" % config.VARS.dist)
606     # Get the default directory where to put the packages
607     binpackage_path = os.path.join(config.APPLICATION.workdir, "PACKAGE", "products")
608     src.ensure_path_exists(binpackage_path)
609     # Get the list of product installation to add to the archive
610     l_products_name = sorted(config.APPLICATION.products.keys())
611     l_product_info = src.product.get_products_infos(l_products_name,
612                                                     config)
613     # first loop on products : filter products, analyse properties,
614     # and store the information that will be used to create the archive in the second loop
615     l_not_installed=[] # store not installed products for warning at the end
616     for prod_name, prod_info in l_product_info:
617         # ignore the native and fixed products for install directories
618         if (src.get_property_in_product_cfg(prod_info, "not_in_package") == "yes"
619                 or src.product.product_is_native(prod_info)
620                 or src.product.product_is_fixed(prod_info)
621                 or not src.product.product_compiles(prod_info)):
622             continue
623         if only_vcs and not src.product.product_is_vcs(prod_info):
624             continue
625         if not src.product.check_installation(config, prod_info):
626             l_not_installed.append(prod_name)
627             continue  # product is not installed, we skip it
628         # prepare call to make_bin_archive
629         path_targz_prod = os.path.join(binpackage_path, prod_name + '-' + prod_info.version.replace("/", "_") + "-" + config.VARS.dist + PACKAGE_EXT)
630         targz_prod = tarfile.open(path_targz_prod, mode='w:gz')
631         bin_path = prod_info.install_dir
632         targz_prod.add(bin_path)
633         targz_prod.close()
634         # Python program to find MD5 hash value of a file
635         import hashlib
636         with open(path_targz_prod,"rb") as f:
637             bytes = f.read() # read file as bytes
638             readable_hash = hashlib.md5(bytes).hexdigest();
639             with open(path_targz_prod+".md5", "w") as md5sum:
640                md5sum.write("%s  %s" % (readable_hash, os.path.basename(path_targz_prod)))
641             logger.write("   archive : %s   (md5sum = %s)\n" % (path_targz_prod, readable_hash))
642
643     return 0
644
645 def binary_package(config, logger, options, tmp_working_dir):
646     '''Prepare a dictionary that stores all the needed directories and files to
647        add in a binary package.
648
649     :param config Config: The global configuration.
650     :param logger Logger: the logging instance
651     :param options OptResult: the options of the launched command
652     :param tmp_working_dir str: The temporary local directory containing some
653                                 specific directories or files needed in the
654                                 binary package
655     :return: the dictionary that stores all the needed directories and files to
656              add in a binary package.
657              {label : (path_on_local_machine, path_in_archive)}
658     :rtype: dict
659     '''
660
661     # Get the list of product installation to add to the archive
662     l_products_name = sorted(config.APPLICATION.products.keys())
663     l_product_info = src.product.get_products_infos(l_products_name,
664                                                     config)
665
666     # suppress compile time products for binaries-only archives
667     if not options.sources:
668         update_config(config, logger, "compile_time", "yes")
669
670     l_install_dir = []
671     l_source_dir = []
672     l_not_installed = []
673     l_sources_not_present = []
674     generate_mesa_launcher = False  # a flag to know if we generate a mesa launcher
675     if ("APPLICATION" in config  and
676         "properties"  in config.APPLICATION  and
677         "mesa_launcher_in_package"    in config.APPLICATION.properties  and
678         config.APPLICATION.properties.mesa_launcher_in_package == "yes") :
679             generate_mesa_launcher=True
680
681     # first loop on products : filter products, analyse properties,
682     # and store the information that will be used to create the archive in the second loop
683     for prod_name, prod_info in l_product_info:
684         # skip product with property not_in_package set to yes
685         if src.get_property_in_product_cfg(prod_info, "not_in_package") == "yes":
686             continue
687
688         # Add the sources of the products that have the property
689         # sources_in_package : "yes"
690         if src.get_property_in_product_cfg(prod_info,
691                                            "sources_in_package") == "yes":
692             if os.path.exists(prod_info.source_dir):
693                 l_source_dir.append((prod_name, prod_info.source_dir))
694             else:
695                 l_sources_not_present.append(prod_name)
696
697         # ignore the native and fixed products for install directories
698         if (src.product.product_is_native(prod_info)
699                 or src.product.product_is_fixed(prod_info)
700                 or not src.product.product_compiles(prod_info)):
701             continue
702         #
703         # products with single_dir property will be installed in the PRODUCTS directory of the archive
704         is_single_dir=(src.appli_test_property(config,"single_install_dir", "yes") and \
705                        src.product.product_test_property(prod_info,"single_install_dir", "yes"))
706         if src.product.check_installation(config, prod_info):
707             l_install_dir.append((prod_name, prod_info.name, prod_info.install_dir,
708                                   is_single_dir, prod_info.install_mode))
709         else:
710             l_not_installed.append(prod_name)
711
712         # Add also the cpp generated modules (if any)
713         if src.product.product_is_cpp(prod_info):
714             # cpp module
715             for name_cpp in src.product.get_product_components(prod_info):
716                 install_dir = os.path.join(config.APPLICATION.workdir,
717                                            config.INTERNAL.config.install_dir,
718                                            name_cpp)
719                 if os.path.exists(install_dir):
720                     l_install_dir.append((name_cpp, name_cpp, install_dir, False, "value"))
721                 else:
722                     l_not_installed.append(name_cpp)
723
724     # check the name of the directory that (could) contains the binaries
725     # from previous detar
726     binaries_from_detar = os.path.join(
727                               config.APPLICATION.workdir,
728                               config.INTERNAL.config.binary_dir + config.VARS.dist)
729     if os.path.exists(binaries_from_detar):
730          logger.write("""
731 WARNING: existing binaries directory from previous detar installation:
732          %s
733          To make new package from this, you have to:
734          1) install binaries in INSTALL directory with the script "install_bin.sh"
735             see README file for more details
736          2) or recompile everything in INSTALL with "sat compile" command
737             this step is long, and requires some linux packages to be installed
738             on your system\n
739 """ % binaries_from_detar)
740
741     # Print warning or error if there are some missing products
742     if len(l_not_installed) > 0:
743         text_missing_prods = ""
744         for p_name in l_not_installed:
745             text_missing_prods += " - " + p_name + "\n"
746         if not options.force_creation:
747             msg = _("ERROR: there are missing product installations:")
748             logger.write("%s\n%s" % (src.printcolors.printcError(msg),
749                                      text_missing_prods),
750                          1)
751             raise src.SatException(msg)
752         else:
753             msg = _("WARNING: there are missing products installations:")
754             logger.write("%s\n%s" % (src.printcolors.printcWarning(msg),
755                                      text_missing_prods),
756                          1)
757
758     # Do the same for sources
759     if len(l_sources_not_present) > 0:
760         text_missing_prods = ""
761         for p_name in l_sources_not_present:
762             text_missing_prods += "-" + p_name + "\n"
763         if not options.force_creation:
764             msg = _("ERROR: there are missing product sources:")
765             logger.write("%s\n%s" % (src.printcolors.printcError(msg),
766                                      text_missing_prods),
767                          1)
768             raise src.SatException(msg)
769         else:
770             msg = _("WARNING: there are missing products sources:")
771             logger.write("%s\n%s" % (src.printcolors.printcWarning(msg),
772                                      text_missing_prods),
773                          1)
774
775     # construct the name of the directory that will contain the binaries
776     if src.architecture.is_windows():
777         binaries_dir_name = config.INTERNAL.config.binary_dir
778     else:
779         binaries_dir_name = config.INTERNAL.config.binary_dir + config.VARS.dist
780     # construct the correlation table between the product names, there
781     # actual install directories and there install directory in archive
782     d_products = {}
783     for prod_name, prod_info_name, install_dir, is_single_dir, install_mode in l_install_dir:
784         prod_base_name=os.path.basename(install_dir)
785         if install_mode == "base":
786             # case of a products installed in base.
787             # because the archive is in base:no mode, the name of the install dir is different inside archive
788             # we set it to the product name or by PRODUCTS if single-dir
789             if is_single_dir:
790                 prod_base_name=config.INTERNAL.config.single_install_dir
791             else:
792                 prod_base_name=prod_info_name
793         path_in_archive = os.path.join(binaries_dir_name, prod_base_name)
794         d_products[prod_name + " (bin)"] = (install_dir, path_in_archive)
795
796     for prod_name, source_dir in l_source_dir:
797         path_in_archive = os.path.join("SOURCES", prod_name)
798         d_products[prod_name + " (sources)"] = (source_dir, path_in_archive)
799
800     # create an archives of compilation logs, and insert it into the tarball
801     logpath=os.path.join(config.APPLICATION.workdir, "LOGS")
802     path_targz_logs = os.path.join(tmp_working_dir, "logs.tgz")
803     tar_log = tarfile.open(path_targz_logs, mode='w:gz')
804     tar_log.add(logpath, arcname="LOGS")
805     tar_log.close()
806     d_products["LOGS"] = (path_targz_logs, "logs.tgz")
807
808     # for packages of SALOME applications including KERNEL,
809     # we produce a salome launcher or a virtual application (depending on salome version)
810     if 'KERNEL' in config.APPLICATION.products:
811         VersionSalome = src.get_salome_version(config)
812         # Case where SALOME has the launcher that uses the SalomeContext API
813         if VersionSalome >= MMP([7,3,0]):
814             # create the relative launcher and add it to the files to add
815             launcher_name = src.get_launcher_name(config)
816             launcher_package = produce_relative_launcher(config,
817                                                  logger,
818                                                  tmp_working_dir,
819                                                  launcher_name,
820                                                  binaries_dir_name)
821             d_products["launcher"] = (launcher_package, launcher_name)
822
823             # if the application contains mesa products, we generate in addition to the
824             # classical salome launcher a launcher using mesa and called mesa_salome
825             # (the mesa launcher will be used for remote usage through ssh).
826             if generate_mesa_launcher:
827                 #if there is one : store the use_mesa property
828                 restore_use_mesa_option=None
829                 if ('properties' in config.APPLICATION and
830                     'use_mesa' in config.APPLICATION.properties):
831                     restore_use_mesa_option = config.APPLICATION.properties.use_mesa
832
833                 # activate mesa property, and generate a mesa launcher
834                 src.activate_mesa_property(config)  #activate use_mesa property
835                 launcher_mesa_name="mesa_"+launcher_name
836                 launcher_package_mesa = produce_relative_launcher(config,
837                                                      logger,
838                                                      tmp_working_dir,
839                                                      launcher_mesa_name,
840                                                      binaries_dir_name)
841                 d_products["launcher (mesa)"] = (launcher_package_mesa, launcher_mesa_name)
842
843                 # if there was a use_mesa value, we restore it
844                 # else we set it to the default value "no"
845                 if restore_use_mesa_option != None:
846                     config.APPLICATION.properties.use_mesa=restore_use_mesa_option
847                 else:
848                     config.APPLICATION.properties.use_mesa="no"
849
850             if options.sources:
851                 # if we mix binaries and sources, we add a copy of the launcher,
852                 # prefixed  with "bin",in order to avoid clashes
853                 launcher_copy_name="bin"+launcher_name
854                 launcher_package_copy = produce_relative_launcher(config,
855                                                      logger,
856                                                      tmp_working_dir,
857                                                      launcher_copy_name,
858                                                      binaries_dir_name)
859                 d_products["launcher (copy)"] = (launcher_package_copy, launcher_copy_name)
860         else:
861             # Provide a script for the creation of an application EDF style
862             appli_script = product_appli_creation_script(config,
863                                                         logger,
864                                                         tmp_working_dir,
865                                                         binaries_dir_name)
866
867             d_products["appli script"] = (appli_script, "create_appli.py")
868
869     # Put also the environment file
870     env_file = produce_relative_env_files(config,
871                                            logger,
872                                            tmp_working_dir,
873                                            binaries_dir_name)
874
875     if src.architecture.is_windows():
876       filename  = "env_launch.bat"
877     else:
878       filename  = "env_launch.sh"
879     d_products["environment file"] = (env_file, filename)
880
881     # If option exe, produce an extra launcher based on specified exe
882     if options.exe:
883         exe_file = produce_relative_env_files(config,
884                                               logger,
885                                               tmp_working_dir,
886                                               binaries_dir_name,
887                                               options.exe)
888
889         if src.architecture.is_windows():
890           filename  = os.path.basename(options.exe) + ".bat"
891         else:
892           filename  = os.path.basename(options.exe) + ".sh"
893         d_products["exe file"] = (exe_file, filename)
894
895
896     return d_products
897
898 def source_package(sat, config, logger, options, tmp_working_dir):
899     '''Prepare a dictionary that stores all the needed directories and files to
900        add in a source package.
901
902     :param config Config: The global configuration.
903     :param logger Logger: the logging instance
904     :param options OptResult: the options of the launched command
905     :param tmp_working_dir str: The temporary local directory containing some
906                                 specific directories or files needed in the
907                                 binary package
908     :return: the dictionary that stores all the needed directories and files to
909              add in a source package.
910              {label : (path_on_local_machine, path_in_archive)}
911     :rtype: dict
912     '''
913
914     d_archives={}
915     # Get all the products that are prepared using an archive
916     # unless ftp mode is specified (in this case the user of the
917     # archive will get the sources through the ftp mode of sat prepare
918     if not options.ftp:
919         logger.write("Find archive products ... ")
920         d_archives, l_pinfo_vcs = get_archives(config, logger)
921         logger.write("Done\n")
922
923     d_archives_vcs = {}
924     if not options.with_vcs and len(l_pinfo_vcs) > 0:
925         # Make archives with the products that are not prepared using an archive
926         # (git, cvs, svn, etc)
927         logger.write("Construct archives for vcs products ... ")
928         d_archives_vcs = get_archives_vcs(l_pinfo_vcs,
929                                           sat,
930                                           config,
931                                           logger,
932                                           tmp_working_dir)
933         logger.write("Done\n")
934
935     # Create a project
936     logger.write("Create the project ... ")
937     d_project = create_project_for_src_package(config,
938                                                tmp_working_dir,
939                                                options.with_vcs,
940                                                options.ftp)
941     logger.write("Done\n")
942
943     # Add salomeTools
944     tmp_sat = add_salomeTools(config, tmp_working_dir)
945     d_sat = {"salomeTools" : (tmp_sat, "sat")}
946
947     # Add a sat symbolic link if not win
948     if not src.architecture.is_windows():
949         try:
950             t = os.getcwd()
951         except:
952             # In the jobs, os.getcwd() can fail
953             t = config.LOCAL.workdir
954         os.chdir(tmp_working_dir)
955
956         # create a symlink, to avoid reference with "salomeTool/.."
957         os.chdir("PROJECT")
958         if os.path.lexists("ARCHIVES"):
959             os.remove("ARCHIVES")
960         os.symlink("../ARCHIVES", "ARCHIVES")
961         os.chdir(t)
962
963         d_sat["sat archive link"] = (os.path.join(tmp_working_dir,"PROJECT", "ARCHIVES"),
964                                      os.path.join("PROJECT", "ARCHIVES"))
965
966     d_source = src.merge_dicts(d_archives, d_archives_vcs, d_project, d_sat)
967     return d_source
968
969 def get_archives(config, logger):
970     '''Find all the products that are get using an archive and all the products
971        that are get using a vcs (git, cvs, svn) repository.
972
973     :param config Config: The global configuration.
974     :param logger Logger: the logging instance
975     :return: the dictionary {name_product :
976              (local path of its archive, path in the package of its archive )}
977              and the list of specific configuration corresponding to the vcs
978              products
979     :rtype: (Dict, List)
980     '''
981     # Get the list of product informations
982     l_products_name = config.APPLICATION.products.keys()
983     l_product_info = src.product.get_products_infos(l_products_name,
984                                                     config)
985     d_archives = {}
986     l_pinfo_vcs = []
987     for p_name, p_info in l_product_info:
988         # skip product with property not_in_package set to yes
989         if src.get_property_in_product_cfg(p_info, "not_in_package") == "yes":
990             continue
991         # ignore the native and fixed products
992         if (src.product.product_is_native(p_info)
993                 or src.product.product_is_fixed(p_info)):
994             continue
995         if p_info.get_source == "archive":
996             archive_path = p_info.archive_info.archive_name
997             archive_name = os.path.basename(archive_path)
998             d_archives[p_name] = (archive_path,
999                                   os.path.join(ARCHIVE_DIR, archive_name))
1000             if (src.appli_test_property(config,"pip", "yes") and
1001                 src.product.product_test_property(p_info,"pip", "yes")):
1002                 # if pip mode is activated, and product is managed by pip
1003                 pip_wheels_dir=os.path.join(config.LOCAL.archive_dir,"wheels")
1004                 pip_wheel_pattern=os.path.join(pip_wheels_dir,
1005                     "%s-%s*" % (p_info.name, p_info.version))
1006                 pip_wheel_path=glob.glob(pip_wheel_pattern)
1007                 msg_pip_not_found="Error in get_archive, pip wheel for "\
1008                                   "product %s-%s was not found in %s directory"
1009                 msg_pip_two_or_more="Error in get_archive, several pip wheels for "\
1010                                   "product %s-%s were found in %s directory"
1011                 if len(pip_wheel_path)==0:
1012                     raise src.SatException(msg_pip_not_found %\
1013                         (p_info.name, p_info.version, pip_wheels_dir))
1014                 if len(pip_wheel_path)>1:
1015                     raise src.SatException(msg_pip_two_or_more %\
1016                         (p_info.name, p_info.version, pip_wheels_dir))
1017
1018                 pip_wheel_name=os.path.basename(pip_wheel_path[0])
1019                 d_archives[p_name+" (pip wheel)"]=(pip_wheel_path[0],
1020                     os.path.join(ARCHIVE_DIR, "wheels", pip_wheel_name))
1021         else:
1022             # this product is not managed by archive,
1023             # an archive of the vcs directory will be created by get_archive_vcs
1024             l_pinfo_vcs.append((p_name, p_info))
1025
1026     return d_archives, l_pinfo_vcs
1027
1028 def add_salomeTools(config, tmp_working_dir):
1029     '''Prepare a version of salomeTools that has a specific local.pyconf file
1030        configured for a source package.
1031
1032     :param config Config: The global configuration.
1033     :param tmp_working_dir str: The temporary local directory containing some
1034                                 specific directories or files needed in the
1035                                 source package
1036     :return: The path to the local salomeTools directory to add in the package
1037     :rtype: str
1038     '''
1039     # Copy sat in the temporary working directory
1040     sat_tmp_path = src.Path(os.path.join(tmp_working_dir, "salomeTools"))
1041     sat_running_path = src.Path(config.VARS.salometoolsway)
1042     sat_running_path.copy(sat_tmp_path)
1043
1044     # Update the local.pyconf file that contains the path to the project
1045     local_pyconf_name = "local.pyconf"
1046     local_pyconf_dir = os.path.join(tmp_working_dir, "salomeTools", "data")
1047     local_pyconf_file = os.path.join(local_pyconf_dir, local_pyconf_name)
1048     # Remove the .pyconf file in the root directory of salomeTools if there is
1049     # any. (For example when launching jobs, a pyconf file describing the jobs
1050     # can be here and is not useful)
1051     files_or_dir_SAT = os.listdir(os.path.join(tmp_working_dir, "salomeTools"))
1052     for file_or_dir in files_or_dir_SAT:
1053         if file_or_dir.endswith(".pyconf") or file_or_dir.endswith(".txt"):
1054             file_path = os.path.join(tmp_working_dir,
1055                                      "salomeTools",
1056                                      file_or_dir)
1057             os.remove(file_path)
1058
1059     ff = open(local_pyconf_file, "w")
1060     ff.write(LOCAL_TEMPLATE)
1061     ff.close()
1062
1063     return sat_tmp_path.path
1064
1065 def get_archives_vcs(l_pinfo_vcs, sat, config, logger, tmp_working_dir):
1066     '''For sources package that require that all products are get using an
1067        archive, one has to create some archive for the vcs products.
1068        So this method calls the clean and source command of sat and then create
1069        the archives.
1070
1071     :param l_pinfo_vcs List: The list of specific configuration corresponding to
1072                              each vcs product
1073     :param sat Sat: The Sat instance that can be called to clean and source the
1074                     products
1075     :param config Config: The global configuration.
1076     :param logger Logger: the logging instance
1077     :param tmp_working_dir str: The temporary local directory containing some
1078                                 specific directories or files needed in the
1079                                 source package
1080     :return: the dictionary that stores all the archives to add in the source
1081              package. {label : (path_on_local_machine, path_in_archive)}
1082     :rtype: dict
1083     '''
1084     # clean the source directory of all the vcs products, then use the source
1085     # command and thus construct an archive that will not contain the patches
1086     l_prod_names = [pn for pn, __ in l_pinfo_vcs]
1087     if False: # clean is dangerous in user/SOURCES, fixed in tmp_local_working_dir
1088       logger.write(_("\nclean sources\n"))
1089       args_clean = config.VARS.application
1090       args_clean += " --sources --products "
1091       args_clean += ",".join(l_prod_names)
1092       logger.write("WARNING: get_archives_vcs clean\n         '%s'\n" % args_clean, 1)
1093       sat.clean(args_clean, batch=True, verbose=0, logger_add_link = logger)
1094     if True:
1095       # source
1096       logger.write(_("get sources\n"))
1097       args_source = config.VARS.application
1098       args_source += " --products "
1099       args_source += ",".join(l_prod_names)
1100       svgDir = sat.cfg.APPLICATION.workdir
1101       tmp_local_working_dir = os.path.join(sat.cfg.APPLICATION.workdir, "tmp_package")  # to avoid too much big files in /tmp
1102       sat.cfg.APPLICATION.workdir = tmp_local_working_dir
1103       # DBG.write("SSS sat config.APPLICATION.workdir", sat.cfg.APPLICATION, True)
1104       # DBG.write("sat config id", id(sat.cfg), True)
1105       # shit as config is not same id() as for sat.source()
1106       # sat.source(args_source, batch=True, verbose=5, logger_add_link = logger)
1107       import source
1108       source.run(args_source, sat, logger) #use this mode as runner.cfg reference
1109
1110       # make the new archives
1111       d_archives_vcs = {}
1112       for pn, pinfo in l_pinfo_vcs:
1113           path_archive = make_archive(pn, pinfo, tmp_local_working_dir)
1114           logger.write("make archive vcs '%s'\n" % path_archive)
1115           d_archives_vcs[pn] = (path_archive,
1116                                 os.path.join(ARCHIVE_DIR, pn + ".tgz"))
1117       sat.cfg.APPLICATION.workdir = svgDir
1118       # DBG.write("END sat config", sat.cfg.APPLICATION, True)
1119     return d_archives_vcs
1120
1121 def make_bin_archive(prod_name, prod_info, where):
1122     '''Create an archive of a product by searching its source directory.
1123
1124     :param prod_name str: The name of the product.
1125     :param prod_info Config: The specific configuration corresponding to the
1126                              product
1127     :param where str: The path of the repository where to put the resulting
1128                       archive
1129     :return: The path of the resulting archive
1130     :rtype: str
1131     '''
1132     path_targz_prod = os.path.join(where, prod_name + PACKAGE_EXT)
1133     tar_prod = tarfile.open(path_targz_prod, mode='w:gz')
1134     bin_path = prod_info.install_dir
1135     tar_prod.add(bin_path, arcname=path_targz_prod)
1136     tar_prod.close()
1137     return path_targz_prod
1138
1139 def make_archive(prod_name, prod_info, where):
1140     '''Create an archive of a product by searching its source directory.
1141
1142     :param prod_name str: The name of the product.
1143     :param prod_info Config: The specific configuration corresponding to the
1144                              product
1145     :param where str: The path of the repository where to put the resulting
1146                       archive
1147     :return: The path of the resulting archive
1148     :rtype: str
1149     '''
1150     path_targz_prod = os.path.join(where, prod_name + PACKAGE_EXT)
1151     tar_prod = tarfile.open(path_targz_prod, mode='w:gz')
1152     local_path = prod_info.source_dir
1153     if old_python:
1154         tar_prod.add(local_path,
1155                      arcname=prod_name,
1156                      exclude=exclude_VCS_and_extensions_26)
1157     else:
1158         tar_prod.add(local_path,
1159                      arcname=prod_name,
1160                      filter=exclude_VCS_and_extensions)
1161     tar_prod.close()
1162     return path_targz_prod
1163
1164 def create_project_for_src_package(config, tmp_working_dir, with_vcs, with_ftp):
1165     '''Create a specific project for a source package.
1166
1167     :param config Config: The global configuration.
1168     :param tmp_working_dir str: The temporary local directory containing some
1169                                 specific directories or files needed in the
1170                                 source package
1171     :param with_vcs boolean: True if the package is with vcs products (not
1172                              transformed into archive products)
1173     :param with_ftp boolean: True if the package use ftp servers to get archives
1174     :return: The dictionary
1175              {"project" : (produced project, project path in the archive)}
1176     :rtype: Dict
1177     '''
1178
1179     # Create in the working temporary directory the full project tree
1180     project_tmp_dir = os.path.join(tmp_working_dir, PROJECT_DIR)
1181     products_pyconf_tmp_dir = os.path.join(project_tmp_dir,
1182                                          "products")
1183     compil_scripts_tmp_dir = os.path.join(project_tmp_dir,
1184                                          "products",
1185                                          "compil_scripts")
1186     env_scripts_tmp_dir = os.path.join(project_tmp_dir,
1187                                          "products",
1188                                          "env_scripts")
1189     patches_tmp_dir = os.path.join(project_tmp_dir,
1190                                          "products",
1191                                          "patches")
1192     application_tmp_dir = os.path.join(project_tmp_dir,
1193                                          "applications")
1194     for directory in [project_tmp_dir,
1195                       compil_scripts_tmp_dir,
1196                       env_scripts_tmp_dir,
1197                       patches_tmp_dir,
1198                       application_tmp_dir]:
1199         src.ensure_path_exists(directory)
1200
1201     # Create the pyconf that contains the information of the project
1202     project_pyconf_name = "project.pyconf"
1203     project_pyconf_file = os.path.join(project_tmp_dir, project_pyconf_name)
1204     ff = open(project_pyconf_file, "w")
1205     ff.write(PROJECT_TEMPLATE)
1206     if with_ftp and len(config.PATHS.ARCHIVEFTP) > 0:
1207         ftp_path='ARCHIVEFTP : "'+config.PATHS.ARCHIVEFTP[0]
1208         for ftpserver in config.PATHS.ARCHIVEFTP[1:]:
1209             ftp_path=ftp_path+":"+ftpserver
1210         ftp_path+='"'
1211         ff.write("# ftp servers where to search for prerequisite archives\n")
1212         ff.write(ftp_path)
1213     # add licence paths if any
1214     if len(config.PATHS.LICENCEPATH) > 0:
1215         licence_path='LICENCEPATH : "'+config.PATHS.LICENCEPATH[0]
1216         for path in config.PATHS.LICENCEPATH[1:]:
1217             licence_path=licence_path+":"+path
1218         licence_path+='"'
1219         ff.write("\n# Where to search for licences\n")
1220         ff.write(licence_path)
1221
1222
1223     ff.close()
1224
1225     # Loop over the products to get there pyconf and all the scripts
1226     # (compilation, environment, patches)
1227     # and create the pyconf file to add to the project
1228     lproducts_name = config.APPLICATION.products.keys()
1229     l_products = src.product.get_products_infos(lproducts_name, config)
1230     for p_name, p_info in l_products:
1231         # skip product with property not_in_package set to yes
1232         if src.get_property_in_product_cfg(p_info, "not_in_package") == "yes":
1233             continue
1234         find_product_scripts_and_pyconf(p_name,
1235                                         p_info,
1236                                         config,
1237                                         with_vcs,
1238                                         compil_scripts_tmp_dir,
1239                                         env_scripts_tmp_dir,
1240                                         patches_tmp_dir,
1241                                         products_pyconf_tmp_dir)
1242
1243     # for the application pyconf, we write directly the config
1244     # don't search for the original pyconf file
1245     # to avoid problems with overwrite sections and rm_products key
1246     write_application_pyconf(config, application_tmp_dir)
1247
1248     d_project = {"project" : (project_tmp_dir, PROJECT_DIR )}
1249     return d_project
1250
1251 def find_product_scripts_and_pyconf(p_name,
1252                                     p_info,
1253                                     config,
1254                                     with_vcs,
1255                                     compil_scripts_tmp_dir,
1256                                     env_scripts_tmp_dir,
1257                                     patches_tmp_dir,
1258                                     products_pyconf_tmp_dir):
1259     '''Create a specific pyconf file for a given product. Get its environment
1260        script, its compilation script and patches and put it in the temporary
1261        working directory. This method is used in the source package in order to
1262        construct the specific project.
1263
1264     :param p_name str: The name of the product.
1265     :param p_info Config: The specific configuration corresponding to the
1266                              product
1267     :param config Config: The global configuration.
1268     :param with_vcs boolean: True if the package is with vcs products (not
1269                              transformed into archive products)
1270     :param compil_scripts_tmp_dir str: The path to the temporary compilation
1271                                        scripts directory of the project.
1272     :param env_scripts_tmp_dir str: The path to the temporary environment script
1273                                     directory of the project.
1274     :param patches_tmp_dir str: The path to the temporary patch scripts
1275                                 directory of the project.
1276     :param products_pyconf_tmp_dir str: The path to the temporary product
1277                                         scripts directory of the project.
1278     '''
1279
1280     # read the pyconf of the product
1281     product_pyconf_cfg = src.pyconf.Config(p_info.from_file)
1282
1283     # find the compilation script if any
1284     if src.product.product_has_script(p_info):
1285         compil_script_path = src.Path(p_info.compil_script)
1286         compil_script_path.copy(compil_scripts_tmp_dir)
1287
1288     # find the environment script if any
1289     if src.product.product_has_env_script(p_info):
1290         env_script_path = src.Path(p_info.environ.env_script)
1291         env_script_path.copy(env_scripts_tmp_dir)
1292
1293     # find the patches if any
1294     if src.product.product_has_patches(p_info):
1295         patches = src.pyconf.Sequence()
1296         for patch_path in p_info.patches:
1297             p_path = src.Path(patch_path)
1298             p_path.copy(patches_tmp_dir)
1299             patches.append(os.path.basename(patch_path), "")
1300
1301     if (not with_vcs) and src.product.product_is_vcs(p_info):
1302         # in non vcs mode, if the product is not archive, then make it become archive.
1303
1304         # depending upon the incremental mode, select impacted sections
1305         if "properties" in p_info and "incremental" in p_info.properties and\
1306             p_info.properties.incremental == "yes":
1307             sections = ["default", "default_win", p_info.section, p_info.section+"_win"]
1308         else:
1309             sections = [p_info.section]
1310         for section in sections:
1311             if section in product_pyconf_cfg and "get_source" in product_pyconf_cfg[section]:
1312                 DBG.write("sat package set archive mode to archive for product %s and section %s" %\
1313                           (p_name,section))
1314                 product_pyconf_cfg[section].get_source = "archive"
1315                 if not "archive_info" in product_pyconf_cfg[section]:
1316                     product_pyconf_cfg[section].addMapping("archive_info",
1317                                         src.pyconf.Mapping(product_pyconf_cfg),
1318                                         "")
1319                     product_pyconf_cfg[section].archive_info.archive_name =\
1320                         p_info.name + ".tgz"
1321
1322     # save git repositories for vcs products, even if archive is not in VCS mode
1323     # in this case the user will be able to change get_source flag and work with git
1324     if src.product.product_is_vcs(p_info):
1325         # in vcs mode we must replace explicitely the git server url
1326         # (or it will not be found later because project files are not exported in archives)
1327         for section in product_pyconf_cfg:
1328             # replace in all sections of the product pyconf the git repo definition by its substitued value (found in p_info)
1329             if "git_info" in product_pyconf_cfg[section]:
1330                 for repo in product_pyconf_cfg[section].git_info:
1331                     if repo in p_info.git_info:
1332                         product_pyconf_cfg[section].git_info[repo] =  p_info.git_info[repo]
1333
1334     # write the pyconf file to the temporary project location
1335     product_tmp_pyconf_path = os.path.join(products_pyconf_tmp_dir,
1336                                            p_name + ".pyconf")
1337     ff = open(product_tmp_pyconf_path, 'w')
1338     ff.write("#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\n")
1339     product_pyconf_cfg.__save__(ff, 1)
1340     ff.close()
1341
1342
1343 def write_application_pyconf(config, application_tmp_dir):
1344     '''Write the application pyconf file in the specific temporary
1345        directory containing the specific project of a source package.
1346
1347     :param config Config: The global configuration.
1348     :param application_tmp_dir str: The path to the temporary application
1349                                     scripts directory of the project.
1350     '''
1351     application_name = config.VARS.application
1352     # write the pyconf file to the temporary application location
1353     application_tmp_pyconf_path = os.path.join(application_tmp_dir,
1354                                                application_name + ".pyconf")
1355     with open(application_tmp_pyconf_path, 'w') as f:
1356         f.write("#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\n")
1357         res = src.pyconf.Config()
1358         app = src.pyconf.deepCopyMapping(config.APPLICATION)
1359
1360         # set base mode to "no" for the archive
1361         app.base = "no"
1362
1363         # Change the workdir
1364         app.workdir = src.pyconf.Reference(
1365                                  app,
1366                                  src.pyconf.DOLLAR,
1367                                  'LOCAL.workdir')
1368         res.addMapping("APPLICATION", app, "")
1369         res.__save__(f, evaluated=False)
1370
1371
1372 def sat_package(config, tmp_working_dir, options, logger):
1373     '''Prepare a dictionary that stores all the needed directories and files to
1374        add in a salomeTool package.
1375
1376     :param tmp_working_dir str: The temporary local working directory
1377     :param options OptResult: the options of the launched command
1378     :return: the dictionary that stores all the needed directories and files to
1379              add in a salomeTool package.
1380              {label : (path_on_local_machine, path_in_archive)}
1381     :rtype: dict
1382     '''
1383     d_project = {}
1384
1385     # we include sat himself
1386     d_project["all_sat"]=(config.VARS.salometoolsway, "")
1387
1388     # and we overwrite local.pyconf with a clean wersion.
1389     local_pyconf_tmp_path = os.path.join(tmp_working_dir, "local.pyconf")
1390     local_file_path = os.path.join(config.VARS.datadir, "local.pyconf")
1391     local_cfg = src.pyconf.Config(local_file_path)
1392     local_cfg.PROJECTS.project_file_paths=src.pyconf.Sequence(local_cfg.PROJECTS)
1393     local_cfg.LOCAL["base"] = "default"
1394     local_cfg.LOCAL["workdir"] = "default"
1395     local_cfg.LOCAL["log_dir"] = "default"
1396     local_cfg.LOCAL["archive_dir"] = "default"
1397     local_cfg.LOCAL["VCS"] = "None"
1398     local_cfg.LOCAL["tag"] = src.get_salometool_version(config)
1399
1400     # if the archive contains a project, we write its relative path in local.pyconf
1401     if options.project:
1402         project_arch_path = os.path.join("projects", options.project,
1403                                          os.path.basename(options.project_file_path))
1404         local_cfg.PROJECTS.project_file_paths.append(project_arch_path, "")
1405
1406     ff = open(local_pyconf_tmp_path, 'w')
1407     local_cfg.__save__(ff, 1)
1408     ff.close()
1409     d_project["local.pyconf"]=(local_pyconf_tmp_path, "data/local.pyconf")
1410     return d_project
1411
1412
1413 def project_package(config, name_project, project_file_path, ftp_mode, tmp_working_dir, embedded_in_sat, logger):
1414     '''Prepare a dictionary that stores all the needed directories and files to
1415        add in a project package.
1416
1417     :param project_file_path str: The path to the local project.
1418     :param ftp_mode boolean: Do not embed archives, the archive will rely on ftp mode to retrieve them.
1419     :param tmp_working_dir str: The temporary local directory containing some
1420                                 specific directories or files needed in the
1421                                 project package
1422     :param embedded_in_sat boolean : the project package is embedded in a sat package
1423     :return: the dictionary that stores all the needed directories and files to
1424              add in a project package.
1425              {label : (path_on_local_machine, path_in_archive)}
1426     :rtype: dict
1427     '''
1428     d_project = {}
1429     # Read the project file and get the directories to add to the package
1430
1431     try:
1432       project_pyconf_cfg = config.PROJECTS.projects.__getattr__(name_project)
1433     except:
1434       logger.write("""
1435 WARNING: inexisting config.PROJECTS.projects.%s, try to read now from:\n%s\n""" % (name_project, project_file_path))
1436       project_pyconf_cfg = src.pyconf.Config(project_file_path)
1437       project_pyconf_cfg.PWD = os.path.dirname(project_file_path)
1438
1439     paths = {"APPLICATIONPATH" : "applications",
1440              "PRODUCTPATH" : "products",
1441              "JOBPATH" : "jobs",
1442              "MACHINEPATH" : "machines"}
1443     if not ftp_mode:
1444         paths["ARCHIVEPATH"] = "archives"
1445
1446     # Loop over the project paths and add it
1447     project_file_name = os.path.basename(project_file_path)
1448     for path in paths:
1449         if path not in project_pyconf_cfg:
1450             continue
1451         if embedded_in_sat:
1452             dest_path = os.path.join("projects", name_project, paths[path])
1453             project_file_dest = os.path.join("projects", name_project, project_file_name)
1454         else:
1455             dest_path = paths[path]
1456             project_file_dest = project_file_name
1457
1458         # Add the directory to the files to add in the package
1459         d_project[path] = (project_pyconf_cfg[path], dest_path)
1460
1461         # Modify the value of the path in the package
1462         project_pyconf_cfg[path] = src.pyconf.Reference(
1463                                     project_pyconf_cfg,
1464                                     src.pyconf.DOLLAR,
1465                                     'project_path + "/' + paths[path] + '"')
1466
1467     # Modify some values
1468     if "project_path" not in project_pyconf_cfg:
1469         project_pyconf_cfg.addMapping("project_path",
1470                                       src.pyconf.Mapping(project_pyconf_cfg),
1471                                       "")
1472     project_pyconf_cfg.project_path = src.pyconf.Reference(project_pyconf_cfg,
1473                                                            src.pyconf.DOLLAR,
1474                                                            'PWD')
1475     # we don't want to export these two fields
1476     project_pyconf_cfg.__delitem__("file_path")
1477     project_pyconf_cfg.__delitem__("PWD")
1478     if ftp_mode:
1479         project_pyconf_cfg.__delitem__("ARCHIVEPATH")
1480
1481     # Write the project pyconf file
1482     project_pyconf_tmp_path = os.path.join(tmp_working_dir, project_file_name)
1483     ff = open(project_pyconf_tmp_path, 'w')
1484     ff.write("#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\n")
1485     project_pyconf_cfg.__save__(ff, 1)
1486     ff.close()
1487     d_project["Project hat file"] = (project_pyconf_tmp_path, project_file_dest)
1488
1489     return d_project
1490
1491 def add_readme(config, options, where):
1492     readme_path = os.path.join(where, "README")
1493     with codecs.open(readme_path, "w", 'utf-8') as f:
1494
1495     # templates for building the header
1496         readme_header="""
1497 # This package was generated with sat $version
1498 # Date: $date
1499 # User: $user
1500 # Distribution : $dist
1501
1502 In the following, $$ROOT represents the directory where you have installed
1503 SALOME (the directory where this file is located).
1504
1505 """
1506         if src.architecture.is_windows():
1507             readme_header = readme_header.replace('$$ROOT','%ROOT%')
1508         readme_compilation_with_binaries="""
1509
1510 compilation based on the binaries used as prerequisites
1511 =======================================================
1512
1513 If you fail to compile the complete application (for example because
1514 you are not root on your system and cannot install missing packages), you
1515 may try a partial compilation based on the binaries.
1516 For that it is necessary to copy the binaries from BINARIES to INSTALL,
1517 and do some substitutions on cmake and .la files (replace the build directories
1518 with local paths).
1519 The procedure to do it is:
1520  1) Remove or rename INSTALL directory if it exists
1521  2) Execute the shell script install_bin.sh:
1522  > cd $ROOT
1523  > ./install_bin.sh
1524  3) Use SalomeTool (as explained in Sources section) and compile only the
1525     modules you need to (with -p option)
1526
1527 """
1528         readme_header_tpl=string.Template(readme_header)
1529         readme_template_path_bin = os.path.join(config.VARS.internal_dir,
1530                 "README_BIN.template")
1531         readme_template_path_bin_launcher = os.path.join(config.VARS.internal_dir,
1532                 "README_LAUNCHER.template")
1533         readme_template_path_bin_virtapp = os.path.join(config.VARS.internal_dir,
1534                 "README_BIN_VIRTUAL_APP.template")
1535         readme_template_path_src = os.path.join(config.VARS.internal_dir,
1536                 "README_SRC.template")
1537         readme_template_path_pro = os.path.join(config.VARS.internal_dir,
1538                 "README_PROJECT.template")
1539         readme_template_path_sat = os.path.join(config.VARS.internal_dir,
1540                 "README_SAT.template")
1541
1542         # prepare substitution dictionary
1543         d = dict()
1544         d['user'] = config.VARS.user
1545         d['date'] = datetime.datetime.now().strftime("%Y-%m-%d %H:%M")
1546         d['version'] = src.get_salometool_version(config)
1547         d['dist'] = config.VARS.dist
1548         f.write(readme_header_tpl.substitute(d)) # write the general header (common)
1549
1550         if options.binaries or options.sources:
1551             d['application'] = config.VARS.application
1552             d['BINARIES']    = config.INTERNAL.config.binary_dir
1553             d['SEPARATOR'] = config.VARS.sep
1554             if src.architecture.is_windows():
1555                 d['operatingSystem'] = 'Windows'
1556                 d['PYTHON3'] = 'python3'
1557                 d['ROOT']    = '%ROOT%'
1558             else:
1559                 d['operatingSystem'] = 'Linux'
1560                 d['PYTHON3'] = ''
1561                 d['ROOT']    = '$ROOT'
1562             f.write("# Application: " + d['application'] + "\n")
1563             if 'KERNEL' in config.APPLICATION.products:
1564                 VersionSalome = src.get_salome_version(config)
1565                 # Case where SALOME has the launcher that uses the SalomeContext API
1566                 if VersionSalome >= MMP([7,3,0]):
1567                     d['launcher'] = config.APPLICATION.profile.launcher_name
1568                 else:
1569                     d['virtual_app'] = 'runAppli' # this info is not used now)
1570
1571         # write the specific sections
1572         if options.binaries:
1573             f.write(src.template.substitute(readme_template_path_bin, d))
1574             if "virtual_app" in d:
1575                 f.write(src.template.substitute(readme_template_path_bin_virtapp, d))
1576             if "launcher" in d:
1577                 f.write(src.template.substitute(readme_template_path_bin_launcher, d))
1578
1579         if options.sources:
1580             f.write(src.template.substitute(readme_template_path_src, d))
1581
1582         if options.binaries and options.sources and not src.architecture.is_windows():
1583             f.write(readme_compilation_with_binaries)
1584
1585         if options.project:
1586             f.write(src.template.substitute(readme_template_path_pro, d))
1587
1588         if options.sat:
1589             f.write(src.template.substitute(readme_template_path_sat, d))
1590
1591     return readme_path
1592
1593 def update_config(config, logger,  prop, value):
1594     '''Remove from config.APPLICATION.products the products that have the property given as input.
1595
1596     :param config Config: The global config.
1597     :param prop str: The property to filter
1598     :param value str: The value of the property to filter
1599     '''
1600     # if there is no APPLICATION (ex sat package -t) : nothing to do
1601     if "APPLICATION" in config:
1602         l_product_to_remove = []
1603         for product_name in config.APPLICATION.products.keys():
1604             prod_cfg = src.product.get_product_config(config, product_name)
1605             if src.get_property_in_product_cfg(prod_cfg, prop) == value:
1606                 l_product_to_remove.append(product_name)
1607         for product_name in l_product_to_remove:
1608             config.APPLICATION.products.__delitem__(product_name)
1609             logger.write("Remove product %s with property %s\n" % (product_name, prop), 5)
1610
1611 def description():
1612     '''method that is called when salomeTools is called with --help option.
1613
1614     :return: The text to display for the package command description.
1615     :rtype: str
1616     '''
1617     return _("""
1618 The package command creates a tar file archive of a product.
1619 There are four kinds of archive, which can be mixed:
1620
1621  1 - The binary archive.
1622      It contains the product installation directories plus a launcher.
1623  2 - The sources archive.
1624      It contains the product archives, a project (the application plus salomeTools).
1625  3 - The project archive.
1626      It contains a project (give the project file path as argument).
1627  4 - The salomeTools archive.
1628      It contains code utility salomeTools.
1629
1630 example:
1631  >> sat package SALOME-master --binaries --sources""")
1632
1633 def run(args, runner, logger):
1634     '''method that is called when salomeTools is called with package parameter.
1635     '''
1636
1637     # Parse the options
1638     (options, args) = parser.parse_args(args)
1639
1640
1641     # Check that a type of package is called, and only one
1642     all_option_types = (options.binaries,
1643                         options.sources,
1644                         options.project not in ["", None],
1645                         options.sat,
1646                         options.bin_products)
1647
1648     # Check if no option for package type
1649     if all_option_types.count(True) == 0:
1650         msg = _("Error: Precise a type for the package\nUse one of the "
1651                 "following options: --binaries, --sources, --project or"
1652                 " --salometools, --bin_products")
1653         logger.write(src.printcolors.printcError(msg), 1)
1654         logger.write("\n", 1)
1655         return 1
1656     do_create_package = options.binaries or options.sources or options.project or options.sat
1657
1658     if options.bin_products:
1659         ret = bin_products_archives(runner.cfg, logger, options.with_vcs)
1660         if ret!=0:
1661             return ret
1662     if not do_create_package:
1663         return 0
1664
1665     # continue to create a tar.gz package
1666
1667     # The repository where to put the package if not Binary or Source
1668     package_default_path = runner.cfg.LOCAL.workdir
1669     # if the package contains binaries or sources:
1670     if options.binaries or options.sources or options.bin_products:
1671         # Check that the command has been called with an application
1672         src.check_config_has_application(runner.cfg)
1673
1674         # Display information
1675         logger.write(_("Packaging application %s\n") % src.printcolors.printcLabel(
1676                                                     runner.cfg.VARS.application), 1)
1677
1678         # Get the default directory where to put the packages
1679         package_default_path = os.path.join(runner.cfg.APPLICATION.workdir, "PACKAGE")
1680         src.ensure_path_exists(package_default_path)
1681
1682     # if the package contains a project:
1683     if options.project:
1684         # check that the project is visible by SAT
1685         projectNameFile = options.project + ".pyconf"
1686         foundProject = None
1687         for i in runner.cfg.PROJECTS.project_file_paths:
1688             baseName = os.path.basename(i)
1689             if baseName == projectNameFile:
1690                 foundProject = i
1691                 break
1692
1693         if foundProject is None:
1694             local_path = os.path.join(runner.cfg.VARS.salometoolsway, "data", "local.pyconf")
1695             msg = _("""ERROR: the project %(1)s is not visible by salomeTools.
1696 known projects are:
1697 %(2)s
1698
1699 Please add it in file:
1700 %(3)s""" % \
1701                     {"1": options.project, "2": "\n  ".join(runner.cfg.PROJECTS.project_file_paths), "3": local_path})
1702             logger.write(src.printcolors.printcError(msg), 1)
1703             logger.write("\n", 1)
1704             return 1
1705         else:
1706             options.project_file_path = foundProject
1707             src.printcolors.print_value(logger, "Project path", options.project_file_path, 2)
1708
1709     # Remove the products that are filtered by the --without_properties option
1710     if options.without_properties:
1711         prop, value = options.without_properties
1712         update_config(runner.cfg, logger, prop, value)
1713
1714     # Remove from config the products that have the not_in_package property
1715     update_config(runner.cfg, logger, "not_in_package", "yes")
1716
1717     # get the name of the archive or build it
1718     if options.name:
1719         if os.path.basename(options.name) == options.name:
1720             # only a name (not a path)
1721             archive_name = options.name
1722             dir_name = package_default_path
1723         else:
1724             archive_name = os.path.basename(options.name)
1725             dir_name = os.path.dirname(options.name)
1726
1727         # suppress extension
1728         if archive_name[-len(".tgz"):] == ".tgz":
1729             archive_name = archive_name[:-len(".tgz")]
1730         if archive_name[-len(".tar.gz"):] == ".tar.gz":
1731             archive_name = archive_name[:-len(".tar.gz")]
1732
1733     else:
1734         archive_name=""
1735         dir_name = package_default_path
1736         if options.binaries or options.sources:
1737             archive_name = runner.cfg.APPLICATION.name
1738
1739         if options.binaries:
1740             archive_name += "-"+runner.cfg.VARS.dist
1741
1742         if options.sources:
1743             archive_name += "-SRC"
1744             if options.with_vcs:
1745                 archive_name += "-VCS"
1746
1747         if options.sat:
1748             archive_name += ("salomeTools_" + src.get_salometool_version(runner.cfg))
1749
1750         if options.project:
1751             if options.sat:
1752                 archive_name += "_"
1753             archive_name += ("satproject_" + options.project)
1754
1755         if len(archive_name)==0: # no option worked
1756             msg = _("Error: Cannot name the archive\n"
1757                     " check if at least one of the following options was "
1758                     "selected : --binaries, --sources, --project or"
1759                     " --salometools")
1760             logger.write(src.printcolors.printcError(msg), 1)
1761             logger.write("\n", 1)
1762             return 1
1763
1764     path_targz = os.path.join(dir_name, archive_name + PACKAGE_EXT)
1765
1766     src.printcolors.print_value(logger, "Package path", path_targz, 2)
1767
1768     # Create a working directory for all files that are produced during the
1769     # package creation and that will be removed at the end of the command
1770     tmp_working_dir = os.path.join(runner.cfg.VARS.tmp_root, runner.cfg.VARS.datehour)
1771     src.ensure_path_exists(tmp_working_dir)
1772     logger.write("\n", 5)
1773     logger.write(_("The temporary working directory: %s\n" % tmp_working_dir),5)
1774
1775     logger.write("\n", 3)
1776
1777     msg = _("Preparation of files to add to the archive")
1778     logger.write(src.printcolors.printcLabel(msg), 2)
1779     logger.write("\n", 2)
1780
1781     d_files_to_add={}  # content of the archive
1782
1783     # a dict to hold paths that will need to be substitute for users recompilations
1784     d_paths_to_substitute={}
1785
1786     if options.binaries:
1787         d_bin_files_to_add = binary_package(runner.cfg,
1788                                             logger,
1789                                             options,
1790                                             tmp_working_dir)
1791         # for all binaries dir, store the substitution that will be required
1792         # for extra compilations
1793         for key in d_bin_files_to_add:
1794             if key.endswith("(bin)"):
1795                 source_dir = d_bin_files_to_add[key][0]
1796                 path_in_archive = d_bin_files_to_add[key][1].replace(
1797                    runner.cfg.INTERNAL.config.binary_dir + runner.cfg.VARS.dist,
1798                    runner.cfg.INTERNAL.config.install_dir)
1799                 if os.path.basename(source_dir)==os.path.basename(path_in_archive):
1800                     # if basename is the same we will just substitute the dirname
1801                     d_paths_to_substitute[os.path.dirname(source_dir)]=\
1802                         os.path.dirname(path_in_archive)
1803                 else:
1804                     d_paths_to_substitute[source_dir]=path_in_archive
1805
1806         d_files_to_add.update(d_bin_files_to_add)
1807     if options.sources:
1808         d_files_to_add.update(source_package(runner,
1809                                         runner.cfg,
1810                                         logger,
1811                                         options,
1812                                         tmp_working_dir))
1813         if options.binaries:
1814             # for archives with bin and sources we provide a shell script able to
1815             # install binaries for compilation
1816             file_install_bin=produce_install_bin_file(runner.cfg,logger,
1817                                                       tmp_working_dir,
1818                                                       d_paths_to_substitute,
1819                                                       "install_bin.sh")
1820             d_files_to_add.update({"install_bin" : (file_install_bin, "install_bin.sh")})
1821             logger.write("substitutions that need to be done later : \n", 5)
1822             logger.write(str(d_paths_to_substitute), 5)
1823             logger.write("\n", 5)
1824     else:
1825         # --salomeTool option is not considered when --sources is selected, as this option
1826         # already brings salomeTool!
1827         if options.sat:
1828             d_files_to_add.update(sat_package(runner.cfg, tmp_working_dir,
1829                                   options, logger))
1830
1831     if options.project:
1832         DBG.write("config for package %s" % options.project, runner.cfg)
1833         d_files_to_add.update(project_package(runner.cfg, options.project, options.project_file_path, options.ftp, tmp_working_dir, options.sat, logger))
1834
1835     if not(d_files_to_add):
1836         msg = _("Error: Empty dictionnary to build the archive!\n")
1837         logger.write(src.printcolors.printcError(msg), 1)
1838         logger.write("\n", 1)
1839         return 1
1840
1841     # Add the README file in the package
1842     local_readme_tmp_path = add_readme(runner.cfg, options, tmp_working_dir)
1843     d_files_to_add["README"] = (local_readme_tmp_path, "README")
1844
1845     # Add the additional files of option add_files
1846     if options.add_files:
1847         for file_path in options.add_files:
1848             if not os.path.exists(file_path):
1849                 msg = _("WARNING: the file %s is not accessible.\n" % file_path)
1850                 continue
1851             file_name = os.path.basename(file_path)
1852             d_files_to_add[file_name] = (file_path, file_name)
1853
1854     logger.write("\n", 2)
1855     logger.write(src.printcolors.printcLabel(_("Actually do the package")), 2)
1856     logger.write("\n", 2)
1857     logger.write("\nfiles and directories to add:\n%s\n\n" % PP.pformat(d_files_to_add), 5)
1858
1859     res = 0
1860     try:
1861         # Creating the object tarfile
1862         tar = tarfile.open(path_targz, mode='w:gz')
1863
1864         # get the filtering function if needed
1865         if old_python:
1866             filter_function = exclude_VCS_and_extensions_26
1867         else:
1868             filter_function = exclude_VCS_and_extensions
1869
1870         # Add the files to the tarfile object
1871         res = add_files(tar, archive_name, d_files_to_add, logger, f_exclude=filter_function)
1872         tar.close()
1873     except KeyboardInterrupt:
1874         logger.write(src.printcolors.printcError("\nERROR: forced interruption\n"), 1)
1875         logger.write(_("Removing the temporary working directory '%s'... ") % tmp_working_dir, 1)
1876         # remove the working directory
1877         shutil.rmtree(tmp_working_dir)
1878         logger.write(_("OK"), 1)
1879         logger.write(_("\n"), 1)
1880         return 1
1881
1882     # case if no application, only package sat as 'sat package -t'
1883     try:
1884         app = runner.cfg.APPLICATION
1885     except:
1886         app = None
1887
1888     # unconditionaly remove the tmp_local_working_dir
1889     if app is not None:
1890         tmp_local_working_dir = os.path.join(app.workdir, "tmp_package")
1891         if os.path.isdir(tmp_local_working_dir):
1892             shutil.rmtree(tmp_local_working_dir)
1893
1894     # remove the tmp directory, unless user has registered as developer
1895     if os.path.isdir(tmp_working_dir) and (not DBG.isDeveloper()):
1896         shutil.rmtree(tmp_working_dir)
1897
1898     # Print again the path of the package
1899     logger.write("\n", 2)
1900     src.printcolors.print_value(logger, "Package path", path_targz, 2)
1901
1902     return res