Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/kernel.git] / bin / shutdownSalome.py
index 0c96154bbf2fb35540abf70131b9647dbc5422c8..a7826c4643c77655042f382ea8ed246650e02bdb 100755 (executable)
@@ -1,28 +1,35 @@
 #!/usr/bin/env python
-import orbmodule
-import Engines
-import Registry
-import SALOME
-import SALOMEDS
-import SALOME_ModuleCatalog
-clt=orbmodule.client()
-obj = clt.Resolve('Kernel/Session')
-if obj != None:
-  ses = obj._narrow(SALOME.Session)
-  ses.StopSession()
-obj = clt.Resolve('SalomeLauncher')
-if obj != None:
-  cm = obj._narrow(Engines.SalomeLauncher)
-  cm.Shutdown()
-obj = clt.Resolve('Kernel/ModulCatalog')
-if obj != None:
-  mc = obj._narrow(SALOME_ModuleCatalog.ModuleCatalog)
-  mc.shutdown()
-obj = clt.Resolve('Registry')
-if obj != None:
-  reg = obj._narrow(Registry.Components)
-  reg.Shutdown()
-obj = clt.Resolve('myStudyManager')
-if obj != None:
-  sm = obj._narrow(SALOMEDS.StudyManager)
-  sm.Shutdown()
+#  -*- coding: iso-8859-1 -*-
+#  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+#  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+#  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Lesser General Public
+#  License as published by the Free Software Foundation; either
+#  version 2.1 of the License.
+#
+#  This library is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#  Lesser General Public License for more details.
+#
+#  You should have received a copy of the GNU Lesser General Public
+#  License along with this library; if not, write to the Free Software
+#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+#  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+## \file shutdownSalome.py
+#  shutdown all %SALOME servers and naming service
+#
+#  
+
+import time
+import salome
+salome.salome_init()
+salome.lcc.shutdownServers()
+#give some time to shutdown to complete
+time.sleep(1)
+salome.LifeCycleCORBA.killOmniNames()