tf_frame.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2010, 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: tf_frame.py 13189 2011-02-11 21:42:57Z kwc $
00034 
00035 from __future__ import with_statement
00036 
00037 import os
00038 import sys
00039 
00040 import roslib.message
00041 import roslib.packages
00042 
00043 import rospy
00044 
00045 _error = None
00046 try:
00047     import geometry_msgs.msg
00048 except ImportError:
00049     _error = "cannot import geometry_msgs, tf integration will be disabled"
00050 try:
00051     import tf
00052 except ImportError:
00053     _error = "cannot import tf, tf integration will be disabled"
00054     
00055 # fairly stock plugin imports
00056 from rosh.impl.exceptions import InvalidPlugin
00057 from rosh.impl.namespace import Namespace, Concept
00058 
00059 # use rosh's process manager
00060 import rosh.impl.proc
00061     
00062 from rosh_geometry.geometry import PoseStamped, Point, Quaternion
00063 
00064 class TFFrame(Namespace):
00065 
00066     def __init__(self, name, config):
00067         """
00068         ctor.
00069         @param config: Namespace configuration instance with additional 'listener' attribute. 
00070         @type  config: L{NamespaceConfig}
00071         """
00072         super(TFFrame, self).__init__(name, config)
00073 
00074     def _list(self):
00075         """
00076         Override Namespace._list()
00077         """
00078         try:
00079             return self._config.listener.getFrameStrings()
00080         except:
00081             return []
00082 
00083     def _getAttributeNames(self):
00084         # strip off the leading slash in the ns since frame names are returned without it
00085         ns = self._ns.lstrip('/')
00086 
00087         # filter by frames that are in the current ns
00088         return set([s[len(ns):].split('/')[0].strip('/') for s in self._list() if s.startswith(ns)])
00089 
00090     def __repr__(self):
00091         return self.__str__()
00092         
00093     def __str__(self):
00094         return self._name
00095 
00096     def __call__(self, target):
00097         """
00098         @return: current transform
00099         @rtype: L{Transform}
00100         """
00101         translation, rotation = self._config.listener.lookupTransform(self._name, target, rospy.Time(0))
00102         return PoseStamped(Point(*translation), Quaternion(*rotation), target)
00103     
00104 class Transform(object):
00105     def __init__(self, translation, rotation):
00106         self.translation = translation
00107         self.rotation = rotation
00108 
00109     def __repr__(self):
00110         return self.__str__()
00111     
00112     def __str__(self):
00113         return "- Translation: %s\n- Rotation: %s"%(self.translation, self.rotation)
00114 
00115 class TFFrames(Concept):
00116 
00117     def __init__(self, ctx, lock):
00118         if _error:
00119             raise InvalidPlugin(_error)
00120         super(TFFrames, self).__init__(ctx, lock, TFFrame)
00121         # TODO: lazy-init on attribute access
00122         self._config.listener = tf.TransformListener()
00123 
00124     def __setattr__(self, key, value):
00125         if key.startswith('_'):
00126             return object.__setattr__(self, key, value)
00127         else:
00128             return self._root.__setitem__(key, value)
00129 
00130     def _show(self):
00131         show_concept(self)
00132 
00133     def __call__(self, obj, frame_id):
00134         l = self._config.listener
00135         if hasattr(obj, '_transform'):
00136             return obj._transform(l, frame_id)
00137         elif isinstance(obj, roslib.message.Message):
00138 
00139             #TODO: delegate this to rosh_geometry.geometry
00140 
00141             # another possibility is to add the _transform method to the classes
00142             if isinstance(obj, geometry_msgs.msg.PointStamped):
00143                 return l.transformPoint(frame_id, obj)
00144             elif isinstance(obj, geometry_msgs.msg.PoseStamped):
00145                 return l.transformPose(frame_id, obj)
00146             elif isinstance(obj, geometry_msgs.msg.QuaternionStamped):
00147                 return l.transformQuaternion(frame_id, obj)
00148             elif isinstance(obj, geometry_msgs.msg.Vector3Stamped):
00149                 return l.transformVector3(frame_id, obj)
00150             else:
00151                 raise ValueError("message is not transformable")
00152         else:
00153             raise ValueError("object is not transformable")
00154 
00155 def show_concept(tf_frames):
00156     dotcode = tf_frames._config.listener.allFramesAsDot()
00157     d = roslib.packages.get_pkg_dir('rosh')
00158     mod = os.path.join(d, 'src', 'rosh', 'impl', 'xdot.py')
00159 
00160     rosh.impl.proc.run(tf_frames._config, ['python', mod, '--raw', dotcode])


rosh_geometry
Author(s): Ken Conley
autogenerated on Fri Feb 12 2016 00:16:21