Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/kernel.git] / bin / waitContainers.py
1 #!/usr/bin/env python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 ## \file waitContainers.py
25 # \brief command to wait until containers are launched
26 #
27 # the container names (in naming service) are passed on the command line as in :
28 # waitContainers.py FactoryServer
29
30 import sys
31 import time
32 import orbmodule
33 import CosNaming
34 clt = orbmodule.client()
35 clt.waitNS("/ContainerManager")
36 obj = clt.orb.resolve_initial_references("NameService")
37 rootContext = obj._narrow(CosNaming.NamingContext)
38 cname = []
39 cname.append(CosNaming.NameComponent('Containers', 'dir'))
40
41 while(1):
42   try:
43     ccontext = rootContext.resolve(cname)
44     break
45   except CosNaming.NamingContext.NotFound, ex:
46     time.sleep(1)
47   except CosNaming.NamingContext.InvalidName, ex:
48     time.sleep(1)
49   except CosNaming.NamingContext.CannotProceed, ex:
50     time.sleep(1)
51   except (CORBA.TRANSIENT,CORBA.OBJECT_NOT_EXIST,CORBA.COMM_FAILURE):
52     time.sleep(1)
53
54 def waitContainer(mycont):
55   while(1):
56     bl,bi=ccontext.list(0)
57     if bi is not None:
58       ok,b=bi.next_one()
59       while(ok):
60         for s in b.binding_name :
61           if s.kind == "dir":
62             obj=ccontext.resolve([s])
63             scontext = obj._narrow(CosNaming.NamingContext)
64             bll,bii=scontext.list(0)
65             if bii is not None:
66               ok,bb=bii.next_one()
67               while(ok):
68                 for s in bb.binding_name :
69                    if s.id == mycont:
70                      print s.id
71                      return
72                 ok,bb=bii.next_one()
73         ok,b=bi.next_one()
74     sys.stdout.write('+')
75     sys.stdout.flush()
76     time.sleep(1)
77
78 for cont in sys.argv:
79   if cont != sys.argv[0]:
80     waitContainer(cont)
81