Salome HOME
[EDF30382] : Synchro mecanism to ease test of extreme situations
[modules/kernel.git] / src / Container / SALOME_Container_No_NS_Serv_Generic.hxx
1 // Copyright (C) 2021-2024  CEA, EDF
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 #include "SALOME_Container_Common.cxx"
21 #include "SALOME_Container_i.hxx"
22 #include "SALOME_Embedded_NamingService_Client.hxx"
23 #include "Utils_SALOME_Exception.hxx"
24 #include "SALOME_KernelORB.hxx"
25 #include "KernelBasis.hxx"
26
27 template<class CLS>
28 int GenericContainerExecutable(int argc, char* argv[])                                                                                                                 
29 {                                                                                                                                                
30   if(argc<3)
31     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : requires 2 input arguments <containerName> <IOR of Engines::EmbeddedNamingService>" );
32   CORBA::ORB_ptr orb(KERNEL::getORB());
33   std::string IOROfEmbeddedNamingService(argv[2]);
34   setIOROfEmbeddedNS(IOROfEmbeddedNamingService);
35   CORBA::Object_var ns_serv_obj_base = orb->string_to_object(IOROfEmbeddedNamingService.c_str());
36   if( CORBA::is_nil(ns_serv_obj_base) )
37     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : argument 2 is NOT a valid IOR" );
38   Engines::EmbeddedNamingService_var ns_serv_obj = Engines::EmbeddedNamingService::_narrow(ns_serv_obj_base);
39   if( CORBA::is_nil(ns_serv_obj) )
40     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : argument 2 is NOT a valid IOR of Engines::EmbeddedNamingService" );
41   std::unique_ptr<SALOME_NamingService_Container_Abstract> ns( new SALOME_Embedded_NamingService_Client(ns_serv_obj) );                          
42   return container_common_main<CLS>(argc,argv,std::move(ns));
43 }