Salome HOME
Add make command first version
[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
23 import src
24
25 C_COMPILE_ENV_LIST = ["CC",
26                       "CXX",
27                       "F77",
28                       "CFLAGS",
29                       "CXXFLAGS",
30                       "LIBS",
31                       "LDFLAGS"]
32
33 class Builder:
34     """Class to handle all construction steps, like cmake, configure, make, ...
35     """
36     def __init__(self, config, logger, product_info, options = src.options.OptResult(), debug_mode=False, check_src=True):
37         self.config = config
38         self.logger = logger
39         self.options = options
40         self.product_info = product_info
41         self.build_dir = src.Path(self.product_info.build_dir)
42         self.source_dir = src.Path(self.product_info.source_dir)
43         self.install_dir = src.Path(self.product_info.install_dir)
44         self.header = ""
45         self.debug_mode = debug_mode
46
47         if not self.source_dir.exists() and check_src:
48             raise src.SatException(_("No sources found for product %(product)s in %(source_dir)s" % \
49                 { "product": self.product_info.name, "source_dir": self.source_dir } ))
50
51         """
52         # check that required modules exist
53         for dep in self.product_info.depend:
54             assert dep in self.config.TOOLS.src.product_info, "UNDEFINED product: %s" % dep
55             dep_info = self.config.TOOLS.src.product_info[dep]
56             if 'install_dir' in dep_info and not os.path.exists(dep_info.install_dir):
57                 raise src.SatException(_("Module %s is required") % dep)
58         """
59
60     ##
61     # Shortcut method to log in both log files.
62     def log(self, text, level, showInfo=True):
63         self.logger.write(text, level, showInfo)
64         self.logger.logTxtFile.write(src.printcolors.cleancolor(text))
65         self.logger.flush()
66
67     ##
68     # Shortcut method to log a command.
69     def log_command(self, command):
70         self.log("> %s\n" % command, 5)
71
72     ##
73     # Prepares the environment.
74     # Build two environment: one for building and one for testing (launch).
75     def prepare(self):
76
77         if not self.build_dir.exists():
78             # create build dir
79             self.build_dir.make()
80
81         self.log('  build_dir   = %s\n' % str(self.build_dir), 4)
82         self.log('  install_dir = %s\n' % str(self.install_dir), 4)
83         self.log('\n', 4)
84
85         # add products in depend and opt_depend list recursively
86         environ_info = src.product.get_product_dependencies(self.config, self.product_info)
87
88         # create build environment
89         self.build_environ = src.environment.SalomeEnviron(self.config, src.environment.Environ(dict(os.environ)), True)
90         self.build_environ.silent = (self.config.USER.output_verbose_level < 5)
91         self.build_environ.set_full_environ(self.logger, environ_info)
92
93         # create runtime environment
94         self.launch_environ = src.environment.SalomeEnviron(self.config, src.environment.Environ(dict(os.environ)), False)
95         self.launch_environ.silent = True # no need to show here
96         self.launch_environ.set_full_environ(self.logger, environ_info)
97
98         for ee in C_COMPILE_ENV_LIST:
99             vv = self.build_environ.get(ee)
100             if len(vv) > 0:
101                 self.log("  %s = %s\n" % (ee, vv), 4, False)
102
103         return 0
104
105     ##
106     # Runs cmake with the given options.
107     def cmake(self, options=""):
108
109         cmake_option = options
110         # cmake_option +=' -DCMAKE_VERBOSE_MAKEFILE=ON -DSALOME_CMAKE_DEBUG=ON'
111         if 'cmake_options' in self.product_info:
112             cmake_option += " %s " % " ".join(self.product_info.cmake_options.split())
113
114         # add debug option
115         if self.debug_mode:
116             cmake_option += " -DCMAKE_BUILD_TYPE=Debug"
117         else :
118             cmake_option += " -DCMAKE_BUILD_TYPE=Release"
119         
120         command = ("cmake %s -DCMAKE_INSTALL_PREFIX=%s %s" %
121                             (cmake_option, self.install_dir, self.source_dir))
122
123         self.log_command(command)
124         res = subprocess.call(command,
125                               shell=True,
126                               cwd=str(self.build_dir),
127                               env=self.build_environ.environ.environ,
128                               stdout=self.logger.logTxtFile,
129                               stderr=subprocess.STDOUT)
130
131         if res == 0:
132             return res
133         else:
134             return 1
135
136     ##
137     # Runs build_configure with the given options.
138     def build_configure(self, options=""):
139
140         if 'buildconfigure_options' in self.product_info:
141             options += " %s " % self.product_info.buildconfigure_options
142
143         command = str('%s/build_configure') % (self.source_dir)
144         command = command + " " + options
145         self.log_command(command)
146
147         res = subprocess.call(command,
148                               shell=True,
149                               cwd=str(self.build_dir),
150                               env=self.build_environ.environ.environ,
151                               stdout=self.logger.logTxtFile,
152                               stderr=subprocess.STDOUT)
153
154         if res == 0:
155             return res
156         else:
157             return 1
158
159     ##
160     # Runs configure with the given options.
161     def configure(self, options=""):
162
163         if 'configure_options' in self.product_info:
164             options += " %s " % self.product_info.configure_options
165
166         command = "%s/configure --prefix=%s" % (self.source_dir, str(self.install_dir))
167
168         command = command + " " + options
169         self.log_command(command)
170
171         res = subprocess.call(command,
172                               shell=True,
173                               cwd=str(self.build_dir),
174                               env=self.build_environ.environ.environ,
175                               stdout=self.logger.logTxtFile,
176                               stderr=subprocess.STDOUT)
177
178         if res == 0:
179             return res
180         else:
181             return 1
182
183     def hack_libtool(self):
184         if not os.path.exists(str(self.build_dir + 'libtool')):
185             return
186
187         lf = open(os.path.join(str(self.build_dir), "libtool"), 'r')
188         for line in lf.readlines():
189             if 'hack_libtool' in line:
190                 return
191
192         # fix libtool by replacing CC="<compil>" with hack_libtool function
193         hack_command='''sed -i "s%^CC=\\"\(.*\)\\"%hack_libtool() { \\n\\
194 if test \\"\$(echo \$@ | grep -E '\\\\\\-L/usr/lib(/../lib)?(64)? ')\\" == \\\"\\\" \\n\\
195   then\\n\\
196     cmd=\\"\\1 \$@\\"\\n\\
197   else\\n\\
198     cmd=\\"\\1 \\"\`echo \$@ | sed -r -e 's|(.*)-L/usr/lib(/../lib)?(64)? (.*)|\\\\\\1\\\\\\4 -L/usr/lib\\\\\\3|g'\`\\n\\
199   fi\\n\\
200   \$cmd\\n\\
201 }\\n\\
202 CC=\\"hack_libtool\\"%g" libtool'''
203
204         self.log_command(hack_command)
205         subprocess.call(hack_command,
206                         shell=True,
207                         cwd=str(self.build_dir),
208                         env=self.build_environ.environ.environ,
209                         stdout=self.logger.logTxtFile,
210                         stderr=subprocess.STDOUT)
211
212     def get_nb_proc(self, opt_nb_proc=None):
213         nbproc = -1
214         if "nb_proc" in self.product_info:
215             # nb proc is specified in module definition
216             nbproc = self.product_info.nb_proc
217             if opt_nb_proc and opt_nb_proc < self.product_info.nb_proc:
218                 # use command line value only if it is lower than module definition
219                 nbproc = opt_nb_proc
220         else:
221             # nb proc is not specified in module definition
222             if opt_nb_proc:
223                 nbproc = opt_nb_proc
224             else:
225                 nbproc = self.config.VARS.nb_proc
226         
227         assert nbproc > 0
228         return nbproc
229
230     ##
231     # Runs make to build the module.
232     def make(self, nb_proc, make_opt):
233
234         # make
235         command = 'make'
236         command = command + " -j" + str(nb_proc)
237         command = command + " " + make_opt
238         self.log_command(command)
239         res = subprocess.call(command,
240                               shell=True,
241                               cwd=str(self.build_dir),
242                               env=self.build_environ.environ.environ,
243                               stdout=self.logger.logTxtFile,
244                               stderr=subprocess.STDOUT)
245
246         if res == 0:
247             return res
248         else:
249             return 1
250     
251     ##
252     # Runs msbuild to build the module.
253     def wmake(self, opt_nb_proc = None):
254         nbproc = self.get_nb_proc(opt_nb_proc)
255
256         hh = 'MSBUILD /m:%s' % str(nbproc)
257         if self.debug_mode:
258             hh += " " + src.printcolors.printcWarning("DEBUG")
259         self.log_step(hh)
260
261         # make
262         command = 'msbuild'
263         if self.options.makeflags:
264             command = command + " " + self.options.makeflags
265         command = command + " /maxcpucount:" + str(nbproc)
266         if self.debug_mode:
267             command = command + " /p:Configuration=Debug"
268         else:
269             command = command + " /p:Configuration=Release"
270         command = command + " ALL_BUILD.vcxproj"
271
272         self.log_command(command)
273         res = subprocess.call(command,
274                               shell=True,
275                               cwd=str(self.build_dir),
276                               env=self.build_environ.environ.environ,
277                               stdout=self.logger.logTxtFile,
278                               stderr=subprocess.STDOUT)
279
280         if res == 0:
281             return res
282         else:
283             return 1
284
285     ##
286     # Runs 'make install'.
287     def install(self):
288         if self.config.VARS.dist_name=="Win":
289             command = 'msbuild INSTALL.vcxproj'
290             if self.debug_mode:
291                 command = command + " /p:Configuration=Debug"
292             else:
293                 command = command + " /p:Configuration=Release"
294         else :
295             command = 'make install'
296
297         self.log_command(command)
298
299         res = subprocess.call(command,
300                               shell=True,
301                               cwd=str(self.build_dir),
302                               env=self.build_environ.environ.environ,
303                               stdout=self.logger.logTxtFile,
304                               stderr=subprocess.STDOUT)
305
306         if res == 0:
307             return res
308         else:
309             return 1
310
311     ##
312     # Runs 'make_check'.
313     def check(self):
314         if src.architecture.is_windows():
315             command = 'msbuild RUN_TESTS.vcxproj'
316         else :
317             if self.use_autotools :
318                 command = 'make check'
319             else :
320                 command = 'make test'
321             
322         self.log_command(command)
323
324         res = subprocess.call(command,
325                               shell=True,
326                               cwd=str(self.build_dir),
327                               env=self.launch_environ.environ.environ,
328                               stdout=self.logger.logTxtFile,
329                               stderr=subprocess.STDOUT)
330
331         if res == 0:
332             return res
333         else:
334             return 1
335       
336     ##
337     # Performs a default build for this module.
338     def do_default_build(self, build_conf_options="", configure_options="", show_warning=True):
339         use_autotools = False
340         if 'use_autotools' in self.product_info:
341             uc = self.product_info.use_autotools
342             if uc in ['always', 'yes']: 
343                 use_autotools = True
344             elif uc == 'option': 
345                 use_autotools = self.options.autotools
346
347
348         self.use_autotools = use_autotools
349
350         use_ctest = False
351         if 'use_ctest' in self.product_info:
352             uc = self.product_info.use_ctest
353             if uc in ['always', 'yes']: 
354                 use_ctest = True
355             elif uc == 'option': 
356                 use_ctest = self.options.ctest
357
358         self.use_ctest = use_ctest
359
360         if show_warning:
361             cmd = ""
362             if use_autotools: cmd = "(autotools)"
363             if use_ctest: cmd = "(ctest)"
364             
365             self.log("\n", 4, False)
366             self.log("%(module)s: Run default compilation method %(cmd)s\n" % \
367                 { "module": self.module, "cmd": cmd }, 4)
368
369         if use_autotools:
370             if not self.prepare(): return self.get_result()
371             if not self.build_configure(build_conf_options): return self.get_result()
372             if not self.configure(configure_options): return self.get_result()
373             if not self.make(): return self.get_result()
374             if not self.install(): return self.get_result()
375             if not self.clean(): return self.get_result()
376            
377         else: # CMake
378             if self.config.VARS.dist_name=='Win':
379                 if not self.wprepare(): return self.get_result()
380                 if not self.cmake(): return self.get_result()
381                 if not self.wmake(): return self.get_result()
382                 if not self.install(): return self.get_result()
383                 if not self.clean(): return self.get_result()
384             else :
385                 if not self.prepare(): return self.get_result()
386                 if not self.cmake(): return self.get_result()
387                 if not self.make(): return self.get_result()
388                 if not self.install(): return self.get_result()
389                 if not self.clean(): return self.get_result()
390
391         return self.get_result()
392
393     ##
394     # Performs a build with a script.
395     def do_script_build(self, script):
396         # script found
397         self.logger.write(_("Compile %(module)s using script %(script)s\n") % \
398             { 'module': self.module, 'script': src.printcolors.printcLabel(script) }, 4)
399         try:
400             import imp
401             pymodule = imp.load_source(self.module + "_compile_script", script)
402             retcode = pymodule.compil(self.config, self, self.logger)
403         except:
404             __, exceptionValue, exceptionTraceback = sys.exc_info()
405             print(exceptionValue)
406             import traceback
407             traceback.print_tb(exceptionTraceback)
408             traceback.print_exc()
409
410         return retcode
411