Salome HOME
[EDF29576] : avoid salome_init call in driver process
[modules/yacs.git] / src / yacsloader / driver
1 #! /usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 # Copyright (C) 2024  CEA, EDF
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, or (at your option) any later version.
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 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 import driver_internal
23 import subprocess as sp
24 import salome
25 import SALOME_Embedded_NamingService_ClientPy
26 import NamingService
27
28 import signal
29 import os
30
31 proc = None
32 ior_file = None
33
34 def handler(signum, frame):
35   global proc
36   ns = SALOME_Embedded_NamingService_ClientPy.SALOME_Embedded_NamingService_ClientPy( NamingService.NamingService.LoadIORInFile( ior_file ) )
37   cm = ns.Resolve(salome.CM_NAME_IN_NS)
38   cm.ShutdownContainersNow()
39   os.kill( proc.pid, signal.SIGKILL )
40
41 if __name__ == "__main__":
42   import sys
43   import tempfile
44   signal.signal(signal.SIGINT, handler)
45   signal.signal(signal.SIGTERM, handler)
46   with tempfile.NamedTemporaryFile(prefix="ior_driver_",suffix=".ior") as f:
47     ior_file = f.name
48   iorStuff = "{}={}".format( driver_internal.IOREntryInCMD, ior_file)
49   argv = [elt for elt in sys.argv[1:] if elt != ""]
50   proc = sp.Popen( ["python3",driver_internal.__file__] + [ iorStuff ] + argv  )
51   proc.communicate()