Salome HOME
[EDF22374] : osmesa usage on poor graphcal capabilities laptops
[modules/kernel.git] / bin / appliskel / salome_common.py
1     #! /usr/bin/env python3
2 # Copyright (C) 2021  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 import os
22 import subprocess
23 import sys
24
25 MODULES = []
26
27
28 def main(args):
29     ''' Load modules then launch salome
30     '''
31     if MODULES:
32         env_modules = MODULES[:]
33         env_modules_option = "--with-env-modules="
34         env_modules_l = [x for x in args if x.startswith(env_modules_option)]
35         if env_modules_l:
36             env_modules += env_modules_l[-1][len(env_modules_option):].split(',')
37             args = [x for x in args if not x.startswith(env_modules_option)]
38         env_modules_option += "%s" % ','.join(env_modules)
39         args.append(env_modules_option)
40
41     appliPath = os.path.dirname(os.path.realpath(__file__))
42     os.environ["ROOT_SALOME_INSTALL"]=appliPath
43     proc = subprocess.Popen([os.path.join(appliPath, '.salome_run')] + args, close_fds=True)
44     out, err = proc.communicate()
45     sys.exit(proc.returncode)