Skip to main content

Powerful ROS 2 Package Generator

Project description

ros2-pkg-create – Powerful ROS 2 Package Generator

ros2-pkg-create is an interactive CLI tool for quickly generating ROS 2 packages from basic pub/sub nodes to complex lifecycle components. It is meant to replace the official ros2 pkg create command.

[!IMPORTANT]
This repository is open-sourced and maintained by the Institute for Automotive Engineering (ika) at RWTH Aachen University.
ROS is the backbone of many research topics within our Vehicle Intelligence & Automated Driving domain.
If you would like to learn more about how we can support your advanced driver assistance and automated driving efforts, feel free to reach out to us!
:email: opensource@ika.rwth-aachen.de

Quick Demo

pip install ros2-pkg-create
ros2-pkg-create --template ros2_cpp_pkg .

Installation

pip install ros2-pkg-create

# (optional) bash auto-completion
activate-global-python-argcomplete
eval "$(register-python-argcomplete ros2-pkg-create)"

[!WARNING]
Outside of a virtual environment, pip may default to a user-site installation of executables to ~/.local/bin, which may not be present in your shell's PATH. If running ros2-pkg-create errors with ros2-pkg-create: command not found, add the directory to your path. (More information)

echo "export PATH=\$HOME/.local/bin:\$PATH" >> ~/.bashrc
source ~/.bashrc

Templates & Features

ros2-pkg-create provides multiple templates, each covering a different questionnaire for generating all the components you need. See below for the list of supported features and questionnarie options. Note that all options can also be passed directly to the command, bypassing the interactive questionnaire (see Usage).

C++ Package (--template ros2_cpp_pkg)

Supported Features: publisher, subscriber, parameter loading, launch file, service server, action server, timer callback, component, lifecycle node, docker-ros

Questionnaire
  • Package name
  • Description
  • Maintainer | Maintainer email
  • Author | Author email
  • License
  • Node name
  • Class name of node
  • Make it a component?
  • Make it a lifecycle node?
  • Add a launch file? | Type of launch file
  • Add parameter loading?
  • Add a subscriber?
  • Add a publisher?
  • Add a service server?
  • Add an action server?
  • Add a timer callback?
  • Add the docker-ros CI integration?

Python Package (--template ros2_python_pkg)

Supported Features: publisher, subscriber, parameter loading, launch file, service server, action server, timer callback, docker-ros

Questionnaire
  • Package name
  • Description
  • Maintainer | Maintainer email
  • Author | Author email
  • License
  • Node name
  • Class name of node
  • Add a launch file? | Type of launch file
  • Add parameter loading?
  • Add a subscriber?
  • Add a publisher?
  • Add a service server?
  • Add an action server?
  • Add a timer callback?
  • Add the docker-ros CI integration?

Interfaces Package (--template ros2_interfaces_pkg)

Supported Features: message, service, action

Questionnaire
  • Package name
  • Description
  • Maintainer | Maintainer email
  • Author | Author email
  • License
  • Interfaces types
  • Message name
  • Service name
  • Action name
  • Add the docker-ros CI integration?

Usage

usage: ros2-pkg-create [-h] [--defaults] [--use-local-templates] --template {ros2_interfaces_pkg,ros2_python_pkg,ros2_cpp_pkg} [--package-name PACKAGE_NAME] [--description DESCRIPTION]
                       [--maintainer MAINTAINER] [--maintainer-email MAINTAINER_EMAIL] [--author AUTHOR] [--author-email AUTHOR_EMAIL]
                       [--license {Apache-2.0,BSL-1.0,BSD-2.0,BSD-2-Clause,BSD-3-Clause,GPL-3.0-only,LGPL-2.1-only,LGPL-3.0-only,MIT,MIT-0}] [--node-name NODE_NAME]
                       [--node-class-name NODE_CLASS_NAME] [--is-component] [--no-is-component] [--is-lifecycle] [--no-is-lifecycle] [--has-launch-file] [--no-has-launch-file]
                       [--launch-file-type {xml,py,yml}] [--has-params] [--no-has-params] [--has-subscriber] [--no-has-subscriber] [--has-publisher] [--no-has-publisher]
                       [--has-service-server] [--no-has-service-server] [--has-action-server] [--no-has-action-server] [--has-timer] [--no-has-timer] [--auto-shutdown]
                       [--no-auto-shutdown] [--interface-types {Message,Service,Action}] [--msg-name MSG_NAME] [--srv-name SRV_NAME] [--action-name ACTION_NAME] [--has-docker-ros]
                       [--version]
                       destination

Creates a ROS 2 package from templates

positional arguments:
  destination           Destination directory

options:
  -h, --help            show this help message and exit
  --defaults            Use defaults for all options
  --use-local-templates
                        Use locally installed templates instead of remotely pulling most recent ones
  --template {ros2_interfaces_pkg,ros2_python_pkg,ros2_cpp_pkg}
                        Template
  --package-name PACKAGE_NAME
                        Package name
  --description DESCRIPTION
                        Description
  --maintainer MAINTAINER
                        Maintainer
  --maintainer-email MAINTAINER_EMAIL
                        Maintainer email
  --author AUTHOR       Author
  --author-email AUTHOR_EMAIL
                        Author email
  --license {Apache-2.0,BSL-1.0,BSD-2.0,BSD-2-Clause,BSD-3-Clause,GPL-3.0-only,LGPL-2.1-only,LGPL-3.0-only,MIT,MIT-0}
                        License
  --node-name NODE_NAME
                        Node name
  --node-class-name NODE_CLASS_NAME
                        Class name of node
  --is-component        Make it a component?
  --no-is-component
  --is-lifecycle        Make it a lifecycle node?
  --no-is-lifecycle
  --has-launch-file     Add a launch file?
  --no-has-launch-file
  --launch-file-type {xml,py,yml}
                        Type of launch file
  --has-params          Add parameter loading
  --no-has-params
  --has-subscriber      Add a subscriber?
  --no-has-subscriber
  --has-publisher       Add a publisher?
  --no-has-publisher
  --has-service-server  Add a service server?
  --no-has-service-server
  --has-action-server   Add an action server?
  --no-has-action-server
  --has-timer           Add a timer callback?
  --no-has-timer
  --auto-shutdown       Automatically shutdown the node after launch (useful in CI/CD)?
  --no-auto-shutdown
  --interface-types {Message,Service,Action}
                        Interfaces types
  --msg-name MSG_NAME   Message name
  --srv-name SRV_NAME   Service name
  --action-name ACTION_NAME
                        Action name
  --has-docker-ros      Add the docker-ros CI integration?
  --version             show program's version number and exit

Acknowledgements

This work is accomplished within the projects 6GEM (FKZ 16KISK036K) and autotech.agil (FKZ 01IS22088A). We acknowledge the financial support for the projects by the Federal Ministry of Education and Research of Germany (BMBF).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ros2_pkg_create-1.1.1.tar.gz (24.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ros2_pkg_create-1.1.1-py3-none-any.whl (36.5 kB view details)

Uploaded Python 3

File details

Details for the file ros2_pkg_create-1.1.1.tar.gz.

File metadata

  • Download URL: ros2_pkg_create-1.1.1.tar.gz
  • Upload date:
  • Size: 24.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ros2_pkg_create-1.1.1.tar.gz
Algorithm Hash digest
SHA256 3e175338ba7f2f376308eddb006e8e333f64e88508a6804b215939e9e033928a
MD5 582168be5f54c28e5a55d1b32b60bd0a
BLAKE2b-256 9b1396def5f773ea7c31cd6e22518229e767938330cad8d0edf3243e5c714113

See more details on using hashes here.

File details

Details for the file ros2_pkg_create-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ros2_pkg_create-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 85d390cc338af05d460922ccaad69e8adb1b004993e11fe26b4a2a423868f451
MD5 c8dc94ea4f6ed21c9e9aff1be35abac7
BLAKE2b-256 05be7d0b420c089d0db41b3ef5d7893083a53d514723db19c37e101ecc34c0b5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page