]> SALOME platform Git repositories - tools/sat.git/blob - src/compilation.py
Salome HOME
Improvement for check command. See Tuleap 2160
[tools/sat.git] / src / compilation.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 #  Copyright (C) 2010-2013  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 subprocess
21 import sys
22 import shutil
23
24 import src
25
26 C_COMPILE_ENV_LIST = ["CC",
27                       "CXX",
28                       "F77",
29                       "CFLAGS",
30                       "CXXFLAGS",
31                       "LIBS",
32                       "LDFLAGS"]
33
34 class Builder:
35     """Class to handle all construction steps, like cmake, configure, make, ...
36     """
37     def __init__(self,
38                  config,
39                  logger,
40                  product_info,
41                  options = src.options.OptResult(),
42                  check_src=True):
43         self.config = config
44         self.logger = logger
45         self.options = options
46         self.product_info = product_info
47         self.build_dir = src.Path(self.product_info.build_dir)
48         self.source_dir = src.Path(self.product_info.source_dir)
49         self.install_dir = src.Path(self.product_info.install_dir)
50         self.header = ""
51         self.debug_mode = False
52         if "debug" in self.product_info and self.product_info.debug == "yes":
53             self.debug_mode = True
54
55     ##
56     # Shortcut method to log in log file.
57     def log(self, text, level, showInfo=True):
58         self.logger.write(text, level, showInfo)
59         self.logger.logTxtFile.write(src.printcolors.cleancolor(text))
60         self.logger.flush()
61
62     ##
63     # Shortcut method to log a command.
64     def log_command(self, command):
65         self.log("> %s\n" % command, 5)
66
67     ##
68     # Prepares the environment.
69     # Build two environment: one for building and one for testing (launch).
70     def prepare(self):
71
72         if not self.build_dir.exists():
73             # create build dir
74             self.build_dir.make()
75
76         self.log('  build_dir   = %s\n' % str(self.build_dir), 4)
77         self.log('  install_dir = %s\n' % str(self.install_dir), 4)
78         self.log('\n', 4)
79
80         # add products in depend and opt_depend list recursively
81         environ_info = src.product.get_product_dependencies(self.config,
82                                                             self.product_info)
83         #environ_info.append(self.product_info.name)
84
85         # create build environment
86         self.build_environ = src.environment.SalomeEnviron(self.config,
87                                       src.environment.Environ(dict(os.environ)),
88                                       True)
89         self.build_environ.silent = (self.config.USER.output_verbose_level < 5)
90         self.build_environ.set_full_environ(self.logger, environ_info)
91         
92         # create runtime environment
93         self.launch_environ = src.environment.SalomeEnviron(self.config,
94                                       src.environment.Environ(dict(os.environ)),
95                                       False)
96         self.launch_environ.silent = True # no need to show here
97         self.launch_environ.set_full_environ(self.logger, environ_info)
98
99         for ee in C_COMPILE_ENV_LIST:
100             vv = self.build_environ.get(ee)
101             if len(vv) > 0:
102                 self.log("  %s = %s\n" % (ee, vv), 4, False)
103
104         return 0
105
106     ##
107     # Runs cmake with the given options.
108     def cmake(self, options=""):
109
110         cmake_option = options
111         # cmake_option +=' -DCMAKE_VERBOSE_MAKEFILE=ON -DSALOME_CMAKE_DEBUG=ON'
112         if 'cmake_options' in self.product_info:
113             cmake_option += " %s " % " ".join(self.product_info.cmake_options.split())
114
115         # add debug option
116         if self.debug_mode:
117             cmake_option += " -DCMAKE_BUILD_TYPE=Debug"
118         else :
119             cmake_option += " -DCMAKE_BUILD_TYPE=Release"
120         
121         command = ("cmake %s -DCMAKE_INSTALL_PREFIX=%s %s" %
122                             (cmake_option, self.install_dir, self.source_dir))
123
124         self.log_command(command)
125         res = subprocess.call(command,
126                               shell=True,
127                               cwd=str(self.build_dir),
128                               env=self.build_environ.environ.environ,
129                               stdout=self.logger.logTxtFile,
130                               stderr=subprocess.STDOUT)
131
132         self.put_txt_log_in_appli_log_dir("cmake")
133         if res == 0:
134             return res
135         else:
136             return 1
137
138     ##
139     # Runs build_configure with the given options.
140     def build_configure(self, options=""):
141
142         if 'buildconfigure_options' in self.product_info:
143             options += " %s " % self.product_info.buildconfigure_options
144
145         command = str('%s/build_configure') % (self.source_dir)
146         command = command + " " + options
147         self.log_command(command)
148
149         res = subprocess.call(command,
150                               shell=True,
151                               cwd=str(self.build_dir),
152                               env=self.build_environ.environ.environ,
153                               stdout=self.logger.logTxtFile,
154                               stderr=subprocess.STDOUT)
155         self.put_txt_log_in_appli_log_dir("build_configure")
156         if res == 0:
157             return res
158         else:
159             return 1
160
161     ##
162     # Runs configure with the given options.
163     def configure(self, options=""):
164
165         if 'configure_options' in self.product_info:
166             options += " %s " % self.product_info.configure_options
167
168         command = "%s/configure --prefix=%s" % (self.source_dir, str(self.install_dir))
169
170         command = command + " " + options
171         self.log_command(command)
172
173         res = subprocess.call(command,
174                               shell=True,
175                               cwd=str(self.build_dir),
176                               env=self.build_environ.environ.environ,
177                               stdout=self.logger.logTxtFile,
178                               stderr=subprocess.STDOUT)
179         
180         self.put_txt_log_in_appli_log_dir("configure")
181         if res == 0:
182             return res
183         else:
184             return 1
185
186     def hack_libtool(self):
187         if not os.path.exists(str(self.build_dir + 'libtool')):
188             return
189
190         lf = open(os.path.join(str(self.build_dir), "libtool"), 'r')
191         for line in lf.readlines():
192             if 'hack_libtool' in line:
193                 return
194
195         # fix libtool by replacing CC="<compil>" with hack_libtool function
196         hack_command='''sed -i "s%^CC=\\"\(.*\)\\"%hack_libtool() { \\n\\
197 if test \\"\$(echo \$@ | grep -E '\\\\\\-L/usr/lib(/../lib)?(64)? ')\\" == \\\"\\\" \\n\\
198   then\\n\\
199     cmd=\\"\\1 \$@\\"\\n\\
200   else\\n\\
201     cmd=\\"\\1 \\"\`echo \$@ | sed -r -e 's|(.*)-L/usr/lib(/../lib)?(64)? (.*)|\\\\\\1\\\\\\4 -L/usr/lib\\\\\\3|g'\`\\n\\
202   fi\\n\\
203   \$cmd\\n\\
204 }\\n\\
205 CC=\\"hack_libtool\\"%g" libtool'''
206
207         self.log_command(hack_command)
208         subprocess.call(hack_command,
209                         shell=True,
210                         cwd=str(self.build_dir),
211                         env=self.build_environ.environ.environ,
212                         stdout=self.logger.logTxtFile,
213                         stderr=subprocess.STDOUT)
214
215
216     ##
217     # Runs make to build the module.
218     def make(self, nb_proc, make_opt=""):
219
220         # make
221         command = 'make'
222         command = command + " -j" + str(nb_proc)
223         command = command + " " + make_opt
224         self.log_command(command)
225         res = subprocess.call(command,
226                               shell=True,
227                               cwd=str(self.build_dir),
228                               env=self.build_environ.environ.environ,
229                               stdout=self.logger.logTxtFile,
230                               stderr=subprocess.STDOUT)
231         self.put_txt_log_in_appli_log_dir("make")
232         if res == 0:
233             return res
234         else:
235             return 1
236     
237     ##
238     # Runs msbuild to build the module.
239     def wmake(self, opt_nb_proc = None):
240         nbproc = self.get_nb_proc(opt_nb_proc)
241
242         hh = 'MSBUILD /m:%s' % str(nbproc)
243         if self.debug_mode:
244             hh += " " + src.printcolors.printcWarning("DEBUG")
245         self.log_step(hh)
246
247         # make
248         command = 'msbuild'
249         if self.options.makeflags:
250             command = command + " " + self.options.makeflags
251         command = command + " /maxcpucount:" + str(nbproc)
252         if self.debug_mode:
253             command = command + " /p:Configuration=Debug"
254         else:
255             command = command + " /p:Configuration=Release"
256         command = command + " ALL_BUILD.vcxproj"
257
258         self.log_command(command)
259         res = subprocess.call(command,
260                               shell=True,
261                               cwd=str(self.build_dir),
262                               env=self.build_environ.environ.environ,
263                               stdout=self.logger.logTxtFile,
264                               stderr=subprocess.STDOUT)
265         
266         self.put_txt_log_in_appli_log_dir("make")
267         if res == 0:
268             return res
269         else:
270             return 1
271
272     ##
273     # Runs 'make install'.
274     def install(self):
275         if self.config.VARS.dist_name=="Win":
276             command = 'msbuild INSTALL.vcxproj'
277             if self.debug_mode:
278                 command = command + " /p:Configuration=Debug"
279             else:
280                 command = command + " /p:Configuration=Release"
281         else :
282             command = 'make install'
283
284         self.log_command(command)
285
286         res = subprocess.call(command,
287                               shell=True,
288                               cwd=str(self.build_dir),
289                               env=self.build_environ.environ.environ,
290                               stdout=self.logger.logTxtFile,
291                               stderr=subprocess.STDOUT)
292         
293         self.put_txt_log_in_appli_log_dir("makeinstall")
294         if res == 0:
295             return res
296         else:
297             return 1
298
299     ##
300     # Runs 'make_check'.
301     def check(self, command=""):
302         if src.architecture.is_windows():
303             cmd = 'msbuild RUN_TESTS.vcxproj'
304         else :
305             if self.product_info.build_source=="autotools" :
306                 cmd = 'make check'
307             else:
308                 cmd = 'make test'
309         
310         if command:
311             cmd = command
312         
313         self.log_command(cmd)
314
315         res = subprocess.call(cmd,
316                               shell=True,
317                               cwd=str(self.build_dir),
318                               env=self.launch_environ.environ.environ,
319                               stdout=self.logger.logTxtFile,
320                               stderr=subprocess.STDOUT)
321
322         if res == 0:
323             return res
324         else:
325             return 1
326       
327     ##
328     # Performs a default build for this module.
329     def do_default_build(self,
330                          build_conf_options="",
331                          configure_options="",
332                          show_warning=True):
333         use_autotools = False
334         if 'use_autotools' in self.product_info:
335             uc = self.product_info.use_autotools
336             if uc in ['always', 'yes']: 
337                 use_autotools = True
338             elif uc == 'option': 
339                 use_autotools = self.options.autotools
340
341
342         self.use_autotools = use_autotools
343
344         use_ctest = False
345         if 'use_ctest' in self.product_info:
346             uc = self.product_info.use_ctest
347             if uc in ['always', 'yes']: 
348                 use_ctest = True
349             elif uc == 'option': 
350                 use_ctest = self.options.ctest
351
352         self.use_ctest = use_ctest
353
354         if show_warning:
355             cmd = ""
356             if use_autotools: cmd = "(autotools)"
357             if use_ctest: cmd = "(ctest)"
358             
359             self.log("\n", 4, False)
360             self.log("%(module)s: Run default compilation method %(cmd)s\n" % \
361                 { "module": self.module, "cmd": cmd }, 4)
362
363         if use_autotools:
364             if not self.prepare(): return self.get_result()
365             if not self.build_configure(build_conf_options): return self.get_result()
366             if not self.configure(configure_options): return self.get_result()
367             if not self.make(): return self.get_result()
368             if not self.install(): return self.get_result()
369             if not self.clean(): return self.get_result()
370            
371         else: # CMake
372             if self.config.VARS.dist_name=='Win':
373                 if not self.wprepare(): return self.get_result()
374                 if not self.cmake(): return self.get_result()
375                 if not self.wmake(): return self.get_result()
376                 if not self.install(): return self.get_result()
377                 if not self.clean(): return self.get_result()
378             else :
379                 if not self.prepare(): return self.get_result()
380                 if not self.cmake(): return self.get_result()
381                 if not self.make(): return self.get_result()
382                 if not self.install(): return self.get_result()
383                 if not self.clean(): return self.get_result()
384
385         return self.get_result()
386
387     ##
388     # Performs a build with a script.
389     def do_python_script_build(self, script, nb_proc):
390         # script found
391         self.logger.write(_("Compile %(product)s using script %(script)s\n") % \
392             { 'product': self.product_info.name,
393              'script': src.printcolors.printcLabel(script) }, 4)
394         try:
395             import imp
396             product = self.product_info.name
397             pymodule = imp.load_source(product + "_compile_script", script)
398             self.nb_proc = nb_proc
399             retcode = pymodule.compil(self.config, self, self.logger)
400         except:
401             __, exceptionValue, exceptionTraceback = sys.exc_info()
402             self.logger.write(str(exceptionValue), 1)
403             import traceback
404             traceback.print_tb(exceptionTraceback)
405             traceback.print_exc()
406             retcode = 1
407         finally:
408             self.put_txt_log_in_appli_log_dir("script")
409
410         return retcode
411
412     def complete_environment(self, make_options):
413         assert self.build_environ is not None
414         # pass additional variables to environment (may be used by the build script)
415         self.build_environ.set("SOURCE_DIR", str(self.source_dir))
416         self.build_environ.set("INSTALL_DIR", str(self.install_dir))
417         self.build_environ.set("PRODUCT_INSTALL", str(self.install_dir))
418         self.build_environ.set("BUILD_DIR", str(self.build_dir))
419         self.build_environ.set("PRODUCT_BUILD", str(self.build_dir))
420         self.build_environ.set("MAKE_OPTIONS", make_options)
421         self.build_environ.set("DIST_NAME", self.config.VARS.dist_name)
422         self.build_environ.set("DIST_VERSION", self.config.VARS.dist_version)
423         self.build_environ.set("DIST", self.config.VARS.dist)
424         self.build_environ.set("VERSION", self.product_info.version)
425
426     def do_batch_script_build(self, script, nb_proc):
427
428         if src.architecture.is_windows():
429             make_options = "/maxcpucount:%s" % nb_proc
430         else :
431             make_options = "-j%s" % nb_proc
432
433         self.log_command("  " + _("Run build script %s\n") % script)
434         self.complete_environment(make_options)
435         res = subprocess.call(script, 
436                               shell=True,
437                               stdout=self.logger.logTxtFile,
438                               stderr=subprocess.STDOUT,
439                               cwd=str(self.build_dir), 
440                               env=self.build_environ.environ.environ)
441
442         self.put_txt_log_in_appli_log_dir("script")
443         if res == 0:
444             return res
445         else:
446             return 1
447     
448     def do_script_build(self, script, number_of_proc=0):
449         # define make options (may not be used by the script)
450         if number_of_proc==0:
451             nb_proc = src.get_cfg_param(self.product_info,"nb_proc", 0)
452             if nb_proc == 0: 
453                 nb_proc = self.config.VARS.nb_proc
454         else:
455             nb_proc = min(number_of_proc, self.config.VARS.nb_proc)
456             
457         extension = script.split('.')[-1]
458         if extension in ["bat","sh"]:
459             return self.do_batch_script_build(script, nb_proc)
460         if extension == "py":
461             return self.do_python_script_build(script, nb_proc)
462         
463         msg = _("The script %s must have .sh, .bat or .py extension." % script)
464         raise src.SatException(msg)
465     
466     def put_txt_log_in_appli_log_dir(self, file_name):
467         '''Put the txt log (that contain the system logs, like make command
468            output) in the directory <APPLICATION DIR>/LOGS/<product_name>/
469     
470         :param file_name Str: the name of the file to write
471         '''
472         if self.logger.logTxtFile == sys.__stdout__:
473             return
474         dir_where_to_put = os.path.join(self.config.APPLICATION.workdir,
475                                         "LOGS",
476                                         self.product_info.name)
477         file_path = os.path.join(dir_where_to_put, file_name)
478         src.ensure_path_exists(dir_where_to_put)
479         # write the logTxtFile copy it to the destination, and then recreate 
480         # it as it was
481         self.logger.logTxtFile.close()
482         shutil.move(self.logger.txtFilePath, file_path)
483         self.logger.logTxtFile = open(str(self.logger.txtFilePath), 'w')
484         self.logger.logTxtFile.write(open(file_path, "r").read())
485