1 // Copyright (C) 2006-2014 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef __COMPOSEDNODE_HXX__
21 #define __COMPOSEDNODE_HXX__
23 #include "YACSlibEngineExport.hxx"
25 #include "Scheduler.hxx"
42 class YACSLIBENGINE_EXPORT ComposedNode : public Node, public Scheduler
47 friend class ElementaryNode;
49 static const char SEP_CHAR_BTW_LEVEL[];
51 ComposedNode(const std::string& name);
52 ComposedNode(const ComposedNode& other, ComposedNode *father);
53 void performDuplicationOfPlacement(const Node& other);
54 void performShallowDuplicationOfPlacement(const Node& other);
56 virtual ~ComposedNode();
58 void init(bool start=true);
59 virtual void shutdown(int level);
60 virtual void resetState(int level);
61 std::string getName() const;
62 std::string getTaskName(Task *task) const;
63 DeploymentTree getDeploymentTree() const;
64 DeploymentTree checkDeploymentTree(bool deep) const throw(Exception);
65 std::vector<Task *> getNextTasks(bool& isMore);
66 virtual bool isPlacementPredictableB4Run() const = 0;
67 void notifyFrom(const Task *sender, YACS::Event event);
68 bool edAddLink(OutPort *start, InPort *end) throw(Exception);
69 virtual bool edAddDFLink(OutPort *start, InPort *end) throw(Exception);
70 //Node* DISOWNnode is a SWIG notation to indicate that the ownership of the node is transfered to C++
71 virtual bool edAddChild(Node *DISOWNnode) throw(Exception);
72 virtual void edRemoveChild(Node *node) throw(Exception);
73 bool edAddLink(OutGate *start, InGate *end) throw(Exception);
74 bool edAddCFLink(Node *nodeS, Node *nodeE) throw(Exception);
75 void edRemoveCFLink(Node *nodeS, Node *nodeE) throw(Exception);
76 void edRemoveLink(OutPort *start, InPort *end) throw(Exception);
77 void edRemoveLink(OutGate *start, InGate *end) throw(Exception);
78 virtual bool isRepeatedUnpredictablySeveralTimes() const { return false; }
79 virtual std::list<Node *> edGetDirectDescendants() const = 0;
80 std::list<ElementaryNode *> getRecursiveConstituents() const;
81 std::list<Node *> getAllRecursiveNodes();
82 virtual std::list<Node *> getAllRecursiveConstituents(); // first implementation
83 std::string getInPortName(const InPort *) const throw (Exception);
84 std::string getOutPortName(const OutPort *) const throw (Exception);
86 int getNumberOfInputPorts() const;
87 int getNumberOfOutputPorts() const;
88 std::list<InputPort *> getSetOfInputPort() const;
89 std::list<OutputPort *> getSetOfOutputPort() const;
90 std::list<InputPort *> getLocalInputPorts() const;
91 std::list<OutputPort *> getLocalOutputPorts() const;
92 std::set<OutPort *> getAllOutPortsLeavingCurrentScope() const;
93 std::set<InPort *> getAllInPortsComingFromOutsideOfCurrentScope() const;
94 std::list<InputDataStreamPort *> getSetOfInputDataStreamPort() const;
95 std::list<OutputDataStreamPort *> getSetOfOutputDataStreamPort() const;
96 OutPort *getOutPort(const std::string& name) const throw(Exception);
97 InputPort *getInputPort(const std::string& name) const throw(Exception);
98 OutputPort *getOutputPort(const std::string& name) const throw(Exception);
99 InputDataStreamPort *getInputDataStreamPort(const std::string& name) const throw(Exception);
100 OutputDataStreamPort *getOutputDataStreamPort(const std::string& name) const throw(Exception);
101 std::vector< std::pair<OutPort *, InPort *> > getSetOfInternalLinks() const;
102 virtual std::vector< std::pair<OutPort *, InPort *> > getSetOfLinksLeavingCurrentScope() const;
103 void checkConsistency(LinkInfo& info) const throw(Exception);
104 virtual std::vector< std::pair<InPort *, OutPort *> > getSetOfLinksComingInCurrentScope() const;
105 virtual std::string typeName() {return "YACS__ENGINE__ComposedNode";}
106 virtual void edUpdateState();
107 virtual void checkBasicConsistency() const throw(Exception);
108 virtual std::string getErrorReport();
110 ComposedNode *getRootNode() const throw(Exception);
111 bool isNodeAlreadyAggregated(const Node *node) const;
112 virtual bool isNameAlreadyUsed(const std::string& name) const;
113 Node *isInMyDescendance(Node *nodeToTest) const;
114 std::string getChildName(const Node* node) const throw(Exception);
115 virtual std::string getMyQualifiedName(const Node *directSon) const;
116 Node *getChildByName(const std::string& name) const throw(Exception);
117 static ComposedNode *getLowestCommonAncestor(Node *node1, Node *node2) throw(Exception);
120 void accept(Visitor *visitor);
121 virtual void cleanNodes();
122 virtual std::string getProgress() const {return "0";};
126 bool operator()(ComposedNode *n1, ComposedNode *n2) const
132 void edDisconnectAllLinksWithMe();
133 static bool splitNamesBySep(const std::string& globalName, const char separator[],
134 std::string& firstPart, std::string& lastPart, bool priority) throw(Exception);
135 virtual Node *getChildByShortName(const std::string& name) const throw(Exception) = 0;
136 YACS::Event updateStateFrom(Node *node, YACS::Event event);//update the state of this. Precondition : node->_father == this
137 virtual YACS::Event updateStateOnStartEventFrom(Node *node);//transition 3 doc P.R
138 virtual YACS::Event updateStateOnFinishedEventFrom(Node *node) = 0;//transition 9 doc P.R.
139 virtual YACS::Event updateStateOnFailedEventFrom(Node *node);//transition 9 doc P.R.
140 virtual void checkLinkPossibility(OutPort *start, const std::list<ComposedNode *>& pointsOfViewStart,
141 InPort *end, const std::list<ComposedNode *>& pointsOfViewEnd) throw(Exception);
142 virtual void buildDelegateOf(InPort * & port, OutPort *initialStart, const std::list<ComposedNode *>& pointsOfView);
143 virtual void buildDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView);
144 virtual void getDelegateOf(InPort * & port, OutPort *initialStart, const std::list<ComposedNode *>& pointsOfView) throw(Exception);
145 virtual void getDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(Exception);
146 virtual void releaseDelegateOf(InPort * & port, OutPort *initialStart, const std::list<ComposedNode *>& pointsOfView) throw(Exception);
147 virtual void releaseDelegateOf(OutPort *portDwn, OutPort *portUp, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(Exception);
148 virtual void checkNoCyclePassingThrough(Node *node) throw(Exception) = 0;
149 void checkInMyDescendance(Node *nodeToTest) const throw(Exception);
150 template <class PORT>
151 std::string getPortName(const PORT * port) const throw (Exception);
152 //For CF Computations
153 void checkNoCrossHierachyWith(Node *node) const throw (Exception);
154 virtual void performCFComputations(LinkInfo& info) const;
155 virtual void destructCFComputations(LinkInfo& info) const;
156 Node *getLowestNodeDealingAll(const std::list<OutPort *>& ports) const;
157 void checkLinksCoherenceRegardingControl(const std::vector<OutPort *>& starts,
158 InputPort *end, LinkInfo& info) const throw(Exception);
159 virtual void checkControlDependancy(OutPort *start, InPort *end, bool cross,
160 std::map < ComposedNode *, std::list < OutPort * >, SortHierarc >& fw,
161 std::vector<OutPort *>& fwCross,
162 std::map< ComposedNode *, std::list < OutPort *>, SortHierarc >& bw,
163 LinkInfo& info) const = 0;
164 void solveObviousOrDelegateCFLinks(const std::list<OutPort *>& starts, InputPort *end, unsigned char& alreadyFed, bool direction, LinkInfo& info) const;
165 virtual void checkCFLinks(const std::list<OutPort *>& starts, InputPort *end, unsigned char& alreadyFed, bool direction, LinkInfo& info) const;
167 //For internal calculations.
168 static const unsigned char FED_ST = 2;
169 static const unsigned char FREE_ST = 0;
170 static const unsigned char FED_DS_ST = 1;
173 template <class PORT>
174 std::string ComposedNode::getPortName(const PORT * port) const throw (Exception)
176 Node *node = port->getNode();
177 std::string portName = port->getName();
178 checkInMyDescendance(node);
180 while (father != this)
182 portName = father->getQualifiedName() + Node::SEP_CHAR_IN_PORT + portName;
183 father = father->_father;