Salome HOME
ae65b11e39ddd8895481fb323ede36af7786ef71
[modules/yacs.git] / src / runtime / SalomeHPContainer.cxx
1 // Copyright (C) 2006-2014  CEA/DEN, EDF R&D
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 "SalomeHPContainer.hxx"
21 #include "SalomeHPComponent.hxx"
22 #include "SalomeContainerTmpForHP.hxx"
23 #include "AutoLocker.hxx"
24
25 #include <algorithm>
26
27 using namespace YACS::ENGINE;
28
29 const char SalomeHPContainer::KIND[]="HPSalome";
30
31 SalomeHPContainer::SalomeHPContainer():_shutdownLevel(999)
32 {
33 }
34
35 SalomeHPContainer::SalomeHPContainer(const SalomeHPContainer& other):_componentNames(other._componentNames),_shutdownLevel(999),_sct(other._sct)
36 {
37 }
38
39 void SalomeHPContainer::setSizeOfPool(int sz)
40 {
41   _launchModeType.resize(sz);
42 }
43
44 int SalomeHPContainer::getSizeOfPool() const
45 {
46   return _launchModeType.size();
47 }
48
49 std::size_t SalomeHPContainer::getNumberOfFreePlace() const
50 {
51   return _launchModeType.getNumberOfFreePlace();
52 }
53
54 void SalomeHPContainer::allocateFor(const std::vector<const Task *>& nodes)
55 {
56   _launchModeType.allocateFor(nodes);
57 }
58
59 void SalomeHPContainer::release(const Task *node)
60 {
61   _launchModeType.release(node);
62 }
63
64 SalomeHPContainer::~SalomeHPContainer()
65 {
66 }
67
68 void SalomeHPContainer::lock()
69 {
70   _mutex.lock();
71 }
72
73 void SalomeHPContainer::unLock()
74 {
75   _mutex.unLock();
76 }
77
78 std::string SalomeHPContainer::getKind() const
79 {
80   return KIND;
81 }
82
83 std::string SalomeHPContainer::getDiscreminantStrOfThis(const Task *askingNode) const
84 {
85   YACS::BASES::AutoCppPtr<SalomeContainerTmpForHP> tmpCont(SalomeContainerTmpForHP::BuildFrom(this,askingNode));
86   return tmpCont->getDiscreminantStrOfThis(askingNode);
87 }
88
89 bool SalomeHPContainer::isAlreadyStarted(const Task *askingNode) const
90 {
91   const SalomeContainerMonoHelper *helper(_launchModeType.getHelperOfTaskThreadSafe(this,askingNode));
92   return helper->isAlreadyStarted(askingNode);
93 }
94
95 void SalomeHPContainer::start(const Task *askingNode) throw(Exception)
96 {
97   SalomeContainerMonoHelper *helper(_launchModeType.getHelperOfTaskThreadSafe(this,askingNode));
98   SalomeContainerTools::Start(_componentNames,helper,_sct,_shutdownLevel,this,askingNode);
99 }
100
101 void SalomeHPContainer::shutdown(int level)
102 {
103   if(level < _shutdownLevel)
104       return;
105   _shutdownLevel=999;
106   for(std::size_t i=0;i<_launchModeType.size();i++)
107     {
108       SalomeContainerMonoHelper *helper(_launchModeType.at(i));
109       helper->shutdown();
110     }
111 }
112
113 std::string SalomeHPContainer::getPlacementId(const Task *askingNode) const
114 {
115   const SalomeContainerMonoHelper *helper(_launchModeType.getHelperOfTask(askingNode));
116   return SalomeContainerTools::GetPlacementId(helper,this,askingNode);
117 }
118
119 std::string SalomeHPContainer::getFullPlacementId(const Task *askingNode) const
120 {
121   const SalomeContainerMonoHelper *helper(_launchModeType.getHelperOfTask(askingNode));
122   return SalomeContainerTools::GetFullPlacementId(helper,this,askingNode);
123 }
124
125 /*!
126  * It is not a bug here ! clone for homogeneous container is not supposed to be copied !
127  */
128 Container *SalomeHPContainer::clone() const
129 {
130   incrRef();
131   return const_cast<SalomeHPContainer*>(this);
132 }
133
134 Container *SalomeHPContainer::cloneAlways() const
135 {
136   return new SalomeHPContainer(*this);
137 }
138
139 void SalomeHPContainer::setProperty(const std::string& name,const std::string& value)
140 {
141   if(name==SIZE_OF_POOL_KEY)
142     {
143       std::istringstream iss(value);
144       int val(0);
145       iss >> val;
146       setSizeOfPool(val);
147     }
148   else
149     _sct.setProperty(name,value);
150 }
151
152 std::string SalomeHPContainer::getProperty(const std::string& name) const
153 {
154   if(name==SIZE_OF_POOL_KEY)
155     {
156       std::ostringstream oss; oss << getSizeOfPool();
157       return oss.str();
158     }
159   else
160     return _sct.getProperty(name);
161 }
162
163 void SalomeHPContainer::clearProperties()
164 {
165   _sct.clearProperties();
166 }
167
168 void SalomeHPContainer::addComponentName(const std::string& name)
169 {
170   _componentNames.push_back(name);
171 }
172
173 std::map<std::string,std::string> SalomeHPContainer::getProperties() const
174 {
175   std::map<std::string,std::string> ret(_sct.getProperties());
176   std::ostringstream oss; oss << getSizeOfPool();
177   ret[SIZE_OF_POOL_KEY]=oss.str();
178   return ret;
179 }
180
181 std::map<std::string,std::string> SalomeHPContainer::getResourceProperties(const std::string& name) const
182 {
183   return _sct.getResourceProperties(name);
184 }
185
186 void SalomeHPContainer::checkCapabilityToDealWith(const ComponentInstance *inst) const throw(YACS::Exception)
187 {
188   if(inst->getKind()!=SalomeHPComponent::KIND)
189     throw Exception("SalomeHPContainer::checkCapabilityToDealWith : SalomeContainer is not able to deal with this type of ComponentInstance.");
190 }