Salome HOME
Fix pb with duplication of PVSERVER service - attempt 2
[modules/gui.git] / src / PVServerService / ServiceLoader / PVServer_ServiceLoader.cxx
1 // Copyright (C) 2015-2016  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 // Author: Adrien Bruneton (CEA)
20
21 #include "PVServer_ServiceLoader.h"
22
23 #include <SALOME_LifeCycleCORBA.hxx>
24 #include <SALOME_NamingService.hxx>
25 #include <utilities.h> // MESSAGE() macro
26 #include <SALOMEconfig.h>
27 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
28
29 PVServer_ServiceLoader::PVServer_ServiceLoader():
30   myLcc( 0 )
31 {
32   myLcc = new SALOME_LifeCycleCORBA();
33 }
34
35 PVServer_ServiceLoader::~PVServer_ServiceLoader()
36 {
37   delete myLcc;
38 }
39
40 SALOME_LifeCycleCORBA* PVServer_ServiceLoader::lcc()
41 {
42   return myLcc;
43 }
44
45 std::string PVServer_ServiceLoader::findOrLoadService( const std::string& containerName )
46 {
47   std::string ior = findService( containerName );
48   if ( ior == "" )
49     ior = loadService( containerName );
50   return ior;
51 }
52
53 std::string PVServer_ServiceLoader::findService( const std::string& containerName )
54 {
55   std::string ior = "";
56
57   Engines::Container_var container = getContainer( containerName, "get" );
58
59   if ( !CORBA::is_nil( container ) )
60   {
61     CORBA::String_var hName = container->getHostName();
62     CORBA::Object_var obj = lcc()->namingService()->ResolveComponent( hName.in(),
63                                                                       containerName.c_str(),
64                                                                       "PVSERVER",
65                                                                       0 );
66     if ( !CORBA::is_nil( obj ) )
67     {
68       CORBA::ORB_var orb = lcc()->orb();
69       CORBA::String_var cIor = orb->object_to_string( obj );
70       ior = cIor.in();
71     }
72   }
73
74   if ( ior == "" )
75   {
76     MESSAGE( "PVServer_ServiceLoader::findService(): Service NOT found!" );
77   }
78   else
79   {
80     MESSAGE( "PVServer_ServiceLoader::findService(): Service found!" );
81   }
82
83   return ior;
84 }
85
86 std::string PVServer_ServiceLoader::loadService( const std::string& containerName )
87 {
88   std::string ior = "";
89
90   Engines::Container_var container = getContainer( containerName, "getorstart" );
91
92   if ( !CORBA::is_nil( container ) )
93   {
94     CORBA::String_var cReason;
95     CORBA::String_var cIor = container->create_python_service_instance( "PVSERVER", cReason.out() );
96     std::string reason = cReason.in();
97
98     if ( reason != "" )
99     {
100       MESSAGE( "PVServer_ServiceLoader::loadService(): Python service instance could not be created!" );
101       MESSAGE( "PVServer_ServiceLoader::loadService(): " << reason );
102     }
103     else
104     {
105       MESSAGE( "PVServer_ServiceLoader::loadService(): Container and service loaded!" );
106       ior = cIor.in();
107     }
108   }
109   else
110   {
111     MESSAGE( "PVServer_ServiceLoader::loadService(): Container could not be retrieved!" );
112   }
113   return ior;
114 }
115
116 Engines::Container_ptr PVServer_ServiceLoader::getContainer( const std::string& containerName,
117                                                              const std::string& mode )
118 {
119   Engines::ContainerParameters params;
120   params.isMPI = false;
121   params.mode = CORBA::string_dup( mode.c_str() );
122
123   int rg = containerName.find( "/" );
124   if ( rg < 0 )
125   {
126     params.container_name = CORBA::string_dup( containerName.c_str() );
127   }
128   else
129   {
130     params.resource_params.hostname = CORBA::string_dup( containerName.substr(0, rg).c_str() );
131     params.container_name           = CORBA::string_dup( containerName.substr(rg+1).c_str() );
132   }
133
134   Engines::ContainerManager_var cm = lcc()->getContainerManager();
135   Engines::Container_var container = cm->GiveContainer( params );
136   return container._retn();
137 }