Salome HOME
291a9feb736fa8ed80f581d9046699250b31e7a8
[modules/yacs.git] / src / engine / Test / ContainerTest.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 __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 getPlacementInfo() const;
34       // implementation of compulsary methods
35       bool isAlreadyStarted(const ComponentInstance *inst) const;
36       void start(const ComponentInstance *inst) throw(Exception);
37       Container *clone() const;
38       Container *cloneAlways() const;
39       std::string getPlacementId(const ComponentInstance *inst) const { return ""; }
40       std::string getFullPlacementId(const ComponentInstance *inst) const { return ""; }
41       static void initAllContainers();
42     protected:
43       void checkCapabilityToDealWith(const ComponentInstance *inst) const throw(Exception);
44     protected:
45       bool _alreadyStarted;
46       unsigned _myCounter;
47       static unsigned _counter;
48       static const char SUPPORTED_COMP_KIND[];
49     };
50
51     class ContainerTest2 : public Container
52     {
53     public:
54       ContainerTest2();
55       // implementation of compulsary methods
56       bool isAlreadyStarted(const ComponentInstance *inst) const;
57       void start(const ComponentInstance *inst) throw(Exception);
58       Container *clone() const;
59       Container *cloneAlways() const;
60       std::string getPlacementId(const ComponentInstance *inst) const { return ""; }
61       std::string getFullPlacementId(const ComponentInstance *inst) const { return ""; }
62       static void initAllContainers();
63     protected:
64       void checkCapabilityToDealWith(const ComponentInstance *inst) const throw(Exception);
65     protected:
66       bool _alreadyStarted;
67       unsigned _myCounter;
68       static unsigned _counter;
69       static const char SUPPORTED_COMP_KIND[];
70     };
71   }
72 }
73
74 #endif