RCIHelper.h

Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of RCI project
00004  *
00005  * Copyright (C) 2011 by Arne Nordmann <anordman at cor-lab dot uni-bielefeld dot de>
00006  *
00007  * This file may be licensed under the terms of the
00008  * GNU Lesser General Public License Version 3 (the ``LGPL''),
00009  * or (at your option) any later version.
00010  *
00011  * Software distributed under the License is distributed
00012  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
00013  * express or implied. See the LGPL for the specific language
00014  * governing rights and limitations.
00015  *
00016  * You should have received a copy of the LGPL along with this
00017  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
00018  * or write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00020  *
00021  * The development of this software was supported by:
00022  *   CoR-Lab, Research Institute for Cognition and Robotics
00023  *     Bielefeld University
00024  *
00025  * ============================================================ */
00026 
00027 #pragma once
00028 
00029 #include <iostream>
00030 
00031 #include <boost/shared_ptr.hpp>
00032 
00033 namespace rci {
00034 
00040 class RCIHelper {
00041 
00042 public:
00043 
00045     RCIHelper(const std::string &name, const std::string &ID);
00046 
00048     virtual ~RCIHelper();
00049 
00058     template<class DTOType>
00059     static boost::shared_ptr<DTOType> mergeDTOs(
00060             const std::vector<boost::shared_ptr<DTOType> > inputDTOs) {
00061         // Calculate output dimension
00062         unsigned int outputdimension = 0;
00063         for (unsigned int inputdto = 0; inputdto < inputDTOs.size();
00064                 ++inputdto) {
00065             for (unsigned int inputdim = 0;
00066                     inputdim < inputDTOs[inputdto]->getDimension();
00067                     ++inputdim) {
00068                 ++outputdimension;
00069             }
00070         }
00071 
00072         // Create and return merged DTOs
00073         boost::shared_ptr<DTOType> merged = DTOType::create(outputdimension);
00074         RCIHelper::mergeDTOs(merged, inputDTOs);
00075         return merged;
00076     }
00077 
00086     template<class DTOType>
00087     static void mergeDTOs(boost::shared_ptr<DTOType> outputDTO,
00088             const std::vector<boost::shared_ptr<DTOType> > inputDTOs) {
00089         unsigned int outputcursor = 0;
00090 
00091         for (unsigned int inputdto = 0; inputdto < inputDTOs.size();
00092                 ++inputdto) {
00093             for (unsigned int inputdim = 0;
00094                     inputdim < inputDTOs[inputdto]->getDimension();
00095                     ++inputdim) {
00096                 outputDTO->setValue(outputcursor++,
00097                         inputDTOs[inputdto]->asDouble(inputdim));
00098             }
00099         }
00100 
00101     }
00102 
00103 private:
00104     RCIHelper(const RCIHelper& RCIHelper);
00105 };
00106 
00107 }
Generated on Thu Aug 2 14:02:49 2012 for RCI by  doxygen 1.6.3