ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
2

How to use Catkin to generate code for your own client library?

asked 2016-09-27 13:43:01 -0500

Adnan gravatar image

updated 2016-09-28 02:58:40 -0500

I'm currently developing a ROS Client Library for the Rust programming language. The development has been done sporadically in my free time for the last several months. The source code being here: https://github.com/adnanademovic/rosrust

I pretty much followed the Wiki page for implementing client libraries and the "At a minimum, a client library MUST:" part is feature complete (though not error paths are done yet - I've focused on making the code very concurrent, and in some places I just tell a thread to crash without telling what happened).

Anyways, to be usable, I need to make a .msg file compiler. I'm aware of the existence of gendeps for md5 and message definition. The thing that confuses me is what depending on "roslang" does and how to integrate with rosbuild or catkin to generate .msg files for all dependencies too. So could anyone please shed some light on what the right thing to do here is?

Just to stress this - I already have the rosmsg compiler that takes a *.msg and spits out a .rs file. What I want to know is what the general ROS pipeline is - how to tell ROS, when I say catkin_make, to take a hierarchy of .msg files and put them through my compiler?

edit retag flag offensive close merge delete

Comments

Quick comment: rosbuild was the old build infrastructure. This has been replaced by Catkin.

gvdhoorn gravatar image gvdhoorn  ( 2016-09-27 15:11:02 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2016-09-27 15:19:51 -0500

gvdhoorn gravatar image

updated 2016-09-27 15:25:46 -0500

(note: this answer is for Catkin. For rosbuild, I don't know)

Afaik, there are three parts to this (I'll use gencpp as an example):

  1. a CMake 'extras' file that provides two macros that know how to take in a list of msg or srv defs and pass them on to your generator (gencpp/cmake/gencpp-extras.cmake.em)
  2. exporting from your manifest the language that you'll be generating code for (gencpp/package.xml)
  3. a few bits in your CMakeLists.txt that add a required file (gencpp/CMakeLists.txt)

And make sure to depend on the correct package(s) as well (genmsg among others).

edit flag offensive delete link more

Comments

This is from memory and as a 'user'. @Dirk Thomas will probably correct me if I forgot something.

gvdhoorn gravatar image gvdhoorn  ( 2016-09-27 15:20:44 -0500 )edit

This has put me nicely on the track for what to do. Thanks!

Adnan gravatar image Adnan  ( 2016-09-27 15:52:31 -0500 )edit

No problem.

May I suggest that you change the question's title if you're not actually interested in rosbuild? That would better describe the actual question.

gvdhoorn gravatar image gvdhoorn  ( 2016-09-28 00:28:43 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2016-09-27 13:43:01 -0500

Seen: 716 times

Last updated: Sep 28 '16