CCA
ProcessingStrategy.cpp
Go to the documentation of this file.
00001 /* ============================================================
00002  *
00003  * This file is a part of CCA 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 #include "ProcessingStrategy.h"
00028 
00029 #include <numeric>
00030 #include <sstream>
00031 #include <iostream>
00032 
00033 using namespace std;
00034 using namespace boost;
00035 using namespace rsc;
00036 using namespace rsc::logging;
00037 
00038 namespace cca {
00039 
00040 ProcessingStrategy::ProcessingStrategy(std::string sname, bool ticks, bool dtos) :
00041         name(sname), listenToTicks(ticks), listenToInputs(dtos),
00042                 logger(Logger::getLogger("cca.processing")) {
00043 }
00044 
00045 ProcessingStrategy::~ProcessingStrategy() {
00046 }
00047 
00048 bool ProcessingStrategy::listensToTicks() const {
00049     return this->listenToTicks;
00050 }
00051 
00052 bool ProcessingStrategy::listensToInputs() const {
00053     return this->listenToInputs;
00054 }
00055 
00056 std::string ProcessingStrategy::getName() const {
00057     return this->name;
00058 }
00059 
00060 string ProcessingStrategy::print() const {
00061     ostringstream outstream(ostringstream::out);
00062     outstream.precision(3); // Precision when printing double values
00063     outstream << "<" << this->name << ">";
00064     return outstream.str();
00065 }
00066 
00067 bool operator==(StrategyPtr const a, StrategyPtr const b) {
00068     return (a->getName().compare(b->getName()) == 0);
00069 }
00070 
00071 }