Salome HOME
Merge from V6_main 01/04/2013
[modules/yacs.git] / src / engine / OutGate.hxx
1 // Copyright (C) 2006-2013  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.
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 __OUTGATE_HXX__
21 #define __OUTGATE_HXX__
22
23 #include "YACSlibEngineExport.hxx"
24 #include "Port.hxx"
25 #include "Exception.hxx"
26
27 #include <map>
28 #include <set>
29
30 namespace YACS
31 {
32   namespace ENGINE
33   {
34     class InGate;
35     class ElementaryNode;
36     
37     class YACSLIBENGINE_EXPORT OutGate : public Port
38     {
39       friend class ElementaryNode;
40     protected:
41       std::map<InGate *, bool> _setOfInGate;
42     public:
43       static const char NAME[];
44     public:
45       OutGate(Node *node);
46       std::string getNameOfTypeOfCurrentInstance() const;
47       void exReset();
48       void exNotifyDone();
49       void exNotifyFailed();
50       void exNotifyDisabled();
51       void edDisconnectAllLinksFromMe();
52       bool edAddInGate(InGate *inGate);
53       std::map<InGate *, bool>& edMapInGate() { return _setOfInGate; }
54       std::set<InGate *> edSetInGate() const;
55       void edRemoveInGate(InGate *inGate, bool coherenceWithInGate=true) throw(Exception);
56       int getNbOfInGatesConnected() const;
57       bool isAlreadyInSet(InGate *inGate) const;
58       virtual std::string typeName() {return "YACS__ENGINE__OutGate";}
59     protected:
60       void edRemoveInGateOneWay(InGate *inGate);
61     };
62   }
63 }
64
65 #endif