/usr/lib/python2.7/dist-packages/rosgraph/names.py is in python-rosgraph 1.11.16-3.
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, 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.
#
# Revision $Id: names.py 14589 2011-08-07 18:30:21Z kwc $
"""
Library for manipulating ROS Names. See U{http://ros.org/wiki/Names}.
"""
import os
import sys
from .rosenv import ROS_NAMESPACE
#TODO: why are these here?
MSG_EXT = '.msg'
SRV_EXT = '.srv'
SEP = '/'
GLOBALNS = '/'
PRIV_NAME = '~'
REMAP = ":="
ANYTYPE = '*'
if sys.hexversion > 0x03000000: #Python3
def isstring(s):
return isinstance(s, str) #Python 3.x
else:
def isstring(s):
"""
Small helper version to check an object is a string in a way that works
for both Python 2 and 3
"""
return isinstance(s, basestring) #Python 2.x
def get_ros_namespace(env=None, argv=None):
"""
@param env: environment dictionary (defaults to os.environ)
@type env: dict
@param argv: command-line arguments (defaults to sys.argv)
@type argv: [str]
@return: ROS namespace of current program
@rtype: str
"""
#we force command-line-specified namespaces to be globally scoped
if argv is None:
argv = sys.argv
for a in argv:
if a.startswith('__ns:='):
return make_global_ns(a[len('__ns:='):])
if env is None:
env = os.environ
return make_global_ns(env.get(ROS_NAMESPACE, GLOBALNS))
def make_caller_id(name):
"""
Resolve a local name to the caller ID based on ROS environment settings (i.e. ROS_NAMESPACE)
@param name: local name to calculate caller ID from, e.g. 'camera', 'node'
@type name: str
@return: caller ID based on supplied local name
@rtype: str
"""
return make_global_ns(ns_join(get_ros_namespace(), name))
def make_global_ns(name):
"""
Convert name to a global name with a trailing namespace separator.
@param name: ROS resource name. Cannot be a ~name.
@type name: str
@return str: name as a global name, e.g. 'foo' -> '/foo/'.
This does NOT resolve a name.
@rtype: str
@raise ValueError: if name is a ~name
"""
if is_private(name):
raise ValueError("cannot turn [%s] into a global name"%name)
if not is_global(name):
name = SEP + name
if name[-1] != SEP:
name = name + SEP
return name
def is_global(name):
"""
Test if name is a global graph resource name.
@param name: must be a legal name in canonical form
@type name: str
@return: True if name is a globally referenced name (i.e. /ns/name)
@rtype: bool
"""
return name and name[0] == SEP
def is_private(name):
"""
Test if name is a private graph resource name.
@param name: must be a legal name in canonical form
@type name: str
@return bool: True if name is a privately referenced name (i.e. ~name)
"""
return name and name[0] == PRIV_NAME
def namespace(name):
"""
Get the namespace of name. The namespace is returned with a
trailing slash in order to favor easy concatenation and easier use
within the global context.
@param name: name to return the namespace of. Must be a legal
name. NOTE: an empty name will return the global namespace.
@type name: str
@return str: Namespace of name. For example, '/wg/node1' returns '/wg/'. The
global namespace is '/'.
@rtype: str
@raise ValueError: if name is invalid
"""
"map name to its namespace"
if name is None:
raise ValueError('name')
if not isstring(name):
raise TypeError('name')
if not name:
return SEP
elif name[-1] == SEP:
name = name[:-1]
return name[:name.rfind(SEP)+1] or SEP
def ns_join(ns, name):
"""
Join a namespace and name. If name is unjoinable (i.e. ~private or
/global) it will be returned without joining
@param ns: namespace ('/' and '~' are both legal). If ns is the empty string, name will be returned.
@type ns: str
@param name str: a legal name
@return str: name concatenated to ns, or name if it is
unjoinable.
@rtype: str
"""
if is_private(name) or is_global(name):
return name
if ns == PRIV_NAME:
return PRIV_NAME + name
if not ns:
return name
if ns[-1] == SEP:
return ns + name
return ns + SEP + name
def load_mappings(argv):
"""
Load name mappings encoded in command-line arguments. This will filter
out any parameter assignment mappings.
@param argv: command-line arguments
@type argv: [str]
@return: name->name remappings.
@rtype: dict {str: str}
"""
mappings = {}
for arg in argv:
if REMAP in arg:
try:
src, dst = [x.strip() for x in arg.split(REMAP)]
if src and dst:
if len(src) > 1 and src[0] == '_' and src[1] != '_':
#ignore parameter assignment mappings
pass
else:
mappings[src] = dst
except:
#TODO: remove
sys.stderr.write("ERROR: Invalid remapping argument '%s'\n"%arg)
return mappings
################################################################################
# NAME VALIDATORS
import re
#~,/, or ascii char followed by (alphanumeric, _, /)
NAME_LEGAL_CHARS_P = re.compile('^[\~\/A-Za-z][\w\/]*$')
def is_legal_name(name):
"""
Check if name is a legal ROS name for graph resources
(alphabetical character followed by alphanumeric, underscore, or
forward slashes). This constraint is currently not being enforced,
but may start getting enforced in later versions of ROS.
@param name: Name
@type name: str
"""
# should we enforce unicode checks?
if name is None:
return False
# empty string is a legal name as it resolves to namespace
if name == '':
return True
m = NAME_LEGAL_CHARS_P.match(name)
return m is not None and m.group(0) == name and not '//' in name
BASE_NAME_LEGAL_CHARS_P = re.compile('^[A-Za-z][\w]*$') #ascii char followed by (alphanumeric, _)
def is_legal_base_name(name):
"""
Validates that name is a legal base name for a graph resource. A base name has
no namespace context, e.g. "node_name".
"""
if name is None:
return False
m = BASE_NAME_LEGAL_CHARS_P.match(name)
return m is not None and m.group(0) == name
def canonicalize_name(name):
"""
Put name in canonical form. Extra slashes '//' are removed and
name is returned without any trailing slash, e.g. /foo/bar
@param name: ROS name
@type name: str
"""
if not name or name == SEP:
return name
elif name[0] == SEP:
return '/' + '/'.join([x for x in name.split(SEP) if x])
else:
return '/'.join([x for x in name.split(SEP) if x])
def resolve_name(name, namespace_, remappings=None):
"""
Resolve a ROS name to its global, canonical form. Private ~names
are resolved relative to the node name.
@param name: name to resolve.
@type name: str
@param namespace_: node name to resolve relative to.
@type namespace_: str
@param remappings: Map of resolved remappings. Use None to indicate no remapping.
@return: Resolved name. If name is empty/None, resolve_name
returns parent namespace_. If namespace_ is empty/None,
@rtype: str
"""
if not name: #empty string resolves to parent of the namespace_
return namespace(namespace_)
name = canonicalize_name(name)
if name[0] == SEP: #global name
resolved_name = name
elif is_private(name): #~name
# #3044: be careful not to accidentally make rest of name global
resolved_name = canonicalize_name(namespace_ + SEP + name[1:])
else: #relative
resolved_name = namespace(namespace_) + name
#Mappings override general namespace-based resolution
# - do this before canonicalization as remappings are meant to
# match the name as specified in the code
if remappings and resolved_name in remappings:
return remappings[resolved_name]
else:
return resolved_name
def script_resolve_name(script_name, name):
"""
Name resolver for scripts. Supports :envvar:`ROS_NAMESPACE`. Does not
support remapping arguments.
:param name: name to resolve, ``str``
:param script_name: name of script. script_name must not
contain a namespace., ``str``
:returns: resolved name, ``str``
"""
if not name: #empty string resolves to namespace
return get_ros_namespace()
#Check for global name: /foo/name resolves to /foo/name
if is_global(name):
return name
#Check for private name: ~name resolves to /caller_id/name
elif is_private(name):
return ns_join(make_caller_id(script_name), name[1:])
return get_ros_namespace() + name
def anonymous_name(id):
"""
Generate a ROS-legal 'anonymous' name
@param id: prefix for anonymous name
@type id: str
"""
import socket, random
name = "%s_%s_%s_%s"%(id, socket.gethostname(), os.getpid(), random.randint(0, sys.maxsize))
# RFC 952 allows hyphens, IP addrs can have '.'s, both
# of which are illegal for ROS names. For good
# measure, screen ipv6 ':'.
name = name.replace('.', '_')
name = name.replace('-', '_')
return name.replace(':', '_')
|