/usr/lib/python2.7/dist-packages/roslib/gentools.py is in python-roslib 1.13.4-2.
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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | #! /usr/bin/env python
# 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$
# $Author$
"""
Library for supporting message and service generation for all ROS
client libraries. This is mainly responsible for calculating the
md5sums and message definitions of classes.
"""
# NOTE: this should not contain any rospy-specific code. The rospy
# generator library is rospy.genpy.
import sys
try:
from cStringIO import StringIO # Python 2.x
except ImportError:
from io import StringIO # Python 3.x
import rospkg
import roslib.msgs
from roslib.msgs import MsgSpecException
import roslib.names
import roslib.srvs
# name of the Header type as gentools knows it
_header_type_name = 'std_msgs/Header'
def _add_msgs_depends(rospack, spec, deps, package_context):
"""
Add the list of message types that spec depends on to depends.
@param spec: message to compute dependencies for
@type spec: roslib.msgs.MsgSpec/roslib.srvs.SrvSpec
@param deps [str]: list of dependencies. This list will be updated
with the dependencies of spec when the method completes
@type deps: [str]
@raise KeyError for invalid dependent types due to missing package dependencies.
"""
def _get_valid_packages(package_context, rospack):
valid_packages = ['', package_context]
try:
valid_packages = valid_packages + rospack.get_depends(package_context, implicit=True)
except rospkg.ResourceNotFound:
# this happens in dynamic generation situations where the
# package is not present. we soft fail here because we assume
# missing messages will be caught later during lookup.
pass
return valid_packages
valid_packages = None
for t in spec.types:
t = roslib.msgs.base_msg_type(t)
if not roslib.msgs.is_builtin(t):
t_package, t_base = roslib.names.package_resource_name(t)
# special mapping for header
if t == roslib.msgs.HEADER:
# have to re-names Header
deps.append(_header_type_name)
if roslib.msgs.is_registered(t):
depspec = roslib.msgs.get_registered(t)
if t != roslib.msgs.HEADER:
if '/' in t:
deps.append(t)
else:
deps.append(package_context+'/'+t)
else:
if valid_packages is None:
valid_packages = _get_valid_packages(package_context, rospack)
if t_package in valid_packages:
# if we are allowed to load the message, load it.
key, depspec = roslib.msgs.load_by_type(t, package_context)
if t != roslib.msgs.HEADER:
deps.append(key)
roslib.msgs.register(key, depspec)
else:
# not allowed to load the message, so error.
raise KeyError(t)
_add_msgs_depends(rospack, depspec, deps, package_context)
def compute_md5_text(get_deps_dict, spec, rospack=None):
"""
Compute the text used for md5 calculation. MD5 spec states that we
removes comments and non-meaningful whitespace. We also strip
packages names from type names. For convenience sake, constants are
reordered ahead of other declarations, in the order that they were
originally defined.
@return: text for ROS MD5-processing
@rtype: str
"""
uniquedeps = get_deps_dict['uniquedeps']
package = get_deps_dict['package']
# #1554: need to suppress computation of files in dynamic generation case
compute_files = 'files' in get_deps_dict
buff = StringIO()
for c in spec.constants:
buff.write("%s %s=%s\n"%(c.type, c.name, c.val_text))
for type_, name in zip(spec.types, spec.names):
base_msg_type = roslib.msgs.base_msg_type(type_)
# md5 spec strips package names
if roslib.msgs.is_builtin(base_msg_type):
buff.write("%s %s\n"%(type_, name))
else:
# recursively generate md5 for subtype. have to build up
# dependency representation for subtype in order to
# generate md5
# - ugly special-case handling of Header
if base_msg_type == roslib.msgs.HEADER:
base_msg_type = _header_type_name
sub_pkg, _ = roslib.names.package_resource_name(base_msg_type)
sub_pkg = sub_pkg or package
sub_spec = roslib.msgs.get_registered(base_msg_type, package)
sub_deps = get_dependencies(sub_spec, sub_pkg, compute_files=compute_files, rospack=rospack)
sub_md5 = compute_md5(sub_deps, rospack)
buff.write("%s %s\n"%(sub_md5, name))
return buff.getvalue().strip() # remove trailing new line
def _compute_hash(get_deps_dict, hash, rospack=None):
"""
subroutine of compute_md5()
@param get_deps_dict: dictionary returned by get_dependencies call
@type get_deps_dict: dict
@param hash: hash instance
@type hash: hash instance
"""
# accumulate the hash
# - root file
from roslib.msgs import MsgSpec
from roslib.srvs import SrvSpec
spec = get_deps_dict['spec']
if isinstance(spec, MsgSpec):
hash.update(compute_md5_text(get_deps_dict, spec, rospack=rospack).encode())
elif isinstance(spec, SrvSpec):
hash.update(compute_md5_text(get_deps_dict, spec.request, rospack=rospack).encode())
hash.update(compute_md5_text(get_deps_dict, spec.response, rospack=rospack).encode())
else:
raise Exception("[%s] is not a message or service"%spec)
return hash.hexdigest()
def _compute_hash_v1(get_deps_dict, hash):
"""
subroutine of compute_md5_v1()
@param get_deps_dict: dictionary returned by get_dependencies call
@type get_deps_dict: dict
@param hash: hash instance
@type hash: hash instance
"""
uniquedeps = get_deps_dict['uniquedeps']
spec = get_deps_dict['spec']
# accumulate the hash
# - root file
hash.update(spec.text)
# - dependencies
for d in uniquedeps:
hash.update(roslib.msgs.get_registered(d).text)
return hash.hexdigest()
def compute_md5_v1(get_deps_dict):
"""
Compute original V1 md5 hash for message/service. This was replaced with V2 in ROS 0.6.
@param get_deps_dict: dictionary returned by get_dependencies call
@type get_deps_dict: dict
@return: md5 hash
@rtype: str
"""
import hashlib
return _compute_hash_v1(get_deps_dict, hashlib.md5())
def compute_md5(get_deps_dict, rospack=None):
"""
Compute md5 hash for message/service
@param get_deps_dict dict: dictionary returned by get_dependencies call
@type get_deps_dict: dict
@return: md5 hash
@rtype: str
"""
try:
# md5 is deprecated in Python 2.6 in favor of hashlib, but hashlib is
# unavailable in Python 2.4
import hashlib
return _compute_hash(get_deps_dict, hashlib.md5(), rospack=rospack)
except ImportError:
import md5
return _compute_hash(get_deps_dict, md5.new(), rospack=rospack)
## alias
compute_md5_v2 = compute_md5
def compute_full_text(get_deps_dict):
"""
Compute full text of message/service, including text of embedded
types. The text of the main msg/srv is listed first. Embedded
msg/srv files are denoted first by an 80-character '=' separator,
followed by a type declaration line,'MSG: pkg/type', followed by
the text of the embedded type.
@param get_deps_dict dict: dictionary returned by get_dependencies call
@type get_deps_dict: dict
@return: concatenated text for msg/srv file and embedded msg/srv types.
@rtype: str
"""
buff = StringIO()
sep = '='*80+'\n'
# write the text of the top-level type
buff.write(get_deps_dict['spec'].text)
buff.write('\n')
# append the text of the dependencies (embedded types)
for d in get_deps_dict['uniquedeps']:
buff.write(sep)
buff.write("MSG: %s\n"%d)
buff.write(roslib.msgs.get_registered(d).text)
buff.write('\n')
# #1168: remove the trailing \n separator that is added by the concatenation logic
return buff.getvalue()[:-1]
def get_file_dependencies(f, stdout=sys.stdout, stderr=sys.stderr, rospack=None):
"""
Compute dependencies of the specified message/service file
@param f: message or service file to get dependencies for
@type f: str
@param stdout pipe: stdout pipe
@type stdout: file
@param stderr pipe: stderr pipe
@type stderr: file
@return: 'files': list of files that \a file depends on,
'deps': list of dependencies by type, 'spec': Msgs/Srvs
instance.
@rtype: dict
"""
package = rospkg.get_package_name(f)
spec = None
if f.endswith(roslib.msgs.EXT):
_, spec = roslib.msgs.load_from_file(f)
elif f.endswith(roslib.srvs.EXT):
_, spec = roslib.srvs.load_from_file(f)
else:
raise Exception("[%s] does not appear to be a message or service"%spec)
return get_dependencies(spec, package, stdout, stderr, rospack=rospack)
def get_dependencies(spec, package, compute_files=True, stdout=sys.stdout, stderr=sys.stderr, rospack=None):
"""
Compute dependencies of the specified Msgs/Srvs
@param spec: message or service instance
@type spec: L{roslib.msgs.MsgSpec}/L{roslib.srvs.SrvSpec}
@param package: package name
@type package: str
@param stdout: (optional) stdout pipe
@type stdout: file
@param stderr: (optional) stderr pipe
@type stderr: file
@param compute_files: (optional, default=True) compute file
dependencies of message ('files' key in return value)
@type compute_files: bool
@return: dict:
* 'files': list of files that \a file depends on
* 'deps': list of dependencies by type
* 'spec': Msgs/Srvs instance.
* 'uniquedeps': list of dependencies with duplicates removed,
* 'package': package that dependencies were generated relative to.
@rtype: dict
"""
# #518: as a performance optimization, we're going to manually control the loading
# of msgs instead of doing package-wide loads.
#we're going to manipulate internal apis of msgs, so have to
#manually init
roslib.msgs._init()
deps = []
try:
if not rospack:
rospack = rospkg.RosPack()
if isinstance(spec, roslib.msgs.MsgSpec):
_add_msgs_depends(rospack, spec, deps, package)
elif isinstance(spec, roslib.srvs.SrvSpec):
_add_msgs_depends(rospack, spec.request, deps, package)
_add_msgs_depends(rospack, spec.response, deps, package)
else:
raise MsgSpecException("spec does not appear to be a message or service")
except KeyError as e:
raise MsgSpecException("Cannot load type %s. Perhaps the package is missing a dependency."%(str(e)))
# convert from type names to file names
if compute_files:
files = {}
for d in set(deps):
d_pkg, t = roslib.names.package_resource_name(d)
d_pkg = d_pkg or package # convert '' -> local package
files[d] = roslib.msgs.msg_file(d_pkg, t)
else:
files = None
# create unique dependency list
uniquedeps = []
for d in deps:
if not d in uniquedeps:
uniquedeps.append(d)
if compute_files:
return { 'files': files, 'deps': deps, 'spec': spec, 'package': package, 'uniquedeps': uniquedeps }
else:
return { 'deps': deps, 'spec': spec, 'package': package, 'uniquedeps': uniquedeps }
|