#include <rtt/CommandProcessor.hpp>

Definition at line 77 of file CommandProcessor.hpp.
Public Member Functions | |
| CommandProcessor (int queue_size=ORONUM_EXECUTION_PROC_QUEUE_SIZE) | |
| Constructs a new CommandProcessor. | |
| virtual | ~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 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 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(). | |
| virtual void | loop () |
| The method that will be executed once when this class is run in a non periodic thread. | |
| virtual bool | breakLoop () |
| This method is called by the framework to break out of the loop() method. | |
| ThreadInterface * | getThread () const |
| Get the thread this object is run in. | |
| virtual void | setThread (ThreadInterface *t) |
| Set the thread this object will be run in. | |
Protected Attributes | |
|
AtomicQueue < CommandInterface *, NonBlockingPolicy, NonBlockingPolicy > * | a_queue |
| int | coms_processed |
| Counting how much commands we processed. | |
| bool | accept |
| CommandProcessor | ( | int | queue_size = ORONUM_EXECUTION_PROC_QUEUE_SIZE |
) |
Constructs a new CommandProcessor.
| queue_size | The size of the command queue. |
Definition at line 51 of file CommandProcessor.cpp.
| int 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().
0 when the CommandProcessor is not running or does not accept commands.
Definition at line 90 of file CommandProcessor.cpp.
References CommandProcessor::a_queue, and CommandProcessor::accept.
Referenced by DataSourceArgsCommand::dispatch(), CommandDispatch::dispatch(), and LocalCommandImpl::invoke().
| void acceptCommands | ( | bool | true_false | ) | [inline] |
Should the CommandProcessor accept or reject commands in process().
| true_false | true to accept, false to reject. |
Definition at line 122 of file CommandProcessor.hpp.
References CommandProcessor::accept.
| void loop | ( | ) | [virtual, inherited] |
The method that will be executed once when this class is run in a non periodic thread.
The default implementation calls step() once.
Reimplemented in Timer.
Definition at line 60 of file RunnableInterface.cpp.
References RunnableInterface::step().
Referenced by SlaveActivity::execute(), SingleThread::loop(), and NonPeriodicActivity::loop().
| bool 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.
Reimplemented in EventProcessor, ExecutionEngine, and Timer.
Definition at line 62 of file RunnableInterface.cpp.
Referenced by SingleThread::breakLoop(), NonPeriodicActivity::breakLoop(), and SlaveActivity::stop().
| ThreadInterface * getThread | ( | ) | const [inherited] |
Get the thread this object is run in.
Definition at line 69 of file RunnableInterface.cpp.
Referenced by Timer::initialize().
1.5.3