Salome HOME
WIP
[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_i.hxx"
23 #include "SALOME_Container_i.hxx"
24
25 #include <cstring>
26
27
28 std::string BuildSMESHInstance()
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     CORBA::PolicyList policies;
36     policies.length(0);
37     PortableServer::POA_var poa2 = poa->create_POA("POA2",pman,policies);
38     PortableServer::ObjectId_var conId;
39     //
40     {
41         char *argv[4] = {"Container","FactoryServer","toto",nullptr};
42         Engines_Container_i *cont = new Engines_Container_i(orb,poa2,"FactoryServer",2,argv,false,false);
43         conId = poa2->activate_object(cont);
44     }
45     //
46     pman->activate();
47     //
48     SMESH_Gen_i *servant = new SMESH_Gen_i(orb,poa2,const_cast<PortableServer::ObjectId*>(&conId.in()),"SMESH_inst_2","SMESH");
49     PortableServer::ObjectId *zeId = servant->getId();
50     CORBA::Object_var zeRef = poa2->id_to_reference(*zeId);
51     CORBA::String_var ior = orb->object_to_string(zeRef);
52     return std::string(ior.in());
53 }