Salome HOME
Merge Python 3 porting.
[modules/kernel.git] / bin / appliskel / salome_tester / salome_instance.py
1 # Copyright (C) 2015-2017  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import sys
21 import os
22
23 # Example of args:
24 #      args=["--gui", "--show-desktop=1", "--splash=0"]
25 #      args=["--terminal","--modules=MED,PARAVIS,GUI"]
26 class SalomeInstance(object):
27
28   def __init__(self):
29     self.port = None
30   #
31
32   def get_port(self):
33     return self.port
34   #
35
36   @staticmethod
37   def start(shutdown_servers=False, with_gui=False, args=[]):
38     import tempfile
39     log = tempfile.NamedTemporaryFile(suffix='_nsport', delete=True)
40     port_log = log.name
41     log.close()
42     port_log = port_log + "-%s.log"%(os.getpid())
43     instance_args = [
44       "--ns-port-log=%s"%port_log,
45       "--shutdown-servers=%d"%shutdown_servers
46       ] + args
47
48     salome_instance = SalomeInstance()
49     salome_instance.__run(args=instance_args, with_gui=with_gui)
50
51     with open(port_log) as f:
52       salome_instance.port = int(f.readline())
53
54     os.remove(port_log)
55     return salome_instance
56   #
57
58   def __run(self, args=None, with_gui=False):
59     if args is None:
60       args = []
61
62     sys.argv = ['runSalome'] + args
63
64     if with_gui:
65       # :WARNING: NOT TESTED YET
66       sys.argv += ["--gui"]
67       sys.argv += ["--show-desktop=1"]
68       sys.argv += ["--splash=0"]
69       #sys.argv += ["--standalone=study"]
70       #sys.argv += ["--embedded=SalomeAppEngine,cppContainer,registry,moduleCatalog"]
71     else:
72       sys.argv += ["--terminal"]
73       #sys.argv += ["--shutdown-servers=1"]
74       #sys.argv += ["--modules=MED,PARAVIS,GUI"]
75       pass
76
77     import setenv
78     setenv.main(True)
79     import runSalome
80     runSalome.runSalome()
81
82     if not with_gui:
83       import salome
84       salome.salome_init()
85       session_server = salome.naming_service.Resolve('/Kernel/Session')
86       if session_server:
87         session_server.emitMessage("connect_to_study")
88         session_server.emitMessage("activate_viewer/ParaView")
89         pass
90   #
91
92   def stop(self):
93     from multiprocessing import Process
94     from killSalomeWithPort import killMyPort
95     import tempfile
96     with tempfile.NamedTemporaryFile():
97       p = Process(target = killMyPort, args=(self.port,))
98       p.start()
99       p.join()
100     pass
101   #
102
103 #
104
105 if __name__ == "__main__":
106   print("##### Start instance...")
107   salome_instance = SalomeInstance.start()
108   port = salome_instance.get_port()
109   print("#####    ...instance started on port %s"%port)
110
111   print("##### Terminate instance running on port %s"%port)
112   salome_instance.stop()
113 #