Salome HOME
Copyright update 2021
[modules/yacs.git] / src / engine / Test / ContainerTest.hxx
1 // Copyright (C) 2006-2021  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 __CONTAINERTEST_HXX__
21 #define __CONTAINERTEST_HXX__
22
23 #include "Container.hxx"
24
25 namespace YACS
26 {
27   namespace ENGINE
28   {
29     class ContainerTest : public Container
30     {
31     public:
32       ContainerTest();
33       std::string getKind() const;
34       std::string getPlacementInfo() const;
35       // implementation of compulsary methods
36       bool isAlreadyStarted(const Task *askingNode) const;
37       void start(const Task *askingNode) ;
38       Container *clone() const;
39       Container *cloneAlways() const;
40       //
41       void lock() { }
42       void unLock() { }
43       void clearProperties() { }
44       void addComponentName(const std::string& name) { }
45       void shutdown(int level) { }
46       void setProperty(const std::string& name,const std::string& value) { }
47       std::string getProperty(const std::string& name) const { return ""; }
48       std::map<std::string,std::string> getResourceProperties(const std::string& name) const { return std::map<std::string,std::string>(); }
49       std::map<std::string,std::string> getProperties() const { return std::map<std::string,std::string>(); }
50       //
51       std::string getPlacementId(const Task *askingNode) const { return ""; }
52       std::string getFullPlacementId(const Task *askingNode) const { return ""; }
53       static void initAllContainers();
54     protected:
55       void checkCapabilityToDealWith(const ComponentInstance *inst) const ;
56     protected:
57       bool _alreadyStarted;
58       unsigned _myCounter;
59       static unsigned _counter;
60       static const char SUPPORTED_COMP_KIND[];
61     };
62
63     class ContainerTest2 : public Container
64     {
65     public:
66       ContainerTest2();
67       std::string getKind() const;
68       // implementation of compulsary methods
69       bool isAlreadyStarted(const Task *askingNode) const;
70       void start(const Task *askingNode) ;
71       Container *clone() const;
72       Container *cloneAlways() const;
73       //
74       void lock() { }
75       void unLock() { }
76       void clearProperties() { }
77       void addComponentName(const std::string& name) { }
78       void shutdown(int level) { }
79       void setProperty(const std::string& name,const std::string& value) { }
80       std::string getProperty(const std::string& name) const { return ""; }
81       std::map<std::string,std::string> getResourceProperties(const std::string& name) const { return std::map<std::string,std::string>(); }
82       std::map<std::string,std::string> getProperties() const { return std::map<std::string,std::string>(); }
83       //
84       std::string getPlacementId(const Task *askingNode) const { return ""; }
85       std::string getFullPlacementId(const Task *askingNode) const { return ""; }
86       static void initAllContainers();
87     protected:
88       void checkCapabilityToDealWith(const ComponentInstance *inst) const ;
89     protected:
90       bool _alreadyStarted;
91       unsigned _myCounter;
92       static unsigned _counter;
93       static const char SUPPORTED_COMP_KIND[];
94     };
95   }
96 }
97
98 #endif