Version: 9.16.0
SALOME_Container_No_NS_Serv_Generic.hxx
Go to the documentation of this file.
1// Copyright (C) 2021-2026 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
23#include "Utils_SALOME_Exception.hxx"
24#include "SALOME_KernelORB.hxx"
25#include "KernelBasis.hxx"
26
27template<class CLS>
28int 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}
int GenericContainerExecutable(int argc, char *argv[])
Definition: SALOME_Container_No_NS_Serv_Generic.hxx:28
Definition: SALOME_Embedded_NamingService_Client.hxx:29
CORBA::ORB_ptr getORB()
This function returns a static reference to the orb.
Definition: SALOME_KernelORB.cxx:29
argv
Definition: envSalome.py:42
orb
Definition: salome.py:122