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