names.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2008, Willow Garage, Inc.
00004 # All rights reserved.
00005 #
00006 # Redistribution and use in source and binary forms, with or without
00007 # modification, are permitted provided that the following conditions
00008 # are met:
00009 #
00010 #  * Redistributions of source code must retain the above copyright
00011 #    notice, this list of conditions and the following disclaimer.
00012 #  * Redistributions in binary form must reproduce the above
00013 #    copyright notice, this list of conditions and the following
00014 #    disclaimer in the documentation and/or other materials provided
00015 #    with the distribution.
00016 #  * Neither the name of Willow Garage, Inc. nor the names of its
00017 #    contributors may be used to endorse or promote products derived
00018 #    from this software without specific prior written permission.
00019 #
00020 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00021 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00022 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00023 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00024 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00025 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00026 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00027 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00028 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00029 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00030 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00031 # POSSIBILITY OF SUCH DAMAGE.
00032 #
00033 # Revision $Id: names.py 14589 2011-08-07 18:30:21Z kwc $
00034 
00035 """
00036 Library for manipulating ROS Names. See U{http://ros.org/wiki/Names}.
00037 """
00038 
00039 import os
00040 import sys
00041 
00042 #TODO: why are these here?
00043 MSG_EXT = '.msg'
00044 SRV_EXT = '.srv'
00045 
00046 SEP = '/'
00047 GLOBALNS = '/'
00048 PRIV_NAME = '~'
00049 REMAP = ":="
00050 ANYTYPE = '*'
00051 
00052 if sys.hexversion > 0x03000000: #Python3
00053     def isstring(s):
00054         return isinstance(s, str) #Python 3.x
00055 else:
00056     def isstring(s):
00057         """
00058         Small helper version to check an object is a string in a way that works
00059         for both Python 2 and 3
00060         """
00061         return isinstance(s, basestring) #Python 2.x
00062 
00063 
00064 
00065 def load_mappings(argv):
00066     """
00067     Load name mappings encoded in command-line arguments. This will filter
00068     out any parameter assignment mappings.
00069 
00070     @param argv: command-line arguments
00071     @type  argv: [str]
00072     @return: name->name remappings. 
00073     @rtype: dict {str: str}
00074     """    
00075     mappings = {}
00076     for arg in argv:
00077         if REMAP in arg:
00078             try:
00079                 src, dst = [x.strip() for x in arg.split(REMAP)]
00080                 if src and dst:
00081 
00082                     if len(src) > 1 and src[0] == '_' and src[1] != '_':
00083                         #ignore parameter assignment mappings
00084                         pass
00085                     else:
00086                         mappings[src] = dst
00087             except:
00088                 #TODO: remove
00089                 sys.stderr.write("ERROR: Invalid remapping argument '%s'\n"%arg)
00090     return mappings
00091 
00092 


rotors_gazebo
Author(s): Fadri Furrer, Michael Burri, Mina Kamel, Janosch Nikolic, Markus Achtelik
autogenerated on Thu Apr 18 2019 02:43:49