Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow full configuration of the cache directories used by rosdep via environment variable, deprecate --sources-cache-dir #908

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
21 changes: 21 additions & 0 deletions doc/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,30 @@ rosdep gets its data from.
``rosdep update`` reads through this sources list to initialize your
local database.

You can override the location by setting environment variable
``ROSDEP_SOURCE_PATH``. The custom path has to exist prior to calling
``rosdep init``, otherwise the default one will be used.
Comment on lines +33 to +34
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer that an "invalid" custom path produce an error rather than falling back to the default since that's probably not what the user intends if they're setting this value in the first place.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a behavior this PR hasn't touched. It might seem a bit unfortunate, but I fear changing it, as this behavior has been there for 9 years already.

The env var behaves as a path list. If at least one path from it exists, it is used. If it is empty or all paths do not exist, the system default is used.


Please note that when using ``sudo``, environment
variables from the user are not passed to the command. To specify the variable
for initializing the database, call::

sudo mkdir -p /usr/rosdep.sources
sudo env ROSDEP_SOURCE_PATH=/usr/rosdep.sources rosdep init
peci1 marked this conversation as resolved.
Show resolved Hide resolved

Updating rosdep
---------------

You can update your rosdep database by running::

rosdep update

If you have specified a custom ``ROSDEP_SOURCE_PATH``, do not forget to set it
also for this command.

Default location of the local rosdep database is in ``$HOME/.ros/rosdep``.
To change it, set environment variable ``ROSDEP_CACHE_PATH``, or pass
command-line arguments ``--sources-cache-dir`` and ``--meta-cache-dir``.
peci1 marked this conversation as resolved.
Show resolved Hide resolved

Installating rosdeps
--------------------
Expand Down Expand Up @@ -95,5 +112,9 @@ dependencies::



peci1 marked this conversation as resolved.
Show resolved Hide resolved
If you specified a custom ``ROSDEP_CACHE_PATH`` or used command-line arguments
``--sources-cache-dir`` and ``--meta-cache-dir``, you have to pass these to
all rosdep commands used afterwards, including ``rosdep install``.

For more information, please see the :ref:`command reference <rosdep_usage>`.

20 changes: 20 additions & 0 deletions doc/sources_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,26 @@ Sources list file format
``/etc/ros/rosdep/sources.list.d``. ``sudo rosdep init`` will create
a default configuration for you.

You can override the location by setting environment variable
``ROSDEP_SOURCE_PATH``. The custom path has to exist prior to calling
``rosdep init``, otherwise the default one will be used.

Please note that when using ``sudo``, environment
variables from the user are not passed to the command. To specify the variable
for initializing the database, call::

sudo mkdir -p /usr/rosdep.sources
sudo env ROSDEP_SOURCE_PATH=/usr/rosdep.sources rosdep init

If you point ``ROSDEP_SOURCE_PATH`` to a user-writable directory, you can avoid
obtaining root privileges, so you can just call::

mkdir -p $HOME/my_rosdep_sources
ROSDEP_SOURCE_PATH=$HOME/my_rosdep_sources rosdep init

Be aware that ``~`` is not expanded in ``ROSDEP_SOURCE_PATH``, so you should
specify an absolute path.
peci1 marked this conversation as resolved.
Show resolved Hide resolved

rosdep processes the files in this directory, sorted by filename in
ascending order. Precedence is assigned to the files in the order
they are processed, with the first file having the highest
Expand Down
1 change: 1 addition & 0 deletions src/rosdep2/cache_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import pickle

PICKLE_CACHE_EXT = '.pickle'
CACHE_PATH_ENV = 'ROSDEP_CACHE_PATH'


def compute_filename_hash(key_filenames):
Expand Down
35 changes: 24 additions & 11 deletions src/rosdep2/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from urllib2 import URLError
import warnings

from optparse import OptionParser
from optparse import OptionParser, SUPPRESS_HELP

import rospkg

Expand Down Expand Up @@ -122,6 +122,16 @@ class UsageError(Exception):
Recursively change the permissions of the user's ros home directory.
May require sudo. Can be useful to fix permissions after calling
"rosdep update" with sudo accidentally.

Environment variables:

ROSDEP_SOURCE_PATH
Overrides path to the sources list directory (by default /etc/ros/rosdep/sources.list.d).
Applies to init and update commands.

ROSDEP_CACHE_PATH
Overrides path to the cache directory (by default $HOME/.ros/rosdep).
Applies to all commands except init.
"""


Expand Down Expand Up @@ -270,11 +280,12 @@ def setup_proxy_opener():
install_opener(opener)


def setup_environment_variables(ros_distro):
def setup_environment_variables(ros_distro, meta_cache_dir=None):
"""
Set environment variables needed to find ROS packages and evaluate conditional dependencies.

:param ros_distro: The requested ROS distro passed on the CLI, or None
:param meta_cache_dir: Path to the cache directory of meta information
"""
if ros_distro is not None:
if 'ROS_DISTRO' in os.environ and os.environ['ROS_DISTRO'] != ros_distro:
Expand All @@ -288,7 +299,7 @@ def setup_environment_variables(ros_distro):

if 'ROS_PYTHON_VERSION' not in os.environ and 'ROS_DISTRO' in os.environ:
# Set python version to version used by ROS distro
python_versions = MetaDatabase().get('ROS_PYTHON_VERSION', default=[])
python_versions = MetaDatabase(meta_cache_dir).get('ROS_PYTHON_VERSION', default=[])
if os.environ['ROS_DISTRO'] in python_versions:
os.environ['ROS_PYTHON_VERSION'] = str(python_versions[os.environ['ROS_DISTRO']])

Expand All @@ -300,13 +311,13 @@ def setup_environment_variables(ros_distro):

def _rosdep_main(args):
# sources cache dir is our local database.
default_sources_cache = get_sources_cache_dir()

parser = OptionParser(usage=_usage, prog='rosdep')
parser.add_option('--os', dest='os_override', default=None,
metavar='OS_NAME:OS_VERSION', help='Override OS name and version (colon-separated), e.g. ubuntu:lucid')
parser.add_option('-c', '--sources-cache-dir', dest='sources_cache_dir', default=default_sources_cache,
metavar='SOURCES_CACHE_DIR', help='Override %s' % (default_sources_cache))
parser.add_option('-c', '--sources-cache-dir', dest='sources_cache_dir', default=None,
metavar='SOURCES_CACHE_DIR', help=SUPPRESS_HELP) # deprecated
parser.add_option('-m', '--meta-cache-dir', dest='meta_cache_dir', default=None,
metavar='META_CACHE_DIR', help=SUPPRESS_HELP) # deprecated
parser.add_option('--verbose', '-v', dest='verbose', default=False,
action='store_true', help='verbose display')
parser.add_option('--version', dest='print_version', default=False,
Expand Down Expand Up @@ -434,7 +445,7 @@ def _rosdep_main(args):
if command not in ['init', 'update', 'fix-permissions']:
check_for_sources_list_init(options.sources_cache_dir)
# _package_args_handler uses `ROS_DISTRO`, so environment variables must be set before
setup_environment_variables(options.ros_distro)
setup_environment_variables(options.ros_distro, options.meta_cache_dir)
elif command not in ['fix-permissions']:
setup_proxy_opener()

Expand Down Expand Up @@ -653,20 +664,22 @@ def update_error_handler(data_source, exc):
try:
if not options.quiet:
print('reading in sources list data from %s' % (sources_list_dir))
sources_cache_dir = get_sources_cache_dir()
try:
if os.geteuid() == 0:
print("Warning: running 'rosdep update' as root is not recommended.", file=sys.stderr)
print(" You should run 'sudo rosdep fix-permissions' and invoke 'rosdep update' again without sudo.", file=sys.stderr)
except AttributeError:
# nothing we wanna do under Windows
pass
update_sources_list(success_handler=update_success_handler,
update_sources_list(sources_cache_dir=options.sources_cache_dir,
success_handler=update_success_handler,
error_handler=update_error_handler,
skip_eol_distros=not options.include_eol_distros,
ros_distro=options.ros_distro,
quiet=options.quiet)
quiet=options.quiet,
meta_cache_dir=options.meta_cache_dir)
if not options.quiet:
sources_cache_dir = options.sources_cache_dir if options.sources_cache_dir else get_sources_cache_dir()
print('updated cache in %s' % (sources_cache_dir))
except InvalidData as e:
print('ERROR: invalid sources list file:\n\t%s' % (e), file=sys.stderr)
Expand Down
3 changes: 3 additions & 0 deletions src/rosdep2/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
from .cache_tools import compute_filename_hash
from .cache_tools import write_cache_file
from .cache_tools import PICKLE_CACHE_EXT
from .cache_tools import CACHE_PATH_ENV

"""
Rosdep needs to store data that isn't used to resolve rosdep keys, but needs to be cached during
Expand All @@ -56,6 +57,8 @@

def get_meta_cache_dir():
"""Return storage location for cached meta data."""
if CACHE_PATH_ENV in os.environ and os.environ[CACHE_PATH_ENV]:
return os.path.join(os.environ[CACHE_PATH_ENV], META_CACHE_DIR)
ros_home = rospkg.get_ros_home()
return os.path.join(ros_home, 'rosdep', META_CACHE_DIR)

Expand Down
10 changes: 7 additions & 3 deletions src/rosdep2/sources_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
except ImportError:
import pickle

from .cache_tools import compute_filename_hash, PICKLE_CACHE_EXT, write_atomic, write_cache_file
from .cache_tools import compute_filename_hash, PICKLE_CACHE_EXT, write_atomic, write_cache_file, CACHE_PATH_ENV
from .core import InvalidData, DownloadFailure, CachePermissionError
from .gbpdistro_support import get_gbprepo_as_rosdep_data, download_gbpdistro_as_rosdep_data
from .meta import MetaDatabase
Expand Down Expand Up @@ -109,6 +109,8 @@ def get_default_sources_list_file():


def get_sources_cache_dir():
if CACHE_PATH_ENV in os.environ and os.environ[CACHE_PATH_ENV]:
return os.path.join(os.environ[CACHE_PATH_ENV], SOURCES_CACHE_DIR)
ros_home = rospkg.get_ros_home()
return os.path.join(ros_home, 'rosdep', SOURCES_CACHE_DIR)

Expand Down Expand Up @@ -435,7 +437,8 @@ def _generate_key_from_urls(urls):
def update_sources_list(sources_list_dir=None, sources_cache_dir=None,
success_handler=None, error_handler=None,
skip_eol_distros=False, ros_distro=None,
quiet=False):
quiet=False,
meta_cache_dir=None):
"""
Re-downloaded data from remote sources and store in cache. Also
update the cache index based on current sources.
Expand All @@ -449,6 +452,7 @@ def update_sources_list(sources_list_dir=None, sources_cache_dir=None,
if a particular source fails. This hook is mainly for
printing errors to console.
:param skip_eol_distros: skip downloading sources for EOL distros
:param meta_cache_dir: override meta cache directory

:returns: list of (`DataSource`, cache_file_path) pairs for cache
files that were updated, ``[str]``
Expand Down Expand Up @@ -516,7 +520,7 @@ def update_sources_list(sources_list_dir=None, sources_cache_dir=None,
sources.append(rds)

# cache metadata that isn't a source list
MetaDatabase().set('ROS_PYTHON_VERSION', python_versions)
MetaDatabase(meta_cache_dir).set('ROS_PYTHON_VERSION', python_versions)

# Create a combined index of *all* the sources. We do all the
# sources regardless of failures because a cache from a previous
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
�crosdep2.meta
CacheWrapper
q)�q}q(Urosdep_versionqU0.22.1qU_CacheWrapper__dataq}q(UfoxyqKUmelodicq KUhumbleq
KUrollingq KUnoeticq KuUcategory_nameqUROS_PYTHON_VERSIONqub.
Expand Down
File renamed without changes.
4 changes: 4 additions & 0 deletions test/sources.list.d.good/20-default.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#autogenerated by rosdep, do not edit. use 'rosdep update' instead
yaml https://github.com/ros/rosdistro/raw/master/rosdep/base.yaml
yaml https://github.com/ros/rosdistro/raw/master/rosdep/python.yaml
gbpdistro https://github.com/ros/rosdistro/raw/master/releases/fuerte.yaml fuerte
32 changes: 32 additions & 0 deletions test/test_rosdep_catkin_support.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
from rosdep2.catkin_support import get_installer, get_catkin_view, ValidationFailed, resolve_for_os

from rosdep2.platforms.debian import APT_INSTALLER
from rosdep2.cache_tools import CACHE_PATH_ENV
from rosdep2.sources_list import SOURCE_PATH_ENV
import pytest
import os
from tempfile import mkdtemp


def get_test_dir():
return os.path.abspath(os.path.dirname(__file__))


def get_cache_dir():
# get_catkin_view calls update(), so we need a writable location
return mkdtemp()


def get_source_list_dir():
p = os.path.join(get_test_dir(), "sources.list.d.good")
assert os.path.isdir(p)
return p


@pytest.mark.online
def test_workflow():
old_cpe = os.getenv(CACHE_PATH_ENV, None)
old_spe = os.getenv(SOURCE_PATH_ENV, None)
try:
os.environ[CACHE_PATH_ENV] = get_cache_dir()
os.environ[SOURCE_PATH_ENV] = get_source_list_dir()
installer = get_installer(APT_INSTALLER)
view = get_catkin_view('fuerte', 'ubuntu', 'lucid')
resolved = resolve_for_os('cmake', view, installer, 'ubuntu', 'lucid')
Expand All @@ -16,3 +39,12 @@ def test_workflow():
except ValidationFailed:
# tests fail on the server because 'rosdep init' has not been run
pass
finally:
if old_cpe is None:
del os.environ[CACHE_PATH_ENV]
else:
os.environ[CACHE_PATH_ENV] = old_cpe
if old_spe is None:
del os.environ[SOURCE_PATH_ENV]
else:
os.environ[SOURCE_PATH_ENV] = old_spe
2 changes: 1 addition & 1 deletion test/test_rosdep_installers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_test_dir():


def get_cache_dir():
p = os.path.join(get_test_dir(), 'sources_cache')
p = os.path.join(get_test_dir(), 'sources.cache')
assert os.path.isdir(p)
return p

Expand Down
2 changes: 1 addition & 1 deletion test/test_rosdep_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_test_tree_dir():


def get_cache_dir():
p = os.path.join(get_test_dir(), 'sources_cache')
p = os.path.join(get_test_dir(), 'sources.cache')
assert os.path.isdir(p)
return p

Expand Down
Loading