/usr/lib/python3/dist-packages/rospkg/environment.py is in python3-rospkg 1.1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | # Software License Agreement (BSD License)
#
# Copyright (c) 2011, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Willow Garage, Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""
Access information about ROS package system environment variables.
"""
import os
# Enviroment Variables
# Global, usually set in setup
ROS_ROOT = "ROS_ROOT"
ROS_PACKAGE_PATH = "ROS_PACKAGE_PATH"
ROS_HOME = "ROS_HOME"
# override directory path to /etc/ros
ROS_ETC_DIR = "ROS_ETC_DIR"
# directory in which log files are written
ROS_LOG_DIR = "ROS_LOG_DIR"
# directory in which test result files are written
ROS_TEST_RESULTS_DIR = "ROS_TEST_RESULTS_DIR"
# Utilities
def _resolve_path(p):
"""
@param path: path string
@type path: str
Catch-all utility routine for fixing ROS environment variables that
are a single path (e.g. ROS_ROOT). Currently this just expands
tildes to home directories, but in the future it may encode other
behaviors.
"""
if p and p[0] == '~':
return os.path.expanduser(p)
return p
def _resolve_paths(paths):
"""
Catch-all utility routine for fixing ROS environment variables
that are paths (e.g. ROS_PACKAGE_PATH). Currently this just
expands tildes to home directories, but in the future it may
encode other behaviors.
:param paths: path string with OS-defined separator (i.e. ':' for Linux), ``str``
"""
splits = [p for p in paths.split(os.pathsep) if p]
return os.pathsep.join([_resolve_path(p) for p in splits])
def get_ros_paths(env=None):
"""
Get an ordered list of ROS paths to search for ROS packages,
stacks, and other resources. This is generally computed from
:envvar:`ROS_ROOT` and :envvar:`ROS_PACKAGE_PATH`.
:param env: override environment dictionary
"""
if env is None:
env = os.environ
return _compute_package_paths(get_ros_root(env), get_ros_package_path(env))
def get_ros_root(env=None):
"""
Get the current :envvar:`ROS_ROOT`.
:param env: override environment dictionary, ``dict``
"""
if env is None:
env = os.environ
ros_root = env.get(ROS_ROOT, None)
if ros_root:
ros_root = os.path.normpath(ros_root)
return ros_root
def get_ros_package_path(env=None):
"""
Get the current ROS_PACKAGE_PATH.
:param env: (optional) environment override, ``dict``
"""
if env is None:
env = os.environ
return env.get(ROS_PACKAGE_PATH, '') + ':/usr/share'
def get_ros_home(env=None):
"""
Get directory location of '.ros' directory (aka ROS home).
possible locations for this. The :envvar:`ROS_HOME` environment
variable has priority. If :envvar:`ROS_HOME` is not set,
``$HOME/.ros`` is used.
:param env: override ``os.environ`` dictionary, ``dict``
:returns: path to use use for log file directory, ``str``
"""
if env is None:
env = os.environ
if ROS_HOME in env:
return env[ROS_HOME]
else:
# slightly more robust than $HOME
return os.path.join(os.path.expanduser('~'), '.ros')
def get_log_dir(env=None):
"""
Get directory to use for writing log files. There are multiple
possible locations for this. The ROS_LOG_DIR environment variable
has priority. If that is not set, then ROS_HOME/log is used. If
ROS_HOME is not set, $HOME/.ros/log is used.
:param env: override os.environ dictionary, ``dict``
:returns: path to use use for log file directory, ``str``
"""
if env is None:
env = os.environ
if ROS_LOG_DIR in env:
return env[ROS_LOG_DIR]
else:
return os.path.join(get_ros_home(env), 'log')
def get_test_results_dir(env=None):
"""
Get directory to use for writing test result files. There are
multiple possible locations for this. The
:envvar:`ROS_TEST_RESULTS_DIR` environment variable has
priority. If that is set, :envvar:`ROS_TEST_RESULTS_DIR` is
returned. If :envvar:`ROS_TEST_RESULTS_DIR` is not set, then
:envvar:`ROS_HOME`/test_results is used. If :envvar:`ROS_HOME` is
not set, ``$HOME/.ros/test_results`` is used.
:param env: environment dictionary (defaults to ``os.environ``), ``dict``
:returns: path to use use for log file directory, ``str``
"""
if env is None:
env = os.environ
if ROS_TEST_RESULTS_DIR in env:
return env[ROS_TEST_RESULTS_DIR]
else:
return os.path.join(get_ros_home(env), 'test_results')
def _compute_package_paths(ros_root, ros_package_path):
"""
Get the paths to search for packages in normal precedence order (i.e. first path wins).
:param ros_root: value of ROS_ROOT parameter, ``str``
:param ros_package_path: value of ROS_PACKAGE_PATH parameter, ``str``
:returns: paths to search in reverse order of precedence, ``[str]``
"""
paths = []
if ros_root:
paths.append(ros_root)
if ros_package_path:
paths.extend([x for x in ros_package_path.split(os.pathsep) if x.strip()])
return paths
def on_ros_path(p, env=None):
"""
Check to see if filesystem path is on paths specified in ROS
environment (:envvar:`ROS_ROOT`, :envvar:`ROS_PACKAGE_PATH`).
:param p: path, ``str``
:return: ``True`` if p is on the ROS path, ``bool``
"""
if env is None:
env = os.environ
package = os.path.realpath(_resolve_path(p))
# filter out non-paths (e.g. if no ROS environment is configured)
paths = get_ros_paths(env)
paths = [os.path.realpath(_resolve_path(x)) for x in paths]
return bool([x for x in paths if package == x or package.startswith(x + os.sep)])
def get_etc_ros_dir(env=None):
"""
Get directory location of ``/etc/ros`` directory. The
:envvar:`ROS_ETC_DIR` environment variable has priority. If
:envvar:`ROS_ETC_DIR` is not set, ``/etc/ros`` is used.
:param env: override environment dictionary
:return: path to use use for log file directory
"""
if env is None:
env = os.environ
if ROS_ETC_DIR in env:
return env[ROS_ETC_DIR]
else:
return '/etc/ros'
|