Filesystem¶
Introduction¶
During this tutorial, you will learn how to navigate through ROS2. In addition, you will start your first ROS2 nodes and create your own ROS2 workspace for the further tutorials. You can use the given links in the documentation for additional information.
Lines beginning with $ are terminal commands.
To open a new terminal → use the shortcut
Ctrl + Alt + T
.To open a new tab inside an existing terminal → use the shortcut
Ctrl + Shift + T
.To kill a process in a terminal → use the shortcut
Ctrl + C
.
Lines beginning with # indicate the syntax of the commands.
Code is separated in boxes.
Code is case sensitive.
ROS2 nodes¶
A ROS2 node is an executable in the ROS2 environment. A node is always part of a ROS2 package. How to start ROS2 nodes and how to display runtime information is explained using the example of the turtlesim package below.
Start a ROS2 node:
$ ros2 run turtlesim turtlesim_node
# ros2 run <package_name> <executable_node_name>
→ A new window should pop up, displaying a turtle.
Start another node in a new Terminal to control the turtle:
$ ros2 run turtlesim turtle_teleop_key
# ros2 run <package_name> <executable_nodename>
Hint
You must start each process in a separate terminal.
→ You can control the turtle with the arrow keys of the keyboard, if the current terminal is selected
The two nodes turtlesim_node and turtle_teleop_key are currently active on your ROS2 system. Since systems that are more complex will consist of many nodes, ROS2 offers introspection tools to display information about active nodes.
Display all active nodes:
$ ros2 node list
The names of an active node can differ to the name of its underlying executable inside the ROS2 package. Therefore, you can start multiple active nodes based on one executable, by choosing different names for the different active nodes.
Display information about a node:
$ ros2 node info /turtlesim
# ros2 node info <active_node_name>
The given information comprises the offered communication interfaces of the active node as well as established communication connections to other active nodes.
More useful introspection tools can be found on our ROS2 Cheat Sheet or you can use the following ROS2 Cheats Sheet
Before going on with the tutorial cancel all running processes by using
CTRL + C
.
ROS2 Filesystem¶
The ROS2 File System consists of ROS2 packages – the smallest build part in ROS2. Usually a ROS2 File System consists of hundreds different packages. To navigate efficiently through your ROS2 system, ROS2 provides different management tools. The most common tools are described on the example of the ROS2 package turtlesim.
Locate a ROS2 package:
$ ros2 pkg prefix turtlesim
# ros2 pkg prefix <package_name>
Hint
Note the displayed location for a later step in the tutorial
reusable. Most ROS packages include only functionalities to fulfill specific tasks. Therefore, mostly all ROS packages are depending on other packages, which are offering functionalities for tasks on a lower level. These packages have their own dependencies, which ends up in a tree structure.
ROS2 Workspaces¶
A ROS2 workspace is a folder, in which you modify, build, and install packages. It is the place to create your own packages and nodes or modify existing ones to fit your application. In the further tutorials you will work in your own workspace.
Create a workspace:
$ mkdir -p ~/robot_ws/src
Navigate to the root of the workspace and build:
$ cd ~/robot_ws
$ colcon build
By executing the command colcon build
(in the root of your workspace),
the robot_ws folder is initialized as a ROS2 workspace. Colcon is the building
tool for ROS2 based on the Amant, which internally uses cmake and make to build your packages.
You should notice three new folders next to the src folder in the root of
your workspace: build, install and logs.
The build folder is where cmake and make are invoked.
The install folder contains any generated files, targets and setup.*sh files. The setup.*sh files are used to add the workspace to the ROS2 environment of your system.
The logs folder keeps information about the colcon building process itself.
Add a workspace to the ROS2 environment:
Let’s include our workspace now to the ROS2 environment.
$ source ~/robot_ws/install/setup.bash
This command will add the robot_ws workspace to the ROS2 environment only for this terminal session. If you want to include your workspace globally and make it available for every new terminal sesion, you have to source it in the .bashrc file. This file contains bash commands that are executed, when openin a shell script, e.g. your terminal. For further information check: Bash Startup Files
$ echo 'source ~/robot_ws/install/setup.bash' >> ~/.bashrc
This command will write to the .bashrc file. Therefore, the command adds the robot_ws workspace to the ROS2 environment for every new terminal session.
ROS2 Packages¶
Two types of ROS packages exist: binary packages and build-from-source
packages. ROS binary packages are provided as debian packages, which can
be managed via apt
commands.
8. Install a binary package (Since the package turtlesim is already installed, it is not necessary to execute the command):
$ sudo apt install ros-foxy-turtlesim
# sudo apt install ros-<distribution>-<package_name>
Build-from-source packages can be split into packages provided by the ROS community and your own developments. Both must be placed into the src folder of a ROS2 workspace. The ROS index page provides information about lots of available package including a link to download the build-from-source package – mostly via GIT.
Install an available build-from-source package:
$ cd ~/robot_ws/src
$ git clone -b foxy-devel https://github.com/ros/ros_tutorials.git
# git clone -b <branch> <address>
This will download the metapackage ros_tutorials, which includes the package turtlesim. The <branch> depends on the distribution of your ROS system, which is in our case foxy.
Hint
You can use $ echo $ROS_DISTRO
to check your current ROS distribution
→ Take a look into the package. You have now full access to the source files.
$ cd ~/robot_ws
$ colcon build
$ source install/setup.bash
By executing the command colcon build
, all packages in the
current workspace are built.
→ Search for the package turtlesim with help of the management tools
of ROS2 explained in chapter 2: ROS2 Filesystem. Is the location correct?
It should be different from before. Your ROS2 system will always locate the
first built package in its environment. We can check the index order with the
environment variable $AMENT_PREFIX_PATH
:
$ echo $AMENT_PREFIX_PATH
This shows the ROS2 package index order of your system. For now it should show
the location of ~/robot_ws/install/turtlesim
and /opt/ros/foxy
in
this order. ROS2 will use the $AMENT_PREFIX_PATH
variable to locate ROS2
packages and will always use the first result. The robot_ws
is found in
the first place, because it is the last workspace that was sourced. That
automatically chains all other workspaces that have already been sourced before,
in that case the ROS2 installation path /opt/ros/foxy
Create ROS2 Packages¶
Create your own build-from-source package:
$ cd ~/robot_ws/src/
$ ros2 pkg create myfirstpackage --build-type ament_python
# ros2 pkg create <package_name> --build-type <build_type>
By executing the ros2 pkg create
command, the package named
myfirstpackage is automatically created.
The --build-type
argument defines, if a Python or a C++ package
will be created. It can be ament_python
for a Python package or
ament_cmake
for a C++ package.
Let’s check the content of your new created package:
$ ls ~/robot_ws/src/myfirstpackage
Depending on the build-type that you have used, it will include the following files:
- A package.xml file, which provides meta information about the
package (i.e. package name, maintainer, version). (http://wiki.ros.org/catkin/package.xml)
For Python:
A setup.py file containing instructions for how to install the package.
A resource folder including a file with the name of the package so that ROS2 tools
are able to find the package.
* (optional) a setup.cfg file, if the packages includes executables so that the ros2 run
command is able to find those.
For C++:
- A CMakeLists.txt file that describes how to build the code within the package.
The command ros2 pkg create
automatically generates these
files. You can have as many packages in a workspace as you want, even from different
build types - CMake and Python.
Now, execute the following to once build your package:
$ cd ~/robot_ws
$ colcon build
After this successful execution of colcon build
, the package is now ready
to host nodes, libraries etc.. It will be used in the tutorials to follow.
Congratulations! You are now familiar with the basics of the ROS2 Filesystem.