-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added configurable version of SynchronizationTransmitter #1
Open
maltewi
wants to merge
2
commits into
rock-slam:master
Choose a base branch
from
maltewi:ConfigurableSynchronizationTransmitter
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* Generated from orogen/lib/orogen/templates/tasks/Task.cpp */ | ||
|
||
#include "ConfigurableSynchronizationTransmitter.hpp" | ||
#include "Orocos.hpp" | ||
#include <base/Logging.hpp> | ||
using namespace envire; | ||
|
||
ConfigurableSynchronizationTransmitter::ConfigurableSynchronizationTransmitter(std::string const& name) | ||
: ConfigurableSynchronizationTransmitterBase(name), initial_map_sent(false),env(new envire::Environment()), envireEventDispatcher(NULL) | ||
{ | ||
} | ||
|
||
ConfigurableSynchronizationTransmitter::ConfigurableSynchronizationTransmitter(std::string const& name, RTT::ExecutionEngine* engine) | ||
: ConfigurableSynchronizationTransmitterBase(name, engine), initial_map_sent(false), env(new envire::Environment()), envireEventDispatcher(NULL) | ||
{ | ||
} | ||
|
||
ConfigurableSynchronizationTransmitter::~ConfigurableSynchronizationTransmitter() | ||
{ | ||
} | ||
|
||
void ConfigurableSynchronizationTransmitter::loadEnvironment(const std::string &path) | ||
{ | ||
env.reset(envire::Environment::unserialize(path)); | ||
envire::OrocosEmitter emitter(_envire_events); | ||
emitter.setTime(base::Time::now()); | ||
emitter.attach(env.get()); | ||
emitter.flush(); | ||
} | ||
|
||
|
||
/// The following lines are template definitions for the various state machine | ||
// hooks defined by Orocos::RTT. See ConfigurableSynchronizationTransmitter.hpp for more detailed | ||
// documentation about them. | ||
|
||
bool ConfigurableSynchronizationTransmitter::configureHook() | ||
{ | ||
if (! ConfigurableSynchronizationTransmitterBase::configureHook()) | ||
return false; | ||
return true; | ||
} | ||
bool ConfigurableSynchronizationTransmitter::startHook() | ||
{ | ||
if (! ConfigurableSynchronizationTransmitterBase::startHook()) | ||
return false; | ||
return true; | ||
} | ||
void ConfigurableSynchronizationTransmitter::updateHook() | ||
{ | ||
ConfigurableSynchronizationTransmitterBase::updateHook(); | ||
if(!initial_map_sent){ | ||
LOG_ERROR_S << "Waiting"; | ||
sleep(8); | ||
LOG_ERROR_S << "sending"; | ||
loadEnvironment(_environment_path.get()); | ||
LOG_ERROR_S << "done"; | ||
initial_map_sent = true; | ||
} | ||
} | ||
void ConfigurableSynchronizationTransmitter::errorHook() | ||
{ | ||
ConfigurableSynchronizationTransmitterBase::errorHook(); | ||
} | ||
void ConfigurableSynchronizationTransmitter::stopHook() | ||
{ | ||
ConfigurableSynchronizationTransmitterBase::stopHook(); | ||
} | ||
void ConfigurableSynchronizationTransmitter::cleanupHook() | ||
{ | ||
ConfigurableSynchronizationTransmitterBase::cleanupHook(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* Generated from orogen/lib/orogen/templates/tasks/Task.hpp */ | ||
|
||
#ifndef ENVIRE_CONFIGURABLESYNCHRONIZATIONTRANSMITTER_TASK_HPP | ||
#define ENVIRE_CONFIGURABLESYNCHRONIZATIONTRANSMITTER_TASK_HPP | ||
|
||
#include "envire/ConfigurableSynchronizationTransmitterBase.hpp" | ||
#include <envire/Core.hpp> | ||
|
||
namespace envire { | ||
class OrocosEmitter; | ||
|
||
/*! \class ConfigurableSynchronizationTransmitter | ||
* \brief The task context provides and requires services. It uses an ExecutionEngine to perform its functions. | ||
* Essential interfaces are operations, data flow ports and properties. These interfaces have been defined using the oroGen specification. | ||
* In order to modify the interfaces you should (re)use oroGen and rely on the associated workflow. | ||
* | ||
* \details | ||
* The name of a TaskContext is primarily defined via: | ||
\verbatim | ||
deployment 'deployment_name' | ||
task('custom_task_name','envire::ConfigurableSynchronizationTransmitter') | ||
end | ||
\endverbatim | ||
* It can be dynamically adapted when the deployment is called with a prefix argument. | ||
*/ | ||
class ConfigurableSynchronizationTransmitter : public ConfigurableSynchronizationTransmitterBase | ||
{ | ||
friend class ConfigurableSynchronizationTransmitterBase; | ||
protected: | ||
boost::shared_ptr<envire::Environment> env; | ||
envire::OrocosEmitter* envireEventDispatcher; | ||
bool initial_map_sent; | ||
|
||
void loadEnvironment(const std::string &path); | ||
|
||
|
||
|
||
public: | ||
/** TaskContext constructor for ConfigurableSynchronizationTransmitter | ||
* \param name Name of the task. This name needs to be unique to make it identifiable via nameservices. | ||
* \param initial_state The initial TaskState of the TaskContext. Default is Stopped state. | ||
*/ | ||
ConfigurableSynchronizationTransmitter(std::string const& name = "envire::ConfigurableSynchronizationTransmitter"); | ||
|
||
/** TaskContext constructor for ConfigurableSynchronizationTransmitter | ||
* \param name Name of the task. This name needs to be unique to make it identifiable for nameservices. | ||
* \param engine The RTT Execution engine to be used for this task, which serialises the execution of all commands, programs, state machines and incoming events for a task. | ||
* | ||
*/ | ||
ConfigurableSynchronizationTransmitter(std::string const& name, RTT::ExecutionEngine* engine); | ||
|
||
/** Default deconstructor of ConfigurableSynchronizationTransmitter | ||
*/ | ||
~ConfigurableSynchronizationTransmitter(); | ||
|
||
/** This hook is called by Orocos when the state machine transitions | ||
* from PreOperational to Stopped. If it returns false, then the | ||
* component will stay in PreOperational. Otherwise, it goes into | ||
* Stopped. | ||
* | ||
* It is meaningful only if the #needs_configuration has been specified | ||
* in the task context definition with (for example): | ||
\verbatim | ||
task_context "TaskName" do | ||
needs_configuration | ||
... | ||
end | ||
\endverbatim | ||
*/ | ||
bool configureHook(); | ||
|
||
/** This hook is called by Orocos when the state machine transitions | ||
* from Stopped to Running. If it returns false, then the component will | ||
* stay in Stopped. Otherwise, it goes into Running and updateHook() | ||
* will be called. | ||
*/ | ||
bool startHook(); | ||
|
||
/** This hook is called by Orocos when the component is in the Running | ||
* state, at each activity step. Here, the activity gives the "ticks" | ||
* when the hook should be called. | ||
* | ||
* The error(), exception() and fatal() calls, when called in this hook, | ||
* allow to get into the associated RunTimeError, Exception and | ||
* FatalError states. | ||
* | ||
* In the first case, updateHook() is still called, and recover() allows | ||
* you to go back into the Running state. In the second case, the | ||
* errorHook() will be called instead of updateHook(). In Exception, the | ||
* component is stopped and recover() needs to be called before starting | ||
* it again. Finally, FatalError cannot be recovered. | ||
*/ | ||
void updateHook(); | ||
|
||
/** This hook is called by Orocos when the component is in the | ||
* RunTimeError state, at each activity step. See the discussion in | ||
* updateHook() about triggering options. | ||
* | ||
* Call recover() to go back in the Runtime state. | ||
*/ | ||
void errorHook(); | ||
|
||
/** This hook is called by Orocos when the state machine transitions | ||
* from Running to Stopped after stop() has been called. | ||
*/ | ||
void stopHook(); | ||
|
||
/** This hook is called by Orocos when the state machine transitions | ||
* from Stopped to PreOperational, requiring the call to configureHook() | ||
* before calling start() again. | ||
*/ | ||
void cleanupHook(); | ||
}; | ||
} | ||
|
||
#endif | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to initialize the initial_map_sent flag in the configuration hook. Otherwise if the task is reused during task network transitions there wont be a map send out.