Salome HOME
Fix a bug causing concurrent access problems to the Resources Manager
[modules/kernel.git] / src / ResourcesManager / SALOME_ResourcesManager_Client.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "SALOME_ResourcesManager_Client.hxx"
24 #include "SALOME_ResourcesManager.hxx"
25
26 using namespace std;
27
28 SALOME_ResourcesManager_Client::SALOME_ResourcesManager_Client(SALOME_NamingService *ns)
29   : _rm(Engines::ResourcesManager::_nil())
30 {
31   CORBA::Object_var objRM = ns->Resolve(SALOME_ResourcesManager::_ResourcesManagerNameInNS);
32   if (!CORBA::is_nil(objRM))
33     _rm = Engines::ResourcesManager::_narrow(objRM);
34   if (CORBA::is_nil(_rm))
35     throw SALOME_Exception("Cannot get SALOME ResourcesManager");
36 }
37
38 SALOME_ResourcesManager_Client::~SALOME_ResourcesManager_Client()
39 {
40   
41 }
42
43 vector<string> SALOME_ResourcesManager_Client::GetFittingResources(const resourceParams& params)
44 {
45   Engines::ResourceParameters_var corba_params = resourceParameters_CPPtoCORBA(params);
46   Engines::ResourceList_var corba_rl = _rm->GetFittingResources(corba_params);
47   vector<string> res = resourceList_CORBAtoCPP(corba_rl);
48   return res;
49 }
50
51 string SALOME_ResourcesManager_Client::Find(const string & policy, const vector<string> & listOfResources)
52 {
53   Engines::ResourceList_var corba_rl = resourceList_CPPtoCORBA(listOfResources);
54   CORBA::String_var corba_res = _rm->Find(policy.c_str(), corba_rl);
55   string res = corba_res.in();
56   return res;
57 }
58
59 ParserResourcesType SALOME_ResourcesManager_Client::GetResourceDefinition(const std::string & name)
60 {
61   Engines::ResourceDefinition_var corba_res = _rm->GetResourceDefinition(name.c_str());
62   ParserResourcesType res = resourceDefinition_CORBAtoCPP(corba_res);
63   return res;
64 }