Salome HOME
fix(commands/sources): missing newline in logger
[tools/sat.git] / commands / source.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 shutil
21 import re
22 import subprocess
23
24 import src
25 import prepare
26 import src.debug as DBG
27
28 # Define all possible option for patch command :  sat patch <options>
29 parser = src.options.Options()
30 parser.add_option('p', 'products', 'list2', 'products',
31     _('Optional: products from which to get the sources. This option accepts a comma separated list.'))
32
33 def get_source_for_dev(config, product_info, source_dir, logger, pad):
34     '''The method called if the product is in development mode
35     
36     :param config Config: The global configuration
37     :param product_info Config: The configuration specific to 
38                                the product to be prepared
39     :param source_dir Path: The Path instance corresponding to the 
40                             directory where to put the sources
41     :param logger Logger: The logger instance to use for the display and logging
42     :param pad int: The gap to apply for the terminal display
43     :return: True if it succeed, else False
44     :rtype: boolean
45     '''
46        
47     # Call the function corresponding to get the sources with True checkout
48     retcode = get_product_sources(config, 
49                                  product_info, 
50                                  True, 
51                                  source_dir,
52                                  logger, 
53                                  pad, 
54                                  checkout=True)
55     logger.write("\n", 3, False)
56     # +2 because product name is followed by ': '
57     logger.write(" " * (pad+2), 3, False) 
58     
59     logger.write('dev: %s ... ' % 
60                  src.printcolors.printcInfo(product_info.source_dir), 3, False)
61     logger.flush()
62     
63     return retcode
64
65 def get_source_from_git(config,
66                         product_info,
67                         source_dir,
68                         logger,
69                         pad,
70                         is_dev=False,
71                         environ = None):
72     '''The method called if the product is to be get in git mode
73     
74     :param product_info Config: The configuration specific to 
75                                the product to be prepared
76     :param source_dir Path: The Path instance corresponding to the 
77                             directory where to put the sources
78     :param logger Logger: The logger instance to use for the display and logging
79     :param pad int: The gap to apply for the terminal display
80     :param is_dev boolean: True if the product is in development mode
81     :param environ src.environment.Environ: The environment to source when
82                                                 extracting.
83     :return: True if it succeed, else False
84     :rtype: boolean
85     '''
86     # The str to display
87     coflag = 'git'
88
89     use_repo_dev=False
90     if ("APPLICATION" in config  and
91             "properties"  in config.APPLICATION  and
92             "repo_dev"    in config.APPLICATION.properties  and
93             config.APPLICATION.properties.repo_dev == "yes") :
94                 use_repo_dev=True
95
96     # Get the repository address.
97     # If the application has the repo_dev property
98     # Or if the product is in dev mode
99     # Then we use repo_dev if the key exists
100     if (is_dev or use_repo_dev) and 'repo_dev' in product_info.git_info:
101         coflag = src.printcolors.printcHighlight(coflag.upper())
102         repo_git = product_info.git_info.repo_dev    
103     else:
104         repo_git = product_info.git_info.repo    
105
106
107     # Display informations
108     logger.write('%s:%s' % (coflag, src.printcolors.printcInfo(repo_git)), 3, 
109                  False)
110     logger.write(' ' * (pad + 50 - len(repo_git)), 3, False)
111     logger.write(' tag:%s' % src.printcolors.printcInfo(
112                                                     product_info.git_info.tag), 
113                  3,
114                  False)
115     logger.write(' %s. ' % ('.' * (10 - len(product_info.git_info.tag))), 3, 
116                  False)
117     logger.flush()
118     logger.write('\n', 5, False)
119
120     git_options= ''
121     if "git_options" in product_info.git_info:
122         git_options = product_info.git_info.git_options
123
124     sub_dir = None
125     # what do we do with git tree structure and history
126     if is_dev and "sub_dir" in product_info.git_info:
127         logger.error("dev mode for product is incompatible with 'sub_dir' option")
128         return False
129
130     if not is_dev and "sub_dir" in product_info.git_info:
131         sub_dir = product_info.git_info.sub_dir
132
133     if sub_dir is None:
134       # Call the system function that do the extraction in git mode
135       retcode = src.system.git_extract(repo_git,
136                                    product_info.git_info.tag, git_options,
137                                    source_dir, logger, environ)
138     else:
139       # Call the system function that do the extraction of a sub_dir in git mode
140       logger.write("sub_dir:%s " % sub_dir, 3)
141       retcode = src.system.git_extract_sub_dir(repo_git,
142                                    product_info.git_info.tag,git_options,
143                                    source_dir, sub_dir, logger, environ)
144
145
146     return retcode
147
148 def get_source_from_archive(config, product_info, source_dir, logger):
149     '''The method called if the product is to be get in archive mode
150     
151     :param config Config: The global configuration
152     :param product_info Config: The configuration specific to 
153                                the product to be prepared
154     :param source_dir Path: The Path instance corresponding to the 
155                             directory where to put the sources
156     :param logger Logger: The logger instance to use for the display and logging
157     :return: True if it succeed, else False
158     :rtype: boolean
159     '''
160
161     # check if pip should be used : pip mode id activated if the application and product have pip property
162     if (src.appli_test_property(config,"pip", "yes") and 
163        src.product.product_test_property(product_info,"pip", "yes")):
164         pip_msg = "PIP : do nothing, product will be downloaded later at compile time "
165         logger.write(pip_msg, 3) 
166         return True
167
168     # check archive exists
169     if not os.path.exists(product_info.archive_info.archive_name):
170         # The archive is not found on local file system (ARCHIVEPATH)
171         # We try ftp!
172         logger.write("\n   The archive is not found on local file system, we try ftp\n", 3)
173         ret=src.find_file_in_ftppath(product_info.archive_info.archive_name, 
174                                      config.PATHS.ARCHIVEFTP, config.LOCAL.archive_dir, logger)
175         if ret:
176             # archive was found on ftp and stored in ret
177             product_info.archive_info.archive_name=ret
178         else:
179             raise src.SatException(_("Archive not found in ARCHIVEPATH, nor on ARCHIVEFTP: '%s'") % 
180                                    product_info.archive_info.archive_name)
181
182     logger.write('arc:%s ... ' % 
183                  src.printcolors.printcInfo(product_info.archive_info.archive_name),
184                  3, 
185                  False)
186     logger.flush()
187     # Call the system function that do the extraction in archive mode
188     retcode, NameExtractedDirectory = src.system.archive_extract(
189                                     product_info.archive_info.archive_name,
190                                     source_dir.dir(), logger)
191     
192     # Rename the source directory if 
193     # it does not match with product_info.source_dir
194     if (NameExtractedDirectory.replace('/', '') != 
195             os.path.basename(product_info.source_dir)):
196         shutil.move(os.path.join(os.path.dirname(product_info.source_dir), 
197                                  NameExtractedDirectory), 
198                     product_info.source_dir)
199     
200     return retcode
201
202 def get_source_from_dir(product_info, source_dir, logger):
203     
204     if "dir_info" not in product_info:
205         msg = _("Error: you must put a dir_info section"
206                 " in the file %s.pyconf" % product_info.name)
207         logger.write("\n%s\n" % src.printcolors.printcError(msg), 1)
208         return False
209
210     if "dir" not in product_info.dir_info:
211         msg = _("Error: you must put a dir in the dir_info section"
212                 " in the file %s.pyconf" % product_info.name)
213         logger.write("\n%s\n" % src.printcolors.printcError(msg), 1)
214         return False
215
216     # check that source exists
217     if not os.path.exists(product_info.dir_info.dir):
218         msg = _("Error: the dir %s defined in the file"
219                 " %s.pyconf does not exists" % (product_info.dir_info.dir,
220                                                 product_info.name))
221         logger.write("\n%s\n" % src.printcolors.printcError(msg), 1)
222         return False
223     
224     logger.write('DIR: %s ... ' % src.printcolors.printcInfo(
225                                            product_info.dir_info.dir), 3)
226     logger.flush()
227
228     retcode = src.Path(product_info.dir_info.dir).copy(source_dir)
229     
230     return retcode
231     
232 def get_source_from_cvs(user,
233                         product_info,
234                         source_dir,
235                         checkout,
236                         logger,
237                         pad,
238                         environ = None):
239     '''The method called if the product is to be get in cvs mode
240     
241     :param user str: The user to use in for the cvs command
242     :param product_info Config: The configuration specific to 
243                                the product to be prepared
244     :param source_dir Path: The Path instance corresponding to the 
245                             directory where to put the sources
246     :param checkout boolean: If True, get the source in checkout mode
247     :param logger Logger: The logger instance to use for the display and logging
248     :param pad int: The gap to apply for the terminal display
249     :param environ src.environment.Environ: The environment to source when
250                                                 extracting.
251     :return: True if it succeed, else False
252     :rtype: boolean
253     '''
254     # Get the protocol to use in the command
255     if "protocol" in product_info.cvs_info:
256         protocol = product_info.cvs_info.protocol
257     else:
258         protocol = "pserver"
259     
260     # Construct the line to display
261     if "protocol" in product_info.cvs_info:
262         cvs_line = "%s:%s@%s:%s" % \
263             (protocol, user, product_info.cvs_info.server, 
264              product_info.cvs_info.product_base)
265     else:
266         cvs_line = "%s / %s" % (product_info.cvs_info.server, 
267                                 product_info.cvs_info.product_base)
268
269     coflag = 'cvs'
270     if checkout: coflag = src.printcolors.printcHighlight(coflag.upper())
271
272     logger.write('%s:%s' % (coflag, src.printcolors.printcInfo(cvs_line)), 
273                  3, 
274                  False)
275     logger.write(' ' * (pad + 50 - len(cvs_line)), 3, False)
276     logger.write(' src:%s' % 
277                  src.printcolors.printcInfo(product_info.cvs_info.source), 
278                  3, 
279                  False)
280     logger.write(' ' * (pad + 1 - len(product_info.cvs_info.source)), 3, False)
281     logger.write(' tag:%s' % 
282                     src.printcolors.printcInfo(product_info.cvs_info.tag), 
283                  3, 
284                  False)
285     # at least one '.' is visible
286     logger.write(' %s. ' % ('.' * (10 - len(product_info.cvs_info.tag))), 
287                  3, 
288                  False) 
289     logger.flush()
290     logger.write('\n', 5, False)
291
292     # Call the system function that do the extraction in cvs mode
293     retcode = src.system.cvs_extract(protocol, user,
294                                  product_info.cvs_info.server,
295                                  product_info.cvs_info.product_base,
296                                  product_info.cvs_info.tag,
297                                  product_info.cvs_info.source,
298                                  source_dir, logger, checkout, environ)
299     return retcode
300
301 def get_source_from_svn(user,
302                         product_info,
303                         source_dir,
304                         checkout,
305                         logger,
306                         environ = None):
307     '''The method called if the product is to be get in svn mode
308     
309     :param user str: The user to use in for the svn command
310     :param product_info Config: The configuration specific to 
311                                the product to be prepared
312     :param source_dir Path: The Path instance corresponding to the 
313                             directory where to put the sources
314     :param checkout boolean: If True, get the source in checkout mode
315     :param logger Logger: The logger instance to use for the display and logging
316     :param environ src.environment.Environ: The environment to source when
317                                                 extracting.
318     :return: True if it succeed, else False
319     :rtype: boolean
320     '''
321     coflag = 'svn'
322     if checkout: coflag = src.printcolors.printcHighlight(coflag.upper())
323
324     logger.write('%s:%s ... ' % (coflag, 
325                                  src.printcolors.printcInfo(
326                                             product_info.svn_info.repo)), 
327                  3, 
328                  False)
329     logger.flush()
330     logger.write('\n', 5, False)
331     # Call the system function that do the extraction in svn mode
332     retcode = src.system.svn_extract(user, 
333                                      product_info.svn_info.repo, 
334                                      product_info.svn_info.tag,
335                                      source_dir, 
336                                      logger, 
337                                      checkout,
338                                      environ)
339     return retcode
340
341 def get_product_sources(config, 
342                        product_info, 
343                        is_dev, 
344                        source_dir,
345                        logger, 
346                        pad, 
347                        checkout=False):
348     '''Get the product sources.
349     
350     :param config Config: The global configuration
351     :param product_info Config: The configuration specific to 
352                                the product to be prepared
353     :param is_dev boolean: True if the product is in development mode
354     :param source_dir Path: The Path instance corresponding to the 
355                             directory where to put the sources
356     :param logger Logger: The logger instance to use for the display and logging
357     :param pad int: The gap to apply for the terminal display
358     :param checkout boolean: If True, get the source in checkout mode
359     :return: True if it succeed, else False
360     :rtype: boolean
361     '''
362     
363     # Get the application environment
364     logger.write(_("Set the application environment\n"), 5)
365     env_appli = src.environment.SalomeEnviron(config,
366                                       src.environment.Environ(dict(os.environ)))
367     env_appli.set_application_env(logger)
368     
369     # Call the right function to get sources regarding the product settings
370     if not checkout and is_dev:
371         return get_source_for_dev(config, 
372                                    product_info, 
373                                    source_dir, 
374                                    logger, 
375                                    pad)
376
377     if product_info.get_source == "git":
378         return get_source_from_git(config, product_info, source_dir, logger, pad, 
379                                     is_dev, env_appli)
380
381     if product_info.get_source == "archive":
382         return get_source_from_archive(config, product_info, source_dir, logger)
383
384     if product_info.get_source == "dir":
385         return get_source_from_dir(product_info, source_dir, logger)
386     
387     if product_info.get_source == "cvs":
388         cvs_user = config.USER.cvs_user
389         return get_source_from_cvs(cvs_user, product_info, source_dir, 
390                                     checkout, logger, pad, env_appli)
391
392     if product_info.get_source == "svn":
393         svn_user = config.USER.svn_user
394         return get_source_from_svn(svn_user, product_info, source_dir, 
395                                     checkout, logger, env_appli)
396
397     if product_info.get_source == "native":
398         # for native products we check the corresponding system packages are installed
399         logger.write("Native : Checking system packages are installed\n" , 3)
400         check_cmd=src.system.get_pkg_check_cmd(config.VARS.dist_name) # (either rmp or apt)
401         run_pkg,build_pkg=src.product.check_system_dep(config.VARS.dist, check_cmd, product_info)
402         result=True
403         for pkg in run_pkg:
404             logger.write(" - " + pkg + " : " + run_pkg[pkg] + '\n', 1)
405             if "KO" in run_pkg[pkg]:
406                 result=False
407         for pkg in build_pkg:
408             logger.write(" - " + pkg + " : " + build_pkg[pkg] + '\n', 1)
409             if "KO" in build_pkg[pkg]:
410                 result=False
411         if result==False:
412             logger.error("some system dependencies are missing, please install them with "+\
413                          check_cmd[0])
414         return result        
415
416     if product_info.get_source == "fixed":
417         # skip
418         logger.write('%s  ' % src.printcolors.printc(src.OK_STATUS),
419                      3,
420                      False)
421         msg = "FIXED : %s\n" % product_info.install_dir
422
423         if not os.path.isdir(product_info.install_dir):
424             logger.warning("The fixed path do not exixts!! Please check it : %s\n" % product_info.install_dir)
425         else:
426             logger.write(msg, 3)
427         return True  
428
429     # if the get_source is not in [git, archive, cvs, svn, fixed, native]
430     logger.write(_("Unknown get source method \"%(get)s\" for product %(product)s") % \
431         { 'get': product_info.get_source, 'product': product_info.name }, 3, False)
432     logger.write(" ... ", 3, False)
433     logger.flush()
434     return False
435
436 def get_all_product_sources(config, products, logger):
437     '''Get all the product sources.
438     
439     :param config Config: The global configuration
440     :param products List: The list of tuples (product name, product informations)
441     :param logger Logger: The logger instance to be used for the logging
442     :return: the tuple (number of success, dictionary product_name/success_fail)
443     :rtype: (int,dict)
444     '''
445
446     # Initialize the variables that will count the fails and success
447     results = dict()
448     good_result = 0
449
450     # Get the maximum name length in order to format the terminal display
451     max_product_name_len = 1
452     if len(products) > 0:
453         max_product_name_len = max(map(lambda l: len(l), products[0])) + 4
454     
455     # The loop on all the products from which to get the sources
456     # DBG.write("source.get_all_product_sources config id", id(config), True)
457     for product_name, product_info in products:
458         # get product name, product informations and the directory where to put
459         # the sources
460         if (not (src.product.product_is_fixed(product_info) or 
461                  src.product.product_is_native(product_info))):
462             source_dir = src.Path(product_info.source_dir)
463         else:
464             source_dir = src.Path('')
465
466         # display and log
467         logger.write('%s: ' % src.printcolors.printcLabel(product_name), 3)
468         logger.write(' ' * (max_product_name_len - len(product_name)), 3, False)
469         logger.write("\n", 4, False)
470         
471         # Remove the existing source directory if 
472         # the product is not in development mode
473         is_dev = src.product.product_is_dev(product_info)
474         if source_dir.exists():
475             logger.write('%s  ' % src.printcolors.printc(src.OK_STATUS), 3, False)
476             msg = _("INFO : Not doing anything because the source directory already exists:\n    %s\n") % source_dir
477             logger.write(msg, 3)
478             good_result = good_result + 1
479             # Do not get the sources and go to next product
480             continue
481
482         # Call to the function that get the sources for one product
483         retcode = get_product_sources(config, product_info, is_dev, 
484                                      source_dir, logger, max_product_name_len, 
485                                      checkout=False)
486         
487         '''
488         if 'no_rpath' in product_info.keys():
489             if product_info.no_rpath:
490                 hack_no_rpath(config, product_info, logger)
491         '''
492         
493         # Check that the sources are correctly get using the files to be tested
494         # in product information
495         if retcode:
496             check_OK, wrong_path = check_sources(product_info, logger)
497             if not check_OK:
498                 # Print the missing file path
499                 msg = _("The required file %s does not exists. " % wrong_path)
500                 logger.write(src.printcolors.printcError("\nERROR: ") + msg, 3)
501                 retcode = False
502
503         # show results
504         results[product_name] = retcode
505         if retcode:
506             # The case where it succeed
507             res = src.OK_STATUS
508             good_result = good_result + 1
509         else:
510             # The case where it failed
511             res = src.KO_STATUS
512         
513         # print the result
514         if not(src.product.product_is_fixed(product_info) or 
515                src.product.product_is_native(product_info)):
516             logger.write('%s\n' % src.printcolors.printc(res), 3, False)
517
518     return good_result, results
519
520 def check_sources(product_info, logger):
521     '''Check that the sources are correctly get, using the files to be tested
522        in product information
523     
524     :param product_info Config: The configuration specific to 
525                                 the product to be prepared
526     :return: True if the files exists (or no files to test is provided).
527     :rtype: boolean
528     '''
529     # Get the files to test if there is any
530     if ("present_files" in product_info and 
531         "source" in product_info.present_files):
532         l_files_to_be_tested = product_info.present_files.source
533         for file_path in l_files_to_be_tested:
534             # The path to test is the source directory 
535             # of the product joined the file path provided
536             path_to_test = os.path.join(product_info.source_dir, file_path)
537             logger.write(_("\nTesting existence of file: \n"), 5)
538             logger.write(path_to_test, 5)
539             if not os.path.exists(path_to_test):
540                 return False, path_to_test
541             logger.write(src.printcolors.printcSuccess(" OK\n"), 5)
542     return True, ""
543
544 def description():
545     '''method that is called when salomeTools is called with --help option.
546     
547     :return: The text to display for the source command description.
548     :rtype: str
549     '''
550     return _("The source command gets the sources of the application products "
551              "from cvs, git or an archive.\n\nexample:"
552              "\nsat source SALOME-master --products KERNEL,GUI")
553   
554 def run(args, runner, logger):
555     '''method that is called when salomeTools is called with source parameter.
556     '''
557     DBG.write("source.run()", args)
558     # Parse the options
559     (options, args) = parser.parse_args(args)
560     
561     # check that the command has been called with an application
562     src.check_config_has_application( runner.cfg )
563
564     # Print some informations
565     logger.write(_('Getting sources of the application %s\n') % 
566                 src.printcolors.printcLabel(runner.cfg.VARS.application), 1)
567     src.printcolors.print_value(logger, 'workdir', 
568                                 runner.cfg.APPLICATION.workdir, 2)
569     logger.write("\n", 2, False)
570        
571     # Get the products list with products informations regarding the options
572     products_infos = src.product.get_products_list(options, runner.cfg, logger)
573     
574     # Call to the function that gets all the sources
575     good_result, results = get_all_product_sources(runner.cfg, products_infos, logger)
576
577     # Display the results (how much passed, how much failed, etc...)
578     status = src.OK_STATUS
579     details = []
580
581     logger.write("\n", 2, False)
582     if good_result == len(products_infos):
583         res_count = "%d / %d" % (good_result, good_result)
584     else:
585         status = src.KO_STATUS
586         res_count = "%d / %d" % (good_result, len(products_infos))
587
588         for product in results:
589             if results[product] == 0 or results[product] is None:
590                 details.append(product)
591
592     result = len(products_infos) - good_result
593
594     # write results
595     logger.write(_("Getting sources of the application:"), 1)
596     logger.write(" " + src.printcolors.printc(status), 1, False)
597     logger.write(" (%s)\n" % res_count, 1, False)
598
599     if len(details) > 0:
600         logger.write(_("Following sources haven't been get:\n"), 2)
601         logger.write(" ".join(details), 2)
602         logger.write("\n", 2, False)
603
604     return result