51 class InputDataStreamPort;
52 class OutputDataStreamPort;
92 static const char SEP_CHAR_IN_PORT[];
98 Node(
const std::string& name);
101 virtual void performDuplicationOfPlacement(
const Node& other) = 0;
103 virtual void performShallowDuplicationOfPlacement(
const Node& other) = 0;
104 virtual Node *simpleClone(
ComposedNode *father,
bool editionOnly=
true)
const = 0;
107 virtual void init(
bool start=
true);
108 virtual void shutdown(
int level);
109 virtual void resetState(
int level);
113 Node *cloneWithoutCompAndContDeepCpy(
ComposedNode *father,
bool editionOnly=
true)
const;
122 const std::string&
getName()
const {
return _name; }
123 void setName(
const std::string& name);
125 const std::string getId()
const;
126 bool exIsControlReady()
const;
127 std::list<Node *> getOutNodes()
const;
128 virtual void writeDot(std::ostream &os)
const;
129 virtual void exUpdateState();
130 virtual void exFailedState();
131 virtual void exDisabledState();
132 virtual void getReadyTasks(std::vector<Task *>& tasks) = 0;
133 virtual std::list<ElementaryNode *> getRecursiveConstituents()
const = 0;
134 virtual std::list<ProgressWeight> getProgressWeight()
const = 0;
135 virtual int getNumberOfInputPorts()
const = 0;
136 virtual int getNumberOfOutputPorts()
const = 0;
137 std::list<InPort *> getSetOfInPort()
const;
138 std::list<OutPort *> getSetOfOutPort()
const;
139 virtual std::list<InputPort *> getSetOfInputPort()
const = 0;
140 virtual std::list<OutputPort *> getSetOfOutputPort()
const = 0;
141 virtual std::list<InputPort *> getLocalInputPorts()
const = 0;
142 virtual std::list<OutputPort *> getLocalOutputPorts()
const = 0;
143 virtual std::set<InputPort *> edGetSetOfUnitializedInputPort()
const;
144 virtual bool edAreAllInputPortInitialized()
const;
145 virtual std::string getInPortName(
const InPort *)
const throw (
Exception) = 0;
146 virtual std::
string getOutPortName(const
OutPort *) const throw (Exception) = 0;
149 InPort *getInPort(const std::
string& name) const throw(Exception);
151 virtual
OutPort *getOutPort(const std::
string& name) const throw(Exception);
152 virtual std::set<
OutPort *> getAllOutPortsLeavingCurrentScope() const = 0;
153 virtual std::set<
InPort *> getAllInPortsComingFromOutsideOfCurrentScope() const = 0;
154 virtual std::vector< std::pair<
OutPort *,
InPort *> > getSetOfLinksLeavingCurrentScope() const = 0;
155 virtual std::vector< std::pair<
InPort *, OutPort *> > getSetOfLinksComingInCurrentScope() const =0;
156 virtual
InputPort *getInputPort(const std::
string& name) const throw(Exception);
157 virtual
OutputPort *getOutputPort(const std::
string& name) const throw(Exception) = 0;
158 virtual
InputDataStreamPort *getInputDataStreamPort(const std::
string& name) const throw(Exception) = 0;
159 virtual
OutputDataStreamPort *getOutputDataStreamPort(const std::
string& name) const throw(Exception) = 0;
161 bool operator>(const
Node& other) const;
162 bool operator<(const
Node& other) const;
163 std::
string getImplementation() const;
164 virtual
ComposedNode *getRootNode() const throw(Exception);
165 virtual
void setProperty(const std::
string& name,const std::
string& value);
166 virtual std::
string getProperty(const std::
string& name);
167 std::map<std::
string,std::
string> getProperties() ;
168 std::map<std::
string,std::
string> getPropertyMap() {
return _propertyMap; }
169 virtual void setProperties(std::map<std::string,std::string> properties);
170 virtual Node *getChildByName(
const std::string& name)
const throw(
Exception) = 0;
171 virtual Proc *getProc();
172 virtual const Proc *getProc()
const;
173 virtual void accept(
Visitor *visitor) = 0;
174 virtual int getMaxLevelOfParallelism()
const = 0;
175 std::string getQualifiedName()
const;
177 std::vector<std::pair<std::string,int> > getDPLScopeInfo(
ComposedNode *gfn);
179 virtual void sendEvent(
const std::string& event);
180 virtual void sendEvent2(
const std::string& event,
void *something);
182 virtual std::string
typeName() {
return "YACS__ENGINE__Node"; }
185 virtual void modified();
187 virtual int isValid();
188 virtual void edUpdateState();
189 virtual std::string getErrorReport();
190 virtual std::string getContainerLog();
191 virtual void ensureLoading();
193 virtual void cleanNodes();
195 virtual void exForwardFailed();
196 virtual void exForwardFinished();
197 virtual void edDisconnectAllLinksWithMe();
198 static void checkValidityOfPortName(
const std::string& name)
throw(
Exception);