rclgo

module
v0.0.0-...-56b24e1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 31, 2024 License: Apache-2.0

README

rclgo the ROS2 client library Golang wrapper

Go Reference

Getting started

rclgo is used with the Go module system like most Go libraries. It also requires a ROS 2 installation as well as C bindings to any ROS interface type used with the library. The ROS core components can be installed by installing the Debian package ros-humble-ros-core. C bindings for ROS interfaces are also usually distributed as Debian packages.

API documentation is available at pkg.go.dev.

An example module with a publisher and a subscriber can be found in examples/publisher_subscriber.

ROS 2 interface bindings

rclgo requires Go bindings of all the ROS 2 interfaces to exist. rclgo-gen is used to generate Go bindings to existing interface types installed. The generated Go bindings depend on the corresponding C bindings to be installed.

rclgo-gen can be installed globally by running

go install github.com/tiiuae/rclgo/cmd/rclgo-gen@latest

but it is recommended to add rclgo-gen as a dependency to the project to ensure the version matches that of rclgo. This can be done by adding a file tools.go to the main package of the project containing something similar to the following:

//go:build tools

package main

import _ "github.com/tiiuae/rclgo/cmd/rclgo-gen"

Then run go mod tidy. This version of rclgo-gen can be used by running

go run github.com/tiiuae/rclgo/cmd/rclgo-gen generate -d msgs --include-go-package-deps ./...

in the project directory. The command can be added as a go generate comment to one of the source files in the project, such as main.go, as follows:

//go:generate go run github.com/tiiuae/rclgo/cmd/rclgo-gen generate -d msgs --include-go-package-deps ./...
Developing with custom interface types

By default rclgo-gen generate looks for interface definitions in $AMENT_PREFIX_PATH and generates Go bindings for all interfaces it finds. $AMENT_PREFIX_PATH contains a list of paths to the ROS 2 underlay and overlays you have sourced. If you want to use interfaces which are not available in $AMENT_PREFIX_PATH, you can either add the directories to $AMENT_PREFIX_PATH (use the package as an overlay) or pass paths using the --root-path option. If multiple --root-path options are passed, the paths are searched in the order the options are passed. If multiple identically named package and interface name combinations are found the first one is used. When --root-path is used, rclgo-gen generate won't look for interface definitions from $AMENT_PREFIX_PATH. If you want to generate bindings for files using both $AMENT_PREFIX_PATH and custom paths, you can pass --root-path="$AMENT_PREFIX_PATH" in addition to the other paths.

In addition to generating the Go bindings, you must also generate the C bindings, compile them and make them available to the Go tool. Generated Go bindings include the include and lib subdirectories of the root paths used when generating the bindings in the header and library search paths, respectively. When building a package using the Go bindings the environment variables CGO_CFLAGS and CGO_LDFLAGS can be used to pass additional -I and -L options, respectively, if needed.

An example is available in examples/custom_message_package.

Directories

Path Synopsis
cmd
rclgo Module
examples
internal
pkg
gogen
Generates Golang types from ROS2 message definitions
Generates Golang types from ROS2 message definitions
rclgo
Deliberate trial and error have been conducted in finding the best way of interfacing with rcl or rclc.
Deliberate trial and error have been conducted in finding the best way of interfacing with rcl or rclc.
rclgo/primitives
These types implement the rosidl_runtime_c primitive types handling semantics.
These types implement the rosidl_runtime_c primitive types handling semantics.
test
gogen
Fixtures here represent some easier data structures to compile and test.
Fixtures here represent some easier data structures to compile and test.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL