RTT::CommandProcessor Class Reference
[Execution Engine]

This class implements an Orocos command processor. More...

#include <rtt/CommandProcessor.hpp>

Inheritance diagram for RTT::CommandProcessor:
RTT::RunnableInterface RTT::OS::RunnableInterface

List of all members.

Public Member Functions

 CommandProcessor (int queue_size=ORONUM_EXECUTION_PROC_QUEUE_SIZE)
 Constructs a new CommandProcessor.
virtual bool initialize ()
 The method that will be called before the first periodical execution of step() ( or non periodical execution of loop() ), when the thread is started.
virtual void step ()
 The method that will be periodically executed when this class RTT_API is run in a periodic thread.
virtual void finalize ()
 The method that will be called after the last periodical execution of step() ( or non periodical execution of loop() ), when the RunnableInterface is stopped.
virtual bool hasWork ()
 This method is for 'intelligent' activity implementations that wish to see if it is required to call step() (again).
virtual int process (CommandInterface *c)
 Queue and execute (process) a given command.
virtual bool isProcessed (int id) const
 Check if a given command id has been processed.
void acceptCommands (bool true_false)
 Should the CommandProcessor accept or reject commands in process().
ActivityInterfacegetActivity () const
 Query for the task this interface is run in.
virtual void setActivity (ActivityInterface *task)
 Set the task this interface is run in.
virtual OS::ThreadInterfacegetThread () const
 Get the thread this object is run in.
virtual void loop ()
 The method that will be executed once when this class RTT_API is run in a non periodic thread.
virtual bool breakLoop ()
 This method is called by the framework to break out of the loop() method.
virtual void setThread (ThreadInterface *t)
 Set the thread this object will be run in.

Protected Attributes

Queue< CommandInterface
*, NonBlockingPolicy,
NonBlockingPolicy > * 
a_queue
int coms_processed
 Counting how much commands we processed.
bool accept

Detailed Description

This class implements an Orocos command processor.

It executes external commands when running.

Changing the Command Processing Policy

The default policy of the CommandProcessor is to dequeue one command in each step() and execute it. If you want to change this policy, subclass the CommandProcessor and override the virtual functions, such as step() or process(). The current command queue is non blocking for push and pop operations. process() fails when the queue is full; step() does nothing when the queue is empty. A subclass may install a new command queue with for example blocking semantics.

Definition at line 75 of file CommandProcessor.hpp.


Constructor & Destructor Documentation

RTT::CommandProcessor::CommandProcessor ( int  queue_size = ORONUM_EXECUTION_PROC_QUEUE_SIZE  ) 

Constructs a new CommandProcessor.

Parameters:
queue_size The size of the command queue.

Member Function Documentation

void RTT::CommandProcessor::acceptCommands ( bool  true_false  )  [inline]

Should the CommandProcessor accept or reject commands in process().

Parameters:
true_false true to accept, false to reject.

Definition at line 121 of file CommandProcessor.hpp.

virtual bool RTT::OS::RunnableInterface::breakLoop (  )  [virtual, inherited]

This method is called by the framework to break out of the loop() method.

Reimplement this method to signal loop() to return and return true on success. When this method is not reimplemented by you, it will always return false, denoting that the loop can not be broken. If breakLoop() returns true, the caller will wait until loop() returns.

Returns:
true if the loop could be notified to return.

Reimplemented in RTT::EventProcessor, RTT::ExecutionEngine, and RTT::Timer.

ActivityInterface * RTT::RunnableInterface::getActivity (  )  const [inline, inherited]

Query for the task this interface is run in.

Zero denotes that no task is present to run it, and hence no detailed information is available.

Returns:
The Activity which runs this RunnableInterface.

Definition at line 106 of file RunnableInterface.hpp.

virtual OS::ThreadInterface* RTT::RunnableInterface::getThread (  )  const [virtual, inherited]

Get the thread this object is run in.

Returns:
a pointer to the thread or 0 if not run by a thread.

Reimplemented from RTT::OS::RunnableInterface.

virtual bool RTT::CommandProcessor::hasWork (  )  [virtual]

This method is for 'intelligent' activity implementations that wish to see if it is required to call step() (again).

By default, false is returned. You should only return true in case there is a temporary reason to (re-)run step.

Returns:
true if this object should be run.
See also:
SequentialActivity implementation to see how this can be of use.

Reimplemented from RTT::RunnableInterface.

virtual void RTT::OS::RunnableInterface::loop (  )  [virtual, inherited]

The method that will be executed once when this class RTT_API is run in a non periodic thread.

The default implementation calls step() once.

Reimplemented in RTT::Timer.

virtual int RTT::CommandProcessor::process ( CommandInterface c  )  [virtual]

Queue and execute (process) a given command.

The command is executed in step() or loop() directly after all other queued CommandInterface objects. The constructor parameter queue_size limits how many commands can be queued in between step()s or loop().

Warning:
process() assumes that step() is executed once for each command, hence, it invokes ActivityInterface::trigger() each time. In case you override step() in a subclass, override process as well in order to reduce calling trigger().
Returns:
The command number. You can check if the given command was processed by calling CommandProcessor::isProcessed( command id ). The command number is reset to one each time the CommandProcessor is (re-)started.
0 when the CommandProcessor is not running or does not accept commands.
See also:
isProcessed, acceptCommands

Referenced by RTT::detail::DataSourceArgsCommand< CommandT, CommandF >::dispatch(), and RTT::detail::LocalCommandImpl< CommandT >::invoke().

virtual void RTT::RunnableInterface::setActivity ( ActivityInterface task  )  [virtual, inherited]

Set the task this interface is run in.

A Zero means no task is running it.

Parameters:
task The ActivityInterface running this interface.

Reimplemented in RTT::ExecutionEngine.


The documentation for this class was generated from the following file:
Generated on Thu Dec 23 13:22:40 2010 for Orocos Real-Time Toolkit by  doxygen 1.6.3