|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectptolemy.kernel.util.NamedObj
ptolemy.kernel.InstantiableNamedObj
ptolemy.kernel.Entity
ptolemy.kernel.ComponentEntity
ptolemy.actor.AtomicActor
ptolemy.actor.TypedAtomicActor
ptolemy.domains.csp.kernel.CSPActor
public class CSPActor
This class is the base class of all atomic actors using the non-deterministic communication and timed features of the communicating sequential processes(CSP) domain.
Two conditional communication constructs are available: "Conditional if"
(CIF) and "Conditional do" (CDO). The constructs are analogous to,
but different from, the common if and do statements. The
steps involved in using both of these are
(1) create the branches involved and assign an identification number
to each branch.
(2) call the chooseBranch() method, which invokes the chooseBranch()
method of the controller to determine which branch should succeed.
(3) execute the statements associated with the successful branch.
Each branch is either an instance of ConditionalSend or ConditionalReceive, depending on the communication in the branch. Please see these classes for details on guarded communication statements, which they represent. The identification number assigned to each branch only needs to identify the branch uniquely for one sequence of the steps above. A good example of how to use a CDO is the code in the actor CSPBuffer, in the ptolemy.domains.csp.lib package. One significant difference between a CDO (or CIF) and a common do (if) is that all the branches are evaluated in parallel, as opposed to sequentially.
The chooseBranch() method takes an array of the branches as an argument, and simply passes the branches to the chooseBranch() method of the controller to decide which branch is successful. The successful branch is the branch that succeeds with its communication. See the chooseBranch() method of ConditionalBranchController for details about how the successful branch is chosen.
Time is supported by the method delay(double). This delays the process until time has advanced the argument time from the current model time. If this method is called with a zero argument, then the process continues immediately. As far as each process is concerned, time can only increase while the process is blocked trying to rendezvous or when it is delayed. A process can be aware of the current model time, but it should only affect the model time through delays. Thus time is centralized in that it is advanced by the director controlling the process represented by this actor.
A process can also choose to delay its execution until the next occasion a deadlock occurs by calling _waitForDeadlock(). The process resumes at the same model time at which it delayed. This is useful if a process wishes to delay itself until some changes to the topology have been carried out.
The model of computation used in this domain extends the original CSP, as proposed by Hoare in 1978, model of computation in two ways. First it allows non-deterministic communication using both sends and receives. The original model only allowed non-deterministic receives. Second, a centralized notion of time has been added. The original proposal was untimed. Neither of these extensions are new, but it is worth noting the differences between the model used here and the original model. If an actor wishes to use either non-deterministic rendezvous or time, it must derive from this class. Otherwise deriving from AtomicActor is sufficient.
ConditionalBranch
,
ConditionalReceive
,
ConditionalSend
,
Serialized Form
Yellow (liuj) |
Green (nsmyth) |
Nested Class Summary |
---|
Nested classes/interfaces inherited from class ptolemy.kernel.Entity |
---|
Entity.ContainedObjectsIterator |
Field Summary | |
---|---|
private boolean |
_cancelDelay
Flag that causes the delay() method to abort with an exception. |
private ConditionalBranchController |
_conditionalBranchController
This object is in charge of all conditional rendezvous issues. |
private boolean |
_delayed
Flag indicating this actor is delayed. |
Fields inherited from class ptolemy.actor.AtomicActor |
---|
_actorFiringListeners, _initializables, _notifyingActorFiring, _stopRequested |
Fields inherited from class ptolemy.kernel.util.NamedObj |
---|
_changeListeners, _changeLock, _changeRequests, _debugging, _debugListeners, _elementName, _isPersistent, _verbose, _workspace, ATTRIBUTES, CLASSNAME, COMPLETE, CONTENTS, DEEP, FULLNAME, LINKS |
Fields inherited from interface ptolemy.actor.Executable |
---|
COMPLETED, NOT_READY, STOP_ITERATING |
Constructor Summary | |
---|---|
CSPActor()
Construct a CSPActor in the default workspace with an empty string as its name. |
|
CSPActor(CompositeEntity container,
java.lang.String name)
Construct a CSPActor in the specified container with the specified name. |
|
CSPActor(Workspace workspace)
Construct a CSPActor in the specified workspace with an empty string as a name. |
Method Summary | |
---|---|
protected void |
_cancelDelay()
If the actor is delayed, then cancel the delay. |
protected void |
_continue()
Resume a delayed actor. |
protected void |
_waitForDeadlock()
Wait for deadlock to occur. |
int |
chooseBranch(ConditionalBranch[] branches)
Determine which branch succeeds with a rendezvous. |
java.lang.Object |
clone(Workspace workspace)
Clone this actor into the specified workspace. |
void |
delay(double delta)
Delay this actor. |
AbstractBranchController |
getBranchController()
Return the conditional branch control of this actor. |
void |
initialize()
Initialize the state of the actor. |
boolean |
postfire()
Return false. |
void |
terminate()
Terminate abruptly any threads created by this actor. |
Methods inherited from class ptolemy.actor.TypedAtomicActor |
---|
_addPort, _fireAt, _fireAt, attributeTypeChanged, clone, newPort, typeConstraintList, typeConstraints |
Methods inherited from class ptolemy.kernel.ComponentEntity |
---|
_adjustDeferrals, _checkContainer, _getContainedObject, _propagateExistence, getContainer, instantiate, isAtomic, isOpaque, moveDown, moveToFirst, moveToIndex, moveToLast, moveUp, propagateExistence, setName |
Methods inherited from class ptolemy.kernel.Entity |
---|
_description, _exportMoMLContents, _removePort, _validateSettables, connectedPortList, connectedPorts, containedObjectsIterator, getAttribute, getPort, getPorts, linkedRelationList, linkedRelations, portList, removeAllPorts, setClassDefinition, uniqueName |
Methods inherited from class ptolemy.kernel.InstantiableNamedObj |
---|
_setParent, exportMoML, getChildren, getElementName, getParent, getPrototypeList, isClassDefinition, isWithinClassDefinition |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface ptolemy.actor.Actor |
---|
createReceivers, getCausalityInterface, getDirector, getExecutiveDirector, getManager, inputPortList, newReceiver, outputPortList |
Methods inherited from interface ptolemy.actor.Executable |
---|
fire, isFireFunctional, isStrict, iterate, prefire, stop, stopFire |
Methods inherited from interface ptolemy.actor.Initializable |
---|
addInitializable, preinitialize, removeInitializable, wrapup |
Methods inherited from interface ptolemy.kernel.util.Nameable |
---|
description, getContainer, getDisplayName, getFullName, getName, getName, setName |
Methods inherited from interface ptolemy.kernel.util.Derivable |
---|
getDerivedLevel, getDerivedList, propagateValue |
Field Detail |
---|
private boolean _cancelDelay
private ConditionalBranchController _conditionalBranchController
private boolean _delayed
Constructor Detail |
---|
public CSPActor()
public CSPActor(Workspace workspace)
workspace
- The workspace that will list the entity.public CSPActor(CompositeEntity container, java.lang.String name) throws IllegalActionException, NameDuplicationException
container
- The TypedCompositeActor that contains this actor.name
- The actor's name.
IllegalActionException
- If the entity cannot be contained
by the proposed container.
NameDuplicationException
- If the name argument coincides
with an entity already in the container.Method Detail |
---|
public int chooseBranch(ConditionalBranch[] branches) throws IllegalActionException
branches
- The set of conditional branches involved.
IllegalActionException
- If the rendezvous fails
(e.g. because of incompatible types).public java.lang.Object clone(Workspace workspace) throws java.lang.CloneNotSupportedException
clone
in class AtomicActor
workspace
- The workspace for the cloned object.
java.lang.CloneNotSupportedException
- If cloned ports cannot have
as their container the cloned entity (this should not occur), or
if one of the attributes cannot be cloned.NamedObj.exportMoML(Writer, int, String)
,
NamedObj.setDeferringChangeRequests(boolean)
public void delay(double delta) throws IllegalActionException
delta
- The time to delay this actor for from the current
time.
IllegalActionException
- If the argument is negative.
TerminateProcessException
- If the director requests
termination by calling the protected method _cancelDelay().public AbstractBranchController getBranchController()
getBranchController
in interface BranchActor
public void initialize() throws IllegalActionException
initialize
in interface Initializable
initialize
in class AtomicActor
IllegalActionException
- Not thrown in this base class,
but might be in a derived class.public boolean postfire()
postfire
in interface Executable
postfire
in class AtomicActor
public void terminate()
terminate
in interface Executable
terminate
in class AtomicActor
protected void _cancelDelay()
protected void _continue()
protected void _waitForDeadlock()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |