Salome HOME
Fix previous commit on salome_common.py which led to a bad applipath
[modules/kernel.git] / bin / appliskel / salome_common.py
1 #! /usr/bin/env python3
2 # Copyright (C) 2021-2022  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 json
22 import os
23 import subprocess
24 import sys
25
26
27 def main(args):
28     ''' Load modules then launch salome
29     '''
30     appliPath = os.path.realpath(os.path.dirname(os.path.abspath(__file__)))
31     MODULES_FILE = os.path.join(appliPath, "env_modules.json")
32     if os.path.isfile(MODULES_FILE):
33         env_modules = json.loads(open(MODULES_FILE).read()).get('env_modules')
34         env_modules_option = "--with-env-modules="
35         env_modules_l = [x for x in args if x.startswith(env_modules_option)]
36         if env_modules_l:
37             env_modules += env_modules_l[-1][len(env_modules_option):].split(',')
38             args = [x for x in args if not x.startswith(env_modules_option)]
39         env_modules_option += "%s" % ','.join(env_modules)
40         args.append(env_modules_option)
41
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)