]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/SalomeHPContainer.hxx
Salome HOME
Fix memory corruption and refactor some points.
[modules/yacs.git] / src / runtime / SalomeHPContainer.hxx
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 #ifndef __SALOMEHPCONTAINER_HXX__
21 #define __SALOMEHPCONTAINER_HXX__
22
23 #include "YACSRuntimeSALOMEExport.hxx"
24 #include "HomogeneousPoolContainer.hxx"
25 #include "SalomeContainerHelper.hxx"
26 #include "SalomeContainerTools.hxx"
27 #include "SalomeHPContainerTools.hxx"
28 #include "Mutex.hxx"
29 #include <string>
30 #include <vector>
31 #include <map>
32 #include <SALOMEconfig.h>
33 #include CORBA_CLIENT_HEADER(SALOME_Component)
34 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
35
36 namespace YACS
37 {
38   namespace ENGINE
39   {
40     class Task;
41     class SalomeComponent;
42
43     class YACSRUNTIMESALOME_EXPORT SalomeHPContainer : public HomogeneousPoolContainer
44     {
45     public:
46       SalomeHPContainer();
47       SalomeHPContainer(const SalomeHPContainer& other);
48       //HP specific part
49       void setSizeOfPool(int sz);
50       std::size_t getNumberOfFreePlace() const;
51       void allocateFor(const std::vector<const Task *>& nodes);
52       void release(Task *node);
53       //! For thread safety for concurrent load operation on same Container.
54       void lock();
55       //! For thread safety for concurrent load operation on same Container.
56       void unLock();
57       //
58       bool isAlreadyStarted(const Task *askingNode) const;
59       void start(const Task *askingNode) throw(Exception);
60       void shutdown(int level);
61       std::string getPlacementId(const Task *askingNode) const;
62       std::string getFullPlacementId(const Task *askingNode) const;
63       Container *clone() const;
64       Container *cloneAlways() const;
65       void setProperty(const std::string& name,const std::string& value);
66       std::string getProperty(const std::string& name) const;
67       void clearProperties();
68       void addComponentName(const std::string& name);
69       std::map<std::string,std::string> getProperties() const;
70       std::map<std::string,std::string> getResourceProperties(const std::string& name) const;
71       void checkCapabilityToDealWith(const ComponentInstance *inst) const throw(YACS::Exception);
72       //
73       YACS::BASES::Mutex& getLocker() { return _mutex; }
74     public:
75       static const char KIND[];
76     protected:
77 #ifndef SWIG
78       ~SalomeHPContainer();
79 #endif
80     protected:
81       int _shutdownLevel;
82       SalomeContainerTools _sct;
83       YACS::BASES::Mutex _mutex;
84       std::vector<std::string> _componentNames;
85       //
86       SalomeHPContainerVectOfHelper _launchModeType;
87     };
88   }
89 }
90
91 #endif