Salome HOME
2b6db6d0e7a3039488920e0d53bc0fc24263ecd9
[modules/kernel.git] / src / Container / SALOME_Container_No_NS_Serv.cxx
1 // Copyright (C) 2021-2023  CEA/DEN, EDF R&D
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 int main(int argc, char* argv[])
28 {
29   if(argc<3)
30     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : requires 2 input arguments <containerName> <IOR of Engines::EmbeddedNamingService>" );
31   CORBA::ORB_ptr orb(KERNEL::getORB());
32   std::string IOROfEmbeddedNamingService(argv[2]);
33   setIOROfEmbeddedNS(IOROfEmbeddedNamingService);
34   CORBA::Object_var ns_serv_obj_base = orb->string_to_object(IOROfEmbeddedNamingService.c_str());
35   if( CORBA::is_nil(ns_serv_obj_base) )
36     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : argument 2 is NOT a valid IOR" );
37   Engines::EmbeddedNamingService_var ns_serv_obj = Engines::EmbeddedNamingService::_narrow(ns_serv_obj_base);
38   if( CORBA::is_nil(ns_serv_obj) )
39     THROW_SALOME_EXCEPTION( "SALOME_Container_No_NS_Serv : argument 2 is NOT a valid IOR of Engines::EmbeddedNamingService" );
40   std::unique_ptr<SALOME_NamingService_Container_Abstract> ns( new SALOME_Embedded_NamingService_Client(ns_serv_obj) );
41   return container_common_main<Engines_Container_SSL_i>(argc,argv,std::move(ns));
42 }