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