time_cache.h
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2008, Willow Garage, Inc.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions are met:
00007  *
00008  *     * Redistributions of source code must retain the above copyright
00009  *       notice, this list of conditions and the following disclaimer.
00010  *     * Redistributions in binary form must reproduce the above copyright
00011  *       notice, this list of conditions and the following disclaimer in the
00012  *       documentation and/or other materials provided with the distribution.
00013  *     * Neither the name of the Willow Garage, Inc. nor the names of its
00014  *       contributors may be used to endorse or promote products derived from
00015  *       this software without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00027  * POSSIBILITY OF SUCH DAMAGE.
00028  */
00029 
00032 #ifndef TF2_TIME_CACHE_H
00033 #define TF2_TIME_CACHE_H
00034 
00035 #include "transform_storage.h"
00036 
00037 #include <list>
00038 
00039 #include <sstream>
00040 
00041 #include <ros/message_forward.h>
00042 #include <ros/time.h>
00043 
00044 #include <boost/shared_ptr.hpp>
00045 
00046 namespace geometry_msgs
00047 {
00048 ROS_DECLARE_MESSAGE(TransformStamped);
00049 }
00050 
00051 namespace tf2
00052 {
00053 
00054 typedef std::pair<ros::Time, CompactFrameID> P_TimeAndFrameID;
00055 
00056 class TimeCacheInterface
00057 {
00058 public:
00060   virtual bool getData(ros::Time time, TransformStorage & data_out, std::string* error_str = 0)=0; //returns false if data unavailable (should be thrown as lookup exception
00061 
00063   virtual bool insertData(const TransformStorage& new_data)=0;
00064 
00066   virtual void clearList()=0;
00067 
00069   virtual CompactFrameID getParent(ros::Time time, std::string* error_str) = 0;
00070 
00074   virtual P_TimeAndFrameID getLatestTimeAndParent() = 0;
00075 
00076 
00078 
00079   virtual unsigned int getListLength()=0;
00080 
00082   virtual ros::Time getLatestTimestamp()=0;
00083 
00085   virtual ros::Time getOldestTimestamp()=0;
00086 };
00087 
00088 typedef boost::shared_ptr<TimeCacheInterface> TimeCacheInterfacePtr;
00089 
00094 class TimeCache : public TimeCacheInterface
00095 {
00096  public:
00097   static const int MIN_INTERPOLATION_DISTANCE = 5; 
00098   static const unsigned int MAX_LENGTH_LINKED_LIST = 1000000; 
00099   static const int64_t DEFAULT_MAX_STORAGE_TIME = 1ULL * 1000000000LL; 
00100 
00101   TimeCache(ros::Duration  max_storage_time = ros::Duration().fromNSec(DEFAULT_MAX_STORAGE_TIME));
00102 
00103 
00105 
00106   virtual bool getData(ros::Time time, TransformStorage & data_out, std::string* error_str = 0);
00107   virtual bool insertData(const TransformStorage& new_data);
00108   virtual void clearList();
00109   virtual CompactFrameID getParent(ros::Time time, std::string* error_str);
00110   virtual P_TimeAndFrameID getLatestTimeAndParent();
00111 
00113   virtual unsigned int getListLength();
00114   virtual ros::Time getLatestTimestamp();
00115   virtual ros::Time getOldestTimestamp();
00116   
00117 
00118 private:
00119   typedef std::list<TransformStorage> L_TransformStorage;
00120   L_TransformStorage storage_;
00121 
00122   ros::Duration max_storage_time_;
00123 
00124 
00126   //Assumes storage is already locked for it
00127   inline uint8_t findClosest(TransformStorage*& one, TransformStorage*& two, ros::Time target_time, std::string* error_str);
00128 
00129   inline void interpolate(const TransformStorage& one, const TransformStorage& two, ros::Time time, TransformStorage& output);
00130 
00131 
00132   void pruneList();
00133 
00134 
00135 
00136 };
00137 
00138 class StaticCache : public TimeCacheInterface
00139 {
00140  public:
00142 
00143   virtual bool getData(ros::Time time, TransformStorage & data_out, std::string* error_str = 0); //returns false if data unavailable (should be thrown as lookup exception
00144   virtual bool insertData(const TransformStorage& new_data);
00145   virtual void clearList();
00146   virtual CompactFrameID getParent(ros::Time time, std::string* error_str);
00147   virtual P_TimeAndFrameID getLatestTimeAndParent();
00148 
00149 
00151   virtual unsigned int getListLength();
00152   virtual ros::Time getLatestTimestamp();
00153   virtual ros::Time getOldestTimestamp();
00154   
00155 
00156 private:
00157   TransformStorage  storage_;
00158 };
00159 
00160 }
00161 
00162 #endif // TF2_TIME_CACHE_H


tf2
Author(s): Tully Foote, Eitan Marder-Eppstein, Wim Meeussen
autogenerated on Thu Aug 27 2015 13:09:58