-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 thread synchronization to KinematicParameters (#1459) #1621
Merged
SteveMacenski
merged 2 commits into
ros-navigation:master
from
gimait:kinematic_parameters
Apr 2, 2020
Merged
Changes from 1 commit
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,12 +48,8 @@ namespace dwb_plugins | |
* @class KinematicParameters | ||
* @brief A class containing one representation of the robot's kinematics | ||
*/ | ||
class KinematicParameters | ||
struct KinematicParameters | ||
{ | ||
public: | ||
KinematicParameters(); | ||
void initialize(const nav2_util::LifecycleNode::SharedPtr & nh, const std::string & plugin_name); | ||
|
||
inline double getMinX() {return min_vel_x_;} | ||
inline double getMaxX() {return max_vel_x_;} | ||
inline double getAccX() {return acc_lim_x_;} | ||
|
@@ -90,8 +86,6 @@ class KinematicParameters | |
*/ | ||
bool isValidSpeed(double x, double y, double theta); | ||
|
||
using Ptr = std::shared_ptr<KinematicParameters>; | ||
|
||
protected: | ||
// For parameter descriptions, see cfg/KinematicParams.cfg | ||
double min_vel_x_{0}; | ||
|
@@ -113,13 +107,34 @@ class KinematicParameters | |
double min_speed_xy_sq_{0}; | ||
double max_speed_xy_sq_{0}; | ||
|
||
void reconfigureCB(); | ||
friend class KinematicsHandler; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you put this at the top of the struct? It'll make that more clear to passive readers There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For sure, I'm on it. |
||
}; | ||
|
||
/** | ||
* @class KinematicsHandler | ||
* @brief A class managing the representation of the robot's kinematics | ||
*/ | ||
class KinematicsHandler | ||
{ | ||
public: | ||
KinematicsHandler(); | ||
~KinematicsHandler(); | ||
void initialize(const nav2_util::LifecycleNode::SharedPtr & nh, const std::string & plugin_name); | ||
|
||
inline KinematicParameters getKinematics() {return *kinematics_.load();} | ||
|
||
bool isValidSpeed(double x, double y, double theta); | ||
|
||
using Ptr = std::shared_ptr<KinematicsHandler>; | ||
|
||
protected: | ||
std::atomic<KinematicParameters *> kinematics_; | ||
SteveMacenski marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// Subscription for parameter change | ||
rclcpp::AsyncParametersClient::SharedPtr parameters_client_; | ||
rclcpp::Subscription<rcl_interfaces::msg::ParameterEvent>::SharedPtr parameter_event_sub_; | ||
void on_parameter_event_callback(const rcl_interfaces::msg::ParameterEvent::SharedPtr event); | ||
|
||
void update_kinematics(KinematicParameters kinematics); | ||
std::string plugin_name_; | ||
}; | ||
|
||
|
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
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
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
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.
Update this doxy