Feature request
Make all overloads of fromMsg() and toMsg() template specializations (with template<>)
Feature description
As pointed out in ros/geometry2#430, the fromMsg() and toMsg() Methods are traditional overloads (same function name, different arguments) and not a specialization of the templated forward declarations in <tf2/convert.h>. So, sometimes the compiler chooses the wrong functions which results in linking errors like (from ros/geometry2#430):
undefined reference to `void tf2::fromMsg<geometry_msgs::Quaternion_<std::allocator<void> >, Eigen::Quaternion<double, 0> >(geometry_msgs::Quaternion_<std::allocator<void> > const&, Eigen::Quaternion<double, 0>&)'
Implementation considerations
I already made a PR on the ROS1 version (ros/geometry2#433) which declares all fromMsg() and toMsg() as template specializations. The conversion between two non-geometry-msgs types is done explicitly, the mappings are generated with the help of a python script. Implicitly mapping these types together does not work with template specializations.
Downstream projects will break, because tf2::toMsg() now has two parameters in my implementation. Otherwise, the second type couldn't be deduced as the return value does not take part in template parameter deduction. On the other hand, all calls to tf2::fromMsg() and tf2::convert() will be fine.
Related Issues/PRs
ros/geometry2#430
ros/geometry2#433
ros/geometry2#367
ros/geometry2#444
moveit/moveit#1785
Feature request
Make all overloads of
fromMsg()andtoMsg()template specializations (withtemplate<>)Feature description
As pointed out in ros/geometry2#430, the
fromMsg()andtoMsg()Methods are traditional overloads (same function name, different arguments) and not a specialization of the templated forward declarations in<tf2/convert.h>. So, sometimes the compiler chooses the wrong functions which results in linking errors like (from ros/geometry2#430):Implementation considerations
I already made a PR on the ROS1 version (ros/geometry2#433) which declares all
fromMsg()andtoMsg()as template specializations. The conversion between two non-geometry-msgs types is done explicitly, the mappings are generated with the help of a python script. Implicitly mapping these types together does not work with template specializations.Downstream projects will break, because
tf2::toMsg()now has two parameters in my implementation. Otherwise, the second type couldn't be deduced as the return value does not take part in template parameter deduction. On the other hand, all calls totf2::fromMsg()andtf2::convert()will be fine.Related Issues/PRs
ros/geometry2#430
ros/geometry2#433
ros/geometry2#367
ros/geometry2#444
moveit/moveit#1785