Salome HOME
036ef29735dd00c80d7a3c763ec0dde17afa623e
[modules/smesh.git] / src / SMESH_SWIG / SMeshHelper.cxx
1 // Copyright (C) 2021  CEA/DEN, EDF R&D, OPEN CASCADE
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 "SMeshHelper.h"
21
22 #include "SMESH_Gen_No_Session_i.hxx"
23 #include "SALOME_Container_i.hxx"
24 #include "SALOME_KernelServices.hxx"
25
26 #include <cstring>
27
28 std::string BuildSMESHInstanceInternal()
29 {
30     CORBA::ORB_var orb;
31     { int argc(0); orb = CORBA::ORB_init(argc,nullptr); }
32     CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
33     PortableServer::POA_var poa = PortableServer::POA::_narrow(obj);
34     PortableServer::POAManager_var pman = poa->the_POAManager();
35     PortableServer::ObjectId_var conId;
36     //
37     {
38         char *argv[4] = {"Container","FactoryServer","SMESH",nullptr};
39         Engines_Container_i *cont = new Engines_Container_i(orb,poa,"FactoryServer",2,argv,false,false);
40         conId = poa->activate_object(cont);
41     }
42     //
43     pman->activate();
44     //
45     SMESH_Gen_No_Session_i *servant = new SMESH_Gen_No_Session_i(orb,poa,const_cast<PortableServer::ObjectId*>(&conId.in()),"SMESH_inst_2","SMESH");
46     PortableServer::ObjectId *zeId = servant->getId();
47     CORBA::Object_var zeRef = poa->id_to_reference(*zeId);
48     CORBA::String_var ior = orb->object_to_string(zeRef);
49     return std::string(ior.in());
50 }