1 #! /usr/bin/env python3
2 # Copyright (C) 2021-2023 CEA, EDF
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
28 ''' Load modules then launch salome
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)]
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)
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)