Salome HOME
Remove special process for PARAVIS
[modules/kernel.git] / bin / appliskel / salome_tester / salome_instance.py
1 # Copyright (C) 2015-2016  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.log', delete=False)
40     log.close()
41
42     instance_args = [
43       "--ns-port-log=%s"%log.name,
44       "--shutdown-servers=%d"%shutdown_servers
45       ] + args
46
47     salome_instance = SalomeInstance()
48     salome_instance.__run(args=instance_args, with_gui=with_gui)
49
50     with open(log.name) as f:
51       salome_instance.port = int(f.readline())
52
53     os.remove(log.name)
54     return salome_instance
55   #
56
57   def __run(self, args=None, with_gui=False):
58     if args is None:
59       args = []
60
61     sys.argv = ['runSalome'] + args
62
63     if with_gui:
64       # :WARNING: NOT TESTED YET
65       sys.argv += ["--gui"]
66       sys.argv += ["--show-desktop=1"]
67       sys.argv += ["--splash=0"]
68       #sys.argv += ["--standalone=study"]
69       #sys.argv += ["--embedded=SalomeAppEngine,cppContainer,registry,moduleCatalog"]
70     else:
71       sys.argv += ["--terminal"]
72       #sys.argv += ["--shutdown-servers=1"]
73       #sys.argv += ["--modules=MED,PARAVIS,GUI"]
74       pass
75
76     import setenv
77     setenv.main(True)
78     import runSalome
79     runSalome.runSalome()
80
81     if not with_gui:
82       import salome
83       salome.salome_init()
84       session_server = salome.naming_service.Resolve('/Kernel/Session')
85       if session_server:
86         session_server.emitMessage("connect_to_study")
87         session_server.emitMessage("activate_viewer/ParaView")
88         pass
89   #
90
91   def stop(self):
92     from multiprocessing import Process
93     from killSalomeWithPort import killMyPort
94     import tempfile
95     with tempfile.NamedTemporaryFile():
96       p = Process(target = killMyPort, args=(self.port,))
97       p.start()
98       p.join()
99     pass
100   #
101
102 #
103
104 if __name__ == "__main__":
105   print "##### Start instance..."
106   salome_instance = SalomeInstance.start()
107   port = salome_instance.get_port()
108   print "#####    ...instance started on port %s"%port
109
110   print "##### Terminate instance running on port %s"%port
111   salome_instance.stop()
112 #