Broadly speaking, there are three ways in which the ResourceFinder operates to locate files:
YARP_CONFIG_HOME
<path to a directory>
YARP_DATA_HOME
<path to a directory>
YARP_CONFIG_DIRS
<list of path separated by (semi)colons>
YARP_DATA_DIRS
<list of path separated by (semi)colons>
.When searching for files and directories, the ResourceFinder looks inside these directories in the above order, so that files modified by the user take precedence over installed ones.
The default value for these variables is dependent on the operating system.
Default values for Linux are based on the XDG Base Directory Specification (see http://standards.freedesktop.org/basedir-spec/basedir-spec-0.8.html). They rely on XDG environment variables, whose default values are:
$XDG_DATA_HOME:
$HOME/.local/share/
$XDG_CONFIG_HOME:
$HOME/.config/
$XDG_DATA_DIRS:
/usr/local/share/:/usr/share/
$XDG_CONFIG_DIRS:
/etc/xdg/
Default values for YARP are:
$YARP_DATA_HOME:
$XDG_DATA_HOME + /yarp/
$YARP_CONFIG_HOME:
$XDG_CONFIG_HOME + /yarp/
$YARP_DATA_DIRS:
$XDG_DATA_DIRS + /yarp/ (appended to each dir)
$YARP_CONFIG_DIRS:
$XDG_CONFIG_DIRS + /yarp/ (appended to each dir) [NOTE: /etc/yarp is used as default instead of /etc/xdg/yarp ]
The following environment variables (with their respective default values) are available on windows:
%YARP_DIR%:
C:\Program Files\robotology\YARP_2.X.XX
orC:\Program Files (x86)\robotology\YARP_2.X.XX
(Set by the installer or by the user)
%HOMEPATH%:
C:\Users\<username>
orC:\Documents and Settings\<username>
(User home)
%APPDATA%:
%HOMEPATH%\AppData\Roaming
(Windows 7) or%HOMEPATH%\Application Data
(Windows XP) (Location where applications should store their data by default)
%ALLUSERSPROFILE%:
C:\ProgramData
(Windows Vista) orC:\Documents and Settings\All Users
(Windows XP) (Location of the "All Users" or "Common" profile folder)
Default values for YARP are therefore:
%YARP_DATA_HOME%:
%APPDATA%\yarp
%YARP_CONFIG_HOME%:
%APPDATA%\yarp\config\
%YARP_DATA_DIRS%:
%YARP_DIR%\share\yarp\
%YARP_CONFIG_DIRS%:
%ALLUSERSPROFILE%\yarp\
On macOS, the following environment variable is used:
$HOME:
/Users/<username>
Default values for YARP are therefore:
$YARP_DATA_HOME:
$HOME/Library/Application Support/yarp
$YARP_CONFIG_HOME:
$HOME/Library/Preferences/yarp
$YARP_DATA_DIRS:
/usr/local/share/yarp:/usr/share/yarp
$YARP_CONFIG_DIRS:
/etc/yarp:Library/Preferences/yarp
Config files are INI files that contain parameters used by YARP's own executables.
$YARP_CONFIG_HOME
$YARP_CONFIG_DIRS + /config/
($YARP_DATA_DIRS && path.d) + /config/
path.d is a special folder used by yarp to provide a portable way to install 3rd party applications in separate folders (more on this below). It is searched for by the Resource Finder in the same locations as "Installed" configuration files (3) before searching for any "installed" resource. Each file inside this path.d folder contains the path to the "data directory" of the corresponding installed package; this path is therefore appended to the list of paths that make up the Installed locations list (3).
The following directories should be present inside each of the $YARP_DATA_HOME, $YARP_CONFIG_DIRS and $YARP_DATA_DIRS directories so that their content can be found by the Resource Finder
For any of the above-mentioned directories <dir>
, the possible locations are:
$YARP_DATA_HOME + /<dir>/
$YARP_CONFIG_DIRS + /<dir>/
[should not be normally needed]($YARP_DATA_DIRS && path.d) + /<dir>/
The contexts folders contain multiple sub-folders. Each subfolder represents a context, i.e., a collection of configuration files and data that may be used to configure modules at runtime and read/write any type of files. When the resource finder is configured with a specific context-name (either a default, hard-coded one, or provided as command line parameter to the module), contexts/<context-name>
is added to the search path in which the initial configuration file and any additional files are sought. The same <context-name>
can appear in user and installed contexts directories, which means that files associated to a context can actually be located in multiple places (i.e., there are both user files and installed files associated to the same context; user files "mask" installed files with the same name).
The robots folders contain multiple sub-folders as well. Each subfolder has the name of a robot, and contains robot-specific files. The ResourceFinder adds robots/$YARP_ROBOT_NAME
(default value for this environment variable: default) to the search path, before the context-specific paths.
Plugin manifest files are INI files that describe which class implements the plugin, the library it is included in, and how to find such library. These files are needed by the yarpdev executable.
Applications*, modules and resources folders contain XML files that describe programs (modules), the resources available to run the programs (resources), and collections of interconnected modules (applications). The yarpmanager executable allow to run and monitor applications, while the yarpbuilder executables allows to design new ones.
Templates are XML files with a .template
extension. Typical templates are applications that need to be configured (i.e., assigning the node where each module should be run) before they can be executed.
When looking for an initial configuration file, the ResourceFinder will look inside the following directories (in order):
path.d
directory)path.d
)Subsequent searches for files may follow different routes if the initial configuration file was found relative to the "current working directory" ("local" behaviour). In this case, the search path becomes:
YARP exports the following CMake variables:
Using the correct CMake variables when installing files will ensure that those files will be in the correct place on every platform.
Also non-root installation is supported, but both yarp and 3rd party software will require to be configured with the same $PREFIX, and the environment variables will require to be tweaked accordingly.
Paths to uninstalled data directories can be appended to the $YARP_DATA_DIRS environment variable. Please note that YARP will consider these packages as installed; local user data should be put inside $YARP_DATA_HOME
Packages that want to install their files in their own directory, should install a .ini file in $YARP_PREFIX/yarp/config/path.d . This can be done using the yarp_configure_external_installation macro provided in <YARP_SOURCE>/conf/YarpInstallationHelpers.cmake.