Salome HOME
Ready to update Executor to take into account of the new type of containers.
[modules/yacs.git] / src / runtime / SalomeHPContainerTools.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 "SalomeHPContainerTools.hxx"
21 #include "Exception.hxx"
22
23 #include <algorithm>
24
25 using namespace YACS::ENGINE;
26
27 void SalomeHPContainerVectOfHelper::resize(std::size_t sz)
28 {
29   checkNoCurrentWork();
30   _whichOccupied.resize(sz); std::fill(_whichOccupied.begin(),_whichOccupied.end(),false);
31   _launchModeType.clear(); _launchModeType.resize(sz);
32   _currentlyWorking.clear();
33 }
34
35 std::size_t SalomeHPContainerVectOfHelper::getNumberOfFreePlace() const
36 {
37   return std::count(_whichOccupied.begin(),_whichOccupied.end(),false);
38 }
39
40 void SalomeHPContainerVectOfHelper::allocateFor(const std::vector<const Task *>& nodes)
41 {
42   for(std::vector<const Task *>::const_iterator it=nodes.begin();it!=nodes.end();it++)
43     {
44       if(!(*it))
45         continue;
46       if(_currentlyWorking.find(*it)!=_currentlyWorking.end())
47         throw Exception("Searching to allocate for a ServiceNode instance already declared as allocated !");
48       std::vector<bool>::iterator it2(std::find(_whichOccupied.begin(),_whichOccupied.end(),false));
49       if(it2==_whichOccupied.end())
50         throw Exception("All ressources are already occupied ! You are expected to wait for released resources !");
51       std::size_t pos(std::distance(_whichOccupied.begin(),it2));
52       _currentlyWorking[*it]=pos; _whichOccupied[pos]=true;
53     }
54 }
55
56 void SalomeHPContainerVectOfHelper::release(const Task *node)
57 {
58   if(!node)
59     return ;
60   std::map< const Task *,std::size_t >::iterator it(_currentlyWorking.find(node));
61   if(it==_currentlyWorking.end())
62     throw Exception("Request to release a resource not declared as working !");
63   _whichOccupied[(*it).second]=false;
64   _currentlyWorking.erase(it);
65 }
66
67 const SalomeContainerMonoHelper& SalomeHPContainerVectOfHelper::getHelperOfTask(const Task *node) const
68 {
69   return _launchModeType[locateTask(node)];
70 }
71
72 SalomeContainerMonoHelper& SalomeHPContainerVectOfHelper::getHelperOfTask(const Task *node)
73 {
74   return _launchModeType[locateTask(node)];
75 }
76
77 std::size_t SalomeHPContainerVectOfHelper::locateTask(const Task *node) const
78 {
79   std::map< const Task *,std::size_t >::const_iterator it(_currentlyWorking.find(node));
80   if(it==_currentlyWorking.end())
81     throw Exception("current Node to be located is not marked as launched !");
82   std::size_t ret((*it).second);
83   checkPosInVec(ret);
84   return ret;
85 }
86
87 void SalomeHPContainerVectOfHelper::checkNoCurrentWork() const
88 {
89   for(std::map<const Task *,std::size_t >::const_iterator it=_currentlyWorking.begin();it!=_currentlyWorking.end();it++)
90     if((*it).first)
91       throw Exception("Something wrong a node is still declared to be using the ressource !");
92   for(std::vector<SalomeContainerMonoHelper>::const_iterator it=_launchModeType.begin();it!=_launchModeType.end();it++)
93     if((*it).isAlreadyStarted(0))
94       throw Exception("Some of the containers have be started ! Please shutdown them before !");
95 }
96
97 void SalomeHPContainerVectOfHelper::checkPosInVec(std::size_t pos) const
98 {
99   if(pos<0 || pos>=_launchModeType.size())
100     throw Exception("The task has been found, but its id is not in the correct range ! resize of of container size during run ?");
101 }