Class RightInputAdapterNode
- java.lang.Object
-
- jadex.rules.rulesystem.rete.nodes.AbstractNode
-
- jadex.rules.rulesystem.rete.nodes.RightInputAdapterNode
-
- All Implemented Interfaces:
INode
,IObjectSourceNode
,ITupleConsumerNode
,java.lang.Cloneable
public class RightInputAdapterNode extends AbstractNode implements ITupleConsumerNode, IObjectSourceNode
A node for converting a tuple to an object.
-
-
Field Summary
Fields Modifier and Type Field Description protected IObjectConsumerNode[]
oconsumers
The object consumers.protected AttributeSet
relevants
The set of relevant attributes.protected ITupleSourceNode
tsource
The tuple source.-
Fields inherited from class jadex.rules.rulesystem.rete.nodes.AbstractNode
clones, nodeid
-
-
Constructor Summary
Constructors Constructor Description RightInputAdapterNode(int nodeid)
Create a new node.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addObjectConsumer(IObjectConsumerNode node)
Add an object consumer node.void
addTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Add a new tuple to this node.java.lang.Object
createNodeMemory(IOAVState state)
Create the node memory.protected void
doClone(java.lang.Object theclone)
Do clone makes a deep clone without regarding cycles.AttributeSet
getIndirectAttributes()
Get the set of indirect attribute types.java.util.Collection
getNodeMemory(ReteMemory mem)
Get the memory for this node.IObjectConsumerNode[]
getObjectConsumers()
Get all object consumer nodes.AttributeSet
getRelevantAttributes()
Get the set of relevant attribute types.ITupleSourceNode
getTupleSource()
Get the tuple source of this node.void
modifyIndirectObject(java.lang.Object object, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Propagate an indirect object change to this node.void
modifyTuple(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Modify a tuple in this node.void
removeObjectConsumer(IObjectConsumerNode node)
Remove an object consumer.void
removeTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Remove a tuple from this node.void
setTupleSource(ITupleSourceNode node)
Set the tuple source of this node.-
Methods inherited from class jadex.rules.rulesystem.rete.nodes.AbstractNode
checkNodeConsistency, clone, equals, getNodeId, hashCode, toString, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jadex.rules.rulesystem.rete.nodes.INode
checkNodeConsistency, clone, getNodeId
-
-
-
-
Field Detail
-
oconsumers
protected IObjectConsumerNode[] oconsumers
The object consumers.
-
tsource
protected ITupleSourceNode tsource
The tuple source.
-
relevants
protected volatile AttributeSet relevants
The set of relevant attributes.
-
-
Method Detail
-
addTuple
public void addTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Add a new tuple to this node.- Specified by:
addTuple
in interfaceITupleConsumerNode
- Parameters:
tuple
- The tuple.
-
removeTuple
public void removeTuple(Tuple tuple, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Remove a tuple from this node.- Specified by:
removeTuple
in interfaceITupleConsumerNode
- Parameters:
tuple
- The tuple.
-
modifyTuple
public void modifyTuple(Tuple tuple, int tupleindex, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Modify a tuple in this node.- Specified by:
modifyTuple
in interfaceITupleConsumerNode
- Parameters:
tuple
- The tuple.
-
modifyIndirectObject
public void modifyIndirectObject(java.lang.Object object, OAVAttributeType type, java.lang.Object oldvalue, java.lang.Object newvalue, IOAVState state, ReteMemory mem, AbstractAgenda agenda)
Propagate an indirect object change to this node.- Specified by:
modifyIndirectObject
in interfaceINode
- Parameters:
object
- The changed object.
-
setTupleSource
public void setTupleSource(ITupleSourceNode node)
Set the tuple source of this node.- Specified by:
setTupleSource
in interfaceITupleConsumerNode
- Parameters:
node
- The tuple source node.
-
getTupleSource
public ITupleSourceNode getTupleSource()
Get the tuple source of this node.- Specified by:
getTupleSource
in interfaceITupleConsumerNode
- Returns:
- The object source node.
-
addObjectConsumer
public void addObjectConsumer(IObjectConsumerNode node)
Add an object consumer node.- Specified by:
addObjectConsumer
in interfaceIObjectSourceNode
- Parameters:
node
- A new consumer node.
-
removeObjectConsumer
public void removeObjectConsumer(IObjectConsumerNode node)
Remove an object consumer.- Specified by:
removeObjectConsumer
in interfaceIObjectSourceNode
- Parameters:
node
- The consumer node.
-
getNodeMemory
public java.util.Collection getNodeMemory(ReteMemory mem)
Get the memory for this node.- Specified by:
getNodeMemory
in interfaceINode
- Specified by:
getNodeMemory
in interfaceIObjectSourceNode
- Returns:
- The memory.
-
getObjectConsumers
public IObjectConsumerNode[] getObjectConsumers()
Get all object consumer nodes.- Specified by:
getObjectConsumers
in interfaceIObjectSourceNode
- Returns:
- All object consumer nodes.
-
createNodeMemory
public java.lang.Object createNodeMemory(IOAVState state)
Create the node memory.- Specified by:
createNodeMemory
in interfaceINode
- Parameters:
state
- The state.- Returns:
- The node memory.
-
getRelevantAttributes
public AttributeSet getRelevantAttributes()
Get the set of relevant attribute types.- Specified by:
getRelevantAttributes
in interfaceINode
-
getIndirectAttributes
public AttributeSet getIndirectAttributes()
Get the set of indirect attribute types. I.e. attributes of objects, which are not part of an object conditions (e.g. for chained extractors)- Specified by:
getIndirectAttributes
in interfaceINode
- Returns:
- The relevant attribute types.
-
doClone
protected void doClone(java.lang.Object theclone)
Do clone makes a deep clone without regarding cycles. Method is overridden by subclasses to actually incorporate their attributes.- Specified by:
doClone
in classAbstractNode
- Parameters:
theclone
- The clone.
-
-