]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/StaticDefinedComposedNode.cxx
Salome HOME
cf80c4e1f47863294731a16fdb2927de5949b5e1
[modules/yacs.git] / src / engine / StaticDefinedComposedNode.cxx
1 //  Copyright (C) 2006-2008  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 #include "StaticDefinedComposedNode.hxx"
20 #include "OutPort.hxx"
21 #include "InPort.hxx"
22
23 using namespace std;
24 using namespace YACS::ENGINE;
25
26 StaticDefinedComposedNode::StaticDefinedComposedNode(const std::string& name):ComposedNode(name)
27 {
28 }
29
30 StaticDefinedComposedNode::StaticDefinedComposedNode(const StaticDefinedComposedNode& other, ComposedNode *father):ComposedNode(other,father)
31 {
32 }
33
34 bool StaticDefinedComposedNode::isPlacementPredictableB4Run() const
35 {
36   return true;
37 }
38
39 bool StaticDefinedComposedNode::isMultiplicitySpecified(unsigned& value) const
40 {
41   value=1;
42   return true;
43 }
44
45 void StaticDefinedComposedNode::forceMultiplicity(unsigned value)
46 {
47   //no sense for this class
48 }
49
50 void StaticDefinedComposedNode::checkControlDependancy(OutPort *start, InPort *end, bool cross,
51                                                        std::map < ComposedNode *,  std::list < OutPort * >, SortHierarc >& fw,
52                                                        std::vector<OutPort *>& fwCross,
53                                                        std::map< ComposedNode *, std::list < OutPort *>, SortHierarc >& bw,
54                                                        LinkInfo& info) const
55 {
56   if(start->getNode()==end->getNode())
57     bw[(ComposedNode *)this].push_back(start);
58   else
59     throw Exception("Internal error occured - dealing an unexpected link !");
60 }